commit a351509e5c27e6e509132b34d25ed2780c6c592f Author: ModelHub XC Date: Tue Aug 4 05:33:17 2026 +0800 初始化项目,由ModelHub XC社区提供模型 Model: CyanMonkey/Petal-50M Source: Original Platform diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a6344aa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,35 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..028b5d8 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +--- +language: en +tags: +- causal-lm +- gqa +- rope +- swiglu +license: apache-2.0 +--- + +# Petal-50M + +Small language model (49.7M parameters) trained from scratch. + +## Architecture +| Property | Value | +|---|---| +| Layers | 14 | +| Hidden size | 512 | +| Intermediate size | 1408 | +| Attention heads | 8 (GQA kv=4) | +| Max sequence length | 1024 | +| Vocab size | 16384 | +| Tied embeddings | True | +| Total parameters | 49.691M | + +## Training +- Tokens seen: 12,206,075,904 +- Val loss: 1.8920 +- Val PPL: 6.63 + +## Usage +```python +from transformers import AutoTokenizer, AutoModelForCausalLM +tokenizer = AutoTokenizer.from_pretrained("CyanMonkey/Petal-50M") +model = AutoModelForCausalLM.from_pretrained("CyanMonkey/Petal-50M") +inputs = tokenizer("Hello", return_tensors="pt") +output = model.generate(**inputs, max_new_tokens=50) +print(tokenizer.decode(output[0], skip_special_tokens=True)) +``` diff --git a/config.json b/config.json new file mode 100644 index 0000000..283f69d --- /dev/null +++ b/config.json @@ -0,0 +1,30 @@ +{ + "architectures": [ + "LlamaForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": 2, + "eos_token_id": 3, + "head_dim": 64, + "hidden_act": "silu", + "hidden_size": 512, + "initializer_range": 0.02, + "intermediate_size": 1408, + "max_position_embeddings": 1024, + "mlp_bias": false, + "model_type": "llama", + "num_attention_heads": 8, + "num_hidden_layers": 14, + "num_key_value_heads": 4, + "pad_token_id": 0, + "pretraining_tp": 1, + "rms_norm_eps": 1e-05, + "rope_scaling": null, + "rope_theta": 100000.0, + "tie_word_embeddings": true, + "torch_dtype": "float32", + "transformers_version": "4.40.0", + "use_cache": true, + "vocab_size": 16384 +} \ No newline at end of file diff --git a/eval_results.json b/eval_results.json new file mode 100644 index 0000000..07881da --- /dev/null +++ b/eval_results.json @@ -0,0 +1,164 @@ +[ + { + "task": "hellaswag", + "benchmark": "HellaSwag", + "metric": "acc_norm", + "score": 0.27972515435172274, + "shots": 0, + "runtime_sec": 204.64, + "status": "success" + }, + { + "task": "piqa", + "benchmark": "PIQA", + "metric": "acc_norm", + "score": 0.5816104461371056, + "shots": 0, + "runtime_sec": 36.28, + "status": "success" + }, + { + "task": "winogrande", + "benchmark": "WinoGrande", + "metric": "acc", + "score": 0.5130228887134964, + "shots": 0, + "runtime_sec": 26.49, + "status": "success" + }, + { + "task": "boolq", + "benchmark": "BoolQ", + "metric": "acc", + "score": 0.6207951070336392, + "shots": 0, + "runtime_sec": 70.07, + "status": "success" + }, + { + "task": "arc_easy", + "benchmark": "ARC-Easy", + "metric": "acc_norm", + "score": 0.35942760942760943, + "shots": 0, + "runtime_sec": 44.26, + "status": "success" + }, + { + "task": "arc_challenge", + "benchmark": "ARC-Challenge", + "metric": "acc_norm", + "score": 0.24146757679180889, + "shots": 0, + "runtime_sec": 34.79, + "status": "success" + }, + { + "task": "openbookqa", + "benchmark": "OpenBookQA", + "metric": "acc_norm", + "score": 0.274, + "shots": 0, + "runtime_sec": 26.94, + "status": "success" + }, + { + "task": "commonsense_qa", + "benchmark": "CommonsenseQA", + "metric": "acc", + "score": 0.1941031941031941, + "shots": 0, + "runtime_sec": 29.94, + "status": "success" + }, + { + "task": "lambada_openai", + "benchmark": "LAMBADA", + "metric": "acc", + "score": 0.19076266252668347, + "shots": 0, + "runtime_sec": 75.64, + "status": "success" + }, + { + "task": "blimp", + "benchmark": "BLiMP", + "metric": "acc", + "score": 0.764268656716418, + "shots": 0, + "runtime_sec": 463.22, + "status": "success" + }, + { + "task": "mmlu", + "benchmark": "MMLU", + "metric": "acc", + "score": 0.23280159521435692, + "shots": 0, + "runtime_sec": 546.26, + "status": "success" + }, + { + "task": "wikitext", + "benchmark": "WikiText-2", + "metric": "word_perplexity", + "score": 55.30558314095939, + "shots": 0, + "runtime_sec": 59.4, + "status": "success" + }, + { + "task": "wikitext", + "benchmark": "WikiText-2", + "metric": "byte_perplexity", + "score": 2.117905168137186, + "shots": 0, + "runtime_sec": 53.65, + "status": "success" + }, + { + "task": "sciq", + "benchmark": "SciQ", + "metric": "acc_norm", + "score": 0.491, + "shots": 0, + "runtime_sec": 59.38, + "status": "success" + }, + { + "task": "copa", + "benchmark": "COPA", + "metric": "acc", + "score": 0.59, + "shots": 0, + "runtime_sec": 21.9, + "status": "success" + }, + { + "task": "race", + "benchmark": "RACE", + "metric": "acc", + "score": 0.25933014354066986, + "shots": 0, + "runtime_sec": 179.85, + "status": "success" + }, + { + "task": "swag", + "benchmark": "SWAG", + "metric": "acc_norm", + "score": 0.4239728081575527, + "shots": 0, + "runtime_sec": 169.58, + "status": "success" + }, + { + "task": "truthfulqa_mc2", + "benchmark": "TruthfulQA MC2", + "metric": "acc", + "score": 0.4401996862756814, + "shots": 0, + "runtime_sec": 74.59, + "status": "success" + } +] \ No newline at end of file diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..9fce1c8 --- /dev/null +++ b/generation_config.json @@ -0,0 +1,4 @@ +{ + "bos_token_id": 2, + "eos_token_id": 3 +} \ No newline at end of file diff --git a/model.safetensors b/model.safetensors new file mode 100644 index 0000000..54a6b28 --- /dev/null +++ b/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5f2e283c137ec35c23d5158b427c404014e08999b2e784f5aaf05e0d8238c7 +size 198778664 diff --git a/resume/ckpt.pt b/resume/ckpt.pt new file mode 100644 index 0000000..b88a1cc --- /dev/null +++ b/resume/ckpt.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08be3988a3a4a5486fa52024451da8c22a6f0e0eeae0f9372a81c1360ff0d8bf +size 600137155 diff --git a/resume/latest_step.txt b/resume/latest_step.txt new file mode 100644 index 0000000..f3b30f7 --- /dev/null +++ b/resume/latest_step.txt @@ -0,0 +1 @@ +11652 \ No newline at end of file diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..5d52ab8 --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,81056 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "<|pad|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "<|unk|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "<|bos|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "<|eos|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "<|mask|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "<|unk_text|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "<|sot|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 7, + "content": "<|eot|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 8, + "content": "<|system|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 9, + "content": "<|user|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 10, + "content": "<|assistant|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 11, + "content": "<|math|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 12, + "content": "<|expr|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 13, + "content": "<|answer|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 14, + "content": "<|code|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 15, + "content": "<|think|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 16, + "content": "<|end_of_think|>", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "NFKC" + }, + "pre_tokenizer": { + "type": "Sequence", + "pretokenizers": [ + { + "type": "Split", + "pattern": { + "Regex": "'(?i:[sdmt]|ll|ve|re)|[^\\r\\n\\p{L}\\p{N}]+|(?:\\s)[\\s]+|[\\p{L}]+|[\\p{N}]|[\\r\\n]" + }, + "behavior": "Isolated", + "invert": false + }, + { + "type": "ByteLevel", + "add_prefix_space": false, + "trim_offsets": true, + "use_regex": false + } + ] + }, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + } + ], + "pair": [ + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + } + ], + "special_tokens": {} + }, + "decoder": { + "type": "ByteLevel", + "add_prefix_space": true, + "trim_offsets": true, + "use_regex": true + }, + "model": { + "type": "BPE", + "dropout": null, + "unk_token": "<|unk|>", + "continuing_subword_prefix": null, + "end_of_word_suffix": null, + "fuse_unk": false, + "byte_fallback": false, + "ignore_merges": false, + "vocab": { + "<|pad|>": 0, + "<|unk|>": 1, + "<|bos|>": 2, + "<|eos|>": 3, + "<|mask|>": 4, + "<|unk_text|>": 5, + "<|sot|>": 6, + "<|eot|>": 7, + "<|system|>": 8, + "<|user|>": 9, + "<|assistant|>": 10, + "<|math|>": 11, + "<|expr|>": 12, + "<|answer|>": 13, + "<|code|>": 14, + "<|think|>": 15, + "<|end_of_think|>": 16, + "!": 17, + "\"": 18, + "#": 19, + "$": 20, + "%": 21, + "&": 22, + "'": 23, + "(": 24, + ")": 25, + "*": 26, + "+": 27, + ",": 28, + "-": 29, + ".": 30, + "/": 31, + "0": 32, + "1": 33, + "2": 34, + "3": 35, + "4": 36, + "5": 37, + "6": 38, + "7": 39, + "8": 40, + "9": 41, + ":": 42, + ";": 43, + "<": 44, + "=": 45, + ">": 46, + "?": 47, + "@": 48, + "A": 49, + "B": 50, + "C": 51, + "D": 52, + "E": 53, + "F": 54, + "G": 55, + "H": 56, + "I": 57, + "J": 58, + "K": 59, + "L": 60, + "M": 61, + "N": 62, + "O": 63, + "P": 64, + "Q": 65, + "R": 66, + "S": 67, + "T": 68, + "U": 69, + "V": 70, + "W": 71, + "X": 72, + "Y": 73, + "Z": 74, + "[": 75, + "\\": 76, + "]": 77, + "^": 78, + "_": 79, + "`": 80, + "a": 81, + "b": 82, + "c": 83, + "d": 84, + "e": 85, + "f": 86, + "g": 87, + "h": 88, + "i": 89, + "j": 90, + "k": 91, + "l": 92, + "m": 93, + "n": 94, + "o": 95, + "p": 96, + "q": 97, + "r": 98, + "s": 99, + "t": 100, + "u": 101, + "v": 102, + "w": 103, + "x": 104, + "y": 105, + "z": 106, + "{": 107, + "|": 108, + "}": 109, + "~": 110, + "¡": 111, + "¢": 112, + "£": 113, + "¤": 114, + "¥": 115, + "¦": 116, + "§": 117, + "¨": 118, + "©": 119, + "ª": 120, + "«": 121, + "¬": 122, + "®": 123, + "¯": 124, + "°": 125, + "±": 126, + "²": 127, + "³": 128, + "´": 129, + "µ": 130, + "¶": 131, + "·": 132, + "¸": 133, + "¹": 134, + "º": 135, + "»": 136, + "¼": 137, + "½": 138, + "¾": 139, + "¿": 140, + "À": 141, + "Á": 142, + "Â": 143, + "Ã": 144, + "Ä": 145, + "Å": 146, + "Æ": 147, + "Ç": 148, + "È": 149, + "É": 150, + "Ê": 151, + "Ë": 152, + "Ì": 153, + "Í": 154, + "Î": 155, + "Ï": 156, + "Ð": 157, + "Ñ": 158, + "Ò": 159, + "Ó": 160, + "Ô": 161, + "Õ": 162, + "Ö": 163, + "×": 164, + "Ø": 165, + "Ù": 166, + "Ú": 167, + "Û": 168, + "Ü": 169, + "Ý": 170, + "Þ": 171, + "ß": 172, + "à": 173, + "á": 174, + "â": 175, + "ã": 176, + "ä": 177, + "å": 178, + "æ": 179, + "ç": 180, + "è": 181, + "é": 182, + "ê": 183, + "ë": 184, + "ì": 185, + "í": 186, + "î": 187, + "ï": 188, + "ð": 189, + "ñ": 190, + "ò": 191, + "ó": 192, + "ô": 193, + "õ": 194, + "ö": 195, + "÷": 196, + "ø": 197, + "ù": 198, + "ú": 199, + "û": 200, + "ü": 201, + "ý": 202, + "þ": 203, + "ÿ": 204, + "Ā": 205, + "ā": 206, + "Ă": 207, + "ă": 208, + "Ą": 209, + "ą": 210, + "Ć": 211, + "ć": 212, + "Ĉ": 213, + "ĉ": 214, + "Ċ": 215, + "ċ": 216, + "Č": 217, + "č": 218, + "Ď": 219, + "ď": 220, + "Đ": 221, + "đ": 222, + "Ē": 223, + "ē": 224, + "Ĕ": 225, + "ĕ": 226, + "Ė": 227, + "ė": 228, + "Ę": 229, + "ę": 230, + "Ě": 231, + "ě": 232, + "Ĝ": 233, + "ĝ": 234, + "Ğ": 235, + "ğ": 236, + "Ġ": 237, + "ġ": 238, + "Ģ": 239, + "ģ": 240, + "Ĥ": 241, + "ĥ": 242, + "Ħ": 243, + "ħ": 244, + "Ĩ": 245, + "ĩ": 246, + "Ī": 247, + "ī": 248, + "Ĭ": 249, + "ĭ": 250, + "Į": 251, + "į": 252, + "İ": 253, + "ı": 254, + "IJ": 255, + "ij": 256, + "Ĵ": 257, + "ĵ": 258, + "Ķ": 259, + "ķ": 260, + "ĸ": 261, + "Ĺ": 262, + "ĺ": 263, + "Ļ": 264, + "ļ": 265, + "Ľ": 266, + "ľ": 267, + "Ŀ": 268, + "ŀ": 269, + "Ł": 270, + "ł": 271, + "Ń": 272, + "in": 273, + "th": 274, + "ĠĠ": 275, + "er": 276, + "an": 277, + "on": 278, + "re": 279, + "en": 280, + "at": 281, + ",Ġ": 282, + "es": 283, + "or": 284, + "the": 285, + "al": 286, + "ing": 287, + "st": 288, + "ĠĠĠĠ": 289, + "ti": 290, + "ou": 291, + "ar": 292, + "and": 293, + "ed": 294, + ".Ġ": 295, + "to": 296, + "is": 297, + "of": 298, + "le": 299, + "se": 300, + "it": 301, + "ic": 302, + "om": 303, + "as": 304, + "ent": 305, + "ac": 306, + "ion": 307, + "ro": 308, + "el": 309, + "il": 310, + "ch": 311, + "de": 312, + "tion": 313, + "be": 314, + "for": 315, + "ol": 316, + "ĠĠĠĠĠĠĠĠ": 317, + "ation": 318, + "am": 319, + "un": 320, + "ur": 321, + "ve": 322, + "=Ġ": 323, + "ow": 324, + "he": 325, + "ad": 326, + "ig": 327, + "all": 328, + "ĊĊ": 329, + "ec": 330, + "im": 331, + "com": 332, + "if": 333, + "ge": 334, + "ce": 335, + "ter": 336, + "ver": 337, + "Ġ=Ġ": 338, + "ul": 339, + "ab": 340, + "pl": 341, + "con": 342, + "res": 343, + "id": 344, + "wh": 345, + "ex": 346, + "us": 347, + "ir": 348, + "ay": 349, + "str": 350, + "ith": 351, + "ment": 352, + "ap": 353, + "tr": 354, + "--": 355, + "are": 356, + ":Ġ": 357, + "ts": 358, + "our": 359, + "with": 360, + "pro": 361, + "op": 362, + "su": 363, + "âĢ": 364, + "that": 365, + "em": 366, + "ers": 367, + "ist": 368, + "end": 369, + "ut": 370, + "ess": 371, + "pr": 372, + "ot": 373, + "ate": 374, + "ly": 375, + "mo": 376, + "ĊĠĠĠĠĠĠĠĠ": 377, + "ain": 378, + "um": 379, + "fr": 380, + "ke": 381, + "qu": 382, + "lo": 383, + "ther": 384, + "oun": 385, + "The": 386, + "di": 387, + "ne": 388, + "Ġ(": 389, + "me": 390, + "ity": 391, + "set": 392, + "igh": 393, + "int": 394, + "ag": 395, + "we": 396, + "sh": 397, + "out": 398, + "ction": 399, + "-Ġ": 400, + "ci": 401, + "ill": 402, + "od": 403, + "cl": 404, + "per": 405, + "In": 406, + "po": 407, + "so": 408, + "string": 409, + "wor": 410, + "pe": 411, + "by": 412, + "Th": 413, + "por": 414, + "est": 415, + "you": 416, + "li": 417, + "can": 418, + "from": 419, + "si": 420, + "gr": 421, + "sel": 422, + "ha": 423, + "one": 424, + "----": 425, + "te": 426, + "co": 427, + "gin": 428, + "ld": 429, + "ere": 430, + "ma": 431, + "der": 432, + "et": 433, + "ĊĠĠĠĠ": 434, + "sp": 435, + "du": 436, + ")Ġ": 437, + "fun": 438, + "ies": 439, + "age": 440, + "ple": 441, + "ine": 442, + "self": 443, + "ant": 444, + "ure": 445, + "begin": 446, + "par": 447, + "gh": 448, + "'s": 449, + "tic": 450, + "ct": 451, + "ass": 452, + "ome": 453, + "ight": 454, + "port": 455, + "ame": 456, + "ri": 457, + "form": 458, + "this": 459, + "ard": 460, + "+Ġ": 461, + "your": 462, + "was": 463, + "vi": 464, + "cre": 465, + "tur": 466, + "ally": 467, + "ach": 468, + "function": 469, + "their": 470, + "not": 471, + "ough": 472, + "ud": 473, + "call": 474, + "val": 475, + "ect": 476, + "fo": 477, + "ous": 478, + "ound": 479, + "ast": 480, + "ans": 481, + "ese": 482, + "pre": 483, + "Ġ+Ġ": 484, + "able": 485, + "vel": 486, + "ile": 487, + "iz": 488, + "print": 489, + "ance": 490, + "ations": 491, + "do": 492, + "âĢĻ": 493, + "ated": 494, + "have": 495, + "ell": 496, + "ind": 497, + "ence": 498, + "ue": 499, + "up": 500, + "pres": 501, + "dis": 502, + "ty": 503, + "king": 504, + "fer": 505, + "au": 506, + "man": 507, + "bo": 508, + "ary": 509, + "ong": 510, + "ould": 511, + "no": 512, + "ich": 513, + "##": 514, + "its": 515, + "they": 516, + "tions": 517, + "ical": 518, + "enti": 519, + "act": 520, + "cont": 521, + "ust": 522, + "ber": 523, + "ef": 524, + "turn": 525, + "ks": 526, + "ves": 527, + "ati": 528, + "comment": 529, + "ear": 530, + "**": 531, + "ev": 532, + "af": 533, + "ign": 534, + "__": 535, + "col": 536, + "will": 537, + "ces": 538, + "list": 539, + "og": 540, + "but": 541, + "go": 542, + "sion": 543, + "ties": 544, + "num": 545, + "put": 546, + "ip": 547, + "ents": 548, + "#Ġ": 549, + "ack": 550, + "br": 551, + "ser": 552, + "about": 553, + "own": 554, + "ace": 555, + "sy": 556, + "ever": 557, + "some": 558, + "ren": 559, + "other": 560, + "has": 561, + "more": 562, + "ĠâĢ": 563, + "which": 564, + "ating": 565, + "Ġ-Ġ": 566, + "av": 567, + "comm": 568, + "return": 569, + "art": 570, + "ep": 571, + "Wh": 572, + "inter": 573, + "ta": 574, + "ors": 575, + "get": 576, + "aw": 577, + "An": 578, + "ext": 579, + "time": 580, + "ater": 581, + "ang": 582, + "low": 583, + "ata": 584, + "ish": 585, + "cess": 586, + "als": 587, + "ory": 588, + "into": 589, + "cur": 590, + "ild": 591, + "ble": 592, + "them": 593, + "ice": 594, + "--------": 595, + "def": 596, + "This": 597, + "ob": 598, + "ew": 599, + "how": 600, + "):": 601, + "ph": 602, + "these": 603, + "ful": 604, + "ite": 605, + "ult": 606, + "Ch": 607, + "coun": 608, + "ase": 609, + "import": 610, + "tive": 611, + "new": 612, + "cor": 613, + "over": 614, + ";Ġ": 615, + "bl": 616, + "under": 617, + "rough": 618, + "ari": 619, + "row": 620, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ": 621, + "like": 622, + "bet": 623, + "ange": 624, + "ments": 625, + "stand": 626, + "gen": 627, + "lear": 628, + "who": 629, + "hel": 630, + "ings": 631, + "data": 632, + "ates": 633, + "eng": 634, + "dif": 635, + "*Ġ": 636, + "also": 637, + "arch": 638, + "==": 639, + "ree": 640, + "des": 641, + "now": 642, + "any": 643, + "It": 644, + "ds": 645, + "ving": 646, + "olog": 647, + "work": 648, + "ays": 649, + "ten": 650, + "ath": 651, + "cr": 652, + "os": 653, + "ial": 654, + "min": 655, + "\"Ġ": 656, + "cent": 657, + "comp": 658, + "irst": 659, + "ia": 660, + "ok": 661, + "when": 662, + "St": 663, + "fl": 664, + "were": 665, + "use": 666, + "oc": 667, + "tim": 668, + "vid": 669, + "ore": 670, + "while": 671, + "bu": 672, + "fe": 673, + "ven": 674, + "his": 675, + "rel": 676, + "her": 677, + "ual": 678, + "ople": 679, + "read": 680, + "Un": 681, + "such": 682, + "app": 683, + "Con": 684, + "help": 685, + "ting": 686, + "tw": 687, + "fic": 688, + "ms": 689, + "pos": 690, + "spec": 691, + "ning": 692, + "through": 693, + "ific": 694, + "==Ġ": 695, + "Ġ\"": 696, + "main": 697, + "fore": 698, + "ide": 699, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 700, + "ved": 701, + "soci": 702, + "cho": 703, + "incl": 704, + "ele": 705, + "ire": 706, + "ens": 707, + "used": 708, + "reg": 709, + "stud": 710, + "there": 711, + "arr": 712, + "alth": 713, + "âĢĿ": 714, + "input": 715, + "people": 716, + "may": 717, + "first": 718, + "loc": 719, + "dr": 720, + "mer": 721, + "than": 722, + "ss": 723, + "class": 724, + "ak": 725, + "),Ġ": 726, + "ys": 727, + "ative": 728, + "Ġ==Ġ": 729, + "ures": 730, + "vis": 731, + "uring": 732, + "play": 733, + "stru": 734, + "what": 735, + "ely": 736, + "name": 737, + "čĊ": 738, + "Ex": 739, + "stem": 740, + "ail": 741, + "mon": 742, + "med": 743, + "ict": 744, + "differ": 745, + "need": 746, + "del": 747, + "sub": 748, + "year": 749, + "cer": 750, + "ular": 751, + "ities": 752, + "pt": 753, + "produ": 754, + "()": 755, + "tri": 756, + "day": 757, + "add": 758, + "ose": 759, + "tain": 760, + "velop": 761, + "fi": 762, + "reat": 763, + "Al": 764, + "expl": 765, + "les": 766, + "where": 767, + "ced": 768, + "line": 769, + "my": 770, + "mar": 771, + "sc": 772, + "exam": 773, + "ility": 774, + "?Ġ": 775, + "cons": 776, + "Re": 777, + "valu": 778, + "ween": 779, + "\"\"": 780, + "cy": 781, + "ics": 782, + "ection": 783, + "pers": 784, + "..": 785, + "high": 786, + "wr": 787, + "most": 788, + "How": 789, + "peri": 790, + "mat": 791, + "vers": 792, + "chn": 793, + "between": 794, + "pol": 795, + "sur": 796, + "come": 797, + "vari": 798, + "resp": 799, + "many": 800, + "less": 801, + "En": 802, + "gu": 803, + "old": 804, + "ational": 805, + "inv": 806, + "ause": 807, + "For": 808, + "land": 809, + "ise": 810, + "system": 811, + "requ": 812, + "been": 813, + "As": 814, + "had": 815, + "gi": 816, + "using": 817, + "ife": 818, + "would": 819, + "develop": 820, + "ĵĠ": 821, + "ra": 822, + "tal": 823, + "thing": 824, + "else": 825, + "two": 826, + "ased": 827, + "try": 828, + "!Ġ": 829, + "sol": 830, + "acti": 831, + "ress": 832, + "world": 833, + "each": 834, + "We": 835, + "ters": 836, + "ĠâĢĵĠ": 837, + "tu": 838, + "ences": 839, + "then": 840, + "search": 841, + "understand": 842, + "every": 843, + "ential": 844, + "only": 845, + "let": 846, + "ick": 847, + "trans": 848, + "sign": 849, + "commun": 850, + "health": 851, + "gan": 852, + "start": 853, + "inst": 854, + "just": 855, + "ness": 856, + "uc": 857, + "He": 858, + "cri": 859, + "air": 860, + "tern": 861, + "ects": 862, + "sim": 863, + ").Ġ": 864, + "vir": 865, + "range": 866, + "ian": 867, + "bec": 868, + "char": 869, + "techn": 870, + "ĉĉ": 871, + "(\"": 872, + "sk": 873, + "ze": 874, + "tical": 875, + "ted": 876, + "hist": 877, + "tem": 878, + "sup": 879, + "child": 880, + "lin": 881, + "test": 882, + "know": 883, + "led": 884, + "ages": 885, + "number": 886, + "ward": 887, + "By": 888, + "process": 889, + "back": 890, + "####": 891, + "mem": 892, + "sw": 893, + "different": 894, + "fol": 895, + "pu": 896, + "even": 897, + "ily": 898, + "))": 899, + "pow": 900, + "part": 901, + "ps": 902, + "cul": 903, + "sure": 904, + "could": 905, + "tional": 906, + "ature": 907, + "way": 908, + "Ste": 909, + "que": 910, + "aph": 911, + "'t": 912, + "find": 913, + "ques": 914, + "ins": 915, + "Tr": 916, + "life": 917, + "Com": 918, + "ger": 919, + "Ar": 920, + "cour": 921, + "right": 922, + "sm": 923, + "type": 924, + "well": 925, + "ons": 926, + "gener": 927, + "make": 928, + "sing": 929, + "adi": 930, + "inform": 931, + "sum": 932, + "comple": 933, + "very": 934, + "present": 935, + "plic": 936, + "oy": 937, + "ology": 938, + "includ": 939, + "during": 940, + "value": 941, + "ship": 942, + "pression": 943, + "âĢĿĠ": 944, + "hum": 945, + "tle": 946, + "care": 947, + "plan": 948, + "see": 949, + "dec": 950, + "water": 951, + "ject": 952, + "posi": 953, + "fac": 954, + "eff": 955, + "bre": 956, + "lab": 957, + "To": 958, + "Ġ*Ġ": 959, + "tra": 960, + "bi": 961, + "ution": 962, + "inde": 963, + "bel": 964, + "ave": 965, + "incre": 966, + "Ad": 967, + "cus": 968, + "divid": 969, + "ices": 970, + "ider": 971, + "fin": 972, + "learn": 973, + "Pro": 974, + "lar": 975, + "cap": 976, + "key": 977, + "'Ġ": 978, + "gram": 979, + "lead": 980, + "car": 981, + "exp": 982, + "ited": 983, + "Ġ__": 984, + "rol": 985, + "place": 986, + "----------------": 987, + "ie": 988, + "gy": 989, + "fam": 990, + "power": 991, + "found": 992, + "off": 993, + "person": 994, + "oth": 995, + "after": 996, + "should": 997, + "before": 998, + "long": 999, + "ety": 1000, + "So": 1001, + "Step": 1002, + "those": 1003, + "ĠâĢľ": 1004, + "result": 1005, + "within": 1006, + "ism": 1007, + "pop": 1008, + "They": 1009, + "ions": 1010, + "being": 1011, + "ability": 1012, + "What": 1013, + "====": 1014, + "down": 1015, + "red": 1016, + "chool": 1017, + "iter": 1018, + "ho": 1019, + "ply": 1020, + "rect": 1021, + "These": 1022, + "You": 1023, + "experi": 1024, + "ples": 1025, + "If": 1026, + "research": 1027, + "ways": 1028, + "follow": 1029, + "path": 1030, + "ord": 1031, + "allow": 1032, + "aren": 1033, + "equ": 1034, + "both": 1035, + "ĊĊĠĠĠĠ": 1036, + "bal": 1037, + "ond": 1038, + "view": 1039, + "count": 1040, + "grou": 1041, + "('": 1042, + "\")": 1043, + "serv": 1044, + "meric": 1045, + "move": 1046, + "state": 1047, + "adv": 1048, + "fact": 1049, + "show": 1050, + "conn": 1051, + "Americ": 1052, + "file": 1053, + "lect": 1054, + "iti": 1055, + "graph": 1056, + "tuple": 1057, + "grow": 1058, + "ink": 1059, + "uch": 1060, + "ft": 1061, + "vide": 1062, + "ize": 1063, + "py": 1064, + "clo": 1065, + "she": 1066, + "hand": 1067, + "ized": 1068, + "ually": 1069, + "real": 1070, + "ength": 1071, + "design": 1072, + "appro": 1073, + "aid": 1074, + "uni": 1075, + "times": 1076, + "because": 1077, + "though": 1078, + "years": 1079, + "gg": 1080, + "example": 1081, + "rent": 1082, + "individ": 1083, + "ights": 1084, + "contin": 1085, + "thod": 1086, + "create": 1087, + "nam": 1088, + "cept": 1089, + "viron": 1090, + "around": 1091, + "might": 1092, + "struct": 1093, + "arm": 1094, + "/Ġ": 1095, + "word": 1096, + "organ": 1097, + "fil": 1098, + "light": 1099, + "',Ġ": 1100, + "does": 1101, + "ulti": 1102, + "cover": 1103, + "important": 1104, + "ody": 1105, + "Im": 1106, + "ner": 1107, + "ener": 1108, + "information": 1109, + "ca": 1110, + "level": 1111, + "called": 1112, + "pass": 1113, + "ross": 1114, + "sci": 1115, + "action": 1116, + ">Ġ": 1117, + "length": 1118, + "But": 1119, + "ster": 1120, + "oper": 1121, + "iting": 1122, + "ected": 1123, + "build": 1124, + "prom": 1125, + "head": 1126, + "provid": 1127, + "text": 1128, + "pi": 1129, + "ases": 1130, + "publ": 1131, + "bers": 1132, + "hy": 1133, + "cord": 1134, + "dist": 1135, + "ital": 1136, + "âĢľ": 1137, + "left": 1138, + "Pr": 1139, + "No": 1140, + "mis": 1141, + "side": 1142, + "sts": 1143, + "ization": 1144, + "Fr": 1145, + "Section": 1146, + "ories": 1147, + "dition": 1148, + "On": 1149, + "cal": 1150, + "made": 1151, + "ort": 1152, + "cial": 1153, + "kn": 1154, + "men": 1155, + "order": 1156, + "ive": 1157, + "prof": 1158, + "open": 1159, + "invol": 1160, + "cell": 1161, + "')": 1162, + "based": 1163, + "often": 1164, + "again": 1165, + "top": 1166, + "gre": 1167, + "nor": 1168, + "ape": 1169, + "food": 1170, + "ude": 1171, + "index": 1172, + "Answ": 1173, + "students": 1174, + "consider": 1175, + "pot": 1176, + "ref": 1177, + "ub": 1178, + "anal": 1179, + "Ġ'": 1180, + "dict": 1181, + "append": 1182, + "pec": 1183, + "len": 1184, + "model": 1185, + "train": 1186, + "max": 1187, + "ling": 1188, + "method": 1189, + "inte": 1190, + "There": 1191, + "ural": 1192, + "čĊĠĠĠĠ": 1193, + "small": 1194, + "ared": 1195, + "change": 1196, + "environ": 1197, + ",Ġ\"": 1198, + "including": 1199, + "proble": 1200, + "%Ġ": 1201, + "gl": 1202, + "Answer": 1203, + "til": 1204, + "study": 1205, + "sever": 1206, + "ious": 1207, + "next": 1208, + "chall": 1209, + "ants": 1210, + "ality": 1211, + "take": 1212, + "vity": 1213, + "vely": 1214, + "mean": 1215, + "ax": 1216, + "usion": 1217, + "When": 1218, + "much": 1219, + "kes": 1220, + "school": 1221, + "gs": 1222, + "pri": 1223, + "current": 1224, + "typ": 1225, + "ied": 1226, + "identi": 1227, + "ends": 1228, + "De": 1229, + "point": 1230, + "various": 1231, + "size": 1232, + "human": 1233, + "body": 1234, + "acter": 1235, + "cle": 1236, + "lim": 1237, + "cing": 1238, + "multi": 1239, + "sible": 1240, + "flu": 1241, + "ris": 1242, + "program": 1243, + "signific": 1244, + "known": 1245, + "eld": 1246, + "ask": 1247, + "rodu": 1248, + "ale": 1249, + "iness": 1250, + "ists": 1251, + "gether": 1252, + "respon": 1253, + ").": 1254, + "ources": 1255, + "aff": 1256, + "Ġ<": 1257, + "same": 1258, + "ines": 1259, + "ake": 1260, + "redu": 1261, + "good": 1262, + "cep": 1263, + "specific": 1264, + "learning": 1265, + "ars": 1266, + "sl": 1267, + "children": 1268, + "fri": 1269, + "mental": 1270, + "omen": 1271, + "item": 1272, + "ade": 1273, + "impro": 1274, + "mus": 1275, + "And": 1276, + "imp": 1277, + "net": 1278, + "versity": 1279, + "ances": 1280, + "feel": 1281, + "anti": 1282, + "want": 1283, + "ry": 1284, + "ator": 1285, + "ash": 1286, + "leg": 1287, + "ince": 1288, + "att": 1289, + "ically": 1290, + "step": 1291, + "Be": 1292, + "comes": 1293, + "However": 1294, + "One": 1295, + "chang": 1296, + "onom": 1297, + "educ": 1298, + "rand": 1299, + "\"\"\"": 1300, + "ns": 1301, + "angu": 1302, + "cu": 1303, + "social": 1304, + "understanding": 1305, + "support": 1306, + "suc": 1307, + "bus": 1308, + "dig": 1309, + "making": 1310, + "control": 1311, + "ills": 1312, + "Pl": 1313, + "New": 1314, + "oring": 1315, + "perform": 1316, + "prot": 1317, + "must": 1318, + ".,Ġ": 1319, + "ones": 1320, + "issu": 1321, + "ood": 1322, + "Ac": 1323, + "did": 1324, + "Ġ/Ġ": 1325, + "ished": 1326, + "ately": 1327, + "arti": 1328, + "pur": 1329, + "âĢĶ": 1330, + "ateg": 1331, + "atch": 1332, + "ults": 1333, + "better": 1334, + "ired": 1335, + "ey": 1336, + "together": 1337, + "gover": 1338, + "ĊĠ": 1339, + "ben": 1340, + "mater": 1341, + "ah": 1342, + "čĊĠĠĠĠĠĠĠĠ": 1343, + "aging": 1344, + "bin": 1345, + "run": 1346, + "alse": 1347, + "face": 1348, + "sive": 1349, + "history": 1350, + "here": 1351, + "spe": 1352, + "teach": 1353, + "others": 1354, + "ket": 1355, + "three": 1356, + "sit": 1357, + "Wor": 1358, + "dep": 1359, + "gn": 1360, + "treat": 1361, + "ather": 1362, + "``": 1363, + "date": 1364, + "conf": 1365, + "him": 1366, + "ton": 1367, + "vol": 1368, + "another": 1369, + "ground": 1370, + "ient": 1371, + "At": 1372, + "verse": 1373, + "tribut": 1374, + "mp": 1375, + "remain": 1376, + "ror": 1377, + "something": 1378, + "ann": 1379, + "||": 1380, + "words": 1381, + "last": 1382, + "ctr": 1383, + "due": 1384, + "ark": 1385, + "ĊĊĠĠĠĠĠĠĠĠ": 1386, + "proper": 1387, + "Au": 1388, + "contain": 1389, + "without": 1390, + "values": 1391, + "dies": 1392, + "among": 1393, + "Le": 1394, + "group": 1395, + "war": 1396, + "term": 1397, + "о": 1398, + "ury": 1399, + "paren": 1400, + "cip": 1401, + "Col": 1402, + "keep": 1403, + "eas": 1404, + "explore": 1405, + "said": 1406, + "complex": 1407, + "ective": 1408, + "ulation": 1409, + "langu": 1410, + "user": 1411, + "works": 1412, + "array": 1413, + "don": 1414, + "den": 1415, + "significant": 1416, + "thor": 1417, + "happ": 1418, + "eck": 1419, + "direct": 1420, + "Some": 1421, + "look": 1422, + "init": 1423, + "clusion": 1424, + "inal": 1425, + "tural": 1426, + "mal": 1427, + "jo": 1428, + "parti": 1429, + "appe": 1430, + "ouse": 1431, + "include": 1432, + "Ċĉĉ": 1433, + "acy": 1434, + "Ġ=Ġ[": 1435, + "challeng": 1436, + "dom": 1437, + "book": 1438, + "els": 1439, + "ost": 1440, + "govern": 1441, + "American": 1442, + "board": 1443, + "saf": 1444, + "bor": 1445, + "true": 1446, + "secon": 1447, + "best": 1448, + "ues": 1449, + "prac": 1450, + "uro": 1451, + "success": 1452, + "position": 1453, + "tradi": 1454, + "]Ġ": 1455, + "II": 1456, + "home": 1457, + "become": 1458, + "aim": 1459, + "node": 1460, + "np": 1461, + "sequ": 1462, + "anim": 1463, + "public": 1464, + "âĢĵ": 1465, + "With": 1466, + "ck": 1467, + "non": 1468, + "ency": 1469, + "bas": 1470, + "ests": 1471, + "pat": 1472, + "vent": 1473, + "too": 1474, + "wards": 1475, + "common": 1476, + "ints": 1477, + "ilar": 1478, + "several": 1479, + "pati": 1480, + "az": 1481, + "uals": 1482, + "amp": 1483, + "agement": 1484, + "energy": 1485, + "urther": 1486, + "prim": 1487, + "total": 1488, + "role": 1489, + "pain": 1490, + "Now": 1491, + "access": 1492, + "ats": 1493, + "ank": 1494, + "essential": 1495, + "Sh": 1496, + "е": 1497, + "ological": 1498, + "tool": 1499, + "law": 1500, + "evalu": 1501, + "apter": 1502, + "Is": 1503, + "tail": 1504, + "Or": 1505, + "])": 1506, + "atures": 1507, + "agine": 1508, + "ib": 1509, + "mic": 1510, + "local": 1511, + "partic": 1512, + "ount": 1513, + "asp": 1514, + "sed": 1515, + "tar": 1516, + "uses": 1517, + "enter": 1518, + "glo": 1519, + "development": 1520, + "tract": 1521, + "########": 1522, + "ession": 1523, + "systems": 1524, + "against": 1525, + "&Ġ": 1526, + "provide": 1527, + "case": 1528, + "relation": 1529, + "ids": 1530, + "colle": 1531, + "ote": 1532, + "orig": 1533, + "sen": 1534, + "family": 1535, + "ctions": 1536, + "ute": 1537, + "ason": 1538, + "represent": 1539, + "nat": 1540, + "dise": 1541, + "core": 1542, + "great": 1543, + "means": 1544, + "ource": 1545, + "ric": 1546, + "indu": 1547, + "ploy": 1548, + "bro": 1549, + "ently": 1550, + "certain": 1551, + "round": 1552, + "lower": 1553, + "ier": 1554, + "things": 1555, + "phys": 1556, + "vision": 1557, + "ending": 1558, + "still": 1559, + "unique": 1560, + "sions": 1561, + "meas": 1562, + "color": 1563, + "expression": 1564, + "jects": 1565, + "econom": 1566, + "emo": 1567, + "blo": 1568, + "ll": 1569, + "discus": 1570, + "dev": 1571, + "benef": 1572, + "across": 1573, + "uture": 1574, + "business": 1575, + "ead": 1576, + "ying": 1577, + "draw": 1578, + "ken": 1579, + "''": 1580, + "cording": 1581, + "along": 1582, + "format": 1583, + "area": 1584, + "That": 1585, + "а": 1586, + "code": 1587, + "Let": 1588, + "potential": 1589, + "ication": 1590, + "ials": 1591, + "character": 1592, + "ff": 1593, + "outh": 1594, + "Ċĉ": 1595, + "rele": 1596, + "ecti": 1597, + "following": 1598, + "cts": 1599, + "particular": 1600, + "hol": 1601, + "ĊĊĊ": 1602, + "Uni": 1603, + "nec": 1604, + "game": 1605, + "None": 1606, + "mil": 1607, + "electr": 1608, + "sor": 1609, + "mind": 1610, + "cogn": 1611, + "actions": 1612, + "fort": 1613, + "tre": 1614, + "ards": 1615, + "Co": 1616, + "cult": 1617, + "und": 1618, + "techni": 1619, + "think": 1620, + "possible": 1621, + "why": 1622, + "Int": 1623, + "initi": 1624, + "mi": 1625, + "ilities": 1626, + "flo": 1627, + "second": 1628, + "special": 1629, + "random": 1630, + "stat": 1631, + "interest": 1632, + "descri": 1633, + "['": 1634, + "inf": 1635, + ",\"Ġ": 1636, + "room": 1637, + "',Ġ'": 1638, + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 1639, + "dic": 1640, + "ination": 1641, + "emp": 1642, + "izing": 1643, + "skills": 1644, + "image": 1645, + "dam": 1646, + "ledge": 1647, + "rest": 1648, + "check": 1649, + "member": 1650, + "thon": 1651, + "List": 1652, + "ert": 1653, + "offer": 1654, + "hold": 1655, + "bir": 1656, + "Can": 1657, + "loss": 1658, + "women": 1659, + "Gr": 1660, + "whe": 1661, + "bed": 1662, + "individuals": 1663, + "types": 1664, + "acc": 1665, + "early": 1666, + "ush": 1667, + "lay": 1668, + "large": 1669, + "course": 1670, + "Jo": 1671, + "space": 1672, + "Ġ&Ġ": 1673, + "ams": 1674, + "language": 1675, + "abl": 1676, + "avail": 1677, + "plac": 1678, + "future": 1679, + "oks": 1680, + "associ": 1681, + "и": 1682, + "========": 1683, + "exist": 1684, + "rop": 1685, + "tics": 1686, + "havi": 1687, + "ht": 1688, + "fully": 1689, + "approach": 1690, + "thes": 1691, + "post": 1692, + "given": 1693, + "applic": 1694, + "df": 1695, + "Ġ_": 1696, + "write": 1697, + "decis": 1698, + "Af": 1699, + "relationship": 1700, + "community": 1701, + "histor": 1702, + "cop": 1703, + "working": 1704, + "vo": 1705, + "exper": 1706, + "labor": 1707, + "Under": 1708, + "stu": 1709, + "aring": 1710, + "report": 1711, + "stit": 1712, + "national": 1713, + "log": 1714, + "roduction": 1715, + "standing": 1716, + "chem": 1717, + "period": 1718, + "ths": 1719, + "cir": 1720, + "necess": 1721, + "ball": 1722, + "']": 1723, + "ables": 1724, + "Cl": 1725, + "Ġ-": 1726, + "story": 1727, + "dri": 1728, + "wid": 1729, + "plot": 1730, + "son": 1731, + "mun": 1732, + "until": 1733, + "ames": 1734, + "Di": 1735, + "root": 1736, + "few": 1737, + "field": 1738, + "ieve": 1739, + "natural": 1740, + "ition": 1741, + "strong": 1742, + "moder": 1743, + "influ": 1744, + "True": 1745, + "mb": 1746, + "portun": 1747, + "ended": 1748, + "Se": 1749, + "Ġ`": 1750, + "ctor": 1751, + "Nor": 1752, + "near": 1753, + "today": 1754, + "practic": 1755, + "//": 1756, + "olution": 1757, + "selves": 1758, + "address": 1759, + "Chr": 1760, + "experience": 1761, + "har": 1762, + "asing": 1763, + "ER": 1764, + "eth": 1765, + "bur": 1766, + "load": 1767, + "stry": 1768, + "bs": 1769, + "stri": 1770, + "IN": 1771, + "scienti": 1772, + "upon": 1773, + "aper": 1774, + "ysis": 1775, + "close": 1776, + "maintain": 1777, + ":**": 1778, + "impact": 1779, + "...": 1780, + "ption": 1781, + "shape": 1782, + "results": 1783, + "Ap": 1784, + "forms": 1785, + "jour": 1786, + "quality": 1787, + "aster": 1788, + "resources": 1789, + "technology": 1790, + "lock": 1791, + "ove": 1792, + "practi": 1793, + "employ": 1794, + "ime": 1795, + "Dr": 1796, + "mag": 1797, + "ont": 1798, + "\",Ġ": 1799, + "gain": 1800, + "fig": 1801, + "mess": 1802, + "ustom": 1803, + "improve": 1804, + "plant": 1805, + "clear": 1806, + "contribut": 1807, + "fill": 1808, + "since": 1809, + "behavi": 1810, + "lit": 1811, + "ĠĠĠ": 1812, + "personal": 1813, + "Bo": 1814, + "ators": 1815, + "towards": 1816, + "ible": 1817, + "issues": 1818, + "mid": 1819, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 1820, + "occur": 1821, + "poli": 1822, + "Ġ$": 1823, + "Me": 1824, + "individual": 1825, + "ports": 1826, + "sal": 1827, + "rece": 1828, + "ney": 1829, + "points": 1830, + "idence": 1831, + "opportun": 1832, + "risk": 1833, + "Li": 1834, + "Br": 1835, + "areas": 1836, + "University": 1837, + "Des": 1838, + "none": 1839, + "won": 1840, + "sty": 1841, + "spir": 1842, + "author": 1843, + "wee": 1844, + "la": 1845, + "ches": 1846, + "ample": 1847, + "čĊčĊ": 1848, + "mill": 1849, + "Ġ<Ġ": 1850, + "ditions": 1851, + "liter": 1852, + "âĢĻĠ": 1853, + "ina": 1854, + "pattern": 1855, + "free": 1856, + "event": 1857, + "break": 1858, + "say": 1859, + "While": 1860, + ".\"": 1861, + "seem": 1862, + "Par": 1863, + "knowledge": 1864, + "atives": 1865, + "instance": 1866, + "cles": 1867, + "pan": 1868, + "Res": 1869, + "integer": 1870, + "always": 1871, + "available": 1872, + "United": 1873, + "concer": 1874, + "polic": 1875, + "wa": 1876, + "wer": 1877, + "{}": 1878, + "youn": 1879, + "piec": 1880, + "needs": 1881, + "plement": 1882, + "similar": 1883, + "country": 1884, + "four": 1885, + "education": 1886, + "ili": 1887, + "challenges": 1888, + "jor": 1889, + "After": 1890, + "gine": 1891, + "big": 1892, + "asc": 1893, + "ÑĤ": 1894, + "establ": 1895, + "map": 1896, + "###Ġ": 1897, + "writ": 1898, + "growth": 1899, + "flow": 1900, + "Sy": 1901, + "pose": 1902, + "government": 1903, + "Through": 1904, + "vities": 1905, + "ension": 1906, + "mark": 1907, + "throughout": 1908, + "hard": 1909, + "Ġ+": 1910, + "termin": 1911, + "spl": 1912, + "nu": 1913, + "ready": 1914, + "dy": 1915, + "CO": 1916, + "oney": 1917, + "Dis": 1918, + "met": 1919, + "ane": 1920, + "bar": 1921, + "aged": 1922, + "atic": 1923, + "structure": 1924, + "helps": 1925, + "US": 1926, + "ident": 1927, + "elements": 1928, + "reach": 1929, + "changes": 1930, + "Euro": 1931, + "Ġ:Ġ": 1932, + "Ġ,Ġ": 1933, + "Ph": 1934, + "sib": 1935, + "focus": 1936, + "tell": 1937, + "Expression": 1938, + "mor": 1939, + "effic": 1940, + "ensure": 1941, + "lines": 1942, + "target": 1943, + "nal": 1944, + "vation": 1945, + "past": 1946, + "],Ġ": 1947, + "cru": 1948, + "ped": 1949, + "modern": 1950, + "ands": 1951, + "Pe": 1952, + "Christ": 1953, + "century": 1954, + "kind": 1955, + "house": 1956, + "wind": 1957, + "compu": 1958, + "music": 1959, + "problems": 1960, + "far": 1961, + "н": 1962, + "conditions": 1963, + "problem": 1964, + "|Ġ": 1965, + "ours": 1966, + "preci": 1967, + "She": 1968, + "Med": 1969, + "global": 1970, + "ler": 1971, + "oking": 1972, + "having": 1973, + "later": 1974, + "ID": 1975, + "lives": 1976, + "hor": 1977, + "building": 1978, + "`Ġ": 1979, + "questions": 1980, + "Indi": 1981, + "unit": 1982, + "Mar": 1983, + "tries": 1984, + "disease": 1985, + "recogn": 1986, + "friend": 1987, + "Val": 1988, + "counter": 1989, + "aking": 1990, + "factors": 1991, + "pho": 1992, + "discover": 1993, + "output": 1994, + "ox": 1995, + "levels": 1996, + "joy": 1997, + "numbers": 1998, + "environment": 1999, + "valid": 2000, + "sound": 2001, + "team": 2002, + "someone": 2003, + "away": 2004, + "Ġ[": 2005, + "active": 2006, + "stre": 2007, + "Introduction": 2008, + "colum": 2009, + "custom": 2010, + "beli": 2011, + "weight": 2012, + "inking": 2013, + "city": 2014, + ".Ġ(": 2015, + "cultural": 2016, + "vil": 2017, + "player": 2018, + "ined": 2019, + "ali": 2020, + "mit": 2021, + "experiences": 2022, + "ST": 2023, + "Ġ>Ġ": 2024, + "Europe": 2025, + "hip": 2026, + "Te": 2027, + "cost": 2028, + "****": 2029, + "ides": 2030, + "Ear": 2031, + "rix": 2032, + "ially": 2033, + "ges": 2034, + "groups": 2035, + "fric": 2036, + "ember": 2037, + "refer": 2038, + "techniques": 2039, + "ww": 2040, + "bon": 2041, + "species": 2042, + "World": 2043, + "further": 2044, + "cause": 2045, + "NA": 2046, + "full": 2047, + "ÃĹ": 2048, + "continu": 2049, + "Ro": 2050, + "prin": 2051, + "ender": 2052, + "ections": 2053, + "blood": 2054, + "pen": 2055, + "makes": 2056, + "ban": 2057, + "Er": 2058, + "emer": 2059, + "days": 2060, + "lik": 2061, + "Imagine": 2062, + "table": 2063, + "preh": 2064, + "posed": 2065, + "major": 2066, + "anced": 2067, + "ero": 2068, + "practice": 2069, + "strateg": 2070, + "utions": 2071, + "amount": 2072, + "Man": 2073, + "vious": 2074, + "project": 2075, + "tools": 2076, + "allows": 2077, + "'re": 2078, + "aries": 2079, + "creating": 2080, + "particip": 2081, + "label": 2082, + "communities": 2083, + ",âĢĿĠ": 2084, + "hab": 2085, + "profession": 2086, + "States": 2087, + "activities": 2088, + "share": 2089, + "AR": 2090, + "Your": 2091, + "going": 2092, + "medi": 2093, + "sugg": 2094, + "science": 2095, + "short": 2096, + "materials": 2097, + "whether": 2098, + "grad": 2099, + "analy": 2100, + "continue": 2101, + "stories": 2102, + "relig": 2103, + "][": 2104, + "treatment": 2105, + "object": 2106, + "events": 2107, + "oid": 2108, + "sent": 2109, + "cells": 2110, + "split": 2111, + "é": 2112, + "online": 2113, + "icate": 2114, + "physical": 2115, + "little": 2116, + "young": 2117, + "sof": 2118, + "regard": 2119, + "centr": 2120, + "squ": 2121, + "give": 2122, + "ental": 2123, + "ery": 2124, + "erc": 2125, + "Str": 2126, + "pay": 2127, + "Understanding": 2128, + "God": 2129, + "Rec": 2130, + "items": 2131, + "May": 2132, + "everyone": 2133, + "Inter": 2134, + "Conclusion": 2135, + "argu": 2136, + "Cre": 2137, + "require": 2138, + "temper": 2139, + "Ne": 2140, + "clim": 2141, + "ining": 2142, + "living": 2143, + "methods": 2144, + "associated": 2145, + "oman": 2146, + "corpor": 2147, + "All": 2148, + "temp": 2149, + "coming": 2150, + "ening": 2151, + "critical": 2152, + "fy": 2153, + "situ": 2154, + "nature": 2155, + "Po": 2156, + ":**Ġ": 2157, + "Joh": 2158, + "question": 2159, + "False": 2160, + "heart": 2161, + "shap": 2162, + "tree": 2163, + "hal": 2164, + "compon": 2165, + "Afric": 2166, + "ched": 2167, + "members": 2168, + "io": 2169, + "popular": 2170, + "prevent": 2171, + "Pol": 2172, + "оÐ": 2173, + "analysis": 2174, + "friends": 2175, + "More": 2176, + "simple": 2177, + "rich": 2178, + "calcul": 2179, + "onic": 2180, + "region": 2181, + "Per": 2182, + "ably": 2183, + "istic": 2184, + "inser": 2185, + "ene": 2186, + "taking": 2187, + "ither": 2188, + "became": 2189, + "mission": 2190, + "reading": 2191, + "related": 2192, + "addition": 2193, + "society": 2194, + "inary": 2195, + "detail": 2196, + "single": 2197, + "aps": 2198, + "acks": 2199, + "',": 2200, + "traditional": 2201, + "management": 2202, + "ug": 2203, + "enough": 2204, + "AT": 2205, + "necessary": 2206, + "integr": 2207, + "assert": 2208, + "radi": 2209, + "porary": 2210, + "National": 2211, + "fall": 2212, + "compreh": 2213, + "ned": 2214, + "brain": 2215, + "plants": 2216, + "compe": 2217, + "ived": 2218, + "ctive": 2219, + "ought": 2220, + "atten": 2221, + "stain": 2222, + "parts": 2223, + "War": 2224, + "ering": 2225, + "ping": 2226, + "instru": 2227, + "diffic": 2228, + "]Ġ=Ġ": 2229, + "ik": 2230, + "Hist": 2231, + "force": 2232, + "ming": 2233, + "usually": 2234, + "htt": 2235, + "meet": 2236, + "bit": 2237, + "Ġ;Ġ": 2238, + "writing": 2239, + "dem": 2240, + "culture": 2241, + "rate": 2242, + "engine": 2243, + "inno": 2244, + "Ñģ": 2245, + "Add": 2246, + "Data": 2247, + "services": 2248, + "features": 2249, + ".âĢĿ": 2250, + "Sci": 2251, + "ires": 2252, + "paper": 2253, + "Of": 2254, + "cod": 2255, + "elif": 2256, + "practices": 2257, + "dim": 2258, + "Car": 2259, + "instead": 2260, + "augh": 2261, + "ls": 2262, + "acts": 2263, + "Ger": 2264, + "appreci": 2265, + "death": 2266, + "enh": 2267, + "false": 2268, + "ÑĢ": 2269, + "money": 2270, + "ecting": 2271, + "percent": 2272, + "recent": 2273, + "encour": 2274, + "win": 2275, + "source": 2276, + "production": 2277, + "ised": 2278, + "Dec": 2279, + "ope": 2280, + "higher": 2281, + "reng": 2282, + "ging": 2283, + "importance": 2284, + "products": 2285, + "lex": 2286, + "frequ": 2287, + "sych": 2288, + "bat": 2289, + "Ser": 2290, + "countries": 2291, + "bot": 2292, + "neg": 2293, + "photo": 2294, + "ules": 2295, + "stop": 2296, + "--------------------------------": 2297, + "avor": 2298, + "inating": 2299, + "Gu": 2300, + "lesson": 2301, + "frame": 2302, + "meaning": 2303, + "historical": 2304, + "combin": 2305, + "matrix": 2306, + "sle": 2307, + "Ġ+=Ġ": 2308, + "Do": 2309, + "):Ġ": 2310, + "wide": 2311, + "://": 2312, + "remember": 2313, + "inside": 2314, + "ises": 2315, + "\",": 2316, + "section": 2317, + "fit": 2318, + "training": 2319, + "travel": 2320, + "valuable": 2321, + "Coun": 2322, + "aling": 2323, + "suf": 2324, + "outs": 2325, + "ded": 2326, + "answer": 2327, + "political": 2328, + "minim": 2329, + "Fin": 2330, + "store": 2331, + "Ġ!": 2332, + "Bl": 2333, + "Pre": 2334, + "response": 2335, + "created": 2336, + "sometimes": 2337, + "explain": 2338, + "na": 2339, + "espec": 2340, + "needed": 2341, + "atory": 2342, + "Chapter": 2343, + "themselves": 2344, + "fish": 2345, + "measure": 2346, + "steps": 2347, + "ising": 2348, + "crucial": 2349, + "cup": 2350, + "čĊĠĠĠĠĠĠĠĠĠĠĠĠ": 2351, + "____": 2352, + "prob": 2353, + "company": 2354, + "mpto": 2355, + "thought": 2356, + "books": 2357, + "transform": 2358, + "positive": 2359, + "docu": 2360, + "First": 2361, + "especially": 2362, + "except": 2363, + "tow": 2364, + "multiple": 2365, + "Sim": 2366, + "benefits": 2367, + "content": 2368, + "mbol": 2369, + "population": 2370, + "ule": 2371, + "ĠâĢĺ": 2372, + "ians": 2373, + "product": 2374, + "ulations": 2375, + "Top": 2376, + "cases": 2377, + "exploring": 2378, + "live": 2379, + "OR": 2380, + "job": 2381, + "cut": 2382, + "increase": 2383, + "tiv": 2384, + "exc": 2385, + "pite": 2386, + "diag": 2387, + "gar": 2388, + "sun": 2389, + "once": 2390, + "quick": 2391, + "ograph": 2392, + "effects": 2393, + "rather": 2394, + "Ġ:": 2395, + "score": 2396, + "economic": 2397, + "dee": 2398, + "streng": 2399, + "provides": 2400, + "wal": 2401, + "context": 2402, + "super": 2403, + "box": 2404, + "Ge": 2405, + "ses": 2406, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 2407, + "love": 2408, + "invest": 2409, + "apply": 2410, + "From": 2411, + "ubl": 2412, + "princi": 2413, + "select": 2414, + "cat": 2415, + "```": 2416, + "ilt": 2417, + "aver": 2418, + "deep": 2419, + "guid": 2420, + "likely": 2421, + "clean": 2422, + "iver": 2423, + "effective": 2424, + "amples": 2425, + "reduce": 2426, + "cs": 2427, + "Node": 2428, + "communication": 2429, + "conver": 2430, + "consist": 2431, + "Ty": 2432, + "enjoy": 2433, + "regular": 2434, + "pha": 2435, + "computer": 2436, + "Num": 2437, + "ensive": 2438, + "det": 2439, + "involves": 2440, + "base": 2441, + ".\"Ġ": 2442, + "ES": 2443, + "yourself": 2444, + "never": 2445, + "duct": 2446, + "Fe": 2447, + "mach": 2448, + "Error": 2449, + "igr": 2450, + "rights": 2451, + "concept": 2452, + "Engl": 2453, + "ged": 2454, + "dle": 2455, + "safe": 2456, + "smo": 2457, + "numer": 2458, + "chan": 2459, + "implement": 2460, + "surround": 2461, + "normal": 2462, + "offic": 2463, + "ened": 2464, + "ste": 2465, + "Less": 2466, + "activity": 2467, + "medical": 2468, + "above": 2469, + "scre": 2470, + "rit": 2471, + "demon": 2472, + "sustain": 2473, + "English": 2474, + "according": 2475, + "correct": 2476, + "prog": 2477, + "opportunities": 2478, + "carr": 2479, + "animals": 2480, + "aving": 2481, + "accur": 2482, + "hind": 2483, + "Over": 2484, + "yet": 2485, + "studies": 2486, + "increasing": 2487, + "seen": 2488, + "tis": 2489, + "foot": 2490, + "gene": 2491, + "performance": 2492, + "environmental": 2493, + "media": 2494, + "link": 2495, + "python": 2496, + "healthy": 2497, + "material": 2498, + "Sp": 2499, + "sex": 2500, + "strategies": 2501, + "center": 2502, + "...Ġ": 2503, + "ners": 2504, + "adap": 2505, + "leading": 2506, + "EN": 2507, + "Rese": 2508, + "however": 2509, + "ified": 2510, + "ferences": 2511, + "reli": 2512, + "izations": 2513, + "Mo": 2514, + "Research": 2515, + "strate": 2516, + "sat": 2517, + "syn": 2518, + "ots": 2519, + "cepts": 2520, + "uary": 2521, + "behavior": 2522, + "fasc": 2523, + "student": 2524, + "__Ġ": 2525, + "overall": 2526, + "obj": 2527, + "exerc": 2528, + "vention": 2529, + "abilities": 2530, + "height": 2531, + "surface": 2532, + "'ll": 2533, + "patients": 2534, + "states": 2535, + "bring": 2536, + "ley": 2537, + "Here": 2538, + "distri": 2539, + "eds": 2540, + "aware": 2541, + "white": 2542, + "message": 2543, + "aily": 2544, + "Rem": 2545, + "xt": 2546, + "aste": 2547, + "element": 2548, + "Health": 2549, + "mom": 2550, + "resh": 2551, + "Py": 2552, + "Why": 2553, + "tig": 2554, + "ae": 2555, + "ense": 2556, + "utes": 2557, + "claim": 2558, + "():": 2559, + "AN": 2560, + "plt": 2561, + "Mod": 2562, + "fru": 2563, + "foster": 2564, + "bound": 2565, + "ison": 2566, + "compan": 2567, + "determin": 2568, + "expected": 2569, + "designed": 2570, + "ticle": 2571, + "Once": 2572, + "title": 2573, + "previous": 2574, + "avig": 2575, + "diverse": 2576, + "ai": 2577, + "istics": 2578, + "ĠâĢĶ": 2579, + "sleep": 2580, + "acters": 2581, + "contem": 2582, + "State": 2583, + "intr": 2584, + "attention": 2585, + "patterns": 2586, + "done": 2587, + "Sub": 2588, + "auti": 2589, + "evidence": 2590, + "My": 2591, + "Am": 2592, + "Just": 2593, + "eved": 2594, + "stress": 2595, + "finan": 2596, + "itch": 2597, + "symbol": 2598, + "optim": 2599, + "chol": 2600, + "record": 2601, + "Em": 2602, + "fail": 2603, + "cancer": 2604, + "required": 2605, + "istance": 2606, + "road": 2607, + "yond": 2608, + "zing": 2609, + "original": 2610, + "pair": 2611, + "sympto": 2612, + "audi": 2613, + "idea": 2614, + "\",Ġ\"": 2615, + "fre": 2616, + "ada": 2617, + "Stud": 2618, + "sets": 2619, + "appear": 2620, + "already": 2621, + "auto": 2622, + "began": 2623, + "IS": 2624, + "choice": 2625, + "serve": 2626, + "ift": 2627, + "ectively": 2628, + "ago": 2629, + "chr": 2630, + "least": 2631, + "ON": 2632, + "says": 2633, + "series": 2634, + "South": 2635, + ".Ġ\"": 2636, + "Many": 2637, + "came": 2638, + "introdu": 2639, + "inc": 2640, + "separ": 2641, + "ets": 2642, + "Cont": 2643, + "increased": 2644, + "da": 2645, + "entire": 2646, + "diction": 2647, + "oil": 2648, + "forts": 2649, + "journey": 2650, + "press": 2651, + "ock": 2652, + "lat": 2653, + "dire": 2654, + "Not": 2655, + "ird": 2656, + "final": 2657, + "._": 2658, + "tili": 2659, + "uly": 2660, + "His": 2661, + "five": 2662, + "green": 2663, + "Che": 2664, + "join": 2665, + "Reg": 2666, + "review": 2667, + "grid": 2668, + "une": 2669, + "ister": 2670, + "stay": 2671, + "service": 2672, + "Have": 2673, + "condition": 2674, + "pend": 2675, + "thinking": 2676, + "black": 2677, + "ĠâĢĶĠ": 2678, + "avoid": 2679, + "feed": 2680, + "starting": 2681, + "either": 2682, + "perspec": 2683, + "general": 2684, + "John": 2685, + "oting": 2686, + "hom": 2687, + "aces": 2688, + "started": 2689, + "dest": 2690, + "Go": 2691, + "market": 2692, + "researchers": 2693, + "wood": 2694, + "##Ġ": 2695, + "cast": 2696, + "behind": 2697, + "itation": 2698, + "':Ġ": 2699, + "account": 2700, + "page": 2701, + "gest": 2702, + "Bri": 2703, + "balance": 2704, + "chapter": 2705, + "collabor": 2706, + "math": 2707, + "relationships": 2708, + "pon": 2709, + "takes": 2710, + "hood": 2711, + "apy": 2712, + "aft": 2713, + "week": 2714, + "reason": 2715, + "took": 2716, + "pressure": 2717, + "Lo": 2718, + "involved": 2719, + "='": 2720, + "plication": 2721, + "Sec": 2722, + "display": 2723, + "Lesson": 2724, + "ologies": 2725, + "aves": 2726, + "bes": 2727, + "learned": 2728, + "cies": 2729, + "Cour": 2730, + "climate": 2731, + "equip": 2732, + "pret": 2733, + "**:Ġ": 2734, + "alg": 2735, + "cient": 2736, + "stor": 2737, + "taken": 2738, + "Well": 2739, + "half": 2740, + "aspects": 2741, + "characters": 2742, + "distance": 2743, + "assess": 2744, + "Ġ!=Ġ": 2745, + "ana": 2746, + "mini": 2747, + "tax": 2748, + "remove": 2749, + "org": 2750, + "broad": 2751, + "visual": 2752, + "hours": 2753, + "names": 2754, + "width": 2755, + "sense": 2756, + "Min": 2757, + "tish": 2758, + "ideas": 2759, + "equal": 2760, + "estim": 2761, + "really": 2762, + "star": 2763, + "respond": 2764, + "eder": 2765, + "nutri": 2766, + "medic": 2767, + "ĠĠĠĠĠ": 2768, + "ify": 2769, + "million": 2770, + "achieve": 2771, + "sources": 2772, + "Ab": 2773, + "lying": 2774, + "commit": 2775, + "=\"": 2776, + "strict": 2777, + "__(": 2778, + "loop": 2779, + "LE": 2780, + "altern": 2781, + "secur": 2782, + "digital": 2783, + "ä¸": 2784, + "Earth": 2785, + "fa": 2786, + "month": 2787, + "policy": 2788, + "uel": 2789, + "parents": 2790, + "whole": 2791, + "initial": 2792, + "terms": 2793, + ":Ġ\"": 2794, + "Pres": 2795, + "ades": 2796, + "America": 2797, + "written": 2798, + "incorpor": 2799, + "efforts": 2800, + "daily": 2801, + "North": 2802, + "particularly": 2803, + "enced": 2804, + "ception": 2805, + "urch": 2806, + "location": 2807, + "contr": 2808, + "Ġ{": 2809, + "below": 2810, + "matter": 2811, + "late": 2812, + "Ġ.Ġ": 2813, + "legal": 2814, + "images": 2815, + "float": 2816, + "psych": 2817, + "built": 2818, + "perf": 2819, + "vestig": 2820, + "Ġ%Ġ": 2821, + "tivity": 2822, + "neigh": 2823, + "Tod": 2824, + "thus": 2825, + "decision": 2826, + "cross": 2827, + "inj": 2828, + "lands": 2829, + "named": 2830, + "lection": 2831, + "akes": 2832, + "qual": 2833, + "raise": 2834, + "enous": 2835, + "Mon": 2836, + "doing": 2837, + "column": 2838, + "industry": 2839, + "tex": 2840, + "':": 2841, + "Cor": 2842, + "experim": 2843, + "ker": 2844, + "Our": 2845, + "thern": 2846, + "Her": 2847, + "crim": 2848, + "born": 2849, + "developed": 2850, + "safety": 2851, + "price": 2852, + "greater": 2853, + "error": 2854, + "fascinating": 2855, + "provided": 2856, + "anger": 2857, + "produce": 2858, + "processes": 2859, + "symptoms": 2860, + "################": 2861, + "ditional": 2862, + "rain": 2863, + "appropri": 2864, + "beyond": 2865, + "astic": 2866, + "season": 2867, + "operation": 2868, + "prote": 2869, + "SE": 2870, + "mechan": 2871, + "plied": 2872, + "AC": 2873, + "rout": 2874, + "preser": 2875, + "pack": 2876, + "chemical": 2877, + "served": 2878, + "itary": 2879, + "che": 2880, + "fix": 2881, + "era": 2882, + "save": 2883, + "wonder": 2884, + "exact": 2885, + "cry": 2886, + "powerful": 2887, + "consum": 2888, + "RE": 2889, + "solution": 2890, + "sett": 2891, + "gets": 2892, + "components": 2893, + "pict": 2894, + "contemporary": 2895, + "ret": 2896, + "exec": 2897, + "arg": 2898, + "providing": 2899, + "Qu": 2900, + "via": 2901, + "stic": 2902, + "Addition": 2903, + "leaders": 2904, + "sil": 2905, + "Ġâ": 2906, + "angle": 2907, + "site": 2908, + "Ob": 2909, + "categ": 2910, + "asks": 2911, + "contribute": 2912, + "bul": 2913, + "applications": 2914, + "Topic": 2915, + "wise": 2916, + "priv": 2917, + "odes": 2918, + "card": 2919, + "principles": 2920, + "Char": 2921, + "identify": 2922, + "financial": 2923, + "programs": 2924, + "ellow": 2925, + "piece": 2926, + "Ġ=Ġ[]": 2927, + "apan": 2928, + "aly": 2929, + "bution": 2930, + "skin": 2931, + "Today": 2932, + "actually": 2933, + "During": 2934, + "fem": 2935, + "spr": 2936, + "forward": 2937, + "conclusion": 2938, + "examples": 2939, + "heat": 2940, + "web": 2941, + "protect": 2942, + "micro": 2943, + "ield": 2944, + "elds": 2945, + "plays": 2946, + "ork": 2947, + "sens": 2948, + "average": 2949, + "viol": 2950, + "cool": 2951, + "visit": 2952, + "relev": 2953, + "favor": 2954, + "letter": 2955, + "requires": 2956, + "lot": 2957, + "sec": 2958, + "navig": 2959, + "gender": 2960, + "night": 2961, + "].": 2962, + "connections": 2963, + "fire": 2964, + "amin": 2965, + "shows": 2966, + "insights": 2967, + "style": 2968, + "considered": 2969, + "rem": 2970, + "subst": 2971, + "tran": 2972, + "complete": 2973, + "ìĿ": 2974, + "*Ġ**": 2975, + "constru": 2976, + "plat": 2977, + "itself": 2978, + "basic": 2979, + "humans": 2980, + "essay": 2981, + "network": 2982, + "в": 2983, + "enn": 2984, + "deb": 2985, + "hi": 2986, + "effect": 2987, + "speed": 2988, + "([": 2989, + "soil": 2990, + "movement": 2991, + "colon": 2992, + "nums": 2993, + "iss": 2994, + "concepts": 2995, + "ĊĠĠ": 2996, + "rup": 2997, + "ilies": 2998, + "recomm": 2999, + "shared": 3000, + "()Ġ": 3001, + "belief": 3002, + "offers": 3003, + "conduct": 3004, + "objects": 3005, + "ously": 3006, + "temperature": 3007, + "prep": 3008, + "everything": 3009, + "article": 3010, + "dynam": 3011, + "л": 3012, + "Austr": 3013, + "IV": 3014, + "players": 3015, + "Ret": 3016, + "Key": 3017, + "Japan": 3018, + "IT": 3019, + "tives": 3020, + "aut": 3021, + "fast": 3022, + "Ġ<=Ġ": 3023, + "command": 3024, + "comfort": 3025, + "narr": 3026, + "Mus": 3027, + "feature": 3028, + "Additionally": 3029, + "growing": 3030, + "accept": 3031, + "orders": 3032, + "outside": 3033, + ".ĠâĢľ": 3034, + "Gener": 3035, + "ior": 3036, + "Remember": 3037, + "easy": 3038, + "Def": 3039, + "coord": 3040, + "AD": 3041, + "Tw": 3042, + "Each": 3043, + "Sc": 3044, + "migr": 3045, + "threat": 3046, + "cannot": 3047, + "AL": 3048, + "assign": 3049, + "respect": 3050, + "elcome": 3051, + "novel": 3052, + "Test": 3053, + "developing": 3054, + "doesn": 3055, + "gas": 3056, + "video": 3057, + "heav": 3058, + "Su": 3059, + "plications": 3060, + "confl": 3061, + "successful": 3062, + "match": 3063, + "],": 3064, + "efficient": 3065, + "choose": 3066, + "options": 3067, + "fair": 3068, + "enge": 3069, + "establish": 3070, + "camp": 3071, + "tit": 3072, + "jud": 3073, + "becomes": 3074, + "tware": 3075, + "Read": 3076, + "six": 3077, + "died": 3078, + "collect": 3079, + "Although": 3080, + "decisions": 3081, + "looking": 3082, + "indic": 3083, + "property": 3084, + "ternal": 3085, + "ured": 3086, + "sort": 3087, + "theses": 3088, + "presents": 3089, + "Cur": 3090, + "'''": 3091, + "status": 3092, + "models": 3093, + "includes": 3094, + "Bu": 3095, + "rules": 3096, + "users": 3097, + "schools": 3098, + "difficult": 3099, + "mut": 3100, + "School": 3101, + "oph": 3102, + "security": 3103, + "wall": 3104, + "formation": 3105, + "block": 3106, + "Ano": 3107, + "ites": 3108, + ",ĠâĢľ": 3109, + "acing": 3110, + "rap": 3111, + "ancing": 3112, + "survi": 3113, + "oud": 3114, + "ull": 3115, + "talk": 3116, + "predict": 3117, + "Use": 3118, + "bio": 3119, + "ided": 3120, + "Gre": 3121, + "Enter": 3122, + "ford": 3123, + "primary": 3124, + "duc": 3125, + "ification": 3126, + "British": 3127, + "extra": 3128, + "goals": 3129, + "background": 3130, + "town": 3131, + "urn": 3132, + "ussi": 3133, + "pes": 3134, + "farm": 3135, + "mod": 3136, + "}Ġ": 3137, + "sou": 3138, + ",Ġ'": 3139, + "termine": 3140, + "dat": 3141, + "months": 3142, + "insp": 3143, + "ault": 3144, + "mass": 3145, + "investig": 3146, + "]:": 3147, + "simply": 3148, + "Eng": 3149, + "isms": 3150, + "ium": 3151, + "Ġ>": 3152, + "suggest": 3153, + "spirit": 3154, + "libr": 3155, + "connected": 3156, + "document": 3157, + "imal": 3158, + "structures": 3159, + "comput": 3160, + "Ed": 3161, + "ĠÃĹ": 3162, + "published": 3163, + "edge": 3164, + "copy": 3165, + "const": 3166, + "regarding": 3167, + "negative": 3168, + "functions": 3169, + "mix": 3170, + "ried": 3171, + "remo": 3172, + "identity": 3173, + "independ": 3174, + "York": 3175, + "csv": 3176, + "influence": 3177, + "cele": 3178, + "Another": 3179, + "diagno": 3180, + "Techn": 3181, + "front": 3182, + "traction": 3183, + "scale": 3184, + "ran": 3185, + "responsible": 3186, + "host": 3187, + "ancient": 3188, + "sess": 3189, + "damage": 3190, + "arily": 3191, + "tor": 3192, + "foc": 3193, + "scri": 3194, + "warm": 3195, + "reve": 3196, + "dro": 3197, + "window": 3198, + ".Ġ**": 3199, + "trust": 3200, + "agree": 3201, + "electric": 3202, + "sites": 3203, + "ublic": 3204, + "Further": 3205, + "ĠÃĹĠ": 3206, + "held": 3207, + "allowing": 3208, + "goal": 3209, + "isn": 3210, + "elect": 3211, + "ama": 3212, + "ding": 3213, + "deeper": 3214, + "advant": 3215, + "ung": 3216, + "instit": 3217, + "religious": 3218, + "Cent": 3219, + "strugg": 3220, + "remains": 3221, + "eat": 3222, + "cam": 3223, + "AS": 3224, + "Ġ.": 3225, + "watch": 3226, + "According": 3227, + "compared": 3228, + "parame": 3229, + "difference": 3230, + "Time": 3231, + "habit": 3232, + "Fl": 3233, + "Ġ*": 3234, + "scientists": 3235, + "IC": 3236, + "zz": 3237, + "organizations": 3238, + "estern": 3239, + "ume": 3240, + "games": 3241, + "tes": 3242, + "mas": 3243, + "fat": 3244, + "slow": 3245, + "comprehension": 3246, + "Jew": 3247, + "itor": 3248, + "dir": 3249, + "scen": 3250, + "Inst": 3251, + "ring": 3252, + "international": 3253, + "Set": 3254, + "places": 3255, + "kets": 3256, + "dive": 3257, + "harm": 3258, + "Loc": 3259, + "families": 3260, + "kill": 3261, + "evaluated": 3262, + "scientific": 3263, + "shop": 3264, + "Get": 3265, + "suit": 3266, + "config": 3267, + "literature": 3268, + "patient": 3269, + "args": 3270, + "================": 3271, + "imagine": 3272, + "reflect": 3273, + "filled": 3274, + "added": 3275, + "issue": 3276, + "Name": 3277, + "devices": 3278, + "rows": 3279, + "origin": 3280, + "sn": 3281, + ")Ġ+Ġ": 3282, + "servation": 3283, + "distin": 3284, + "carry": 3285, + "tiz": 3286, + "ilos": 3287, + "transport": 3288, + "getting": 3289, + "Id": 3290, + "got": 3291, + "perfect": 3292, + "covery": 3293, + "emphas": 3294, + "professional": 3295, + "celebr": 3296, + "orith": 3297, + "Out": 3298, + "established": 3299, + "Vi": 3300, + "ains": 3301, + "rench": 3302, + "replace": 3303, + "dou": 3304, + "connection": 3305, + "thous": 3306, + "animal": 3307, + "к": 3308, + "effectively": 3309, + "appropriate": 3310, + "etc": 3311, + "quickly": 3312, + "earli": 3313, + "rot": 3314, + "progress": 3315, + "Bob": 3316, + "companies": 3317, + "Will": 3318, + "AP": 3319, + "iency": 3320, + "ado": 3321, + "vey": 3322, + "Pers": 3323, + "prior": 3324, + "refers": 3325, + "brid": 3326, + "info": 3327, + "uck": 3328, + "master": 3329, + "version": 3330, + "tom": 3331, + "())": 3332, + "oration": 3333, + "immun": 3334, + "param": 3335, + "Lear": 3336, + "layer": 3337, + "King": 3338, + "evolution": 3339, + "decl": 3340, + "landsc": 3341, + "pal": 3342, + "install": 3343, + "ulate": 3344, + "cas": 3345, + "onto": 3346, + "elf": 3347, + "teen": 3348, + "contains": 3349, + "err": 3350, + ".âĢĿĠ": 3351, + "Trans": 3352, + "hot": 3353, + "imag": 3354, + "caused": 3355, + "TH": 3356, + "secre": 3357, + "url": 3358, + "atively": 3359, + "drop": 3360, + "screen": 3361, + "repe": 3362, + "ump": 3363, + "eye": 3364, + "parent": 3365, + "cand": 3366, + "Ma": 3367, + "surrounding": 3368, + "Wr": 3369, + "ix": 3370, + "fied": 3371, + "arri": 3372, + "theory": 3373, + "asked": 3374, + "contact": 3375, + "believe": 3376, + "Develop": 3377, + "limit": 3378, + "uries": 3379, + "hic": 3380, + "Jan": 3381, + "wild": 3382, + "slice": 3383, + "spo": 3384, + "Moreover": 3385, + "maxim": 3386, + "depend": 3387, + "demonstr": 3388, + "kids": 3389, + "Unit": 3390, + "Ke": 3391, + "\":": 3392, + "additional": 3393, + "autiful": 3394, + "embr": 3395, + "birth": 3396, + "diet": 3397, + "ales": 3398, + "European": 3399, + "placed": 3400, + "factor": 3401, + "subject": 3402, + "Ele": 3403, + "solutions": 3404, + "worth": 3405, + "advent": 3406, + "longer": 3407, + "Example": 3408, + "projects": 3409, + "Aug": 3410, + "cil": 3411, + "software": 3412, + "sharing": 3413, + "innov": 3414, + "hon": 3415, + "cum": 3416, + "Commun": 3417, + "tru": 3418, + "significantly": 3419, + "device": 3420, + "determine": 3421, + "evol": 3422, + "lif": 3423, + "Cr": 3424, + "capac": 3425, + "People": 3426, + "upper": 3427, + "diversity": 3428, + "healthcare": 3429, + "stack": 3430, + "playing": 3431, + "challenge": 3432, + "rown": 3433, + "option": 3434, + "units": 3435, + "bodies": 3436, + "spread": 3437, + "larger": 3438, + "square": 3439, + "minutes": 3440, + "industr": 3441, + "Cons": 3442, + "Alice": 3443, + "ference": 3444, + "elt": 3445, + "promote": 3446, + "zer": 3447, + "Don": 3448, + "Most": 3449, + "ĴĠ": 3450, + "song": 3451, + "sample": 3452, + "India": 3453, + "application": 3454, + "Value": 3455, + "stream": 3456, + "High": 3457, + "gree": 3458, + "cis": 3459, + "expect": 3460, + "iction": 3461, + "lam": 3462, + "news": 3463, + "nation": 3464, + "memory": 3465, + "ham": 3466, + "costs": 3467, + "ored": 3468, + "update": 3469, + "gather": 3470, + "ceed": 3471, + "third": 3472, + "causes": 3473, + "concerns": 3474, + "Oc": 3475, + "zed": 3476, + "Python": 3477, + "possib": 3478, + "ensuring": 3479, + "conven": 3480, + "Ġ--": 3481, + "civil": 3482, + "Spec": 3483, + "'ve": 3484, + "track": 3485, + "Ġ/": 3486, + "asons": 3487, + "gard": 3488, + "www": 3489, + "Christian": 3490, + "ministr": 3491, + "themat": 3492, + "sequences": 3493, + "alog": 3494, + "responsib": 3495, + "figure": 3496, + "sis": 3497, + "purpose": 3498, + "affect": 3499, + "iring": 3500, + "Even": 3501, + "almost": 3502, + "goes": 3503, + "Before": 3504, + "poly": 3505, + "oes": 3506, + "veget": 3507, + "sea": 3508, + "connect": 3509, + "hes": 3510, + "xim": 3511, + "push": 3512, + "Ġ==Ġ'": 3513, + "operations": 3514, + "bill": 3515, + "History": 3516, + "counts": 3517, + "Are": 3518, + "Austral": 3519, + "Expl": 3520, + "businesses": 3521, + "expand": 3522, + "continued": 3523, + "voc": 3524, + "manu": 3525, + "numpy": 3526, + "African": 3527, + "Educ": 3528, + "numerous": 3529, + "carbon": 3530, + "phone": 3531, + "pieces": 3532, + "Cal": 3533, + "Welcome": 3534, + "typically": 3535, + "ml": 3536, + "Sep": 3537, + "trying": 3538, + "exactly": 3539, + "hib": 3540, + "ultural": 3541, + "fields": 3542, + "direction": 3543, + "differences": 3544, + "ov": 3545, + "za": 3546, + "iny": 3547, + "email": 3548, + "compl": 3549, + "rates": 3550, + "properties": 3551, + "itive": 3552, + "ips": 3553, + "partment": 3554, + "standard": 3555, + "request": 3556, + "keys": 3557, + "Their": 3558, + "engaging": 3559, + "ulture": 3560, + "China": 3561, + "French": 3562, + "hands": 3563, + "bacter": 3564, + "timately": 3565, + "colors": 3566, + "compar": 3567, + "phen": 3568, + "guess": 3569, + "Ġ%": 3570, + "ctors": 3571, + "align": 3572, + "ellig": 3573, + "archit": 3574, + "variable": 3575, + "Sm": 3576, + "ju": 3577, + "algorith": 3578, + "axis": 3579, + "nic": 3580, + "stage": 3581, + "Finally": 3582, + "Ġ|Ġ": 3583, + "bad": 3584, + "vital": 3585, + "details": 3586, + "sus": 3587, + "See": 3588, + "central": 3589, + "lies": 3590, + "mes": 3591, + "forces": 3592, + "involve": 3593, + "soon": 3594, + "Science": 3595, + "heard": 3596, + "Red": 3597, + "tren": 3598, + "competi": 3599, + "trade": 3600, + "note": 3601, + "fight": 3602, + "Child": 3603, + "relevant": 3604, + "mention": 3605, + "files": 3606, + "hid": 3607, + "\".": 3608, + "film": 3609, + "auth": 3610, + "AM": 3611, + "played": 3612, + "produced": 3613, + "earth": 3614, + "sures": 3615, + "discovered": 3616, + "Then": 3617, + "easily": 3618, + "wanted": 3619, + "ountain": 3620, + "м": 3621, + "Class": 3622, + "haps": 3623, + "Ques": 3624, + "setting": 3625, + "irm": 3626, + "Mr": 3627, + "ony": 3628, + "capital": 3629, + "Tim": 3630, + "division": 3631, + "ager": 3632, + "Lab": 3633, + "img": 3634, + "illu": 3635, + "informed": 3636, + "deal": 3637, + "topics": 3638, + "Hum": 3639, + "cred": 3640, + "[\"": 3641, + "Sw": 3642, + "cultures": 3643, + "planning": 3644, + "military": 3645, + "eyes": 3646, + "idx": 3647, + "Ġ=Ġ\"": 3648, + "directly": 3649, + "limited": 3650, + "sequence": 3651, + "Har": 3652, + "ishing": 3653, + "demand": 3654, + "ores": 3655, + "aur": 3656, + "skill": 3657, + "Hel": 3658, + "System": 3659, + "resid": 3660, + "decided": 3661, + "existing": 3662, + "citiz": 3663, + "filter": 3664, + "blue": 3665, + "foods": 3666, + "Using": 3667, + "Furthermore": 3668, + "vehic": 3669, + "dictionary": 3670, + "tasks": 3671, + "adding": 3672, + "ĠâĨ": 3673, + "artists": 3674, + "mob": 3675, + "went": 3676, + "stitute": 3677, + "task": 3678, + "Examples": 3679, + "proced": 3680, + "iv": 3681, + "utili": 3682, + "\".Ġ": 3683, + "acade": 3684, + "txt": 3685, + "readers": 3686, + "machine": 3687, + "beautiful": 3688, + "exercise": 3689, + "elines": 3690, + "ounds": 3691, + "testing": 3692, + "nia": 3693, + "ederal": 3694, + "anch": 3695, + "entially": 3696, + "bing": 3697, + "emotional": 3698, + "ibility": 3699, + "dia": 3700, + "pet": 3701, + "ula": 3702, + "teachers": 3703, + "RO": 3704, + "alpha": 3705, + "lip": 3706, + "convers": 3707, + "specifically": 3708, + "adjust": 3709, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 3710, + "ships": 3711, + "Apr": 3712, + "included": 3713, + "alle": 3714, + "laws": 3715, + "References": 3716, + "encies": 3717, + "generate": 3718, + "Solution": 3719, + "hous": 3720, + "awareness": 3721, + "inner": 3722, + "lost": 3723, + "clin": 3724, + "modif": 3725, + "construction": 3726, + "hu": 3727, + "Tit": 3728, + "http": 3729, + "Rel": 3730, + "trees": 3731, + "tend": 3732, + "technologies": 3733, + "smaller": 3734, + "organization": 3735, + "********": 3736, + "band": 3737, + "lived": 3738, + "suffer": 3739, + "engage": 3740, + "March": 3741, + "shown": 3742, + "measures": 3743, + "bsite": 3744, + "д": 3745, + "iliar": 3746, + "August": 3747, + "UN": 3748, + "ingre": 3749, + "guide": 3750, + "middle": 3751, + "lic": 3752, + "BC": 3753, + "dre": 3754, + "maintaining": 3755, + "prev": 3756, + "attack": 3757, + "ilit": 3758, + "whose": 3759, + "https": 3760, + "Intern": 3761, + "teaching": 3762, + "therapy": 3763, + "cou": 3764, + "acqu": 3765, + "Mic": 3766, + "lessons": 3767, + "quite": 3768, + "Ass": 3769, + "changing": 3770, + "empty": 3771, + "quanti": 3772, + "Mat": 3773, + "decre": 3774, + "diseases": 3775, + "rapid": 3776, + "ares": 3777, + "philos": 3778, + "located": 3779, + "pick": 3780, + "appreciate": 3781, + "adapt": 3782, + "fiction": 3783, + "ga": 3784, + "policies": 3785, + "Russi": 3786, + "infl": 3787, + "variety": 3788, + "collection": 3789, + "challenging": 3790, + "defin": 3791, + "Since": 3792, + "poor": 3793, + "coding": 3794, + "icated": 3795, + "Asi": 3796, + "attribut": 3797, + "received": 3798, + "risks": 3799, + "multiplication": 3800, + "bab": 3801, + "situation": 3802, + "ny": 3803, + "raw": 3804, + "ingredi": 3805, + "json": 3806, + "Bar": 3807, + "Cho": 3808, + "tric": 3809, + "((": 3810, + "fresh": 3811, + "door": 3812, + "Ġ=Ġ-": 3813, + "turing": 3814, + "Sur": 3815, + "ern": 3816, + "rac": 3817, + "п": 3818, + "feelings": 3819, + "Up": 3820, + "June": 3821, + "pul": 3822, + "otes": 3823, + "immedi": 3824, + "saw": 3825, + "moment": 3826, + "tically": 3827, + "inate": 3828, + "compass": 3829, + "ancy": 3830, + "ongo": 3831, + "kers": 3832, + "Hol": 3833, + "processing": 3834, + "vit": 3835, + "Op": 3836, + "ĠĠ#Ġ": 3837, + "Act": 3838, + "finding": 3839, + "equipment": 3840, + "hund": 3841, + "ament": 3842, + "constant": 3843, + "protection": 3844, + "outcomes": 3845, + "earlier": 3846, + "Sol": 3847, + "disci": 3848, + "acking": 3849, + "strength": 3850, + "Ġ=Ġ'": 3851, + "fear": 3852, + "giving": 3853, + "dark": 3854, + "West": 3855, + "weather": 3856, + "Ċĉĉĉ": 3857, + "rid": 3858, + "promoting": 3859, + "German": 3860, + "speak": 3861, + "Type": 3862, + "running": 3863, + "capt": 3864, + "distribution": 3865, + "ios": 3866, + "ĠâĨĴĠ": 3867, + "SA": 3868, + "faces": 3869, + "breath": 3870, + "atom": 3871, + "Play": 3872, + "International": 3873, + "employe": 3874, + "default": 3875, + "buy": 3876, + "feet": 3877, + "favorite": 3878, + "reported": 3879, + "ower": 3880, + "xi": 3881, + "Other": 3882, + "---": 3883, + "Similar": 3884, + "aught": 3885, + "tele": 3886, + "argument": 3887, + "ativity": 3888, + "decor": 3889, + "Despite": 3890, + "puts": 3891, + "vic": 3892, + "concentr": 3893, + "soft": 3894, + "private": 3895, + "gal": 3896, + "Prof": 3897, + "supply": 3898, + "workers": 3899, + "useum": 3900, + "vacc": 3901, + "chi": 3902, + "capacity": 3903, + "City": 3904, + "depth": 3905, + "strain": 3906, + "delve": 3907, + "ename": 3908, + "strip": 3909, + "gent": 3910, + "div": 3911, + "Fun": 3912, + "demo": 3913, + "perspectives": 3914, + "represents": 3915, + "thoughts": 3916, + "mole": 3917, + "Ñĥ": 3918, + "construct": 3919, + "passed": 3920, + "April": 3921, + "miles": 3922, + "sue": 3923, + "roy": 3924, + "website": 3925, + "TO": 3926, + "Tur": 3927, + "July": 3928, + "unch": 3929, + "didn": 3930, + "purch": 3931, + "poses": 3932, + "famous": 3933, + "alternative": 3934, + "var": 3935, + "El": 3936, + "apes": 3937, + "graphy": 3938, + "agr": 3939, + "posure": 3940, + "uk": 3941, + "cities": 3942, + "sensi": 3943, + "||Ġ": 3944, + "letters": 3945, + "tag": 3946, + "DE": 3947, + "hope": 3948, + "waste": 3949, + "schol": 3950, + "Mid": 3951, + "pand": 3952, + "bust": 3953, + "brought": 3954, + "Ġ>=Ġ": 3955, + "bert": 3956, + "inserted": 3957, + "lack": 3958, + "sorted": 3959, + "actual": 3960, + "tests": 3961, + "thesis": 3962, + "eating": 3963, + "cook": 3964, + "Africa": 3965, + "cycl": 3966, + "interesting": 3967, + "Ġ#": 3968, + "approaches": 3969, + "chann": 3970, + "cel": 3971, + "Course": 3972, + "largest": 3973, + "cean": 3974, + "returns": 3975, + "elling": 3976, + "nodes": 3977, + "fostering": 3978, + "solid": 3979, + "Great": 3980, + "obtain": 3981, + "leaves": 3982, + "significance": 3983, + "insert": 3984, + "weak": 3985, + "dry": 3986, + "adults": 3987, + "Sum": 3988, + "emotions": 3989, + "van": 3990, + "faced": 3991, + "sustainable": 3992, + "benefit": 3993, + "tou": 3994, + "advance": 3995, + "lation": 3996, + "serious": 3997, + "situations": 3998, + "etal": 3999, + "allowed": 4000, + "fuel": 4001, + "eco": 4002, + "Black": 4003, + "income": 4004, + "Day": 4005, + "á": 4006, + "achi": 4007, + "planet": 4008, + "reducing": 4009, + "receive": 4010, + "resource": 4011, + "generations": 4012, + "exit": 4013, + "career": 4014, + "IP": 4015, + ")Ġ-Ġ": 4016, + "defined": 4017, + "commer": 4018, + "despite": 4019, + "degree": 4020, + "thousands": 4021, + "Sup": 4022, + "justice": 4023, + "azing": 4024, + "Ben": 4025, + "hair": 4026, + "ario": 4027, + "creation": 4028, + "agric": 4029, + "zy": 4030, + "¢Ġ": 4031, + "tour": 4032, + "ech": 4033, + "generally": 4034, + "encing": 4035, + "gir": 4036, + "ico": 4037, + "creative": 4038, + "manage": 4039, + "studying": 4040, + "Ġ==Ġ\"": 4041, + "Who": 4042, + "edom": 4043, + "links": 4044, + "helping": 4045, + "faith": 4046, + "glass": 4047, + "aspect": 4048, + "Chin": 4049, + "pressed": 4050, + "Indian": 4051, + "poll": 4052, + "formed": 4053, + "rule": 4054, + "moving": 4055, + "Life": 4056, + "hear": 4057, + "urban": 4058, + "tember": 4059, + "icts": 4060, + "gency": 4061, + "themes": 4062, + "cards": 4063, + "protein": 4064, + "Bi": 4065, + "mathemat": 4066, + "interpret": 4067, + "','": 4068, + "abs": 4069, + "solve": 4070, + "anything": 4071, + "sco": 4072, + "changed": 4073, + "tober": 4074, + "aks": 4075, + "positions": 4076, + "(Ġ": 4077, + "teacher": 4078, + "discuss": 4079, + "arian": 4080, + "pathy": 4081, + "September": 4082, + "Jes": 4083, + "{}Ġ": 4084, + "beliefs": 4085, + "egg": 4086, + "III": 4087, + "gold": 4088, + "Sk": 4089, + "hun": 4090, + "enhance": 4091, + "craft": 4092, + "mother": 4093, + "Inde": 4094, + "ĊĠĠĠĠĊĠĠĠĠ": 4095, + "bud": 4096, + "usive": 4097, + "although": 4098, + "ague": 4099, + "rig": 4100, + "labels": 4101, + "CT": 4102, + "grade": 4103, + "Serv": 4104, + "nur": 4105, + "shaping": 4106, + "plate": 4107, + "hosp": 4108, + "traditions": 4109, + "advanced": 4110, + "),": 4111, + "Bec": 4112, + "October": 4113, + "practical": 4114, + "adop": 4115, + "Tree": 4116, + "useful": 4117, + "views": 4118, + "izes": 4119, + "essor": 4120, + "[:": 4121, + "aul": 4122, + "forest": 4123, + "reduced": 4124, + "sexual": 4125, + "followed": 4126, + "onal": 4127, + "nel": 4128, + "nom": 4129, + "Find": 4130, + "felt": 4131, + "worked": 4132, + "seg": 4133, + "educational": 4134, + "consu": 4135, + "Instead": 4136, + "?Ġ=Ġ": 4137, + "settings": 4138, + "Gover": 4139, + "volution": 4140, + "Comp": 4141, + "intellig": 4142, + "incredi": 4143, + "west": 4144, + "beginning": 4145, + "parentheses": 4146, + "spaces": 4147, + "authors": 4148, + "narratives": 4149, + "discipl": 4150, + "tice": 4151, + "cords": 4152, + ":ĠĠ": 4153, + "constit": 4154, + "ows": 4155, + "hour": 4156, + "neur": 4157, + "covered": 4158, + "roles": 4159, + "Title": 4160, + "Social": 4161, + "čĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 4162, + "applied": 4163, + "occup": 4164, + "iam": 4165, + "advoc": 4166, + "Ġ=Ġ(": 4167, + "toward": 4168, + "opportunity": 4169, + "happens": 4170, + "January": 4171, + "mber": 4172, + "tery": 4173, + "affected": 4174, + "manufac": 4175, + "gives": 4176, + "reality": 4177, + "Center": 4178, + "dog": 4179, + "cular": 4180, + "topic": 4181, + "becoming": 4182, + "Mc": 4183, + "Roman": 4184, + "former": 4185, + "swe": 4186, + "examine": 4187, + "prop": 4188, + "Two": 4189, + "feeling": 4190, + "indig": 4191, + "ensity": 4192, + "father": 4193, + "sugar": 4194, + "çļ": 4195, + "ington": 4196, + "filename": 4197, + "ression": 4198, + "Cali": 4199, + "hidden": 4200, + "classes": 4201, + "familiar": 4202, + "approxim": 4203, + "Education": 4204, + "seeking": 4205, + "Consider": 4206, + "Dav": 4207, + "ino": 4208, + "çļĦ": 4209, + "plies": 4210, + "danger": 4211, + ".__": 4212, + "older": 4213, + "mode": 4214, + "sports": 4215, + "highly": 4216, + "AI": 4217, + "increasingly": 4218, + "emb": 4219, + "ware": 4220, + "uration": 4221, + "prepar": 4222, + "serving": 4223, + "fundam": 4224, + "fying": 4225, + "stim": 4226, + "rock": 4227, + "exposure": 4228, + "itude": 4229, + "Jour": 4230, + "technique": 4231, + "race": 4232, + "Program": 4233, + "nuc": 4234, + "evaluate": 4235, + "transfer": 4236, + "sphere": 4237, + "languages": 4238, + "walk": 4239, + "facilit": 4240, + "generation": 4241, + "tox": 4242, + "Create": 4243, + "Alex": 4244, + "party": 4245, + "calculate": 4246, + "Lat": 4247, + "interests": 4248, + "keeping": 4249, + "Make": 4250, + "msg": 4251, + "Sam": 4252, + "Chinese": 4253, + "ography": 4254, + "Canada": 4255, + "findings": 4256, + "effort": 4257, + "picture": 4258, + "Que": 4259, + "reasons": 4260, + "resulting": 4261, + "wrong": 4262, + "Number": 4263, + "acid": 4264, + "Gi": 4265, + "neighb": 4266, + "subtraction": 4267, + "ilience": 4268, + "lib": 4269, + ">>": 4270, + "doctor": 4271, + "chain": 4272, + "Lu": 4273, + "flag": 4274, + "stone": 4275, + "himself": 4276, + "columns": 4277, + "reek": 4278, + "Califor": 4279, + "Histor": 4280, + "medicine": 4281, + "session": 4282, + "dead": 4283, + "Every": 4284, + "zero": 4285, + "standards": 4286, + "cycle": 4287, + "aign": 4288, + "Fig": 4289, + "partners": 4290, + "gam": 4291, + "Law": 4292, + "examining": 4293, + "consci": 4294, + "causing": 4295, + "inated": 4296, + "resistance": 4297, + "leave": 4298, + "thr": 4299, + "alone": 4300, + "England": 4301, + "ba": 4302, + "probably": 4303, + "vill": 4304, + "library": 4305, + "prime": 4306, + "belong": 4307, + "sition": 4308, + "inher": 4309, + ":Ġ-": 4310, + "fra": 4311, + "vember": 4312, + "Sar": 4313, + "environments": 4314, + "sq": 4315, + "Real": 4316, + "December": 4317, + "bri": 4318, + "asy": 4319, + "sa": 4320, + "rise": 4321, + "experiment": 4322, + "sys": 4323, + "satis": 4324, + "ongoing": 4325, + "mary": 4326, + "solar": 4327, + "UR": 4328, + "ugs": 4329, + "hop": 4330, + "astern": 4331, + "deliver": 4332, + "professionals": 4333, + "choices": 4334, + "eties": 4335, + "surpr": 4336, + "roll": 4337, + "November": 4338, + "EM": 4339, + "mentioned": 4340, + "scr": 4341, + "Ple": 4342, + "ulated": 4343, + "db": 4344, + "Vis": 4345, + "ourselves": 4346, + "íķ": 4347, + "mouth": 4348, + "holds": 4349, + "Associ": 4350, + "depending": 4351, + "highlight": 4352, + "candid": 4353, + "DO": 4354, + "River": 4355, + "phy": 4356, + "Bel": 4357, + "zes": 4358, + "apping": 4359, + "described": 4360, + "esty": 4361, + "populations": 4362, + "sounds": 4363, + "California": 4364, + "extract": 4365, + "Colle": 4366, + "layers": 4367, + "Keep": 4368, + "oral": 4369, + "cm": 4370, + "female": 4371, + "itage": 4372, + "experienced": 4373, + "release": 4374, + "requirements": 4375, + "send": 4376, + "'.": 4377, + "lean": 4378, + "facts": 4379, + "comb": 4380, + "Jesus": 4381, + "anyone": 4382, + "focused": 4383, + "statement": 4384, + "linear": 4385, + "sin": 4386, + "variables": 4387, + "assist": 4388, + "Input": 4389, + "batch": 4390, + "Sun": 4391, + "ral": 4392, + "indigenous": 4393, + "ray": 4394, + "reveal": 4395, + "infection": 4396, + "lor": 4397, + "told": 4398, + "mel": 4399, + "Press": 4400, + "vie": 4401, + "dataset": 4402, + "tual": 4403, + "Identi": 4404, + "bottom": 4405, + "mir": 4406, + "linked": 4407, + "portion": 4408, + "weeks": 4409, + "thri": 4410, + "Pal": 4411, + "carefully": 4412, + "Count": 4413, + "economy": 4414, + "Americans": 4415, + "inspir": 4416, + "datab": 4417, + "sav": 4418, + "vary": 4419, + "worldwide": 4420, + "woman": 4421, + "Dig": 4422, + "queue": 4423, + "vector": 4424, + "administr": 4425, + "perhaps": 4426, + "records": 4427, + "Soci": 4428, + "CD": 4429, + "amm": 4430, + "regions": 4431, + "vals": 4432, + "Max": 4433, + "entry": 4434, + "xiety": 4435, + "pun": 4436, + "severe": 4437, + "emis": 4438, + "improved": 4439, + "signs": 4440, + "movements": 4441, + "Mex": 4442, + "dol": 4443, + "Vir": 4444, + "genetic": 4445, + "collaboration": 4446, + "encounter": 4447, + "Pat": 4448, + "Common": 4449, + "Sal": 4450, + "mot": 4451, + "Check": 4452, + "north": 4453, + "charge": 4454, + "osen": 4455, + "NO": 4456, + "trig": 4457, + "func": 4458, + "fruit": 4459, + "IM": 4460, + "Rep": 4461, + "Environ": 4462, + "La": 4463, + "Its": 4464, + "engineering": 4465, + "decimal": 4466, + "oma": 4467, + "maximum": 4468, + "Multi": 4469, + "ophy": 4470, + "Water": 4471, + "ni": 4472, + "Hy": 4473, + "....": 4474, + "opin": 4475, + "Care": 4476, + "sched": 4477, + "maybe": 4478, + "easier": 4479, + "rad": 4480, + "Similarly": 4481, + "rote": 4482, + "sac": 4483, + "containing": 4484, + "ED": 4485, + "Art": 4486, + "ingredients": 4487, + "Both": 4488, + "East": 4489, + "cide": 4490, + "smooth": 4491, + "Bre": 4492, + "Import": 4493, + "distinct": 4494, + "virus": 4495, + "General": 4496, + "telling": 4497, + "nothing": 4498, + "consequences": 4499, + "therefore": 4500, + "Design": 4501, + "stra": 4502, + "San": 4503, + "immune": 4504, + "academic": 4505, + "excess": 4506, + "wis": 4507, + "drug": 4508, + "seems": 4509, + "involving": 4510, + "Pri": 4511, + "helped": 4512, + "plans": 4513, + "remaining": 4514, + "lights": 4515, + "resilience": 4516, + "innovative": 4517, + "aj": 4518, + "Ñĭ": 4519, + "Local": 4520, + "atmo": 4521, + "storage": 4522, + "Net": 4523, + "File": 4524, + "spiritual": 4525, + "Wash": 4526, + "characteristics": 4527, + "analyze": 4528, + "ĊĠĠĠĠĠĠ": 4529, + "________": 4530, + "Park": 4531, + "Last": 4532, + "parameters": 4533, + "landscape": 4534, + "notes": 4535, + "olic": 4536, + "Think": 4537, + "norm": 4538, + "incorporating": 4539, + "password": 4540, + "ecture": 4541, + "coast": 4542, + "seed": 4543, + "journal": 4544, + "lamb": 4545, + "rang": 4546, + "Fam": 4547, + "hit": 4548, + "°": 4549, + "vast": 4550, + "occurs": 4551, + "nes": 4552, + "Also": 4553, + "hydro": 4554, + "south": 4555, + "bow": 4556, + "tee": 4557, + "samples": 4558, + "strategy": 4559, + "ET": 4560, + "buildings": 4561, + "Del": 4562, + "Bas": 4563, + "Cap": 4564, + "summer": 4565, + "Thom": 4566, + "bles": 4567, + "ogle": 4568, + "agg": 4569, + "ordinary": 4570, + "iles": 4571, + "gun": 4572, + "Bal": 4573, + "wrote": 4574, + "vest": 4575, + "creativity": 4576, + "binary": 4577, + "Ñı": 4578, + "Department": 4579, + "Stu": 4580, + "conflict": 4581, + "profit": 4582, + "classroom": 4583, + "graphic": 4584, + "turned": 4585, + "tific": 4586, + "enable": 4587, + "rael": 4588, + "freedom": 4589, + "conv": 4590, + "attach": 4591, + "ampl": 4592, + "absor": 4593, + "ache": 4594, + "tempt": 4595, + "drawing": 4596, + "upd": 4597, + "ondon": 4598, + "football": 4599, + "veness": 4600, + "solving": 4601, + "Mor": 4602, + "apers": 4603, + "recommend": 4604, + "circum": 4605, + ")Ġ==Ġ": 4606, + "tradition": 4607, + "cold": 4608, + "illness": 4609, + "preced": 4610, + "addressing": 4611, + "Dire": 4612, + "leaving": 4613, + "alter": 4614, + "foreign": 4615, + "Start": 4616, + "modu": 4617, + "networks": 4618, + "token": 4619, + "birds": 4620, + "amid": 4621, + "eventually": 4622, + "CH": 4623, + "contrast": 4624, + "House": 4625, + "DNA": 4626, + "Fol": 4627, + "prefer": 4628, + "sentence": 4629, + "module": 4630, + "performed": 4631, + "client": 4632, + "male": 4633, + "frequency": 4634, + "bruary": 4635, + "cohol": 4636, + "ao": 4637, + "Institute": 4638, + "illustr": 4639, + "cro": 4640, + "Next": 4641, + "lap": 4642, + "Thus": 4643, + "betes": 4644, + "appoint": 4645, + "efficiency": 4646, + "amazing": 4647, + "stood": 4648, + "Sou": 4649, + "texts": 4650, + "locks": 4651, + "Western": 4652, + "seven": 4653, + "worry": 4654, + "London": 4655, + "lst": 4656, + "Human": 4657, + "river": 4658, + "ru": 4659, + "contri": 4660, + "esti": 4661, + "lete": 4662, + "oles": 4663, + "neuro": 4664, + "serves": 4665, + "institutions": 4666, + "happen": 4667, + "phenomen": 4668, + "ulty": 4669, + "Jewish": 4670, + "figures": 4671, + "clust": 4672, + "presence": 4673, + "citizens": 4674, + "à¤": 4675, + "pred": 4676, + "rare": 4677, + "hur": 4678, + "explo": 4679, + "metal": 4680, + "Israel": 4681, + "released": 4682, + "winter": 4683, + "bacteria": 4684, + "secure": 4685, + "CS": 4686, + "liqu": 4687, + "Sch": 4688, + "attr": 4689, + "roots": 4690, + "Please": 4691, + "concl": 4692, + "internal": 4693, + "volume": 4694, + "platforms": 4695, + "Union": 4696, + "Organ": 4697, + "representation": 4698, + "owners": 4699, + "Ir": 4700, + "Vol": 4701, + "itoring": 4702, + "sequently": 4703, + "possess": 4704, + "aller": 4705, + "looked": 4706, + "Gen": 4707, + "commonly": 4708, + "myster": 4709, + "native": 4710, + "\":Ġ": 4711, + "reser": 4712, + "enab": 4713, + "Emp": 4714, + "tely": 4715, + "appreciation": 4716, + "Japanese": 4717, + "Second": 4718, + "campaign": 4719, + "friendly": 4720, + "frequently": 4721, + "Church": 4722, + "currently": 4723, + "Ver": 4724, + "Found": 4725, + "enty": 4726, + "selection": 4727, + "separate": 4728, + "dialog": 4729, + "ek": 4730, + "Plan": 4731, + "fundamental": 4732, + "President": 4733, + "County": 4734, + "February": 4735, + "las": 4736, + "Because": 4737, + "Ber": 4738, + "Ġ\\": 4739, + "ums": 4740, + "continues": 4741, + "die": 4742, + "offering": 4743, + "thers": 4744, + "sem": 4745, + "navigate": 4746, + "ador": 4747, + "primarily": 4748, + "reverse": 4749, + "grand": 4750, + "accuracy": 4751, + "flex": 4752, + "Build": 4753, + "France": 4754, + "slam": 4755, + "ani": 4756, + "exists": 4757, + "umb": 4758, + "signal": 4759, + "presented": 4760, + "predic": 4761, + "anxiety": 4762, + "affic": 4763, + "ensures": 4764, + "ficient": 4765, + "secret": 4766, + "stock": 4767, + "religion": 4768, + "mand": 4769, + "Mean": 4770, + "vul": 4771, + "heavy": 4772, + "Arch": 4773, + "staff": 4774, + "#ĠĠĠĠĠ": 4775, + "recently": 4776, + "capable": 4777, + "extends": 4778, + "court": 4779, + "vibr": 4780, + "Span": 4781, + "accurate": 4782, + "orge": 4783, + "agon": 4784, + "violence": 4785, + "mers": 4786, + "HT": 4787, + "college": 4788, + "Sometimes": 4789, + "cv": 4790, + "Air": 4791, + "cultiv": 4792, + "Tri": 4793, + "Students": 4794, + "dynamics": 4795, + "Happ": 4796, + "homes": 4797, + "enses": 4798, + "mist": 4799, + "arguments": 4800, + "define": 4801, + "ries": 4802, + "basis": 4803, + "completely": 4804, + "udes": 4805, + "yield": 4806, + "managing": 4807, + "UT": 4808, + "PS": 4809, + "reci": 4810, + "creates": 4811, + "wait": 4812, + "thetic": 4813, + "discussions": 4814, + "Mal": 4815, + "handle": 4816, + ")):": 4817, + "oxy": 4818, + "ÑĮ": 4819, + "nd": 4820, + "Mag": 4821, + "smart": 4822, + "station": 4823, + "consumption": 4824, + "description": 4825, + "quar": 4826, + "ó": 4827, + "MS": 4828, + "click": 4829, + "empathy": 4830, + "ingly": 4831, + "Ġ--Ġ": 4832, + "Retur": 4833, + "tun": 4834, + "ails": 4835, + "discussion": 4836, + "\"Ġ(": 4837, + "curren": 4838, + "innovation": 4839, + "Govern": 4840, + "broader": 4841, + ".)Ġ": 4842, + "trends": 4843, + "cooking": 4844, + "arios": 4845, + "edges": 4846, + "Back": 4847, + "margin": 4848, + "articles": 4849, + "Throughout": 4850, + "auty": 4851, + "Tra": 4852, + "speech": 4853, + "component": 4854, + "åı": 4855, + "participants": 4856, + "improving": 4857, + "leads": 4858, + "Paren": 4859, + "spot": 4860, + "Cam": 4861, + "identified": 4862, + "starts": 4863, + "tively": 4864, + "customers": 4865, + "().": 4866, + "moved": 4867, + "gers": 4868, + "careful": 4869, + "ION": 4870, + "lu": 4871, + "ultimately": 4872, + "Islam": 4873, + "ils": 4874, + "html": 4875, + "Food": 4876, + "Main": 4877, + "pp": 4878, + "\",\"": 4879, + "guidelines": 4880, + "writer": 4881, + "wealth": 4882, + "tos": 4883, + "nearly": 4884, + "believed": 4885, + "aters": 4886, + "PD": 4887, + "button": 4888, + "meeting": 4889, + "Phil": 4890, + "------------": 4891, + "ãģ": 4892, + "shif": 4893, + "ka": 4894, + "external": 4895, + "Ġ||Ġ": 4896, + "fing": 4897, + "iosity": 4898, + "closely": 4899, + "voice": 4900, + "church": 4901, + "introduced": 4902, + "societal": 4903, + "federal": 4904, + "IG": 4905, + "seek": 4906, + "#ĠĠĠĠĠĠĠĠ": 4907, + "bank": 4908, + "engagement": 4909, + "OS": 4910, + "pressing": 4911, + "messages": 4912, + "wit": 4913, + "icious": 4914, + "chance": 4915, + "Journal": 4916, + "Public": 4917, + "hypo": 4918, + "responsibility": 4919, + "âĢ¢Ġ": 4920, + "deli": 4921, + "marks": 4922, + "dimension": 4923, + "Year": 4924, + "Ċĉĉĉĉ": 4925, + "incredible": 4926, + "absol": 4927, + "excell": 4928, + "exploration": 4929, + "reference": 4930, + "adj": 4931, + "treated": 4932, + "centuries": 4933, + "Cy": 4934, + "conscious": 4935, + "hydr": 4936, + "bag": 4937, + "aria": 4938, + "lambda": 4939, + "aimed": 4940, + "plastic": 4941, + "gave": 4942, + "loved": 4943, + "approximately": 4944, + "query": 4945, + "Ter": 4946, + "shift": 4947, + "prepared": 4948, + "disorders": 4949, + "touch": 4950, + "encourage": 4951, + "čĊčĊĠĠĠĠ": 4952, + "slight": 4953, + "Part": 4954, + "Bud": 4955, + "Green": 4956, + "ÃŃ": 4957, + "util": 4958, + "selected": 4959, + "shall": 4960, + "territ": 4961, + "fee": 4962, + "prices": 4963, + "va": 4964, + "ading": 4965, + "phr": 4966, + "peace": 4967, + "mountain": 4968, + "harmon": 4969, + "->Ġ": 4970, + "disorder": 4971, + "James": 4972, + "Prac": 4973, + "discrim": 4974, + "CA": 4975, + "Washington": 4976, + "happened": 4977, + "teeth": 4978, + "Learning": 4979, + "Ref": 4980, + "Scot": 4981, + "sand": 4982, + "pd": 4983, + "sky": 4984, + "Grou": 4985, + "Australia": 4986, + "render": 4987, + "digit": 4988, + "ptions": 4989, + "Ġ@": 4990, + "cket": 4991, + "convert": 4992, + "orial": 4993, + "otal": 4994, + "domin": 4995, + "clinical": 4996, + "susp": 4997, + "tiny": 4998, + "pages": 4999, + "digits": 5000, + "recognize": 5001, + "Gloss": 5002, + "tips": 5003, + "Line": 5004, + "rati": 5005, + "reds": 5006, + "shapes": 5007, + "guidance": 5008, + "server": 5009, + "spent": 5010, + "finally": 5011, + "=-": 5012, + "Ñĩ": 5013, + "spring": 5014, + "$Ġ": 5015, + "Egy": 5016, + "neighbor": 5017, + "Current": 5018, + "Development": 5019, + "Germany": 5020, + "impacts": 5021, + "comfortable": 5022, + "lista": 5023, + "visible": 5024, + "independent": 5025, + "perspective": 5026, + "exchange": 5027, + "resist": 5028, + "craf": 5029, + "garden": 5030, + "insur": 5031, + "east": 5032, + "Glossary": 5033, + "invent": 5034, + "ops": 5035, + "curr": 5036, + "boundaries": 5037, + "knows": 5038, + "showed": 5039, + "Like": 5040, + "moves": 5041, + "\"]": 5042, + "åĪ": 5043, + "missing": 5044, + "industrial": 5045, + "bridge": 5046, + "CE": 5047, + "courage": 5048, + "wear": 5049, + "office": 5050, + "erate": 5051, + "lose": 5052, + "appears": 5053, + "chosen": 5054, + "Such": 5055, + "parties": 5056, + "paint": 5057, + "discovery": 5058, + "proto": 5059, + "drugs": 5060, + "ethical": 5061, + "anc": 5062, + "consistent": 5063, + "bone": 5064, + "interact": 5065, + "vs": 5066, + "explained": 5067, + "College": 5068, + "uma": 5069, + "movie": 5070, + "sell": 5071, + "isol": 5072, + "excl": 5073, + "highest": 5074, + "forced": 5075, + "Mac": 5076, + "supporting": 5077, + "tile": 5078, + "combination": 5079, + "intelligence": 5080, + "pa": 5081, + "barri": 5082, + "Power": 5083, + "params": 5084, + "gery": 5085, + "butions": 5086, + "pin": 5087, + "elim": 5088, + "Ho": 5089, + "Dif": 5090, + "Greek": 5091, + "Middle": 5092, + "ëĭ": 5093, + "iment": 5094, + "visited": 5095, + "vulner": 5096, + "icy": 5097, + "Therefore": 5098, + "desired": 5099, + "aughter": 5100, + "pregn": 5101, + "attempt": 5102, + "utf": 5103, + "powers": 5104, + "interactions": 5105, + "plus": 5106, + "William": 5107, + "communicate": 5108, + "eving": 5109, + "audience": 5110, + "stract": 5111, + "Medic": 5112, + "cognitive": 5113, + "Open": 5114, + "alcohol": 5115, + "osing": 5116, + "milk": 5117, + "assessment": 5118, + "sho": 5119, + "pool": 5120, + "drive": 5121, + "investment": 5122, + "Returns": 5123, + "enem": 5124, + "straight": 5125, + "observed": 5126, + "âĢĺ": 5127, + "Wind": 5128, + "closer": 5129, + "beauty": 5130, + "advantages": 5131, + "Post": 5132, + "Google": 5133, + "reader": 5134, + "estic": 5135, + "minor": 5136, + "sters": 5137, + "Ġ#Ġ": 5138, + "goods": 5139, + "ano": 5140, + "aches": 5141, + "fab": 5142, + "fant": 5143, + "yes": 5144, + "kwar": 5145, + "Work": 5146, + "gained": 5147, + "passion": 5148, + "ĊĊĠĠĠĠĠĠĠĠĠĠĠĠ": 5149, + "stro": 5150, + "Ġ(Ġ": 5151, + "Spanish": 5152, + "ML": 5153, + "eight": 5154, + "lists": 5155, + "Women": 5156, + "Management": 5157, + "behaviors": 5158, + "keting": 5159, + "correspond": 5160, + "ida": 5161, + "dedicated": 5162, + "mitted": 5163, + "ifying": 5164, + "tissue": 5165, + "sole": 5166, + "Fre": 5167, + "ficial": 5168, + "commercial": 5169, + "Mary": 5170, + "Frame": 5171, + "Question": 5172, + "increases": 5173, + "Fil": 5174, + "virtual": 5175, + "lots": 5176, + "experts": 5177, + "Happy": 5178, + "anks": 5179, + "ads": 5180, + "tf": 5181, + "cars": 5182, + "computers": 5183, + "sides": 5184, + "fortun": 5185, + "PA": 5186, + "contract": 5187, + "organic": 5188, + "adult": 5189, + "double": 5190, + "ients": 5191, + "inten": 5192, + "renew": 5193, + "diff": 5194, + "traffic": 5195, + "assum": 5196, + "represented": 5197, + "kwargs": 5198, + "truly": 5199, + "democr": 5200, + "gradu": 5201, + "thin": 5202, + "sufficient": 5203, + "Sto": 5204, + "wasn": 5205, + "stick": 5206, + "Fore": 5207, + "suggests": 5208, + "netic": 5209, + "activ": 5210, + "diabetes": 5211, + "MA": 5212, + "consult": 5213, + "^Ġ": 5214, + "happy": 5215, + "confidence": 5216, + "regional": 5217, + "alongside": 5218, + "Society": 5219, + "electricity": 5220, + "scores": 5221, + "ectives": 5222, + "rein": 5223, + "ellect": 5224, + "describe": 5225, + "conservation": 5226, + "volun": 5227, + "inspired": 5228, + "credit": 5229, + "izer": 5230, + "extrem": 5231, + "restr": 5232, + "literary": 5233, + "Pho": 5234, + "revolution": 5235, + "Web": 5236, + "UK": 5237, + "optimal": 5238, + "atter": 5239, + "ng": 5240, + "phase": 5241, + "edia": 5242, + "Association": 5243, + "curiosity": 5244, + "ingu": 5245, + "motion": 5246, + "Ġ=Ġ{": 5247, + "thentic": 5248, + "Children": 5249, + "Cong": 5250, + "VID": 5251, + "politics": 5252, + "istry": 5253, + "potentially": 5254, + "ìŀ": 5255, + "ologists": 5256, + "Sen": 5257, + "heritage": 5258, + "ville": 5259, + "Good": 5260, + "Indig": 5261, + "apart": 5262, + "adventure": 5263, + "Case": 5264, + "matic": 5265, + "Ġ**": 5266, + "calls": 5267, + "foundation": 5268, + "catch": 5269, + "alysis": 5270, + "tro": 5271, + "minimum": 5272, + "Book": 5273, + "ê°": 5274, + "muscle": 5275, + "database": 5276, + "Index": 5277, + "iat": 5278, + "versal": 5279, + "Lin": 5280, + "·Ġ": 5281, + "Ul": 5282, + "chronic": 5283, + "zo": 5284, + "Central": 5285, + "Among": 5286, + "analyzing": 5287, + "з": 5288, + "Sarah": 5289, + "Republic": 5290, + "exciting": 5291, + "reports": 5292, + "ensions": 5293, + "regul": 5294, + "teams": 5295, + "hundreds": 5296, + "orient": 5297, + "Phys": 5298, + ",Ġ(": 5299, + "purposes": 5300, + "parse": 5301, + "rul": 5302, + "category": 5303, + "exhib": 5304, + "Text": 5305, + "observ": 5306, + "employees": 5307, + "truth": 5308, + "AB": 5309, + "Subtract": 5310, + "eline": 5311, + "George": 5312, + "express": 5313, + "mm": 5314, + "detect": 5315, + "radio": 5316, + "Rich": 5317, + "thick": 5318, + "breaking": 5319, + "knew": 5320, + "grees": 5321, + "cos": 5322, + "periods": 5323, + "designs": 5324, + ".ĠĠ": 5325, + "GB": 5326, + "implications": 5327, + "combined": 5328, + "facing": 5329, + "Por": 5330, + "temperatures": 5331, + "depression": 5332, + "anth": 5333, + "oty": 5334, + "meaningful": 5335, + "frastructure": 5336, + "legis": 5337, + "compare": 5338, + "treatments": 5339, + "'))": 5340, + "usual": 5341, + "arrow": 5342, + "Note": 5343, + "lan": 5344, + "subjects": 5345, + "Nat": 5346, + "Men": 5347, + "customer": 5348, + "Mil": 5349, + "produc": 5350, + "cade": 5351, + "baby": 5352, + "distribut": 5353, + "amoun": 5354, + "tise": 5355, + "club": 5356, + "temporary": 5357, + "icit": 5358, + "aint": 5359, + "Mem": 5360, + "String": 5361, + "Color": 5362, + "notice": 5363, + "documents": 5364, + "eful": 5365, + "enum": 5366, + "Point": 5367, + "script": 5368, + "completed": 5369, + "ĠÂ": 5370, + "artist": 5371, + "intricate": 5372, + "otherwise": 5373, + "knowing": 5374, + "immediately": 5375, + "manip": 5376, + "acknow": 5377, + "ardi": 5378, + "wers": 5379, + "fruits": 5380, + "oted": 5381, + "chec": 5382, + "asking": 5383, + "ergy": 5384, + "icial": 5385, + "Write": 5386, + "writers": 5387, + "park": 5388, + "ram": 5389, + "advantage": 5390, + "seeds": 5391, + "programming": 5392, + "appearance": 5393, + "tices": 5394, + "æķ": 5395, + "monitoring": 5396, + "ica": 5397, + "collective": 5398, + "nations": 5399, + "enables": 5400, + "bling": 5401, + "floor": 5402, + "David": 5403, + "miner": 5404, + "migration": 5405, + "returned": 5406, + "circumst": 5407, + "actors": 5408, + "lon": 5409, + "horiz": 5410, + "announ": 5411, + "Ci": 5412, + "explored": 5413, + "Bur": 5414, + "fold": 5415, + "underlying": 5416, + "Paul": 5417, + "ican": 5418, + "Bet": 5419, + "existence": 5420, + "flowers": 5421, + "lets": 5422, + "feedback": 5423, + "tenance": 5424, + "versi": 5425, + "interested": 5426, + "Bra": 5427, + "airs": 5428, + "summary": 5429, + "thy": 5430, + "Teach": 5431, + "inse": 5432, + "hash": 5433, + "remind": 5434, + "vegetables": 5435, + "persist": 5436, + "Follow": 5437, + "Space": 5438, + "MM": 5439, + "Ġ)Ġ": 5440, + "cris": 5441, + "Stand": 5442, + "Fran": 5443, + "Indigenous": 5444, + "Eff": 5445, + "previously": 5446, + "nine": 5447, + "ocean": 5448, + "leadership": 5449, + "determined": 5450, + "resol": 5451, + "ito": 5452, + "cutting": 5453, + "occas": 5454, + "technical": 5455, + "regularly": 5456, + "Fo": 5457, + "~~": 5458, + "motor": 5459, + "cks": 5460, + "mage": 5461, + "opening": 5462, + "saying": 5463, + "mobile": 5464, + "tens": 5465, + "ING": 5466, + "dynamic": 5467, + "election": 5468, + "oxygen": 5469, + "jobs": 5470, + "styles": 5471, + "closed": 5472, + "internet": 5473, + "emissions": 5474, + "faster": 5475, + "wash": 5476, + "ahead": 5477, + "degrees": 5478, + "Model": 5479, + "Ang": 5480, + "recei": 5481, + "transportation": 5482, + "tension": 5483, + "tral": 5484, + "Bus": 5485, + "LO": 5486, + "follows": 5487, + "Given": 5488, + "TE": 5489, + "stronger": 5490, + "bled": 5491, + "arts": 5492, + "looks": 5493, + "reached": 5494, + "Tex": 5495, + "algorithm": 5496, + "conducted": 5497, + "symbols": 5498, + "talking": 5499, + "god": 5500, + "suitable": 5501, + "COVID": 5502, + "Control": 5503, + "gate": 5504, + "particles": 5505, + "prepare": 5506, + "bright": 5507, + "inates": 5508, + "spend": 5509, + "tum": 5510, + "offset": 5511, + "complexity": 5512, + "billion": 5513, + "Did": 5514, + "Mis": 5515, + "widely": 5516, + "firm": 5517, + "shaped": 5518, + "precis": 5519, + "tmp": 5520, + "onses": 5521, + "hero": 5522, + "ii": 5523, + "unexpected": 5524, + "borrow": 5525, + "fellow": 5526, + "prec": 5527, + "instructions": 5528, + "bird": 5529, + "seconds": 5530, + "Early": 5531, + "datetime": 5532, + "Glo": 5533, + "Initi": 5534, + "ya": 5535, + "doors": 5536, + "driving": 5537, + "ventions": 5538, + "CC": 5539, + "evaluates": 5540, + "Brit": 5541, + "menu": 5542, + "applying": 5543, + "Sha": 5544, + "conventional": 5545, + "vas": 5546, + "weights": 5547, + "yellow": 5548, + "oretical": 5549, + "Output": 5550, + "arent": 5551, + "]Ġ==Ġ": 5552, + "atmosphere": 5553, + "valent": 5554, + "communic": 5555, + "Saf": 5556, + "adequ": 5557, + "Process": 5558, + "Long": 5559, + "properly": 5560, + "Image": 5561, + "thread": 5562, + "battle": 5563, + "relax": 5564, + "mul": 5565, + "iff": 5566, + "ena": 5567, + "shar": 5568, + "speaking": 5569, + "genes": 5570, + "ava": 5571, + "pictures": 5572, + "kid": 5573, + "Hand": 5574, + "mail": 5575, + "meat": 5576, + "majority": 5577, + "Ġ(\"": 5578, + "amounts": 5579, + "Mer": 5580, + "mask": 5581, + "removed": 5582, + "Board": 5583, + "wave": 5584, + "goti": 5585, + "remark": 5586, + "ini": 5587, + "operating": 5588, + "considering": 5589, + "nt": 5590, + "notic": 5591, + "youth": 5592, + "Ess": 5593, + "clearly": 5594, + "functional": 5595, + "pip": 5596, + "ultane": 5597, + "White": 5598, + "decades": 5599, + "liber": 5600, + "strengthen": 5601, + "fine": 5602, + "mac": 5603, + "injury": 5604, + "realized": 5605, + "definition": 5606, + "ato": 5607, + "affects": 5608, + "errors": 5609, + "moral": 5610, + "Whe": 5611, + "relations": 5612, + "sensitive": 5613, + "official": 5614, + "Take": 5615, + "\")Ġ": 5616, + ":Ġ{": 5617, + "emerging": 5618, + "Econ": 5619, + "taught": 5620, + "sales": 5621, + "Group": 5622, + "dot": 5623, + "destroy": 5624, + "[-": 5625, + "grass": 5626, + "generated": 5627, + "meant": 5628, + "deeply": 5629, + "TV": 5630, + "brand": 5631, + "wisdom": 5632, + "Asia": 5633, + "governments": 5634, + "nearby": 5635, + "soldi": 5636, + "circle": 5637, + "matters": 5638, + "Off": 5639, + "mechanisms": 5640, + "expectations": 5641, + "bra": 5642, + "Path": 5643, + "composition": 5644, + "intellect": 5645, + "relative": 5646, + "carried": 5647, + "competition": 5648, + "Yes": 5649, + "waves": 5650, + "arrange": 5651, + "poem": 5652, + "organisms": 5653, + "trip": 5654, + "ideal": 5655, + "Arab": 5656, + "km": 5657, + "holders": 5658, + "controlled": 5659, + ".)": 5660, + "Word": 5661, + "CP": 5662, + "flour": 5663, + "locations": 5664, + "adian": 5665, + "illing": 5666, + "Conn": 5667, + "etry": 5668, + "infrastructure": 5669, + "lig": 5670, + "relatively": 5671, + "intended": 5672, + "simpl": 5673, + "paralle": 5674, + "budget": 5675, + "Kore": 5676, + "makers": 5677, + "brief": 5678, + "answers": 5679, + "joint": 5680, + "procedures": 5681, + "creatures": 5682, + "cher": 5683, + "employment": 5684, + "Discus": 5685, + "architecture": 5686, + "offered": 5687, + "liquid": 5688, + "iron": 5689, + "leader": 5690, + "rank": 5691, + "breast": 5692, + "DA": 5693, + "attemp": 5694, + "covering": 5695, + "Call": 5696, + "delete": 5697, + "Old": 5698, + "apped": 5699, + "osis": 5700, + "platform": 5701, + "Scienti": 5702, + "Pac": 5703, + "trou": 5704, + "Latin": 5705, + "capture": 5706, + "iled": 5707, + "responses": 5708, + "pix": 5709, + "Econom": 5710, + "supported": 5711, + "Tem": 5712, + "walls": 5713, + "xy": 5714, + "Look": 5715, + "Inte": 5716, + "circumstances": 5717, + "referred": 5718, + "scan": 5719, + "åħ": 5720, + "decide": 5721, + "sud": 5722, + "lie": 5723, + "arms": 5724, + "sym": 5725, + "eggs": 5726, + "acles": 5727, + "Technology": 5728, + "vessel": 5729, + "excellent": 5730, + "Land": 5731, + "hospital": 5732, + "riage": 5733, + "eding": 5734, + "wants": 5735, + "schem": 5736, + "Modern": 5737, + "pollution": 5738, + "ky": 5739, + "Study": 5740, + "forming": 5741, + "Together": 5742, + "successfully": 5743, + "Island": 5744, + "crete": 5745, + "cols": 5746, + "usage": 5747, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 5748, + "inent": 5749, + "radiation": 5750, + "recognition": 5751, + "')Ġ": 5752, + "remained": 5753, + "san": 5754, + "ende": 5755, + "listen": 5756, + "electrical": 5757, + "?\"Ġ": 5758, + "weap": 5759, + "env": 5760, + "agre": 5761, + "instruction": 5762, + "failure": 5763, + "showing": 5764, + "huge": 5765, + "transl": 5766, + "Oh": 5767, + "Cath": 5768, + "empower": 5769, + "colonial": 5770, + "trieved": 5771, + "medium": 5772, + "Table": 5773, + "Council": 5774, + "ron": 5775, + "western": 5776, + "flood": 5777, + "vehicle": 5778, + "kin": 5779, + "reporting": 5780, + "Ġ^Ġ": 5781, + "thorough": 5782, + "Stre": 5783, + "CR": 5784, + "introduction": 5785, + "captiv": 5786, + "raised": 5787, + "sig": 5788, + "pts": 5789, + "hyper": 5790, + "astr": 5791, + "organized": 5792, + "dollar": 5793, + "couldn": 5794, + "Engine": 5795, + "Jer": 5796, + "slightly": 5797, + "haz": 5798, + "fu": 5799, + "indicate": 5800, + "Spe": 5801, + "fly": 5802, + "alike": 5803, + "ValueError": 5804, + "grant": 5805, + "aced": 5806, + "ashion": 5807, + "courses": 5808, + "millions": 5809, + "Muslim": 5810, + "Activity": 5811, + "Hen": 5812, + "gro": 5813, + "refle": 5814, + "walking": 5815, + "idents": 5816, + "annual": 5817, + "Oper": 5818, + "flat": 5819, + ",Ġ-": 5820, + "authentic": 5821, + "everyday": 5822, + "Sing": 5823, + "Service": 5824, + "technological": 5825, + "stars": 5826, + "marked": 5827, + "ceptions": 5828, + "noise": 5829, + "Move": 5830, + "exercises": 5831, + "################################": 5832, + "regulations": 5833, + "proteins": 5834, + "sudden": 5835, + "scene": 5836, + "ü": 5837, + "lers": 5838, + "artistic": 5839, + "bt": 5840, + "encourages": 5841, + "std": 5842, + "struggle": 5843, + "surgery": 5844, + "Vari": 5845, + "Information": 5846, + "appeared": 5847, + "embracing": 5848, + "taste": 5849, + "iling": 5850, + "intervention": 5851, + "About": 5852, + "improvement": 5853, + "Pop": 5854, + "qui": 5855, + "shor": 5856, + "grav": 5857, + "reaction": 5858, + "categories": 5859, + "nuclear": 5860, + "Civil": 5861, + "holding": 5862, + "Project": 5863, + "pover": 5864, + "circu": 5865, + "assistance": 5866, + "houses": 5867, + "Choose": 5868, + "puzz": 5869, + "Ca": 5870, + "Apply": 5871, + "films": 5872, + "subtract": 5873, + "machines": 5874, + "SS": 5875, + ");Ġ": 5876, + "emerged": 5877, + "zon": 5878, + "heap": 5879, + "opy": 5880, + "rhy": 5881, + "Micro": 5882, + "ratio": 5883, + "authority": 5884, + "dialogue": 5885, + "cin": 5886, + "societies": 5887, + "unk": 5888, + "listening": 5889, + "vin": 5890, + "blocks": 5891, + "plotlib": 5892, + "ен": 5893, + "Treat": 5894, + "Langu": 5895, + "route": 5896, + "bum": 5897, + "Thomas": 5898, + "ander": 5899, + "grap": 5900, + "bility": 5901, + "directory": 5902, + "Wal": 5903, + "island": 5904, + "electronic": 5905, + "Self": 5906, + "gment": 5907, + "producing": 5908, + ")]": 5909, + "formal": 5910, + "preferences": 5911, + "bell": 5912, + "elev": 5913, + "scenarios": 5914, + "prison": 5915, + "Bat": 5916, + "Wil": 5917, + "pray": 5918, + "enabling": 5919, + "employed": 5920, + "nan": 5921, + "examination": 5922, + "bond": 5923, + "Method": 5924, + "Energy": 5925, + "advice": 5926, + "victim": 5927, + "please": 5928, + "liver": 5929, + "prove": 5930, + "plicated": 5931, + "curious": 5932, + "abuse": 5933, + "harmful": 5934, + "Studies": 5935, + "rooms": 5936, + "resolution": 5937, + "ulum": 5938, + "photograph": 5939, + "bits": 5940, + "Ve": 5941, + "neu": 5942, + "promise": 5943, + "Game": 5944, + "dogs": 5945, + "implementation": 5946, + "noticed": 5947, + "toxic": 5948, + "wellbeing": 5949, + "pairs": 5950, + "Museum": 5951, + "healing": 5952, + "span": 5953, + "brow": 5954, + "border": 5955, + "interaction": 5956, + "orn": 5957, + "helpful": 5958, + "turns": 5959, + "æľ": 5960, + "Sign": 5961, + "Bay": 5962, + "farmers": 5963, + "Stat": 5964, + "rapidly": 5965, + "Mexico": 5966, + "AA": 5967, + "ĊĠĠĠĠĠĠĠĠĊĠĠĠĠĠĠĠĠ": 5968, + "Orig": 5969, + "counting": 5970, + "utional": 5971, + "sections": 5972, + "proposed": 5973, + "obst": 5974, + "consists": 5975, + "escap": 5976, + "LL": 5977, + "assu": 5978, + "Historical": 5979, + "ME": 5980, + "recommended": 5981, + "divided": 5982, + "avors": 5983, + "ÑģÑĤ": 5984, + "absolute": 5985, + "visions": 5986, + "Government": 5987, + "afford": 5988, + "demonstrate": 5989, + "Met": 5990, + "offee": 5991, + "representing": 5992, + ":ĠâĢľ": 5993, + "paths": 5994, + "Return": 5995, + "timate": 5996, + "magn": 5997, + "leaf": 5998, + "initiatives": 5999, + "sheet": 6000, + "trial": 6001, + "forget": 6002, + "coal": 6003, + "Ġ//Ġ": 6004, + "conflicts": 6005, + "comprehensive": 6006, + "zeros": 6007, + ">>>Ġ": 6008, + "thusi": 6009, + "deaths": 6010, + "conversations": 6011, + "Figure": 6012, + "salt": 6013, + "semb": 6014, + "fulness": 6015, + "participate": 6016, + "âĢĵĠ": 6017, + "reduction": 6018, + "Internet": 6019, + "maintenance": 6020, + "realm": 6021, + "biological": 6022, + "Music": 6023, + "fluid": 6024, + "Ġ->Ġ": 6025, + "introduce": 6026, + "Lou": 6027, + "Calcul": 6028, + "vehicles": 6029, + "feat": 6030, + "insight": 6031, + "stages": 6032, + "uct": 6033, + "insurance": 6034, + "\"))": 6035, + "discussed": 6036, + "embark": 6037, + "hearing": 6038, + "substanti": 6039, + "ords": 6040, + "Medical": 6041, + "accounts": 6042, + "chemicals": 6043, + "crop": 6044, + "preserving": 6045, + "æķ°": 6046, + "Anti": 6047, + "simultane": 6048, + "Cri": 6049, + "nutrition": 6050, + "aran": 6051, + ")Ġ->Ġ": 6052, + "estyle": 6053, + "Age": 6054, + "marine": 6055, + "waiting": 6056, + "Tom": 6057, + "Analysis": 6058, + "signals": 6059, + "managed": 6060, + "collections": 6061, + "Congress": 6062, + "estimated": 6063, + "psychological": 6064, + "download": 6065, + "habits": 6066, + "posing": 6067, + "tooth": 6068, + "compassion": 6069, + "negoti": 6070, + "profound": 6071, + "posite": 6072, + "TS": 6073, + "fron": 6074, + "accompl": 6075, + "painting": 6076, + "owned": 6077, + "industries": 6078, + "practicing": 6079, + "Us": 6080, + "curric": 6081, + "zone": 6082, + "ologist": 6083, + "oxide": 6084, + "asty": 6085, + "som": 6086, + "recovery": 6087, + "ìĿ´": 6088, + "extre": 6089, + "bol": 6090, + "emic": 6091, + "paid": 6092, + "logical": 6093, + "enthusi": 6094, + "guard": 6095, + "Home": 6096, + "Practi": 6097, + "Sear": 6098, + "assignment": 6099, + "Russian": 6100, + "shot": 6101, + "čĊĉĉ": 6102, + "reward": 6103, + "font": 6104, + "discrimination": 6105, + "rub": 6106, + "]]": 6107, + "ticism": 6108, + "dream": 6109, + "meal": 6110, + "qualities": 6111, + "rt": 6112, + "branch": 6113, + "Train": 6114, + "doctors": 6115, + "Building": 6116, + "zen": 6117, + "onomy": 6118, + "waters": 6119, + "mixed": 6120, + "bind": 6121, + "Any": 6122, + "prompt": 6123, + "Print": 6124, + "begins": 6125, + "amidst": 6126, + "Native": 6127, + "pressive": 6128, + "killed": 6129, + "Down": 6130, + "enhancing": 6131, + "IR": 6132, + "mov": 6133, + "markets": 6134, + "muscles": 6135, + "agreement": 6136, + "entertain": 6137, + "dangerous": 6138, + "ampion": 6139, + "ìĹ": 6140, + "dance": 6141, + "moti": 6142, + "therap": 6143, + "stored": 6144, + "extreme": 6145, + "attract": 6146, + "inputs": 6147, + "agers": 6148, + "claims": 6149, + "ief": 6150, + "discussing": 6151, + "focuses": 6152, + "nutrients": 6153, + "stake": 6154, + "opened": 6155, + "magic": 6156, + "stable": 6157, + "Adv": 6158, + "survey": 6159, + "attacks": 6160, + "Mark": 6161, + "Maybe": 6162, + "PR": 6163, + "Lord": 6164, + "transition": 6165, + "ä»": 6166, + "notable": 6167, + "joined": 6168, + "Court": 6169, + "grown": 6170, + "iger": 6171, + "je": 6172, + "Access": 6173, + "switch": 6174, + "physic": 6175, + "tells": 6176, + "genre": 6177, + "Environmental": 6178, + "brush": 6179, + "criter": 6180, + "fro": 6181, + "evaluation": 6182, + "fif": 6183, + "Localization": 6184, + "!!": 6185, + "theless": 6186, + "Where": 6187, + "sweet": 6188, + "ressive": 6189, + "drawn": 6190, + "urally": 6191, + "thereby": 6192, + "vibrant": 6193, + "disrup": 6194, + "channel": 6195, + "awa": 6196, + "Smith": 6197, + "Analy": 6198, + "Exploring": 6199, + "olf": 6200, + "kinds": 6201, + "Pan": 6202, + "ester": 6203, + "Liter": 6204, + "recognized": 6205, + "nit": 6206, + "marketing": 6207, + "concern": 6208, + "characterized": 6209, + "accepted": 6210, + "bran": 6211, + "stret": 6212, + "extend": 6213, + "moments": 6214, + "Division": 6215, + "Prot": 6216, + "nest": 6217, + ")Ġ=Ġ": 6218, + "domain": 6219, + "derived": 6220, + "tigh": 6221, + "poverty": 6222, + "basics": 6223, + "domestic": 6224, + "identifying": 6225, + "ulf": 6226, + "latest": 6227, + "crow": 6228, + "Retrieved": 6229, + "algorithms": 6230, + "whom": 6231, + "avi": 6232, + "berg": 6233, + "abol": 6234, + "Does": 6235, + "snow": 6236, + "continuous": 6237, + "iance": 6238, + "enumerate": 6239, + "camera": 6240, + "seeing": 6241, + "rail": 6242, + "pti": 6243, + "una": 6244, + "motiv": 6245, + "rural": 6246, + "iding": 6247, + "agriculture": 6248, + "Budd": 6249, + "fortunately": 6250, + ")))": 6251, + "stability": 6252, + "usi": 6253, + "commitment": 6254, + "tried": 6255, + "adver": 6256, + "ara": 6257, + "sector": 6258, + "PO": 6259, + "arity": 6260, + "Los": 6261, + "engaged": 6262, + "driver": 6263, + "Ital": 6264, + "sues": 6265, + "settle": 6266, + "CB": 6267, + "perman": 6268, + "understood": 6269, + "omb": 6270, + "flower": 6271, + "strings": 6272, + "venue": 6273, + "Electr": 6274, + "moist": 6275, + "rely": 6276, + "learners": 6277, + "cription": 6278, + "facilities": 6279, + "witness": 6280, + "Log": 6281, + "affecting": 6282, + "ady": 6283, + "reson": 6284, + "exposed": 6285, + "kil": 6286, + "recur": 6287, + "isation": 6288, + "funding": 6289, + "frag": 6290, + "traits": 6291, + "Psych": 6292, + "artificial": 6293, + "Sat": 6294, + "fabric": 6295, + "reliable": 6296, + "minimize": 6297, + "seq": 6298, + "conversation": 6299, + "collected": 6300, + "ode": 6301, + "corner": 6302, + "framework": 6303, + "Select": 6304, + "uli": 6305, + "recorded": 6306, + "eless": 6307, + "Global": 6308, + "zip": 6309, + "inspire": 6310, + "Du": 6311, + "?**": 6312, + "lens": 6313, + "orous": 6314, + "],Ġ[": 6315, + "expressions": 6316, + "astro": 6317, + "sight": 6318, + "scholars": 6319, + "Ġ...Ġ": 6320, + "mur": 6321, + "suggested": 6322, + "Libr": 6323, + "register": 6324, + "determination": 6325, + "partnership": 6326, + "extremely": 6327, + "initially": 6328, + "ethnic": 6329, + "Ze": 6330, + "uge": 6331, + "universe": 6332, + "urity": 6333, + "philosophy": 6334, + "Free": 6335, + "ogn": 6336, + "Mass": 6337, + "perce": 6338, + "instances": 6339, + "turtle": 6340, + "ansion": 6341, + "possibilities": 6342, + "Draw": 6343, + "sustainability": 6344, + "Jud": 6345, + "meals": 6346, + "ching": 6347, + "focusing": 6348, + "]Ġ+Ġ": 6349, + "Demo": 6350, + "tack": 6351, + "Russia": 6352, + "ented": 6353, + "director": 6354, + "Business": 6355, + "president": 6356, + "productive": 6357, + "Mos": 6358, + "scal": 6359, + "$$": 6360, + "Army": 6361, + "advancements": 6362, + "invas": 6363, + "bread": 6364, + "tales": 6365, + "consumers": 6366, + "Graph": 6367, + "kept": 6368, + "mostly": 6369, + "survival": 6370, + "nings": 6371, + "User": 6372, + "?\"": 6373, + "spect": 6374, + "dram": 6375, + "stands": 6376, + "contributions": 6377, + "Hor": 6378, + "Non": 6379, + "finished": 6380, + "Tor": 6381, + "arry": 6382, + "Run": 6383, + "tude": 6384, + "pretty": 6385, + "Pacific": 6386, + "sembly": 6387, + "Bro": 6388, + "News": 6389, + "iday": 6390, + "Ham": 6391, + "bug": 6392, + "acies": 6393, + "cha": 6394, + "brings": 6395, + "itions": 6396, + "wet": 6397, + "horse": 6398, + "remarkable": 6399, + "WH": 6400, + "police": 6401, + "Gold": 6402, + "dish": 6403, + "infections": 6404, + "drome": 6405, + "itable": 6406, + "probability": 6407, + "fighting": 6408, + "roid": 6409, + "Roy": 6410, + "usr": 6411, + "substance": 6412, + "decorator": 6413, + "morning": 6414, + "Canadian": 6415, + "pup": 6416, + "sizes": 6417, + "dominant": 6418, + "fixed": 6419, + "scope": 6420, + "musical": 6421, + "tons": 6422, + "Player": 6423, + "storm": 6424, + "ÑĢа": 6425, + "volunte": 6426, + "studied": 6427, + "wondered": 6428, + "PL": 6429, + "Ġ-*": 6430, + "AND": 6431, + "IO": 6432, + ".\")": 6433, + "gging": 6434, + "rating": 6435, + "piv": 6436, + "outer": 6437, + "cules": 6438, + "explan": 6439, + "gence": 6440, + "threats": 6441, + "scholar": 6442, + "ota": 6443, + "constrain": 6444, + "runs": 6445, + "occasion": 6446, + "Whether": 6447, + "robust": 6448, + "occurred": 6449, + "mathematical": 6450, + "MO": 6451, + "Britain": 6452, + "dates": 6453, + "hibi": 6454, + "geome": 6455, + "facilitate": 6456, + "pig": 6457, + "advis": 6458, + "clients": 6459, + "Living": 6460, + "Acade": 6461, + "cardi": 6462, + "ole": 6463, + "dimensions": 6464, + "nn": 6465, + "wing": 6466, + "=[": 6467, + "oxid": 6468, + "transp": 6469, + "monitor": 6470, + "barriers": 6471, + "television": 6472, + "Know": 6473, + "fashion": 6474, + "Language": 6475, + "efficiently": 6476, + "tray": 6477, + "pic": 6478, + "Practice": 6479, + "songs": 6480, + "reactions": 6481, + "village": 6482, + "desc": 6483, + "mu": 6484, + "claimed": 6485, + "epis": 6486, + "channels": 6487, + "wildlife": 6488, + "Appro": 6489, + "parameter": 6490, + "bid": 6491, + "Photo": 6492, + "adequate": 6493, + "toler": 6494, + "Publ": 6495, + "patch": 6496, + "entirely": 6497, + "Function": 6498, + "magical": 6499, + "whenever": 6500, + "drink": 6501, + "pto": 6502, + "correctly": 6503, + "Imp": 6504, + "ictions": 6505, + "tok": 6506, + "matplotlib": 6507, + "protecting": 6508, + "remote": 6509, + "till": 6510, + "performing": 6511, + "embed": 6512, + "pread": 6513, + "convey": 6514, + "manufacturing": 6515, + "wish": 6516, + "arrived": 6517, + "partner": 6518, + "presentation": 6519, + "Robert": 6520, + "emergency": 6521, + "racial": 6522, + "implementing": 6523, + "dependent": 6524, + "Italian": 6525, + "brown": 6526, + "maps": 6527, + "district": 6528, + "girls": 6529, + "diagnosis": 6530, + "wife": 6531, + "sold": 6532, + "wo": 6533, + "__Ġ==Ġ": 6534, + "mainly": 6535, + "museum": 6536, + "External": 6537, + "preneur": 6538, + "norms": 6539, + "procedure": 6540, + "expensive": 6541, + "rom": 6542, + "Eth": 6543, + "unders": 6544, + "BE": 6545, + "wi": 6546, + "secondary": 6547, + "ĊĊĉ": 6548, + "âĢĿĠ(": 6549, + "integration": 6550, + "ols": 6551, + "Types": 6552, + "unknown": 6553, + "eli": 6554, + "statistics": 6555, + "noted": 6556, + "sequent": 6557, + "Lit": 6558, + "Ur": 6559, + "Hu": 6560, + "Jose": 6561, + "grew": 6562, + "cloud": 6563, + "agent": 6564, + "injuries": 6565, + "vocab": 6566, + "connecting": 6567, + "quest": 6568, + "uted": 6569, + "Code": 6570, + "accessible": 6571, + "PE": 6572, + "myth": 6573, + "burg": 6574, + "eles": 6575, + "protected": 6576, + "Exception": 6577, + "cript": 6578, + "street": 6579, + "los": 6580, + "Bio": 6581, + "Date": 6582, + "Texas": 6583, + "intrig": 6584, + "coll": 6585, + "League": 6586, + "clothing": 6587, + "Sea": 6588, + "Change": 6589, + "regardless": 6590, + "hang": 6591, + "crops": 6592, + "ö": 6593, + "entre": 6594, + "Tu": 6595, + "alloc": 6596, + "geograph": 6597, + "Mart": 6598, + "humanity": 6599, + "turning": 6600, + "Meanwhile": 6601, + "coffee": 6602, + "seemed": 6603, + "merge": 6604, + "Consequently": 6605, + "Ha": 6606, + "actively": 6607, + "pursu": 6608, + "crime": 6609, + "slowly": 6610, + "minute": 6611, + "Bible": 6612, + "balanced": 6613, + "emotion": 6614, + "theme": 6615, + "simultaneously": 6616, + "ĠĠ:ĠĠ": 6617, + "tab": 6618, + "housing": 6619, + "Leg": 6620, + "poetry": 6621, + "manif": 6622, + "Based": 6623, + "tested": 6624, + "Chall": 6625, + "density": 6626, + "choosing": 6627, + "Ther": 6628, + "pil": 6629, + "residents": 6630, + "shell": 6631, + "inspiration": 6632, + "requiring": 6633, + "sper": 6634, + "ulating": 6635, + "inclusive": 6636, + "reflection": 6637, + "angles": 6638, + "asts": 6639, + "Rights": 6640, + "Australian": 6641, + "limits": 6642, + "OF": 6643, + "sick": 6644, + "vac": 6645, + "consideration": 6646, + "Ken": 6647, + "agreed": 6648, + "miti": 6649, + "incorporate": 6650, + ")Ġ(": 6651, + "Flor": 6652, + "plane": 6653, + "fle": 6654, + "contributing": 6655, + "preserve": 6656, + "Those": 6657, + "supports": 6658, + "aa": 6659, + "websites": 6660, + "crisis": 6661, + "irs": 6662, + "vaccine": 6663, + "operate": 6664, + "HIV": 6665, + "missions": 6666, + "posit": 6667, + "para": 6668, + "PM": 6669, + "Link": 6670, + "Sovi": 6671, + "ов": 6672, + "massive": 6673, + "Det": 6674, + "Dep": 6675, + "IF": 6676, + "agricultural": 6677, + "ione": 6678, + "ectiveness": 6679, + "foss": 6680, + "professor": 6681, + "]))": 6682, + "radius": 6683, + "handling": 6684, + "istan": 6685, + "dishes": 6686, + "mood": 6687, + "Miss": 6688, + "edition": 6689, + "extended": 6690, + "Learn": 6691, + "demonstrated": 6692, + "))Ġ": 6693, + "papers": 6694, + "stitution": 6695, + "Virgin": 6696, + "iers": 6697, + "================================": 6698, + "providers": 6699, + "Equ": 6700, + "forests": 6701, + "Yet": 6702, + "Only": 6703, + "attend": 6704, + "execute": 6705, + "phones": 6706, + "Author": 6707, + "soldiers": 6708, + "thanks": 6709, + "scatter": 6710, + "Company": 6711, + "habitat": 6712, + "marginal": 6713, + "trained": 6714, + "cursor": 6715, + "storytelling": 6716, + "Charles": 6717, + "Carol": 6718, + "whereas": 6719, + "uncertain": 6720, + "enemy": 6721, + "Mu": 6722, + "Array": 6723, + "teenth": 6724, + "purchase": 6725, + "listed": 6726, + "bonds": 6727, + "Order": 6728, + "icon": 6729, + ":Ġ(": 6730, + "umes": 6731, + "ãĤ": 6732, + "Cer": 6733, + "reaching": 6734, + "shel": 6735, + "transformation": 6736, + "Indu": 6737, + "Right": 6738, + "åIJ": 6739, + "southern": 6740, + "ç": 6741, + "Search": 6742, + "ctic": 6743, + "births": 6744, + "Spr": 6745, + "valor": 6746, + "expertise": 6747, + "Ġ{}Ġ": 6748, + "Comple": 6749, + "demands": 6750, + "static": 6751, + "Total": 6752, + "centers": 6753, + "essays": 6754, + "dealing": 6755, + "inations": 6756, + "Äģ": 6757, + "Frank": 6758, + "coordinates": 6759, + "sought": 6760, + "feels": 6761, + "Jews": 6762, + "interpre": 6763, + "audio": 6764, + "dispar": 6765, + "percentage": 6766, + "distingu": 6767, + "cups": 6768, + "Medicine": 6769, + "aqu": 6770, + "bear": 6771, + "inches": 6772, + "RA": 6773, + "minds": 6774, + "retain": 6775, + "philosoph": 6776, + "vitamin": 6777, + "operator": 6778, + "metr": 6779, + "electron": 6780, + "instruments": 6781, + "intellectual": 6782, + "heavily": 6783, + "Cir": 6784, + "mutual": 6785, + "Tradi": 6786, + "header": 6787, + "placing": 6788, + "Ly": 6789, + "coin": 6790, + "covers": 6791, + "biology": 6792, + "neighbors": 6793, + "(\"\\": 6794, + "Questions": 6795, + "typical": 6796, + "spher": 6797, + "itici": 6798, + "':Ġ'": 6799, + "vict": 6800, + "manner": 6801, + "specialized": 6802, + "Pass": 6803, + "cope": 6804, + "Lim": 6805, + "equi": 6806, + "dress": 6807, + "profile": 6808, + "Four": 6809, + "pron": 6810, + "anda": 6811, + "deser": 6812, + "funds": 6813, + "ij": 6814, + "army": 6815, + "union": 6816, + "ups": 6817, + "boy": 6818, + "concentration": 6819, + "ìł": 6820, + "venile": 6821, + "Ġ=": 6822, + "prevention": 6823, + "manufactur": 6824, + "participation": 6825, + "IL": 6826, + "plain": 6827, + "stores": 6828, + "aims": 6829, + "ascular": 6830, + "gently": 6831, + "Catholic": 6832, + "grams": 6833, + "trum": 6834, + "owner": 6835, + "Community": 6836, + "promising": 6837, + "xture": 6838, + "suffering": 6839, + "depends": 6840, + "detailed": 6841, + "sessions": 6842, + "flight": 6843, + "ifier": 6844, + "influences": 6845, + "tut": 6846, + "YO": 6847, + "ald": 6848, + "neighborhood": 6849, + "pher": 6850, + "uded": 6851, + "на": 6852, + "designing": 6853, + "naturally": 6854, + "grat": 6855, + "whel": 6856, + "evolving": 6857, + "volt": 6858, + "repeated": 6859, + "Squ": 6860, + "ãĢ": 6861, + "chrom": 6862, + "objectives": 6863, + "driven": 6864, + "chief": 6865, + "developments": 6866, + "tk": 6867, + "seemingly": 6868, + "Reading": 6869, + "stated": 6870, + "acting": 6871, + "Try": 6872, + "ammation": 6873, + "mathematics": 6874, + "measured": 6875, + "exts": 6876, + "actor": 6877, + "extraordinary": 6878, + "narrow": 6879, + "chick": 6880, + "ambi": 6881, + "captivating": 6882, + "alk": 6883, + "cream": 6884, + "marriage": 6885, + "generator": 6886, + "northern": 6887, + "delicious": 6888, + "watching": 6889, + "ske": 6890, + "titudes": 6891, + "ogen": 6892, + "theta": 6893, + "aceful": 6894, + "argue": 6895, + "****************": 6896, + "independence": 6897, + "reput": 6898, + "sport": 6899, + "steel": 6900, + ".;Ġ": 6901, + "failed": 6902, + "END": 6903, + "inherent": 6904, + "audiences": 6905, + "Contin": 6906, + "concerning": 6907, + "container": 6908, + "movies": 6909, + "revealed": 6910, + "cash": 6911, + "identities": 6912, + "igno": 6913, + "tall": 6914, + "ella": 6915, + "consumer": 6916, + "Dy": 6917, + "agency": 6918, + "Dise": 6919, + "++": 6920, + "broken": 6921, + "interventions": 6922, + "eras": 6923, + "Sil": 6924, + "practition": 6925, + "Place": 6926, + "formula": 6927, + "THE": 6928, + "physics": 6929, + "Practical": 6930, + "ENT": 6931, + "hael": 6932, + "theories": 6933, + "trigger": 6934, + "End": 6935, + "substances": 6936, + "memories": 6937, + "robo": 6938, + "beings": 6939, + "butter": 6940, + "Clim": 6941, + "lasting": 6942, + "transmission": 6943, + "MP": 6944, + "agraph": 6945, + "agencies": 6946, + "directed": 6947, + "ita": 6948, + "gap": 6949, + "landscapes": 6950, + "medications": 6951, + "atever": 6952, + "accum": 6953, + "influenced": 6954, + "legend": 6955, + "quer": 6956, + "encompass": 6957, + "utive": 6958, + "principle": 6959, + "spending": 6960, + "han": 6961, + "drinking": 6962, + "Mad": 6963, + "classic": 6964, + "usions": 6965, + "encouraging": 6966, + "(-": 6967, + "delivery": 6968, + "Gl": 6969, + "Mater": 6970, + "breaks": 6971, + "Though": 6972, + "engineers": 6973, + "reduces": 6974, + "estate": 6975, + "ranging": 6976, + "historic": 6977, + "Digital": 6978, + "attribute": 6979, + "Gra": 6980, + "thres": 6981, + "Poli": 6982, + "Proble": 6983, + "Integr": 6984, + "patience": 6985, + "videos": 6986, + "Mill": 6987, + "capabilities": 6988, + "itors": 6989, + "Asian": 6990, + "succeed": 6991, + "educators": 6992, + "agents": 6993, + "observations": 6994, + "utic": 6995, + "aes": 6996, + "selling": 6997, + "titude": 6998, + "founded": 6999, + "exception": 7000, + "Proper": 7001, + "Natural": 7002, + "oples": 7003, + "Ġ": 9561, + "occupied": 9562, + "cule": 9563, + ")?": 9564, + "rought": 9565, + "harder": 9566, + "avir": 9567, + "Fiction": 9568, + "Gall": 9569, + "Der": 9570, + "recru": 9571, + "ruption": 9572, + "Hey": 9573, + "achievement": 9574, + "Major": 9575, + "를": 9576, + "#Ġ#Ġ": 9577, + "Mexican": 9578, + "drama": 9579, + "export": 9580, + "hospitals": 9581, + "}\")": 9582, + "SQL": 9583, + "DB": 9584, + "exhaust": 9585, + "enterpr": 9586, + "retri": 9587, + "conference": 9588, + "marker": 9589, + "outputs": 9590, + "dated": 9591, + "eign": 9592, + "sch": 9593, + "mile": 9594, + "replied": 9595, + "Provid": 9596, + "establishment": 9597, + "earliest": 9598, + "featured": 9599, + ")*": 9600, + "Town": 9601, + "caps": 9602, + "seasons": 9603, + "pizza": 9604, + "discourse": 9605, + "visually": 9606, + "tolerance": 9607, + "Facebook": 9608, + "basketball": 9609, + "mastering": 9610, + "isolated": 9611, + "sert": 9612, + "squares": 9613, + "Rest": 9614, + "exceed": 9615, + "attended": 9616, + "iana": 9617, + "Bot": 9618, + "Nevertheless": 9619, + "welfare": 9620, + "enforcement": 9621, + "clusters": 9622, + "QU": 9623, + "--Ġ": 9624, + "rection": 9625, + "ем": 9626, + "juris": 9627, + "quantities": 9628, + "Hindu": 9629, + "variation": 9630, + "guided": 9631, + "males": 9632, + "managers": 9633, + "membr": 9634, + "Standard": 9635, + "Amazon": 9636, + "spheric": 9637, + "gamma": 9638, + "kno": 9639, + "Traditional": 9640, + "Wid": 9641, + "roughly": 9642, + "diplom": 9643, + "spar": 9644, + "classified": 9645, + "heal": 9646, + "Acti": 9647, + "severance": 9648, + "bour": 9649, + "DI": 9650, + "displays": 9651, + "Behavi": 9652, + "crafts": 9653, + "enduring": 9654, + "sister": 9655, + "gases": 9656, + "Sports": 9657, + "planets": 9658, + "entive": 9659, + "lake": 9660, + "API": 9661, + "Experi": 9662, + "bustling": 9663, + "Jamie": 9664, + "Protection": 9665, + "pus": 9666, + "partition": 9667, + "hate": 9668, + "----------------------------": 9669, + "hypothesis": 9670, + "grammar": 9671, + "assembly": 9672, + "peror": 9673, + "venture": 9674, + "æĺ¯": 9675, + "rod": 9676, + "personnel": 9677, + "mineral": 9678, + "ел": 9679, + "notion": 9680, + "urches": 9681, + "celebrated": 9682, + "clou": 9683, + "oven": 9684, + "Ġ}Ġ": 9685, + "ipedia": 9686, + "seal": 9687, + "compliance": 9688, + "thma": 9689, + "performances": 9690, + "inhabitants": 9691, + "wooden": 9692, + "steam": 9693, + "Farm": 9694, + "biases": 9695, + "galax": 9696, + "Colon": 9697, + "react": 9698, + "bees": 9699, + "arest": 9700, + "Boston": 9701, + "FOR": 9702, + "variance": 9703, + "aws": 9704, + "fib": 9705, + "democratic": 9706, + "stein": 9707, + "reaches": 9708, + "ffle": 9709, + "inflammatory": 9710, + "baking": 9711, + "mud": 9712, + "geographical": 9713, + "Plot": 9714, + "initely": 9715, + "meter": 9716, + "calories": 9717, + "addressed": 9718, + "tast": 9719, + "cuisine": 9720, + "Heart": 9721, + "females": 9722, + "nutrient": 9723, + "Adap": 9724, + "gardens": 9725, + "Wis": 9726, + "portions": 9727, + "ranges": 9728, + "apor": 9729, + "Tal": 9730, + "wel": 9731, + "Particip": 9732, + "terminal": 9733, + "fits": 9734, + "encode": 9735, + "пÑĢ": 9736, + "Han": 9737, + "endless": 9738, + "alignment": 9739, + "workshops": 9740, + "Meet": 9741, + "consuming": 9742, + "Need": 9743, + "Scen": 9744, + "distinguish": 9745, + "cmd": 9746, + "beloved": 9747, + "nome": 9748, + "tracks": 9749, + "Administration": 9750, + "'):": 9751, + "Ãł": 9752, + "tourism": 9753, + "\"\\": 9754, + "supportive": 9755, + "lining": 9756, + "raft": 9757, + "ê¸": 9758, + "transparency": 9759, + "absence": 9760, + "emit": 9761, + "ussian": 9762, + "Length": 9763, + "episode": 9764, + "temple": 9765, + "religions": 9766, + "Ukrain": 9767, + "poster": 9768, + "brill": 9769, + "tomat": 9770, + "gut": 9771, + "indicated": 9772, + "irrit": 9773, + "Fac": 9774, + "Trust": 9775, + "circles": 9776, + "examined": 9777, + "mice": 9778, + "juice": 9779, + "Hard": 9780, + "operative": 9781, + "FI": 9782, + "vania": 9783, + "giene": 9784, + "definitions": 9785, + "drinks": 9786, + "Short": 9787, + "zones": 9788, + "prioriti": 9789, + "comic": 9790, + "advocate": 9791, + "workplace": 9792, + "interior": 9793, + "settlement": 9794, + "peare": 9795, + "absorb": 9796, + "drag": 9797, + "Spring": 9798, + "Hon": 9799, + "endemic": 9800, + "companied": 9801, + "bohydr": 9802, + "crafting": 9803, + "vard": 9804, + "ifications": 9805, + "Argu": 9806, + "golden": 9807, + "CV": 9808, + "prayer": 9809, + "Es": 9810, + "opens": 9811, + "Prevention": 9812, + "cart": 9813, + "Valid": 9814, + "Remove": 9815, + ":.": 9816, + "counted": 9817, + "Rail": 9818, + "careers": 9819, + ");": 9820, + "crew": 9821, + "pointed": 9822, + "Iter": 9823, + "pens": 9824, + "territories": 9825, + "},": 9826, + "[Ġ": 9827, + "ounder": 9828, + "Video": 9829, + "ç͍": 9830, + "GE": 9831, + "}{": 9832, + "homework": 9833, + "Ri": 9834, + "Pain": 9835, + "characteristic": 9836, + "institution": 9837, + "competing": 9838, + "Movement": 9839, + "Columbia": 9840, + "yl": 9841, + "Profession": 9842, + "Specifically": 9843, + "designated": 9844, + "trading": 9845, + "smell": 9846, + "honest": 9847, + "pivot": 9848, + "ка": 9849, + "particle": 9850, + "spoke": 9851, + "expressing": 9852, + "Edward": 9853, + "invasive": 9854, + "marvel": 9855, + "Discussion": 9856, + "dramatic": 9857, + "borne": 9858, + "wage": 9859, + "ameters": 9860, + "Sa": 9861, + "Cro": 9862, + "restore": 9863, + "sheets": 9864, + "shelter": 9865, + "Station": 9866, + "sail": 9867, + "sour": 9868, + "awn": 9869, + "oti": 9870, + "Final": 9871, + "sending": 9872, + "Fall": 9873, + "accompanied": 9874, + "shock": 9875, + "manufacturers": 9876, + "synthetic": 9877, + "crimes": 9878, + "tt": 9879, + "memo": 9880, + "ëł": 9881, + "onders": 9882, + "Ath": 9883, + "hn": 9884, + "unlike": 9885, + "explores": 9886, + "Archit": 9887, + ":ĠĠĠĠĠ": 9888, + "accounting": 9889, + "semi": 9890, + "wik": 9891, + "granted": 9892, + "Ali": 9893, + "universities": 9894, + "#ĠĠĠĠ": 9895, + "quarters": 9896, + "оÑĤ": 9897, + "Week": 9898, + "discovering": 9899, + "missed": 9900, + "Score": 9901, + "uts": 9902, + "rhe": 9903, + "Invest": 9904, + "validate": 9905, + "regation": 9906, + "bury": 9907, + "pointer": 9908, + "binding": 9909, + "Palest": 9910, + "vitamins": 9911, + "Supreme": 9912, + "Kn": 9913, + "lungs": 9914, + "sto": 9915, + "decode": 9916, + "tras": 9917, + "politicians": 9918, + "Watch": 9919, + "Redu": 9920, + "Abr": 9921, + "kidney": 9922, + "ulous": 9923, + "acquis": 9924, + ",-": 9925, + "asm": 9926, + "Direct": 9927, + "depos": 9928, + "contribution": 9929, + "Jeff": 9930, + "Ren": 9931, + "submit": 9932, + "argued": 9933, + "pencil": 9934, + "Agency": 9935, + "Michigan": 9936, + "EP": 9937, + "lish": 9938, + "persistent": 9939, + "affordable": 9940, + "]Ġ+": 9941, + "timest": 9942, + "sque": 9943, + "promised": 9944, + "servers": 9945, + "ilarities": 9946, + "Resp": 9947, + "officer": 9948, + "caf": 9949, + "holiday": 9950, + "Hebre": 9951, + "Object": 9952, + "IDS": 9953, + "recover": 9954, + "racism": 9955, + "*:Ġ": 9956, + "clip": 9957, + "pour": 9958, + "Focus": 9959, + "valued": 9960, + "existed": 9961, + "osaur": 9962, + "slave": 9963, + "Exec": 9964, + "scheme": 9965, + "hence": 9966, + "indicating": 9967, + "reasoning": 9968, + "yn": 9969, + "esteem": 9970, + "Microsoft": 9971, + "charges": 9972, + "Muslims": 9973, + "surgical": 9974, + "arrangements": 9975, + "accountability": 9976, + "enna": 9977, + "doctr": 9978, + "socket": 9979, + "brave": 9980, + "profits": 9981, + "fingers": 9982, + "settled": 9983, + "Counter": 9984, + "brains": 9985, + "ctively": 9986, + "Incl": 9987, + "irical": 9988, + "rat": 9989, + "continuing": 9990, + "datasets": 9991, + "separation": 9992, + "assessments": 9993, + "Dre": 9994, + "conclusions": 9995, + "distinctive": 9996, + "writes": 9997, + "denti": 9998, + "everywhere": 9999, + "sensory": 10000, + "bom": 10001, + "oured": 10002, + "mysterious": 10003, + "snake": 10004, + "rtype": 10005, + "mond": 10006, + "Would": 10007, + "alien": 10008, + "credi": 10009, + "viewed": 10010, + "cue": 10011, + "cotton": 10012, + "Hun": 10013, + "reasonable": 10014, + "mari": 10015, + "farms": 10016, + "subscri": 10017, + "æł": 10018, + "Fem": 10019, + "efs": 10020, + "Bol": 10021, + "protagon": 10022, + "disparities": 10023, + "introducing": 10024, + "elig": 10025, + "mixing": 10026, + "gift": 10027, + "Wa": 10028, + "structured": 10029, + "independently": 10030, + "accommod": 10031, + "Ohio": 10032, + "Divide": 10033, + "fans": 10034, + "Turk": 10035, + "Scholar": 10036, + "planted": 10037, + "utilizing": 10038, + "influencing": 10039, + "fats": 10040, + "recall": 10041, + "fract": 10042, + "closure": 10043, + "Mental": 10044, + "diagnostic": 10045, + "vaccines": 10046, + "distant": 10047, + "revealing": 10048, + "Description": 10049, + "descriptions": 10050, + "immigrants": 10051, + "Georgia": 10052, + "suggesting": 10053, + "spection": 10054, + "Skills": 10055, + "ìľ": 10056, + "adata": 10057, + "Ñİ": 10058, + "monthly": 10059, + "gian": 10060, + "Anim": 10061, + "identical": 10062, + "ìķ": 10063, + "adversity": 10064, + "bee": 10065, + "BEGIN": 10066, + "hormone": 10067, + "Pakistan": 10068, + "Priv": 10069, + "bands": 10070, + "replacement": 10071, + "aska": 10072, + "Working": 10073, + "cardiovascular": 10074, + "uter": 10075, + "pregnant": 10076, + "Stack": 10077, + "Centre": 10078, + "containers": 10079, + "facial": 10080, + "SD": 10081, + "modify": 10082, + "Senate": 10083, + "aspir": 10084, + "Created": 10085, + "KE": 10086, + "sized": 10087, + "Record": 10088, + "inum": 10089, + "Indones": 10090, + "Ira": 10091, + "blend": 10092, + "Gir": 10093, + "hide": 10094, + "elve": 10095, + "->": 10096, + "gel": 10097, + "phas": 10098, + "æī": 10099, + "ectious": 10100, + "Parliament": 10101, + ":]": 10102, + "reign": 10103, + "scor": 10104, + "HR": 10105, + "Prop": 10106, + "lips": 10107, + "Pict": 10108, + "ATION": 10109, + "Rol": 10110, + "pipe": 10111, + "uting": 10112, + "mobility": 10113, + "Industr": 10114, + "accidents": 10115, + "itan": 10116, + "Sn": 10117, + "devast": 10118, + "architectural": 10119, + "reproductive": 10120, + "concat": 10121, + "bite": 10122, + "à¥": 10123, + "Death": 10124, + "describing": 10125, + ":ĠĠĠĠĠĠĠĠ": 10126, + "cau": 10127, + "verage": 10128, + "relaxation": 10129, + "niche": 10130, + "furniture": 10131, + "Cry": 10132, + "oldest": 10133, + "thetics": 10134, + "ectivity": 10135, + "Prepar": 10136, + "neurons": 10137, + "Invalid": 10138, + "icians": 10139, + "illegal": 10140, + "ĠâĢ¢Ġ": 10141, + "safeguard": 10142, + "Fast": 10143, + "Neuro": 10144, + "mold": 10145, + "mitig": 10146, + "isons": 10147, + "Multiplication": 10148, + "miss": 10149, + "regim": 10150, + "fuels": 10151, + "Calculate": 10152, + "achu": 10153, + "systemic": 10154, + "bins": 10155, + "dear": 10156, + "Third": 10157, + "umatic": 10158, + "balls": 10159, + "dinner": 10160, + "configuration": 10161, + "importantly": 10162, + "overwhelming": 10163, + "Dat": 10164, + "Indians": 10165, + "Assembly": 10166, + "impression": 10167, + "acute": 10168, + "opposed": 10169, + "Inf": 10170, + "lifetime": 10171, + "rolled": 10172, + "constitutes": 10173, + "Alexander": 10174, + "Pennsyl": 10175, + "Allow": 10176, + "nitrogen": 10177, + "Product": 10178, + "somewhat": 10179, + "Hospital": 10180, + "coln": 10181, + "sunny": 10182, + "mysteries": 10183, + "tapestry": 10184, + "Missing": 10185, + ":Ġ{}": 10186, + "hearts": 10187, + "Lew": 10188, + "Market": 10189, + "ìĭ": 10190, + "reflected": 10191, + "retail": 10192, + "wars": 10193, + "logger": 10194, + "inator": 10195, + "Grade": 10196, + "patri": 10197, + "acion": 10198, + "cere": 10199, + "mediate": 10200, + "orbit": 10201, + "ua": 10202, + "batteries": 10203, + "applies": 10204, + "Chief": 10205, + "simulation": 10206, + "gods": 10207, + "similarities": 10208, + "impressive": 10209, + "representative": 10210, + "Ah": 10211, + "cosm": 10212, + "dfs": 10213, + "initiative": 10214, + "philosophical": 10215, + "applicable": 10216, + "elem": 10217, + ".\"\"\"": 10218, + "Job": 10219, + "elsewhere": 10220, + "amps": 10221, + "royal": 10222, + "grounds": 10223, + ".'": 10224, + "Ash": 10225, + "Block": 10226, + "moderate": 10227, + "definitely": 10228, + "........": 10229, + "Stan": 10230, + "illance": 10231, + "----------------------------------------------------------------": 10232, + "Ven": 10233, + "Pas": 10234, + "interviews": 10235, + "resolve": 10236, + "restaurant": 10237, + "ACT": 10238, + "Feel": 10239, + "segments": 10240, + "council": 10241, + "Firstly": 10242, + "sampling": 10243, + "meta": 10244, + "#!": 10245, + "Binary": 10246, + "phrases": 10247, + "embedded": 10248, + "scales": 10249, + "meanings": 10250, + "nasty": 10251, + "herbs": 10252, + "Quality": 10253, + "planes": 10254, + "evolve": 10255, + "academ": 10256, + "agram": 10257, + "newspaper": 10258, + "gaming": 10259, + "speakers": 10260, + "aping": 10261, + "ansas": 10262, + "ingredient": 10263, + "Mes": 10264, + "approached": 10265, + "modes": 10266, + "cion": 10267, + "exempl": 10268, + "Rena": 10269, + "éĩ": 10270, + "champion": 10271, + "Song": 10272, + "iams": 10273, + "adoption": 10274, + "acknowledging": 10275, + "ras": 10276, + "eleg": 10277, + "immigration": 10278, + "Testing": 10279, + "thritis": 10280, + "Mix": 10281, + "markers": 10282, + "spac": 10283, + "Prog": 10284, + "Wi": 10285, + "enhances": 10286, + "Pennsylvania": 10287, + "LA": 10288, + "angel": 10289, + "Sus": 10290, + "Still": 10291, + "expon": 10292, + "sectors": 10293, + "urance": 10294, + "ori": 10295, + "induced": 10296, + "__\":": 10297, + "shifting": 10298, + "terrain": 10299, + "swap": 10300, + "cultivating": 10301, + "Writ": 10302, + "Cambridge": 10303, + "itative": 10304, + "hybrid": 10305, + "buried": 10306, + "standardi": 10307, + "correlation": 10308, + "HTML": 10309, + "ãĢĤ": 10310, + "-Ġ**": 10311, + "iano": 10312, + ":-": 10313, + "pursuing": 10314, + "remed": 10315, + "Ban": 10316, + "comics": 10317, + "conserv": 10318, + "bun": 10319, + "oning": 10320, + "ceptional": 10321, + "enders": 10322, + "ë°": 10323, + "perceptions": 10324, + "Navy": 10325, + "rush": 10326, + "]+": 10327, + "нÑĭ": 10328, + "Cup": 10329, + "CI": 10330, + "Explan": 10331, + "alities": 10332, + "swimming": 10333, + "screening": 10334, + "rane": 10335, + "Ingre": 10336, + "tape": 10337, + "scop": 10338, + "Niger": 10339, + "blank": 10340, + "afternoon": 10341, + "Sex": 10342, + "Reser": 10343, + "emphasizes": 10344, + "rotate": 10345, + "electrons": 10346, + "Dam": 10347, + "Brain": 10348, + "shorter": 10349, + "varied": 10350, + "burden": 10351, + "Iraq": 10352, + "Tay": 10353, + "iconic": 10354, + "Islands": 10355, + "diver": 10356, + "Daniel": 10357, + "Exercise": 10358, + "rob": 10359, + "thyroid": 10360, + "struck": 10361, + "transaction": 10362, + "agen": 10363, + "cement": 10364, + "anx": 10365, + "setts": 10366, + "cric": 10367, + "#ĠĠ": 10368, + "ometer": 10369, + "Ġ\"Ġ+Ġ": 10370, + "acceptable": 10371, + "breed": 10372, + "magnitude": 10373, + "'],Ġ": 10374, + "OK": 10375, + "ackson": 10376, + "arrival": 10377, + "Alli": 10378, + "anni": 10379, + "Lincoln": 10380, + "fifth": 10381, + "alt": 10382, + "Present": 10383, + "crack": 10384, + "Content": 10385, + "completing": 10386, + "Script": 10387, + "Elizabeth": 10388, + "presenting": 10389, + "clos": 10390, + "ÐĴ": 10391, + "Deep": 10392, + "arc": 10393, + "assi": 10394, + "åľ": 10395, + "arib": 10396, + "guides": 10397, + "thematic": 10398, + "tobac": 10399, + "locate": 10400, + "Country": 10401, + "Ball": 10402, + "regarded": 10403, + "primes": 10404, + "Ef": 10405, + "advertising": 10406, + "checked": 10407, + "recycling": 10408, + "Posi": 10409, + "arranged": 10410, + "âĸ": 10411, + "ulates": 10412, + "therapies": 10413, + "gotten": 10414, + "slaves": 10415, + "Renaissance": 10416, + "gic": 10417, + "march": 10418, + "rhythm": 10419, + "calculations": 10420, + "Mathemat": 10421, + "tactics": 10422, + "acci": 10423, + "åĬ": 10424, + "circular": 10425, + "âĢĿ.": 10426, + "uncover": 10427, + "verify": 10428, + "ecraft": 10429, + "ART": 10430, + "seeks": 10431, + "chains": 10432, + "Corpor": 10433, + "sovereign": 10434, + "Understand": 10435, + "battles": 10436, + "nc": 10437, + "Upon": 10438, + "residential": 10439, + "laugh": 10440, + "oils": 10441, + "unnecessary": 10442, + "adaptive": 10443, + "robots": 10444, + "amongst": 10445, + "fier": 10446, + "Williams": 10447, + "clues": 10448, + "copies": 10449, + "loud": 10450, + "icking": 10451, + "achusetts": 10452, + "Hawai": 10453, + "Son": 10454, + "consisting": 10455, + "PARSE": 10456, + "Jul": 10457, + "atomic": 10458, + "regulate": 10459, + "altered": 10460, + "uit": 10461, + "Machine": 10462, + "eq": 10463, + "CM": 10464, + "poems": 10465, + "folks": 10466, + "LD": 10467, + "Chem": 10468, + "Parameters": 10469, + "'\\": 10470, + "turb": 10471, + "protocols": 10472, + "ultimate": 10473, + "optimization": 10474, + "atoes": 10475, + "#!/": 10476, + "tration": 10477, + "committee": 10478, + "killing": 10479, + "carbohydr": 10480, + "Solar": 10481, + "encounters": 10482, + "sciences": 10483, + "irrig": 10484, + "Ill": 10485, + "ropy": 10486, + "adel": 10487, + "membrane": 10488, + "rarely": 10489, + "intric": 10490, + "Linear": 10491, + "abc": 10492, + "busy": 10493, + "Sunday": 10494, + "iteration": 10495, + "await": 10496, + "Mun": 10497, + "mothers": 10498, + "profic": 10499, + "Cook": 10500, + "freely": 10501, + "ulative": 10502, + "prospec": 10503, + "suggestions": 10504, + "ceans": 10505, + "Theoretical": 10506, + "slip": 10507, + "Planning": 10508, + "`.Ġ": 10509, + "Wales": 10510, + "Award": 10511, + "appl": 10512, + "impair": 10513, + "encrypt": 10514, + "Vers": 10515, + "rum": 10516, + "ranean": 10517, + "vegetable": 10518, + "worst": 10519, + "nb": 10520, + "ested": 10521, + "ALL": 10522, + "yr": 10523, + "intu": 10524, + "precisely": 10525, + "united": 10526, + "uan": 10527, + "editing": 10528, + "bris": 10529, + ".')": 10530, + "specim": 10531, + "dice": 10532, + "Notes": 10533, + "Guidelines": 10534, + "(...": 10535, + "Jane": 10536, + "Massachusetts": 10537, + "©Ġ": 10538, + "__Ġ==Ġ\"": 10539, + "erup": 10540, + "achel": 10541, + "sees": 10542, + "slope": 10543, + "vy": 10544, + "illy": 10545, + "ê²": 10546, + "domains": 10547, + "historians": 10548, + "Turkey": 10549, + "aya": 10550, + "prey": 10551, + "eries": 10552, + "imperial": 10553, + "pepper": 10554, + "optical": 10555, + "desk": 10556, + "iterations": 10557, + "ë¦": 10558, + "municip": 10559, + "Reflect": 10560, + "cataly": 10561, + "invention": 10562, + "Wed": 10563, + "__Ġ==Ġ\"__": 10564, + "oda": 10565, + "surviv": 10566, + "Range": 10567, + "mans": 10568, + "slices": 10569, + "ìĬ": 10570, + "worn": 10571, + "abolic": 10572, + "efficacy": 10573, + "nutritional": 10574, + "elong": 10575, + "coords": 10576, + "yan": 10577, + "Simple": 10578, + "fatigue": 10579, + "avirus": 10580, + "discomfort": 10581, + "Queue": 10582, + "wondering": 10583, + "kee": 10584, + "|-": 10585, + "disk": 10586, + "installation": 10587, + "operational": 10588, + "bridges": 10589, + "refine": 10590, + "tumor": 10591, + "policymakers": 10592, + "]Ġ*Ġ": 10593, + "cameras": 10594, + "titem": 10595, + "holistic": 10596, + "appointment": 10597, + "quote": 10598, + "streams": 10599, + "opposition": 10600, + "Ye": 10601, + "matching": 10602, + "agger": 10603, + "artic": 10604, + "Thank": 10605, + "dwell": 10606, + "SM": 10607, + "gran": 10608, + "threatened": 10609, + "Princi": 10610, + "]Ġ+=Ġ": 10611, + "deepen": 10612, + "merged": 10613, + "Benny": 10614, + "fed": 10615, + "Career": 10616, + "provision": 10617, + "neglect": 10618, + "Rab": 10619, + "fluctu": 10620, + "ptive": 10621, + "Risk": 10622, + "hazards": 10623, + "purchasing": 10624, + "ÑĪ": 10625, + "broke": 10626, + "conve": 10627, + "sket": 10628, + "Square": 10629, + "precip": 10630, + "lunch": 10631, + "continent": 10632, + ")Ġ#": 10633, + "Tan": 10634, + "Compan": 10635, + "bron": 10636, + "households": 10637, + "von": 10638, + "Jackson": 10639, + "disturb": 10640, + "mend": 10641, + "nas": 10642, + "Ak": 10643, + "picked": 10644, + "Assessment": 10645, + "dough": 10646, + "Nep": 10647, + "hed": 10648, + "pride": 10649, + "physician": 10650, + "asset": 10651, + "Bit": 10652, + "visits": 10653, + "deliber": 10654, + "Os": 10655, + "asthma": 10656, + "Mot": 10657, + "heimer": 10658, + "å¼": 10659, + "Intellig": 10660, + "consumed": 10661, + "amic": 10662, + "Jim": 10663, + "exceptional": 10664, + "theater": 10665, + "advocating": 10666, + "cigaret": 10667, + "ilitation": 10668, + "Francisco": 10669, + "weapon": 10670, + "trusted": 10671, + "enabled": 10672, + "beam": 10673, + "translated": 10674, + "Complex": 10675, + "Travel": 10676, + "iances": 10677, + "Fair": 10678, + "Connection": 10679, + "eigh": 10680, + "bowl": 10681, + "integrate": 10682, + "Full": 10683, + "%)Ġ": 10684, + "memorable": 10685, + "guests": 10686, + "Mir": 10687, + "fees": 10688, + "newfound": 10689, + "Explanation": 10690, + "concentrations": 10691, + "treats": 10692, + "capturing": 10693, + "bars": 10694, + "hen": 10695, + "fusion": 10696, + "cryption": 10697, + "fairness": 10698, + "cong": 10699, + "celebration": 10700, + "formats": 10701, + "Fa": 10702, + "Flow": 10703, + "locally": 10704, + "Six": 10705, + "Response": 10706, + "ĊĊĠĠ": 10707, + "ERE": 10708, + "Task": 10709, + "nursing": 10710, + "Democratic": 10711, + "aggressive": 10712, + "Info": 10713, + "Investig": 10714, + "nament": 10715, + "desir": 10716, + "operators": 10717, + "translate": 10718, + "thur": 10719, + "worksheets": 10720, + "attain": 10721, + "restoration": 10722, + "civilization": 10723, + "closest": 10724, + "Symbol": 10725, + "pursue": 10726, + "VR": 10727, + "analyzed": 10728, + "clubs": 10729, + "bears": 10730, + "Hit": 10731, + "uity": 10732, + "utilized": 10733, + "province": 10734, + "collaborate": 10735, + "coach": 10736, + "Mount": 10737, + "showc": 10738, + "Maya": 10739, + "documented": 10740, + "bearing": 10741, + "registered": 10742, + "threatening": 10743, + "nombre": 10744, + "cellular": 10745, + "heated": 10746, + "Const": 10747, + "maximize": 10748, + "------": 10749, + "aspiring": 10750, + "electronics": 10751, + "viewers": 10752, + "Result": 10753, + "Var": 10754, + "reads": 10755, + "competit": 10756, + "churches": 10757, + "pivotal": 10758, + "iced": 10759, + "acquire": 10760, + "divis": 10761, + "dimin": 10762, + "organizational": 10763, + "Period": 10764, + "commerce": 10765, + "ZE": 10766, + "circulation": 10767, + "acted": 10768, + "ERS": 10769, + "carries": 10770, + "Dist": 10771, + "æį": 10772, + "omag": 10773, + ":\\": 10774, + "coping": 10775, + "Ġ+Ġ(": 10776, + "shuffle": 10777, + "Him": 10778, + "Cop": 10779, + "cake": 10780, + "hygiene": 10781, + "amination": 10782, + "vivid": 10783, + "programme": 10784, + "mirror": 10785, + "Urban": 10786, + "creature": 10787, + "pathways": 10788, + "guiding": 10789, + "Suppose": 10790, + "dairy": 10791, + "beach": 10792, + "frequencies": 10793, + "omal": 10794, + "cues": 10795, + "lux": 10796, + "manipulation": 10797, + "algebra": 10798, + "perseverance": 10799, + "Discuss": 10800, + "æĹ": 10801, + "arrangement": 10802, + "pixels": 10803, + "mentation": 10804, + "awarded": 10805, + "Dri": 10806, + "concluded": 10807, + "Confeder": 10808, + "amino": 10809, + "fili": 10810, + "joints": 10811, + "kar": 10812, + "Answers": 10813, + "wonders": 10814, + "stops": 10815, + "teaches": 10816, + "personalized": 10817, + "disasters": 10818, + "spray": 10819, + "adm": 10820, + "preserved": 10821, + "funded": 10822, + "contracts": 10823, + "Important": 10824, + "tled": 10825, + "incredibly": 10826, + "Ġ('": 10827, + "critics": 10828, + "singing": 10829, + "showcase": 10830, + "Legal": 10831, + "amine": 10832, + "entials": 10833, + "hesit": 10834, + "quiz": 10835, + "casts": 10836, + "Illin": 10837, + "Objective": 10838, + "Relation": 10839, + "campus": 10840, + "aints": 10841, + "Adam": 10842, + "aneous": 10843, + "Conference": 10844, + "Berlin": 10845, + "//Ġ": 10846, + "delivering": 10847, + "âĪĴ": 10848, + "hormones": 10849, + "tied": 10850, + "mort": 10851, + "dens": 10852, + "subset": 10853, + ".Ġ...Ġ": 10854, + "Encour": 10855, + "producers": 10856, + "graphs": 10857, + "economies": 10858, + "aka": 10859, + "prolong": 10860, + "endment": 10861, + "occasionally": 10862, + "proposal": 10863, + "genome": 10864, + "comprehend": 10865, + "weed": 10866, + "Illinois": 10867, + "Fact": 10868, + "Tran": 10869, + "Hung": 10870, + "Ġ=Ġ\"\"": 10871, + "ли": 10872, + "highlighted": 10873, + "adopting": 10874, + "ĠĠ:Ġ": 10875, + "outlined": 10876, + "imposed": 10877, + "faculty": 10878, + "crush": 10879, + "explicitly": 10880, + "Hebrew": 10881, + "warfare": 10882, + "Tax": 10883, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 10884, + "calendar": 10885, + "Angeles": 10886, + "NN": 10887, + "nick": 10888, + "dropped": 10889, + "receives": 10890, + "advocacy": 10891, + "vegetation": 10892, + "Origin": 10893, + "absorption": 10894, + "Analyzing": 10895, + "closing": 10896, + "disputes": 10897, + "reliability": 10898, + "loaded": 10899, + "weaknesses": 10900, + ",ĠĠ": 10901, + "wich": 10902, + "relates": 10903, + "vocal": 10904, + "factorial": 10905, + "attitude": 10906, + "-------": 10907, + "Introdu": 10908, + "ographic": 10909, + "Therapy": 10910, + "Clo": 10911, + "pH": 10912, + "spell": 10913, + "Store": 10914, + "Hop": 10915, + "provin": 10916, + "profiles": 10917, + "nets": 10918, + "Define": 10919, + "dried": 10920, + "magazine": 10921, + "washing": 10922, + "[:,Ġ": 10923, + "acknowledge": 10924, + "aine": 10925, + "Factors": 10926, + "progressive": 10927, + "bottle": 10928, + "Cut": 10929, + "tobacco": 10930, + "revol": 10931, + "cann": 10932, + "tin": 10933, + "weekly": 10934, + "indicators": 10935, + "minority": 10936, + "Military": 10937, + "urated": 10938, + "tock": 10939, + "constitutional": 10940, + "tender": 10941, + "clouds": 10942, + "Dem": 10943, + "ados": 10944, + "Account": 10945, + "paste": 10946, + "Rout": 10947, + "Digite": 10948, + "Bes": 10949, + "Az": 10950, + "Connec": 10951, + "ж": 10952, + "Evolution": 10953, + "agan": 10954, + "compile": 10955, + "adaptability": 10956, + "Hold": 10957, + "Loss": 10958, + "districts": 10959, + "Beyond": 10960, + "Emily": 10961, + "@@": 10962, + "gains": 10963, + "sv": 10964, + "Processing": 10965, + "incorporated": 10966, + "speaker": 10967, + "NumPy": 10968, + "Represent": 10969, + "compost": 10970, + "sten": 10971, + "prevents": 10972, + "sodium": 10973, + "Adding": 10974, + "mechanics": 10975, + "secu": 10976, + "seas": 10977, + "rituals": 10978, + "Heritage": 10979, + "appealing": 10980, + "colonies": 10981, + "autonomy": 10982, + "duties": 10983, + "documentation": 10984, + "Values": 10985, + "entia": 10986, + "TODO": 10987, + "attractive": 10988, + "Jacob": 10989, + "severity": 10990, + "speeds": 10991, + "visualize": 10992, + "ĠâĢĵ": 10993, + "romantic": 10994, + "classmates": 10995, + "guitar": 10996, + "âĢĶĠ": 10997, + "debut": 10998, + "lymph": 10999, + "Pet": 11000, + "ROM": 11001, + "glasses": 11002, + "Mother": 11003, + "heter": 11004, + "Diag": 11005, + "fies": 11006, + "nx": 11007, + "intim": 11008, + "Embracing": 11009, + "tutorial": 11010, + "').": 11011, + "aham": 11012, + "lift": 11013, + "executed": 11014, + "rectangle": 11015, + "Knowledge": 11016, + "Clinical": 11017, + "matr": 11018, + "assumed": 11019, + "Colorado": 11020, + "celebrating": 11021, + "Philos": 11022, + "globally": 11023, + "fatty": 11024, + "Descri": 11025, + "Arctic": 11026, + "Jones": 11027, + "arrive": 11028, + "LS": 11029, + "âĨ": 11030, + "publications": 11031, + "Dun": 11032, + "Cli": 11033, + "Egyptian": 11034, + "Malay": 11035, + "mitigate": 11036, + "prejud": 11037, + "cially": 11038, + "Location": 11039, + "hea": 11040, + "progression": 11041, + "payments": 11042, + "fictional": 11043, + "shots": 11044, + "antibiotics": 11045, + "ticks": 11046, + "Stories": 11047, + "cloth": 11048, + "volunteers": 11049, + "*(": 11050, + "Agriculture": 11051, + "sia": 11052, + "Turn": 11053, + "bless": 11054, + "fears": 11055, + "developmental": 11056, + "labeled": 11057, + "enjoyable": 11058, + "ambig": 11059, + "Requ": 11060, + "chip": 11061, + "responds": 11062, + "shadow": 11063, + "aman": 11064, + "convenient": 11065, + "modules": 11066, + "garlic": 11067, + "ени": 11068, + "Ministry": 11069, + "Buddhist": 11070, + "Century": 11071, + "acres": 11072, + "enthusiasts": 11073, + "caring": 11074, + "为": 11075, + "Hi": 11076, + "Kim": 11077, + "uss": 11078, + "inth": 11079, + "Len": 11080, + "advancing": 11081, + "cury": 11082, + "INT": 11083, + "castle": 11084, + "seasonal": 11085, + "pickle": 11086, + "ĊĊĊĠĠĠĠ": 11087, + "poet": 11088, + "ruled": 11089, + "Mediter": 11090, + "Coord": 11091, + "acquisition": 11092, + "qualified": 11093, + "systematic": 11094, + "Tip": 11095, + "adesh": 11096, + "ом": 11097, + "iler": 11098, + "jug": 11099, + "medicines": 11100, + "Cred": 11101, + "Developing": 11102, + "believes": 11103, + "underground": 11104, + "Args": 11105, + "weren": 11106, + "ABC": 11107, + "intricacies": 11108, + "Wars": 11109, + "Navigating": 11110, + "Weight": 11111, + "followers": 11112, + "Save": 11113, + "enorm": 11114, + "uding": 11115, + "cler": 11116, + "Mas": 11117, + "drives": 11118, + "shipping": 11119, + "affairs": 11120, + "gum": 11121, + "Nur": 11122, + "Ġ=Ġ_": 11123, + "thood": 11124, + "een": 11125, + "Rap": 11126, + "stumbled": 11127, + "somewhere": 11128, + "WN": 11129, + "civilizations": 11130, + "Scientific": 11131, + "Jean": 11132, + "Scottish": 11133, + "fibers": 11134, + "traject": 11135, + "ishes": 11136, + "Transport": 11137, + "oon": 11138, + "biograph": 11139, + "eman": 11140, + "rens": 11141, + "transmitted": 11142, + "antioxid": 11143, + "'],": 11144, + "..Ġ": 11145, + "manus": 11146, + "transferred": 11147, + "Stop": 11148, + "bitr": 11149, + "protocol": 11150, + "regi": 11151, + "stretch": 11152, + "Tech": 11153, + "suppl": 11154, + "Harvard": 11155, + "authorized": 11156, + "rehab": 11157, + "restricted": 11158, + "Copyright": 11159, + "administrative": 11160, + "empire": 11161, + "arthritis": 11162, + "counterparts": 11163, + "oneself": 11164, + "Testament": 11165, + "confront": 11166, + "ipher": 11167, + "desert": 11168, + "macro": 11169, + "Sympto": 11170, + "convin": 11171, + "Identifying": 11172, + "Grad": 11173, + "Mediterranean": 11174, + "entieth": 11175, + "favour": 11176, + "ered": 11177, + "pressures": 11178, + "WS": 11179, + "astics": 11180, + "ÑĦ": 11181, + "stan": 11182, + "Application": 11183, + "constructing": 11184, + "Alz": 11185, + "reversed": 11186, + "intestinal": 11187, + "stocks": 11188, + "antine": 11189, + "Rather": 11190, + "wd": 11191, + "Taylor": 11192, + "talent": 11193, + "tongue": 11194, + "umph": 11195, + "gifts": 11196, + "excel": 11197, + "PP": 11198, + "Fit": 11199, + "Jr": 11200, + "organism": 11201, + "Numbers": 11202, + "tees": 11203, + "neutr": 11204, + "Users": 11205, + "Carib": 11206, + "ë³": 11207, + "licens": 11208, + "watched": 11209, + "Shakes": 11210, + "rus": 11211, + "}')": 11212, + "limiting": 11213, + "-*": 11214, + "Emo": 11215, + "bomb": 11216, + "phon": 11217, + "groundbreaking": 11218, + "rors": 11219, + "dataframe": 11220, + "Film": 11221, + "Rot": 11222, + "acerb": 11223, + "ок": 11224, + "operated": 11225, + "transitions": 11226, + "ìŀIJ": 11227, + "representatives": 11228, + "Kids": 11229, + "Cas": 11230, + "spirits": 11231, + "attempting": 11232, + "Pa": 11233, + "warrant": 11234, + "drought": 11235, + "rival": 11236, + "?Ġ(": 11237, + "cable": 11238, + "bare": 11239, + "uid": 11240, + "rog": 11241, + "extraction": 11242, + "whis": 11243, + "Twitter": 11244, + "controversial": 11245, + "supplements": 11246, + "retire": 11247, + "firms": 11248, + "autism": 11249, + "perpetu": 11250, + "pting": 11251, + "Seas": 11252, + "Contact": 11253, + "artifacts": 11254, + "(*": 11255, + "descent": 11256, + "purchased": 11257, + "ille": 11258, + "deficiency": 11259, + "uments": 11260, + "Hur": 11261, + "emergence": 11262, + "diets": 11263, + "flux": 11264, + "ëĵ": 11265, + "manipulate": 11266, + "ders": 11267, + "Ġ=Ġ-Ġ": 11268, + "verte": 11269, + "fate": 11270, + "packed": 11271, + "navigation": 11272, + "adjustments": 11273, + "associate": 11274, + "threads": 11275, + "jog": 11276, + "targeting": 11277, + "Ġ)Ġ*Ġ": 11278, + "chop": 11279, + "opol": 11280, + "Advanced": 11281, + "settlers": 11282, + "Bern": 11283, + "resonate": 11284, + "Has": 11285, + "assignments": 11286, + ")ĠĠ#Ġ": 11287, + "biblical": 11288, + "Polish": 11289, + "varies": 11290, + ":\",Ġ": 11291, + "vice": 11292, + "Ġ)Ġ+Ġ": 11293, + "thickness": 11294, + "omer": 11295, + "discre": 11296, + "scratch": 11297, + "endanger": 11298, + "Five": 11299, + "teor": 11300, + "Tam": 11301, + "NY": 11302, + "exacerb": 11303, + "otechn": 11304, + "infectious": 11305, + "metadata": 11306, + "verbo": 11307, + "Taking": 11308, + "기": 11309, + "Mob": 11310, + "mt": 11311, + "Sound": 11312, + "Ġ!/": 11313, + "oceans": 11314, + "rium": 11315, + "analog": 11316, + "xml": 11317, + "barrier": 11318, + "Baby": 11319, + "coordination": 11320, + "diam": 11321, + "coat": 11322, + "bases": 11323, + "Kent": 11324, + "understandings": 11325, + ".Ġ*": 11326, + "journeys": 11327, + "seats": 11328, + "metry": 11329, + "loading": 11330, + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 11331, + "]):": 11332, + "Professional": 11333, + "suicide": 11334, + "Month": 11335, + "foundational": 11336, + "erosion": 11337, + "voting": 11338, + "Prepare": 11339, + "prevalence": 11340, + "Born": 11341, + "decod": 11342, + "Setting": 11343, + "annot": 11344, + "lengths": 11345, + "ckets": 11346, + "Vitamin": 11347, + "administer": 11348, + "aken": 11349, + "yields": 11350, + "á»": 11351, + "relying": 11352, + "incidence": 11353, + "aligned": 11354, + "Sequ": 11355, + "Ten": 11356, + "copyright": 11357, + "α": 11358, + "evident": 11359, + "asci": 11360, + "estone": 11361, + "usalem": 11362, + "Match": 11363, + "completion": 11364, + "defe": 11365, + "Ever": 11366, + "Santa": 11367, + "Ġ*Ġ(": 11368, + "generates": 11369, + "?âĢĿĠ": 11370, + "Ġ)Ġ-Ġ": 11371, + "AIDS": 11372, + "Tools": 11373, + "chaos": 11374, + "Volume": 11375, + "dual": 11376, + "lateral": 11377, + "injured": 11378, + "molecule": 11379, + ":\")": 11380, + "eps": 11381, + "descend": 11382, + "assistant": 11383, + "Phy": 11384, + "pole": 11385, + "crash": 11386, + "âĢĻ.Ġ": 11387, + "Thompson": 11388, + "Cold": 11389, + "Gh": 11390, + "Alzheimer": 11391, + "BR": 11392, + "Shakespeare": 11393, + "intelligent": 11394, + "ammals": 11395, + "Gender": 11396, + "unfamiliar": 11397, + "cattle": 11398, + "tify": 11399, + "tends": 11400, + "researcher": 11401, + "animation": 11402, + "analytical": 11403, + "но": 11404, + "lore": 11405, + "Eventually": 11406, + "abundant": 11407, + "sorts": 11408, + "continuously": 11409, + "manufacturer": 11410, + "(\"Ġ": 11411, + "degradation": 11412, + "faceted": 11413, + "Methods": 11414, + "evolutionary": 11415, + "constitu": 11416, + "bian": 11417, + "spinal": 11418, + "surveys": 11419, + "Rect": 11420, + "stems": 11421, + "Gulf": 11422, + "architect": 11423, + "TM": 11424, + "Along": 11425, + "enemies": 11426, + "institutional": 11427, + "balancing": 11428, + "punishment": 11429, + "Background": 11430, + "gau": 11431, + "Give": 11432, + "bak": 11433, + "recipi": 11434, + "jewel": 11435, + "Survey": 11436, + "nis": 11437, + "Electric": 11438, + "Harr": 11439, + "suits": 11440, + "reminder": 11441, + ".).Ġ": 11442, + "peat": 11443, + "Bring": 11444, + "bills": 11445, + "Teaching": 11446, + "Eu": 11447, + "snip": 11448, + "Jerusalem": 11449, + "Blood": 11450, + "ifice": 11451, + "desirable": 11452, + "enda": 11453, + "approval": 11454, + "fantasy": 11455, + "\"):": 11456, + "printer": 11457, + "Ps": 11458, + "mate": 11459, + "invited": 11460, + "Summer": 11461, + "passionate": 11462, + "revolutionary": 11463, + "Engaging": 11464, + "prem": 11465, + "contamination": 11466, + "chips": 11467, + "weets": 11468, + "surveillance": 11469, + "им": 11470, + "Explain": 11471, + "recess": 11472, + "breathe": 11473, + "Schools": 11474, + "issors": 11475, + "ì§Ģ": 11476, + "bil": 11477, + "elderly": 11478, + "pse": 11479, + "Jon": 11480, + "ologically": 11481, + "writings": 11482, + "BI": 11483, + "oto": 11484, + "EV": 11485, + "loans": 11486, + "ADHD": 11487, + "Sustainable": 11488, + "Mand": 11489, + "CDC": 11490, + "mesh": 11491, + "pie": 11492, + "uum": 11493, + "Caribbean": 11494, + "Lewis": 11495, + "]Ġ>Ġ": 11496, + "allevi": 11497, + "employers": 11498, + "Secretary": 11499, + "%,Ġ": 11500, + "crust": 11501, + "Mechan": 11502, + "reviewed": 11503, + "å¯": 11504, + "Pattern": 11505, + "nearest": 11506, + "Bow": 11507, + "debris": 11508, + "sacrific": 11509, + "founder": 11510, + "ylabel": 11511, + "edu": 11512, + "elle": 11513, + "Otto": 11514, + "è¾": 11515, + "ulus": 11516, + "sauce": 11517, + "pene": 11518, + "routines": 11519, + "GA": 11520, + "exhibition": 11521, + "charts": 11522, + "needle": 11523, + "nurturing": 11524, + "Document": 11525, + "steady": 11526, + "wake": 11527, + "mam": 11528, + "urine": 11529, + "\"\")": 11530, + "]Ġ!=Ġ": 11531, + "oe": 11532, + "eleph": 11533, + "Daily": 11534, + "orb": 11535, + "corruption": 11536, + "pilot": 11537, + "Tai": 11538, + "ilation": 11539, + "esh": 11540, + "packaging": 11541, + "Creative": 11542, + "shoulder": 11543, + "episodes": 11544, + "arians": 11545, + "inflation": 11546, + "olar": 11547, + "App": 11548, + ")|": 11549, + "ë§": 11550, + "Scre": 11551, + "greet": 11552, + "arith": 11553, + "occupation": 11554, + "Poland": 11555, + "COL": 11556, + "Garden": 11557, + "boats": 11558, + "races": 11559, + "Industrial": 11560, + "Arthur": 11561, + "metabolism": 11562, + "license": 11563, + "grocer": 11564, + "catalog": 11565, + "Sab": 11566, + "annually": 11567, + "Distri": 11568, + "compensation": 11569, + "Father": 11570, + "begun": 11571, + "dit": 11572, + "Categ": 11573, + "об": 11574, + "Frequ": 11575, + "glac": 11576, + "velength": 11577, + "ima": 11578, + "æľī": 11579, + "festival": 11580, + "elabor": 11581, + "rounded": 11582, + "STEM": 11583, + "Column": 11584, + "ika": 11585, + "Sounds": 11586, + "spices": 11587, + "Stock": 11588, + "Was": 11589, + "improves": 11590, + "Rate": 11591, + "mim": 11592, + "nut": 11593, + "Symptoms": 11594, + "fut": 11595, + "cakes": 11596, + "humidity": 11597, + "requirement": 11598, + "-----": 11599, + "ticides": 11600, + "riding": 11601, + "timer": 11602, + ",Ġ**": 11603, + "floating": 11604, + "draft": 11605, + "traveled": 11606, + "bay": 11607, + "databases": 11608, + "hism": 11609, + "dece": 11610, + "jar": 11611, + "ags": 11612, + "infr": 11613, + "drops": 11614, + "Matthe": 11615, + "subsequently": 11616, + "painted": 11617, + "exploitation": 11618, + "scored": 11619, + "outbreak": 11620, + "Marine": 11621, + "Golden": 11622, + "ologic": 11623, + "heaven": 11624, + "keyboard": 11625, + "prohib": 11626, + "Drawing": 11627, + "transforming": 11628, + "Decision": 11629, + "landing": 11630, + "connects": 11631, + "transformative": 11632, + "regime": 11633, + "Distance": 11634, + "ropol": 11635, + "atable": 11636, + "digestive": 11637, + "Friday": 11638, + "gardening": 11639, + "Scott": 11640, + "stabil": 11641, + "drew": 11642, + "SV": 11643, + "rainfall": 11644, + "exclusive": 11645, + "folio": 11646, + "ona": 11647, + "stir": 11648, + "pink": 11649, + "twelve": 11650, + "affili": 11651, + "imagined": 11652, + "ached": 11653, + "winds": 11654, + "triggers": 11655, + "inery": 11656, + "painful": 11657, + "titled": 11658, + "associations": 11659, + "cock": 11660, + "paramount": 11661, + "geography": 11662, + "gt": 11663, + "answered": 11664, + "âģ": 11665, + "elly": 11666, + "aggreg": 11667, + "fulfill": 11668, + "adder": 11669, + "tops": 11670, + "networking": 11671, + "storing": 11672, + "Festi": 11673, + "alert": 11674, + "Anton": 11675, + "invasion": 11676, + "shield": 11677, + "maze": 11678, + "UC": 11679, + "Empty": 11680, + "Soon": 11681, + "nineteenth": 11682, + "Wildlife": 11683, + "Rh": 11684, + "smile": 11685, + "Explore": 11686, + "opedia": 11687, + "Tenn": 11688, + "deposit": 11689, + "Display": 11690, + "permit": 11691, + "tains": 11692, + "unlikely": 11693, + "ogens": 11694, + "genetics": 11695, + "shine": 11696, + "Additional": 11697, + "iah": 11698, + "kilometers": 11699, + "ido": 11700, + "bugs": 11701, + "versely": 11702, + "Everyone": 11703, + "atus": 11704, + "deviation": 11705, + "\\_": 11706, + "venti": 11707, + "sleeping": 11708, + "JS": 11709, + "contrad": 11710, + "Avail": 11711, + "Ok": 11712, + "timing": 11713, + "Ray": 11714, + "###": 11715, + "reserved": 11716, + "empirical": 11717, + "Primary": 11718, + "Finding": 11719, + "Creek": 11720, + "enthusiasm": 11721, + "Alg": 11722, + "promises": 11723, + "PN": 11724, + "Leaders": 11725, + "nomial": 11726, + "nosis": 11727, + "ESS": 11728, + "olds": 11729, + "riz": 11730, + "beer": 11731, + "soy": 11732, + "inevit": 11733, + "phil": 11734, + "crowd": 11735, + "{Ġ": 11736, + "ranks": 11737, + "computational": 11738, + "eration": 11739, + "Teachers": 11740, + "Approach": 11741, + "flatten": 11742, + "socioeconomic": 11743, + "ìĸ": 11744, + "::": 11745, + "trains": 11746, + "Temple": 11747, + "volumes": 11748, + "xlabel": 11749, + "ifer": 11750, + "fled": 11751, + "Memory": 11752, + "ا": 11753, + "incorrect": 11754, + "Dynam": 11755, + "Format": 11756, + "calculation": 11757, + "ä¸Ń": 11758, + "frozen": 11759, + "Addressing": 11760, + "astronom": 11761, + "clarity": 11762, + "Normal": 11763, + "Wilson": 11764, + "birthday": 11765, + "Edge": 11766, + "officially": 11767, + "sustained": 11768, + "TA": 11769, + "lakes": 11770, + "nl": 11771, + "transparent": 11772, + "unwanted": 11773, + "practiced": 11774, + "bounds": 11775, + "gratulations": 11776, + "english": 11777, + ":Ġ\",Ġ": 11778, + "oriented": 11779, + "Regard": 11780, + "timestamp": 11781, + "visibility": 11782, + "loyalty": 11783, + "bucket": 11784, + "prevalent": 11785, + "ĊĠĠĠĠĠĠĠĠĠ": 11786, + "Mom": 11787, + "talents": 11788, + "physiological": 11789, + "ilib": 11790, + "cad": 11791, + "â̲": 11792, + "mented": 11793, + "viewing": 11794, + "runner": 11795, + "Typ": 11796, + "Ġ@-": 11797, + "peas": 11798, + "Bad": 11799, + "foo": 11800, + "virtually": 11801, + "irrigation": 11802, + "Ġ@-@Ġ": 11803, + "Hab": 11804, + "soap": 11805, + "satisfied": 11806, + "originated": 11807, + "Sleep": 11808, + "feas": 11809, + "Past": 11810, + "liberal": 11811, + "sulf": 11812, + "Software": 11813, + "guarantee": 11814, + "racing": 11815, + "conjun": 11816, + "yoga": 11817, + "Thinking": 11818, + "headed": 11819, + "gratitude": 11820, + "adelph": 11821, + "#ĠĠĠ": 11822, + "rible": 11823, + "reinforce": 11824, + "ici": 11825, + "owing": 11826, + "leet": 11827, + "geo": 11828, + "Intelligence": 11829, + "intern": 11830, + "ockey": 11831, + "labour": 11832, + "Message": 11833, + "aust": 11834, + "wings": 11835, + "buttons": 11836, + "loops": 11837, + "impul": 11838, + "Proto": 11839, + "sheep": 11840, + "ked": 11841, + "tha": 11842, + "cohes": 11843, + "relies": 11844, + "plicates": 11845, + "Andrew": 11846, + "potatoes": 11847, + "Things": 11848, + "renowned": 11849, + "Lower": 11850, + "Smo": 11851, + "ulo": 11852, + "wavelength": 11853, + "packages": 11854, + "anned": 11855, + "ĠâĪ": 11856, + "Bell": 11857, + "Active": 11858, + "Identity": 11859, + "EPA": 11860, + "uation": 11861, + "trips": 11862, + "()Ġ==Ġ": 11863, + "hem": 11864, + "triumph": 11865, + "incidents": 11866, + "Foreign": 11867, + "league": 11868, + "Ay": 11869, + "educated": 11870, + "Update": 11871, + "åĢ": 11872, + "Entry": 11873, + "cture": 11874, + "leton": 11875, + "âģĦ": 11876, + "\"]Ġ=Ġ": 11877, + "Linux": 11878, + "chars": 11879, + "mainstream": 11880, + "defeat": 11881, + "heightened": 11882, + "cough": 11883, + "diagonal": 11884, + "SW": 11885, + "Ġ£": 11886, + "attributed": 11887, + "defines": 11888, + "diagram": 11889, + "challenged": 11890, + "hotel": 11891, + "Elements": 11892, + "susceptible": 11893, + "quiry": 11894, + "deter": 11895, + "compete": 11896, + "ein": 11897, + "classifier": 11898, + "Arabic": 11899, + "zona": 11900, + ")ĠâĢĵĠ": 11901, + "Ġ=Ġ[\"": 11902, + "facilitating": 11903, + "isa": 11904, + "walks": 11905, + "endangered": 11906, + "hinder": 11907, + "hosts": 11908, + "SR": 11909, + "influen": 11910, + "aesthetic": 11911, + "enzymes": 11912, + "wireless": 11913, + ",\"Ġ\"": 11914, + "omy": 11915, + "mont": 11916, + "ailed": 11917, + "Practices": 11918, + "intro": 11919, + "odds": 11920, + "evenly": 11921, + "Download": 11922, + "crystal": 11923, + "μ": 11924, + "vertebr": 11925, + "idently": 11926, + "Ġ=Ġ''": 11927, + "twentieth": 11928, + "entrance": 11929, + "Stone": 11930, + "Philadelph": 11931, + "}\\": 11932, + "signature": 11933, + "villages": 11934, + "TypeError": 11935, + "backward": 11936, + "acre": 11937, + "releases": 11938, + "dign": 11939, + "heading": 11940, + "matrices": 11941, + "Combin": 11942, + "nurses": 11943, + "Shar": 11944, + "VE": 11945, + "Collection": 11946, + "Cool": 11947, + "chamber": 11948, + "hips": 11949, + "enormous": 11950, + "loving": 11951, + "Nether": 11952, + "padding": 11953, + "Turkish": 11954, + "uplo": 11955, + "motivated": 11956, + "Dia": 11957, + "DD": 11958, + "elevated": 11959, + "locals": 11960, + "footballers": 11961, + "mammals": 11962, + "seriously": 11963, + "divisions": 11964, + "equals": 11965, + "constitution": 11966, + "negatively": 11967, + "Ġ=Ġ[[": 11968, + "walked": 11969, + "Ku": 11970, + "Les": 11971, + "tweet": 11972, + "palindrome": 11973, + "Missis": 11974, + "Iron": 11975, + "publishing": 11976, + "maker": 11977, + "dangers": 11978, + "igen": 11979, + "parliament": 11980, + "inge": 11981, + "plicity": 11982, + "basically": 11983, + "prosperity": 11984, + "Plat": 11985, + "Football": 11986, + "monarch": 11987, + "throat": 11988, + "thriving": 11989, + "ratings": 11990, + "refugees": 11991, + "Nic": 11992, + "emotionally": 11993, + "Hz": 11994, + "modifications": 11995, + "Night": 11996, + "pir": 11997, + "renal": 11998, + "fitting": 11999, + "rick": 12000, + "dispers": 12001, + "Virtual": 12002, + "mosqu": 12003, + "boun": 12004, + "relatives": 12005, + "ku": 12006, + "blings": 12007, + "flowing": 12008, + "skep": 12009, + "oste": 12010, + "dancing": 12011, + "verbose": 12012, + "oked": 12013, + "shouldn": 12014, + "Speed": 12015, + "pros": 12016, + "Instru": 12017, + "deem": 12018, + "sippi": 12019, + "holy": 12020, + "prescribed": 12021, + "Hence": 12022, + "livestock": 12023, + "enzyme": 12024, + "Sample": 12025, + "enters": 12026, + "compression": 12027, + "guns": 12028, + "atmospheric": 12029, + "athle": 12030, + "psycho": 12031, + "teens": 12032, + "initialize": 12033, + "Monday": 12034, + "utils": 12035, + "Performance": 12036, + "ricane": 12037, + "uran": 12038, + "verses": 12039, + "Enh": 12040, + "allocation": 12041, + "storms": 12042, + "adapting": 12043, + "vet": 12044, + "sug": 12045, + "åŃĹ": 12046, + "timely": 12047, + "Provide": 12048, + "employing": 12049, + "arbitr": 12050, + "controller": 12051, + "versatile": 12052, + "Philadelphia": 12053, + "vulnerability": 12054, + "quotes": 12055, + "Smart": 12056, + "magnific": 12057, + "iop": 12058, + ")||": 12059, + "ë¬": 12060, + "Argent": 12061, + "ordan": 12062, + "Corn": 12063, + "OP": 12064, + "trap": 12065, + "Statistics": 12066, + "dominated": 12067, + "ture": 12068, + "Mol": 12069, + "atri": 12070, + "listing": 12071, + "zi": 12072, + "morality": 12073, + "desires": 12074, + "Oct": 12075, + "shade": 12076, + "Oreg": 12077, + "rubber": 12078, + "idade": 12079, + "irt": 12080, + "Dor": 12081, + "revel": 12082, + "Republican": 12083, + "proving": 12084, + "SIZE": 12085, + "]Ġ==Ġ'": 12086, + "pale": 12087, + "Instit": 12088, + "blur": 12089, + ".,Ġ&Ġ": 12090, + "rey": 12091, + "Convention": 12092, + "Below": 12093, + "Raj": 12094, + "squee": 12095, + "mindful": 12096, + "friendships": 12097, + "alarm": 12098, + "cali": 12099, + "éĢ": 12100, + "promotion": 12101, + "shi": 12102, + "unlock": 12103, + "handler": 12104, + "ĊĠĊĊ": 12105, + "determines": 12106, + "entails": 12107, + "Aqu": 12108, + "autonom": 12109, + "ĠĠ+Ġ": 12110, + "Moses": 12111, + "collapse": 12112, + "agic": 12113, + "WHO": 12114, + "omagnetic": 12115, + "ghan": 12116, + "endor": 12117, + "phases": 12118, + "rian": 12119, + "openly": 12120, + "Laboratory": 12121, + "pollin": 12122, + "grapher": 12123, + "carto": 12124, + "fonts": 12125, + "Radio": 12126, + "()))": 12127, + "bage": 12128, + "cave": 12129, + "jet": 12130, + "Offic": 12131, + "biography": 12132, + "multifaceted": 12133, + "distor": 12134, + "spel": 12135, + "Spl": 12136, + "Companies": 12137, + "åĨ": 12138, + "Sudden": 12139, + "mistake": 12140, + "abroad": 12141, + "sexuality": 12142, + "priorities": 12143, + "pc": 12144, + "Rod": 12145, + "offices": 12146, + "imum": 12147, + "Much": 12148, + "augment": 12149, + "refused": 12150, + "credibility": 12151, + "morrow": 12152, + "byte": 12153, + "Optim": 12154, + "tire": 12155, + "*Ġ(": 12156, + "eland": 12157, + "Cs": 12158, + "posted": 12159, + "illustrated": 12160, + "ilient": 12161, + "pests": 12162, + ":*Ġ": 12163, + "jpg": 12164, + "foundations": 12165, + "itzer": 12166, + "Pow": 12167, + "showcasing": 12168, + "aki": 12169, + "ceremon": 12170, + "intersect": 12171, + "Grid": 12172, + "{\"": 12173, + ">>Ġ": 12174, + "pursuit": 12175, + "activists": 12176, + "literally": 12177, + "constitute": 12178, + "kan": 12179, + "gay": 12180, + "tings": 12181, + "competitors": 12182, + "infants": 12183, + "Governor": 12184, + "Tube": 12185, + "illustrations": 12186, + "ê": 12187, + "logo": 12188, + "handy": 12189, + "lis": 12190, + ")[": 12191, + "Greg": 12192, + "drawings": 12193, + "rs": 12194, + "compatible": 12195, + "readily": 12196, + "knee": 12197, + "accompany": 12198, + "Dim": 12199, + "tative": 12200, + "immunity": 12201, + "GM": 12202, + "opponent": 12203, + "rings": 12204, + "Bureau": 12205, + "treasures": 12206, + "modate": 12207, + "akh": 12208, + "sons": 12209, + "creators": 12210, + "watering": 12211, + "Leon": 12212, + "Chronic": 12213, + "adolescents": 12214, + "plasma": 12215, + "Nation": 12216, + "Cand": 12217, + "Style": 12218, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 12219, + "lighten": 12220, + "Psychology": 12221, + "Rain": 12222, + "namely": 12223, + "passengers": 12224, + "ä¹": 12225, + "attempted": 12226, + "agog": 12227, + "Rus": 12228, + "hammad": 12229, + "fraud": 12230, + "cultur": 12231, + "minus": 12232, + "confused": 12233, + "Manager": 12234, + "Sher": 12235, + "Years": 12236, + "questioning": 12237, + "ëĤ": 12238, + "ilibrium": 12239, + "-*-Ġ": 12240, + "sne": 12241, + "unci": 12242, + "Signific": 12243, + "jection": 12244, + "guest": 12245, + "cous": 12246, + "Diet": 12247, + "coating": 12248, + "investigations": 12249, + "vigil": 12250, + "Target": 12251, + "uncomfortable": 12252, + "cheap": 12253, + "mines": 12254, + "retention": 12255, + "Production": 12256, + "gex": 12257, + "harmonious": 12258, + "readings": 12259, + "occurrence": 12260, + "abandoned": 12261, + "premi": 12262, + "aids": 12263, + "accommodate": 12264, + "escal": 12265, + "respectful": 12266, + ",ĠâĢĺ": 12267, + "sediment": 12268, + "Mississippi": 12269, + "Records": 12270, + "symbolic": 12271, + "warmth": 12272, + "allies": 12273, + "Immun": 12274, + "\"{": 12275, + "conventions": 12276, + "rear": 12277, + "neighboring": 12278, + "abled": 12279, + "Depending": 12280, + "Confl": 12281, + "Ċĉĉĉĉĉ": 12282, + "unittest": 12283, + "Oregon": 12284, + "Prob": 12285, + "Sched": 12286, + "Abraham": 12287, + "tial": 12288, + "hou": 12289, + "íķľ": 12290, + "straw": 12291, + "fleet": 12292, + "visualization": 12293, + "minded": 12294, + "hack": 12295, + "cancers": 12296, + "Optional": 12297, + "Åį": 12298, + "camps": 12299, + "hub": 12300, + "reliance": 12301, + "eg": 12302, + "corners": 12303, + "centi": 12304, + "similarly": 12305, + "Phone": 12306, + "traged": 12307, + "Yellow": 12308, + "thoughtful": 12309, + "grounded": 12310, + "dles": 12311, + "scipy": 12312, + "inet": 12313, + "Samuel": 12314, + "Close": 12315, + "replacing": 12316, + "Arizona": 12317, + "relating": 12318, + "Commer": 12319, + "shallow": 12320, + "traumatic": 12321, + "Mul": 12322, + "companion": 12323, + "defeated": 12324, + "survived": 12325, + "divers": 12326, + "Resource": 12327, + "%.": 12328, + "orth": 12329, + "confin": 12330, + "intensive": 12331, + "ĊĠĠĠĠĠ": 12332, + "uniqu": 12333, + "refresh": 12334, + "petition": 12335, + "depicted": 12336, + "unting": 12337, + "Marx": 12338, + "Isa": 12339, + "çĽ": 12340, + "ог": 12341, + "saturated": 12342, + "iterate": 12343, + "obic": 12344, + "senses": 12345, + "pots": 12346, + "prone": 12347, + "fault": 12348, + "idays": 12349, + "pleasure": 12350, + "coher": 12351, + "\").": 12352, + "Perspec": 12353, + "åĮ": 12354, + "idi": 12355, + "Ġ?": 12356, + "cube": 12357, + "invented": 12358, + "bubble": 12359, + "deciding": 12360, + "brilliant": 12361, + "Las": 12362, + "attor": 12363, + "iliation": 12364, + "Hay": 12365, + "mythology": 12366, + "oton": 12367, + "Jersey": 12368, + "ente": 12369, + "ometry": 12370, + "mosquito": 12371, + "getitem": 12372, + "tah": 12373, + "appropriately": 12374, + "thane": 12375, + "tired": 12376, + "phic": 12377, + "Peace": 12378, + "Temper": 12379, + "ĊĠĠĠĠĠĠĠ": 12380, + "--------------------------------------------": 12381, + "Assigning": 12382, + "å¹": 12383, + "absorbed": 12384, + "keras": 12385, + "tomorrow": 12386, + "worms": 12387, + "emony": 12388, + "treasure": 12389, + "uth": 12390, + "laughter": 12391, + "Wikipedia": 12392, + "VII": 12393, + "quadr": 12394, + "phal": 12395, + "Members": 12396, + "fers": 12397, + "awes": 12398, + "subsid": 12399, + "pines": 12400, + "underwater": 12401, + "distinction": 12402, + "bleeding": 12403, + "grace": 12404, + "Cover": 12405, + "bench": 12406, + "restaurants": 12407, + "bic": 12408, + "Matthew": 12409, + "Points": 12410, + "Cloud": 12411, + "anymore": 12412, + "othe": 12413, + "mero": 12414, + "·Ġ": 12415, + "dilig": 12416, + "precedented": 12417, + "confron": 12418, + "rolls": 12419, + "soils": 12420, + "Industry": 12421, + "randomly": 12422, + "Io": 12423, + "cannab": 12424, + ":Ġ{}Ġ": 12425, + "peculi": 12426, + "Anne": 12427, + "blending": 12428, + "insect": 12429, + "®": 12430, + "similarity": 12431, + ":Ġ\"Ġ+Ġ": 12432, + "Growth": 12433, + "NR": 12434, + "stays": 12435, + "anxious": 12436, + "cti": 12437, + "olive": 12438, + "compromise": 12439, + "gus": 12440, + "Structure": 12441, + "Freedom": 12442, + "pointing": 12443, + "Lic": 12444, + "Could": 12445, + "respected": 12446, + "tribute": 12447, + "colony": 12448, + "coc": 12449, + "čĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 12450, + "teles": 12451, + "avity": 12452, + "casual": 12453, + "mush": 12454, + "iloc": 12455, + "producer": 12456, + "rev": 12457, + "passive": 12458, + "åħ¥": 12459, + "Average": 12460, + "beef": 12461, + "gra": 12462, + "Buddhism": 12463, + "warri": 12464, + "aesthetics": 12465, + "Sac": 12466, + "Hong": 12467, + "Rog": 12468, + "machinery": 12469, + "Chemical": 12470, + "---------": 12471, + "transformations": 12472, + "dal": 12473, + "TT": 12474, + "LinkedList": 12475, + "canal": 12476, + "apore": 12477, + "advocates": 12478, + "inton": 12479, + "Nutrition": 12480, + "develops": 12481, + "colonization": 12482, + "Regression": 12483, + "epic": 12484, + "caregi": 12485, + "fox": 12486, + "promoted": 12487, + "`.": 12488, + "oppression": 12489, + "Corps": 12490, + "Netherlands": 12491, + "å¾": 12492, + "balances": 12493, + "tune": 12494, + "worm": 12495, + "preference": 12496, + "strengthening": 12497, + "responded": 12498, + "neighbour": 12499, + "excav": 12500, + "Large": 12501, + "Vill": 12502, + "predators": 12503, + "jewelry": 12504, + "Dol": 12505, + "corro": 12506, + "Consult": 12507, + "expense": 12508, + "caution": 12509, + "Cle": 12510, + "ometric": 12511, + "metabolic": 12512, + "Used": 12513, + "dealer": 12514, + "Summary": 12515, + "pupils": 12516, + "fancy": 12517, + "secutive": 12518, + "åį": 12519, + "Biology": 12520, + "conquer": 12521, + "siblings": 12522, + "mock": 12523, + "adjusting": 12524, + "Nov": 12525, + "abo": 12526, + "incenti": 12527, + "Donald": 12528, + "uri": 12529, + "fake": 12530, + "dump": 12531, + "UE": 12532, + "unprecedented": 12533, + "Choosing": 12534, + "Nob": 12535, + "abundance": 12536, + "crafted": 12537, + "Drug": 12538, + "Ġ**Ġ": 12539, + "underpin": 12540, + "VAL": 12541, + "ticultural": 12542, + ":%": 12543, + "čĊĠĠĠĠčĊĠĠĠĠ": 12544, + "Jun": 12545, + "historically": 12546, + "literal": 12547, + "[(": 12548, + "cepting": 12549, + "unfold": 12550, + "tribe": 12551, + ".Ġ:": 12552, + "Oil": 12553, + "Rad": 12554, + "]*": 12555, + "chapters": 12556, + "Starting": 12557, + "DM": 12558, + "æĿ": 12559, + "owa": 12560, + "prolonged": 12561, + "Cape": 12562, + "failures": 12563, + "GS": 12564, + "bies": 12565, + "Nap": 12566, + "adaptations": 12567, + "lr": 12568, + "Captain": 12569, + "crossing": 12570, + "genic": 12571, + "FDA": 12572, + "urt": 12573, + "Obama": 12574, + "scopy": 12575, + "burgh": 12576, + "grip": 12577, + "circuits": 12578, + "++++": 12579, + "#Ġ-*-Ġ": 12580, + "doses": 12581, + "fp": 12582, + "insufficient": 12583, + "anna": 12584, + "Indonesia": 12585, + "aired": 12586, + "reproduction": 12587, + "atility": 12588, + "allergies": 12589, + "Features": 12590, + "Healthy": 12591, + "asi": 12592, + "Capital": 12593, + "=[]": 12594, + "ëł¥": 12595, + "Tro": 12596, + "å½": 12597, + "indoor": 12598, + "instant": 12599, + "elementary": 12600, + "flush": 12601, + "Brand": 12602, + "fertile": 12603, + "Portugu": 12604, + "Lady": 12605, + "draws": 12606, + "belongs": 12607, + "magnificent": 12608, + "Ka": 12609, + "favorable": 12610, + "shoot": 12611, + "Abor": 12612, + "spelling": 12613, + "critic": 12614, + ",Ġ*": 12615, + "DAT": 12616, + "matched": 12617, + "whites": 12618, + "thodox": 12619, + "Encouraging": 12620, + "usively": 12621, + "Effects": 12622, + "gang": 12623, + "briefly": 12624, + "Trump": 12625, + "wheels": 12626, + "Variable": 12627, + "viewpoints": 12628, + "entropy": 12629, + "assessing": 12630, + "brick": 12631, + "survivors": 12632, + "ÐŁ": 12633, + "accessed": 12634, + "RES": 12635, + "itt": 12636, + "bey": 12637, + "earthquake": 12638, + "icion": 12639, + ".*": 12640, + "voy": 12641, + "nals": 12642, + "(...)?": 12643, + "slide": 12644, + "tear": 12645, + "puzzles": 12646, + "dramatically": 12647, + "bf": 12648, + "inely": 12649, + "thirty": 12650, + "suited": 12651, + "onds": 12652, + "boolean": 12653, + "Protest": 12654, + "Module": 12655, + "kick": 12656, + "brac": 12657, + "masks": 12658, + "Harry": 12659, + "Ig": 12660, + "inherit": 12661, + "resur": 12662, + "behave": 12663, + "resilient": 12664, + "nony": 12665, + "momentum": 12666, + "baseball": 12667, + "researching": 12668, + "corporations": 12669, + "dementia": 12670, + "brothers": 12671, + "asis": 12672, + "VER": 12673, + "overl": 12674, + "LECT": 12675, + "punctu": 12676, + "mos": 12677, + "fertility": 12678, + "interpreting": 12679, + "unks": 12680, + "grants": 12681, + "flags": 12682, + "temporal": 12683, + "attachment": 12684, + "paradig": 12685, + "poets": 12686, + "constructive": 12687, + "volunteer": 12688, + "hopes": 12689, + "refriger": 12690, + "teamwork": 12691, + "Lind": 12692, + "alo": 12693, + "Side": 12694, + "tol": 12695, + "iest": 12696, + "specialist": 12697, + "convenience": 12698, + "Luther": 12699, + "Tol": 12700, + "Activities": 12701, + "traditionally": 12702, + "wages": 12703, + "distribute": 12704, + "Voc": 12705, + "spine": 12706, + "pharmac": 12707, + "è¡Į": 12708, + "yeast": 12709, + "immer": 12710, + "dilem": 12711, + "communicating": 12712, + "Opportun": 12713, + "Boy": 12714, + "centric": 12715, + "steward": 12716, + "brands": 12717, + "contaminated": 12718, + "recursive": 12719, + "Defining": 12720, + "Anna": 12721, + "renewed": 12722, + "ç¬": 12723, + "plantation": 12724, + "Multiply": 12725, + "Bridge": 12726, + "jac": 12727, + "negotiations": 12728, + "historian": 12729, + "vian": 12730, + "authenticity": 12731, + "Singapore": 12732, + "ogene": 12733, + "participated": 12734, + "Say": 12735, + "compositions": 12736, + "pository": 12737, + "Measure": 12738, + "spacecraft": 12739, + "dividing": 12740, + "Friend": 12741, + "Technical": 12742, + "atomy": 12743, + "operates": 12744, + "admin": 12745, + "inject": 12746, + "demanding": 12747, + "yards": 12748, + "stuck": 12749, + "Sweden": 12750, + "shooting": 12751, + "bottles": 12752, + "teas": 12753, + "aquatic": 12754, + "Experiment": 12755, + "cozy": 12756, + "immersive": 12757, + "aug": 12758, + "리": 12759, + "Davis": 12760, + "discharge": 12761, + "Stephen": 12762, + "adul": 12763, + "genus": 12764, + "Track": 12765, + "schemes": 12766, + "aler": 12767, + "accord": 12768, + "ouch": 12769, + "Alaska": 12770, + "Familiar": 12771, + "thumb": 12772, + "pollut": 12773, + "syntax": 12774, + ",Ġ`": 12775, + "tification": 12776, + "Congratulations": 12777, + "ACK": 12778, + "diagnose": 12779, + "pipeline": 12780, + "stressed": 12781, + "wick": 12782, + "resolved": 12783, + "Pap": 12784, + "!)Ġ": 12785, + "Afghan": 12786, + "Sure": 12787, + "Compare": 12788, + "deer": 12789, + "ORD": 12790, + "romance": 12791, + "amy": 12792, + "fname": 12793, + "timeless": 12794, + "pronounced": 12795, + "Ecol": 12796, + "Offer": 12797, + "realism": 12798, + "Portuguese": 12799, + "personally": 12800, + "vival": 12801, + ":#": 12802, + "Ol": 12803, + "Picture": 12804, + "Broad": 12805, + "Winter": 12806, + "legally": 12807, + "assium": 12808, + "Festival": 12809, + "Status": 12810, + "physicians": 12811, + "plural": 12812, + "bolster": 12813, + "provisions": 12814, + "implies": 12815, + "manship": 12816, + "firmly": 12817, + "specify": 12818, + "Gather": 12819, + "inverse": 12820, + "ĉĉĉĉ": 12821, + "Talk": 12822, + "scheduled": 12823, + "ouri": 12824, + "Persian": 12825, + "Pack": 12826, + "Cos": 12827, + "broadcast": 12828, + "ilst": 12829, + "upcoming": 12830, + "Parents": 12831, + "nuances": 12832, + "divor": 12833, + "worried": 12834, + "builds": 12835, + "fluids": 12836, + "Ages": 12837, + "fraid": 12838, + "calculating": 12839, + "æŀ": 12840, + "gart": 12841, + "hoping": 12842, + "gb": 12843, + "frustr": 12844, + "simulations": 12845, + "intentional": 12846, + "GDP": 12847, + "не": 12848, + "[:,": 12849, + "founding": 12850, + "æį®": 12851, + "addle": 12852, + "sar": 12853, + "sticks": 12854, + "inos": 12855, + "aga": 12856, + "Nazi": 12857, + "Wy": 12858, + "ilton": 12859, + "analytics": 12860, + "responding": 12861, + "Determin": 12862, + "antibodies": 12863, + "Äĩ": 12864, + "afts": 12865, + "Ñī": 12866, + "hits": 12867, + "patent": 12868, + "tumors": 12869, + "classrooms": 12870, + "automated": 12871, + "assure": 12872, + "otechnology": 12873, + "studio": 12874, + "ticket": 12875, + "imeter": 12876, + "salmon": 12877, + "dying": 12878, + "Minnes": 12879, + "staticmethod": 12880, + "amen": 12881, + "Multiple": 12882, + "Ice": 12883, + "Complete": 12884, + "queer": 12885, + "Dark": 12886, + "Besides": 12887, + "FROM": 12888, + "novation": 12889, + "Ont": 12890, + "schedules": 12891, + "chunk": 12892, + "MB": 12893, + "undergo": 12894, + "Safe": 12895, + "sacrifice": 12896, + "angry": 12897, + "pleasant": 12898, + "investigating": 12899, + "increment": 12900, + "lac": 12901, + "за": 12902, + "Sit": 12903, + "venues": 12904, + "Armen": 12905, + "consol": 12906, + "equilibrium": 12907, + "partially": 12908, + "ìĦľ": 12909, + "ла": 12910, + "swit": 12911, + "bn": 12912, + "evers": 12913, + "squared": 12914, + "screens": 12915, + "WA": 12916, + "ucid": 12917, + "attacked": 12918, + "deposits": 12919, + "supernatural": 12920, + "Miller": 12921, + "ë©": 12922, + "Datab": 12923, + "UI": 12924, + "traced": 12925, + "izz": 12926, + "Circle": 12927, + "\"])": 12928, + "emails": 12929, + "shifted": 12930, + "Dur": 12931, + "Hero": 12932, + "riad": 12933, + "wy": 12934, + "stimulate": 12935, + "Fat": 12936, + "newspapers": 12937, + "departments": 12938, + "opponents": 12939, + "factories": 12940, + "discount": 12941, + "consensus": 12942, + "worksheet": 12943, + "Ins": 12944, + "tz": 12945, + "efficients": 12946, + "Compreh": 12947, + "Zero": 12948, + "Preser": 12949, + "Ġ-*-Ġ": 12950, + "tia": 12951, + "prophe": 12952, + "-%": 12953, + "leak": 12954, + "Encycl": 12955, + "entrepreneurs": 12956, + "onset": 12957, + "Ġ~": 12958, + "therapist": 12959, + "explorers": 12960, + "Jordan": 12961, + "jaw": 12962, + "geographic": 12963, + "doctrine": 12964, + "adherence": 12965, + "rewarding": 12966, + "releasing": 12967, + "ção": 12968, + "torn": 12969, + "Joe": 12970, + "Foster": 12971, + "Numer": 12972, + "Stress": 12973, + "purple": 12974, + "converting": 12975, + "heights": 12976, + "GPS": 12977, + "pricing": 12978, + "inp": 12979, + "Pil": 12980, + "VA": 12981, + "vise": 12982, + "Fill": 12983, + "versary": 12984, + "Evid": 12985, + "Chi": 12986, + "ascii": 12987, + "standardized": 12988, + "]])": 12989, + "interference": 12990, + "pap": 12991, + "solidarity": 12992, + "unior": 12993, + "processor": 12994, + "absolutely": 12995, + "discard": 12996, + "spon": 12997, + "Gas": 12998, + "profess": 12999, + "imported": 13000, + "Antar": 13001, + "mounted": 13002, + "predictable": 13003, + "dinosaur": 13004, + "devastating": 13005, + "thand": 13006, + "colleges": 13007, + "Positive": 13008, + "accomplished": 13009, + "LP": 13010, + "geometric": 13011, + "strains": 13012, + "GC": 13013, + "deleg": 13014, + "belt": 13015, + "dirt": 13016, + "indis": 13017, + "scholarship": 13018, + "Minnesota": 13019, + "coli": 13020, + "Carbon": 13021, + "gad": 13022, + "diarr": 13023, + "drum": 13024, + "assment": 13025, + "queen": 13026, + "Around": 13027, + "sie": 13028, + "appearing": 13029, + "automatic": 13030, + "('Ġ": 13031, + "och": 13032, + "omega": 13033, + "fails": 13034, + "vacuum": 13035, + "imagin": 13036, + "silent": 13037, + "Exploration": 13038, + "edited": 13039, + "malaria": 13040, + "audit": 13041, + "shortest": 13042, + "mentor": 13043, + "filtered": 13044, + "Species": 13045, + "alist": 13046, + "Chann": 13047, + "Turtle": 13048, + "delving": 13049, + ".âĢĻ": 13050, + "reservo": 13051, + "æ³": 13052, + "borrowing": 13053, + "Ġ\")": 13054, + "encoded": 13055, + ":Ġ#Ġ": 13056, + "Israeli": 13057, + "Duke": 13058, + "secution": 13059, + "talented": 13060, + "realizing": 13061, + "gens": 13062, + "alumni": 13063, + "osex": 13064, + "anchor": 13065, + "Satur": 13066, + "NAME": 13067, + "ĊĠĠĠĠĠĠĠĠĊĠĠĠĠ": 13068, + "fungi": 13069, + "Sharing": 13070, + "accused": 13071, + "Plants": 13072, + "Holoc": 13073, + "Fu": 13074, + "isions": 13075, + "Concept": 13076, + "]['": 13077, + "xrange": 13078, + "Peru": 13079, + "Victoria": 13080, + "Emperor": 13081, + "commem": 13082, + "ìĬ¤": 13083, + "pause": 13084, + "Educational": 13085, + "remembered": 13086, + "Romans": 13087, + "fired": 13088, + "Īëĭ¤": 13089, + "swelling": 13090, + "jazz": 13091, + "darkness": 13092, + "tubes": 13093, + "Band": 13094, + "án": 13095, + "Hyper": 13096, + "NC": 13097, + "seiz": 13098, + "compact": 13099, + "Suddenly": 13100, + "\"),Ġ": 13101, + "interacting": 13102, + "loves": 13103, + "agu": 13104, + "Whit": 13105, + "Wel": 13106, + "Architecture": 13107, + "Ġ$$": 13108, + "inian": 13109, + "eligible": 13110, + "MAX": 13111, + "counseling": 13112, + "sums": 13113, + "AF": 13114, + "Generally": 13115, + "museums": 13116, + "blockchain": 13117, + "simpler": 13118, + "apparently": 13119, + "Depression": 13120, + "railway": 13121, + "upr": 13122, + ".-": 13123, + "ees": 13124, + "versy": 13125, + "spi": 13126, + "Skip": 13127, + "consequence": 13128, + "Allah": 13129, + "bark": 13130, + "lemonade": 13131, + "xs": 13132, + "odor": 13133, + "educate": 13134, + "Prize": 13135, + "Sav": 13136, + "motive": 13137, + "tanks": 13138, + "ravel": 13139, + "Equip": 13140, + "predominant": 13141, + "Ingredi": 13142, + "hydration": 13143, + "eks": 13144, + "poon": 13145, + "lighter": 13146, + "smiled": 13147, + "promo": 13148, + "inals": 13149, + "Feder": 13150, + "respecting": 13151, + "Sri": 13152, + "UD": 13153, + "prioritize": 13154, + ":Ġ'))": 13155, + "bicy": 13156, + "likes": 13157, + "leveraging": 13158, + "Upper": 13159, + "ceremony": 13160, + "Adjust": 13161, + "toxins": 13162, + "intent": 13163, + "interplay": 13164, + "mant": 13165, + "attracted": 13166, + "flooding": 13167, + "Popular": 13168, + "ruling": 13169, + "IX": 13170, + "RF": 13171, + "æĸĩ": 13172, + "cp": 13173, + "?âĢĿ": 13174, + "fis": 13175, + "dignity": 13176, + "athan": 13177, + "Ġ``": 13178, + "ucky": 13179, + "myriad": 13180, + "Awards": 13181, + "Ontario": 13182, + "bishop": 13183, + "snippet": 13184, + "Missouri": 13185, + "adays": 13186, + "Available": 13187, + "encryption": 13188, + "Kong": 13189, + "regulated": 13190, + "activated": 13191, + "cripts": 13192, + "interrup": 13193, + "åĩº": 13194, + "Championship": 13195, + "overlap": 13196, + "YouTube": 13197, + "obligations": 13198, + "ceeds": 13199, + "protest": 13200, + "tendency": 13201, + "amel": 13202, + "continuity": 13203, + "explanations": 13204, + "entitled": 13205, + "burned": 13206, + "aloud": 13207, + "clever": 13208, + "Population": 13209, + "assim": 13210, + "Rose": 13211, + "bod": 13212, + "introduces": 13213, + "iva": 13214, + "scoring": 13215, + "%.Ġ": 13216, + "consin": 13217, + "ogenic": 13218, + "Antarctic": 13219, + "keywords": 13220, + "arium": 13221, + "Letter": 13222, + "bullet": 13223, + "Names": 13224, + "Money": 13225, + "invite": 13226, + "Tun": 13227, + "]Ġ<Ġ": 13228, + "Sho": 13229, + "ensively": 13230, + "Absol": 13231, + "rendering": 13232, + "rigid": 13233, + "athetic": 13234, + "triple": 13235, + "Pope": 13236, + "Principles": 13237, + "dash": 13238, + "Harmon": 13239, + "Regularly": 13240, + "Lev": 13241, + "submitted": 13242, + "specially": 13243, + "membership": 13244, + "consecutive": 13245, + "Determine": 13246, + "omed": 13247, + "disposal": 13248, + "dissemin": 13249, + "mobil": 13250, + "rescue": 13251, + "ëı": 13252, + "Operations": 13253, + "impacted": 13254, + "nurse": 13255, + "precau": 13256, + "Algorith": 13257, + "insula": 13258, + "Continue": 13259, + "Cogn": 13260, + "grave": 13261, + "okes": 13262, + "prose": 13263, + "Config": 13264, + "possession": 13265, + "decreases": 13266, + "ä¸Ģ个": 13267, + "Ax": 13268, + "Ori": 13269, + "truck": 13270, + "reserve": 13271, + "elic": 13272, + "designer": 13273, + "glance": 13274, + "legislative": 13275, + "wherein": 13276, + "guards": 13277, + "registration": 13278, + "ìĸ´": 13279, + "encompasses": 13280, + "relu": 13281, + "Standards": 13282, + "Site": 13283, + "pound": 13284, + "damaging": 13285, + "intermediate": 13286, + "EA": 13287, + "epochs": 13288, + "displacement": 13289, + "emission": 13290, + "Scenarios": 13291, + "arising": 13292, + "afraid": 13293, + "Heat": 13294, + "lag": 13295, + "ìĥ": 13296, + "cycling": 13297, + "elaborate": 13298, + "Prote": 13299, + "Swedish": 13300, + "expedition": 13301, + "pesticides": 13302, + "Pear": 13303, + "retirement": 13304, + "Kal": 13305, + "Pier": 13306, + "lenses": 13307, + "politician": 13308, + "tite": 13309, + "pipes": 13310, + "oh": 13311, + "uce": 13312, + "census": 13313, + "PhD": 13314, + "nationally": 13315, + "Maryland": 13316, + "Wisconsin": 13317, + "Kh": 13318, + "Albert": 13319, + "tangible": 13320, + "appreciating": 13321, + "piano": 13322, + "wellness": 13323, + "gencies": 13324, + "tomatoes": 13325, + "charging": 13326, + "pushed": 13327, + "fluor": 13328, + "precipitation": 13329, + "receptors": 13330, + "declar": 13331, + "viable": 13332, + "Eco": 13333, + "Arist": 13334, + "grey": 13335, + "hills": 13336, + "čĊĠĠ": 13337, + "stal": 13338, + "connectivity": 13339, + "åľ¨": 13340, + "Room": 13341, + "LR": 13342, + "ennial": 13343, + "enger": 13344, + "perceive": 13345, + "reck": 13346, + "socially": 13347, + "prisoners": 13348, + "OUT": 13349, + "endors": 13350, + "Imper": 13351, + "talks": 13352, + "emphasized": 13353, + "shelf": 13354, + "persuas": 13355, + "publicly": 13356, + "Kir": 13357, + "valley": 13358, + "dots": 13359, + "\"Ġ%Ġ": 13360, + "chew": 13361, + "Install": 13362, + "compassionate": 13363, + "variant": 13364, + "carbohydrates": 13365, + "infant": 13366, + "breakfast": 13367, + "delightful": 13368, + "Defense": 13369, + "pile": 13370, + "Eating": 13371, + ")(": 13372, + "Various": 13373, + "Credit": 13374, + "zech": 13375, + "disparate": 13376, + "talked": 13377, + "Rever": 13378, + "表": 13379, + "Beautiful": 13380, + "totally": 13381, + "snacks": 13382, + "Aust": 13383, + "partly": 13384, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 13385, + "otype": 13386, + "Stor": 13387, + "sticky": 13388, + "ìĺ": 13389, + "assault": 13390, + "extending": 13391, + "sparked": 13392, + "subplot": 13393, + "azy": 13394, + "Disorder": 13395, + "lightenment": 13396, + "protests": 13397, + "Own": 13398, + "vaccination": 13399, + "Ta": 13400, + "asting": 13401, + "Exact": 13402, + "sends": 13403, + "activism": 13404, + "lav": 13405, + "Got": 13406, + "silence": 13407, + "citizenship": 13408, + "claiming": 13409, + "repeatedly": 13410, + "nodded": 13411, + "ë²": 13412, + "Ġ=Ġ{'": 13413, + "polymer": 13414, + "Regional": 13415, + "intage": 13416, + "verbs": 13417, + "Olympic": 13418, + "portfolio": 13419, + "utilization": 13420, + "intentions": 13421, + "Franklin": 13422, + "vio": 13423, + "Server": 13424, + "coupled": 13425, + "restrial": 13426, + "apol": 13427, + "iments": 13428, + "°Ġ": 13429, + "Philippines": 13430, + "ecology": 13431, + "Pick": 13432, + "PAT": 13433, + "mount": 13434, + "singer": 13435, + "Teacher": 13436, + "Ker": 13437, + "patches": 13438, + "ä¸į": 13439, + "Stage": 13440, + "eaten": 13441, + "Neg": 13442, + "]=": 13443, + "Bangl": 13444, + "maj": 13445, + "inviting": 13446, + "Pad": 13447, + "forecast": 13448, + "steep": 13449, + "^{": 13450, + "stewardship": 13451, + "Strong": 13452, + "peculiar": 13453, + "wax": 13454, + "Construction": 13455, + "rip": 13456, + "necessity": 13457, + "uz": 13458, + "globalization": 13459, + "hatch": 13460, + "Employee": 13461, + "TC": 13462, + "Gil": 13463, + "delim": 13464, + "awards": 13465, + "breakthrough": 13466, + "idal": 13467, + "Ford": 13468, + "requested": 13469, + "Ki": 13470, + "Kansas": 13471, + "tist": 13472, + "Pun": 13473, + "Commons": 13474, + "exceptions": 13475, + "bted": 13476, + "fid": 13477, + "pear": 13478, + "Request": 13479, + "!')": 13480, + "Changes": 13481, + "Usu": 13482, + "omon": 13483, + "eti": 13484, + "sovereignty": 13485, + "elector": 13486, + "feminist": 13487, + "wealthy": 13488, + "formations": 13489, + "Window": 13490, + "eta": 13491, + "gie": 13492, + "coefficients": 13493, + "Live": 13494, + "cling": 13495, + "suffix": 13496, + "reminded": 13497, + "acity": 13498, + "hobby": 13499, + "scholarly": 13500, + "defects": 13501, + "insist": 13502, + "Cele": 13503, + "potent": 13504, + "MRI": 13505, + "Double": 13506, + "Hydro": 13507, + "Contr": 13508, + "festivals": 13509, + "neat": 13510, + "individually": 13511, + "wires": 13512, + "proficiency": 13513, + "mund": 13514, + "Assist": 13515, + "optimizer": 13516, + "glow": 13517, + "upset": 13518, + "aluminum": 13519, + "Images": 13520, + "Menu": 13521, + "contest": 13522, + "Ġ$\\": 13523, + "struggled": 13524, + "ordinal": 13525, + "sentiment": 13526, + ")Ġ<Ġ": 13527, + "fallen": 13528, + "ÑĨи": 13529, + "Estim": 13530, + "generational": 13531, + "Mia": 13532, + "iley": 13533, + ".\\": 13534, + "prescription": 13535, + "burst": 13536, + "Analyze": 13537, + "stdout": 13538, + "scattered": 13539, + "callback": 13540, + "dele": 13541, + "handed": 13542, + "nerves": 13543, + "ASD": 13544, + "derivative": 13545, + "Physics": 13546, + "bellion": 13547, + "conut": 13548, + "governor": 13549, + "hiding": 13550, + "KEY": 13551, + "Simply": 13552, + "adventur": 13553, + "transcend": 13554, + "SH": 13555, + "arises": 13556, + ">=Ġ": 13557, + "+Ġ(": 13558, + "hazardous": 13559, + "histogram": 13560, + "Gaussian": 13561, + "matriz": 13562, + "ighters": 13563, + "proxim": 13564, + "ĊĠĠĠĠĊ": 13565, + "normalize": 13566, + "pest": 13567, + "bulk": 13568, + "Evidence": 13569, + "workshop": 13570, + "allergic": 13571, + "plicit": 13572, + "hunger": 13573, + "Aborig": 13574, + "admitted": 13575, + "nour": 13576, + "marking": 13577, + "rots": 13578, + "financing": 13579, + "tivation": 13580, + "confidently": 13581, + "paired": 13582, + "keters": 13583, + "Until": 13584, + "passions": 13585, + "situated": 13586, + "ante": 13587, + "Ġ\"\"\"": 13588, + "Argument": 13589, + "deque": 13590, + "Ukraine": 13591, + "bums": 13592, + "Collect": 13593, + "ONE": 13594, + "Bos": 13595, + "NUM": 13596, + "PTS": 13597, + "rounds": 13598, + "cauti": 13599, + "surprised": 13600, + "aci": 13601, + "Elect": 13602, + "unemployment": 13603, + "logs": 13604, + "snap": 13605, + "ursday": 13606, + "Issues": 13607, + "PH": 13608, + "obs": 13609, + "Cab": 13610, + "GET": 13611, + "beds": 13612, + "ìŀħ": 13613, + ".),Ġ": 13614, + "zers": 13615, + "interpol": 13616, + "Muhammad": 13617, + "Engage": 13618, + "retired": 13619, + "coronavirus": 13620, + "judges": 13621, + "Archae": 13622, + "treaty": 13623, + "MMMM": 13624, + "GL": 13625, + "alternate": 13626, + "lyrics": 13627, + "coefficient": 13628, + "plum": 13629, + "locked": 13630, + "åıĸ": 13631, + "communal": 13632, + "theastern": 13633, + "architects": 13634, + "avier": 13635, + "rejected": 13636, + "Reference": 13637, + "Mission": 13638, + "_Ġ=Ġ": 13639, + "tasty": 13640, + "zens": 13641, + "orious": 13642, + "Balance": 13643, + "scape": 13644, + "automation": 13645, + "climbing": 13646, + "Bird": 13647, + "Wow": 13648, + "strand": 13649, + "crown": 13650, + "Secondly": 13651, + "stopping": 13652, + "farmer": 13653, + "stance": 13654, + "ritual": 13655, + "earning": 13656, + "posture": 13657, + "pulse": 13658, + "enterprise": 13659, + "critici": 13660, + "rehabilitation": 13661, + "æİ": 13662, + "empowers": 13663, + "invisible": 13664, + "administered": 13665, + "Colum": 13666, + "Youth": 13667, + "accepting": 13668, + "bladder": 13669, + "durable": 13670, + "Conversely": 13671, + "toile": 13672, + "dor": 13673, + "osa": 13674, + "Juda": 13675, + "extracted": 13676, + "vom": 13677, + "Choice": 13678, + "textbook": 13679, + "ìłķ": 13680, + "Pand": 13681, + "valve": 13682, + "okay": 13683, + "fc": 13684, + "specialists": 13685, + "Join": 13686, + "Visit": 13687, + "interpersonal": 13688, + "ICE": 13689, + "Patients": 13690, + "osome": 13691, + "uler": 13692, + "reforms": 13693, + "grind": 13694, + "relatable": 13695, + "dentist": 13696, + "usable": 13697, + "Neigh": 13698, + "letting": 13699, + "Sky": 13700, + "ims": 13701, + "CK": 13702, + "citation": 13703, + "Legis": 13704, + "Related": 13705, + "hp": 13706, + "á¹": 13707, + "exclusively": 13708, + "smartphones": 13709, + "tablets": 13710, + "onics": 13711, + "lith": 13712, + "lesser": 13713, + "tribal": 13714, + "hs": 13715, + "Repeat": 13716, + "devoted": 13717, + "generative": 13718, + "inherited": 13719, + "eller": 13720, + "Hash": 13721, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 13722, + "witnessed": 13723, + "interpreted": 13724, + "expend": 13725, + "tourists": 13726, + "Ethiop": 13727, + "sage": 13728, + "footprint": 13729, + "cleaned": 13730, + "Recon": 13731, + "journals": 13732, + "Arm": 13733, + "Grant": 13734, + "hay": 13735, + "overwhelmed": 13736, + "eme": 13737, + "вÑĭ": 13738, + "Birth": 13739, + "SN": 13740, + "reserves": 13741, + "Saturday": 13742, + "leap": 13743, + "********************************": 13744, + "Monitor": 13745, + "reinforcing": 13746, + "Tues": 13747, + "como": 13748, + "lob": 13749, + "blan": 13750, + "retro": 13751, + "Rule": 13752, + "ipolar": 13753, + "couples": 13754, + "mastery": 13755, + "pharmace": 13756, + "soma": 13757, + "comedy": 13758, + "Advoc": 13759, + "supplied": 13760, + "drainage": 13761, + "Ottoman": 13762, + "]),Ġ": 13763, + "merch": 13764, + "reply": 13765, + "Listen": 13766, + "Journey": 13767, + "recycled": 13768, + "nea": 13769, + "pulled": 13770, + "adjusted": 13771, + "Darwin": 13772, + "Pit": 13773, + "Nigeria": 13774, + "arter": 13775, + "Vin": 13776, + "Seven": 13777, + "Czech": 13778, + "engu": 13779, + "unciation": 13780, + "nesium": 13781, + "oses": 13782, + "affirm": 13783, + "Implementing": 13784, + "Soup": 13785, + "woven": 13786, + "noting": 13787, + "succeeded": 13788, + "Regardless": 13789, + "ardian": 13790, + "PUT": 13791, + "pathogens": 13792, + "vapor": 13793, + "testim": 13794, + "SELECT": 13795, + "Dele": 13796, + "dra": 13797, + "rels": 13798, + "Steven": 13799, + "conservative": 13800, + "Freder": 13801, + "argues": 13802, + "nesday": 13803, + "Accur": 13804, + "offerings": 13805, + "referring": 13806, + "MC": 13807, + "theatre": 13808, + "seamlessly": 13809, + "scopic": 13810, + "passages": 13811, + "palm": 13812, + "bitter": 13813, + "algae": 13814, + "Manu": 13815, + "=='": 13816, + "Viol": 13817, + "combust": 13818, + "participant": 13819, + "conceptual": 13820, + "breathtaking": 13821, + "Holocaust": 13822, + "문": 13823, + "alleged": 13824, + "electromagnetic": 13825, + "Ġ||": 13826, + "Property": 13827, + "acou": 13828, + "neighborhoods": 13829, + "PV": 13830, + "awesome": 13831, + "obtaining": 13832, + "Academic": 13833, + "corpus": 13834, + "timeout": 13835, + "Fox": 13836, + "cking": 13837, + "sculpture": 13838, + "motifs": 13839, + "Influ": 13840, + "Programs": 13841, + "documentary": 13842, + "listened": 13843, + "Cham": 13844, + "culturally": 13845, + "Currently": 13846, + "Hitler": 13847, + "fundament": 13848, + "extinction": 13849, + "aspirations": 13850, + "epsil": 13851, + "voters": 13852, + "symptom": 13853, + "ratios": 13854, + "nish": 13855, + "terrible": 13856, + "Origins": 13857, + "TB": 13858, + "æķ°æį®": 13859, + "yar": 13860, + "Jefferson": 13861, + "empowering": 13862, + "atics": 13863, + "dispute": 13864, + "alleviate": 13865, + "izers": 13866, + "presses": 13867, + "lef": 13868, + "../": 13869, + "Nuc": 13870, + "Ġ+Ġ\"": 13871, + "Ensure": 13872, + "lang": 13873, + "rises": 13874, + "experimentation": 13875, + "STR": 13876, + "archi": 13877, + "reflective": 13878, + "Better": 13879, + "plu": 13880, + "ва": 13881, + "validity": 13882, + "calor": 13883, + "isations": 13884, + "tkinter": 13885, + "brut": 13886, + "':'": 13887, + "Narr": 13888, + "ì¶": 13889, + "altogether": 13890, + "istically": 13891, + "stamp": 13892, + "Experience": 13893, + "deple": 13894, + "protects": 13895, + "numeric": 13896, + "%%": 13897, + "wart": 13898, + "Rele": 13899, + "banking": 13900, + "buff": 13901, + "cleaner": 13902, + "coral": 13903, + "Chile": 13904, + "outdoors": 13905, + "presentations": 13906, + "Lie": 13907, + "gestures": 13908, + "tones": 13909, + "Southeast": 13910, + "___": 13911, + "Certain": 13912, + "damp": 13913, + "advertise": 13914, + "stiff": 13915, + "substitute": 13916, + "Syria": 13917, + "sink": 13918, + "hobbies": 13919, + "Height": 13920, + "masses": 13921, + "Pul": 13922, + "descriptive": 13923, + "peripher": 13924, + "tastes": 13925, + "damages": 13926, + "Single": 13927, + "concentrated": 13928, + "priest": 13929, + "pathway": 13930, + "latitude": 13931, + "synchron": 13932, + "synthes": 13933, + "adhes": 13934, + "opoli": 13935, + "Streng": 13936, + "Agree": 13937, + "Emotional": 13938, + "ignored": 13939, + "cill": 13940, + "zan": 13941, + "bli": 13942, + "phere": 13943, + "underscore": 13944, + "certified": 13945, + "demographic": 13946, + "BB": 13947, + "Scr": 13948, + "slot": 13949, + "Imperial": 13950, + "holidays": 13951, + "DF": 13952, + "boarding": 13953, + "canon": 13954, + "tir": 13955, + "naval": 13956, + "Relev": 13957, + "consolid": 13958, + "Keeping": 13959, + "bakery": 13960, + "american": 13961, + "pert": 13962, + "specimens": 13963, + "unions": 13964, + "disc": 13965, + "confusing": 13966, + "Brow": 13967, + "wool": 13968, + "nonfiction": 13969, + "lawyer": 13970, + "shrub": 13971, + "elevation": 13972, + "pediatric": 13973, + "legitimate": 13974, + "indent": 13975, + "endeavors": 13976, + "Centers": 13977, + "rust": 13978, + "scary": 13979, + "distributions": 13980, + "Mountains": 13981, + "grief": 13982, + "Cooking": 13983, + "contacts": 13984, + "controversy": 13985, + "firs": 13986, + "pollutants": 13987, + "gastro": 13988, + "concaten": 13989, + "thrown": 13990, + "speaks": 13991, + "Domin": 13992, + "boot": 13993, + "Tradition": 13994, + "lawyers": 13995, + "metaphor": 13996, + "necessitates": 13997, + "Eric": 13998, + "weld": 13999, + "melting": 14000, + "Gam": 14001, + "Chap": 14002, + "Germans": 14003, + "chester": 14004, + "strictly": 14005, + "Inside": 14006, + "collectively": 14007, + "quantitative": 14008, + "transpose": 14009, + "Ingredients": 14010, + "forgotten": 14011, + "ãĢģ": 14012, + "Sah": 14013, + "Front": 14014, + "lifelong": 14015, + "scrut": 14016, + "insic": 14017, + "neo": 14018, + "lia": 14019, + "]Ġ[": 14020, + "Overall": 14021, + "epsilon": 14022, + "sile": 14023, + "cust": 14024, + "Improve": 14025, + "tournament": 14026, + "Astr": 14027, + "dan": 14028, + "regex": 14029, + "JSON": 14030, + "Client": 14031, + "edy": 14032, + "secular": 14033, + "modification": 14034, + "dialogues": 14035, + "Too": 14036, + "compos": 14037, + "afting": 14038, + "jury": 14039, + "refining": 14040, + "Nonetheless": 14041, + "ÑĩиÑģ": 14042, + "BBC": 14043, + "fibon": 14044, + "buck": 14045, + "brighter": 14046, + "thedr": 14047, + "potassium": 14048, + "credited": 14049, + "elastic": 14050, + "Loop": 14051, + "Partners": 14052, + "recruit": 14053, + "idae": 14054, + "ancestral": 14055, + "conform": 14056, + "compatibility": 14057, + "Sel": 14058, + "jack": 14059, + "Database": 14060, + "competitions": 14061, + "aus": 14062, + "lier": 14063, + "hosting": 14064, + "Celebr": 14065, + "ÅĤ": 14066, + "plastics": 14067, + "prestig": 14068, + "enchant": 14069, + "crises": 14070, + "(\\": 14071, + "čĊĉĉĉ": 14072, + "culmin": 14073, + "Ghana": 14074, + "spanning": 14075, + "Snow": 14076, + "AV": 14077, + "securing": 14078, + "лÑı": 14079, + "presidential": 14080, + "comparable": 14081, + "altitude": 14082, + "Screen": 14083, + "instrumental": 14084, + "Fried": 14085, + "Historic": 14086, + "sius": 14087, + "tricks": 14088, + "erto": 14089, + "Strate": 14090, + "Round": 14091, + "compromising": 14092, + "Filter": 14093, + "concise": 14094, + "oa": 14095, + "parallels": 14096, + "mult": 14097, + "accumulation": 14098, + "satellites": 14099, + "Days": 14100, + "porter": 14101, + "rabbit": 14102, + "Private": 14103, + "meteor": 14104, + "conceptions": 14105, + ",Ġ$": 14106, + "Seeing": 14107, + "Convert": 14108, + "traverse": 14109, + "gross": 14110, + "informal": 14111, + "configure": 14112, + "Politics": 14113, + "'{": 14114, + "injection": 14115, + "Monitoring": 14116, + "indicator": 14117, + "Hub": 14118, + "interdisciplinary": 14119, + "ÙĦ": 14120, + "Queens": 14121, + "strikes": 14122, + "differential": 14123, + "tam": 14124, + "pseud": 14125, + "><": 14126, + "Planet": 14127, + "upun": 14128, + "touching": 14129, + "Sally": 14130, + "md": 14131, + "currencies": 14132, + "Att": 14133, + "colonialism": 14134, + "carb": 14135, + "wedding": 14136, + "lov": 14137, + "Sent": 14138, + "Thursday": 14139, + "superhero": 14140, + "Lam": 14141, + "Insur": 14142, + "Root": 14143, + "Dead": 14144, + "confidential": 14145, + "BCE": 14146, + "initiated": 14147, + "friction": 14148, + "Magic": 14149, + "underscores": 14150, + "subj": 14151, + "finity": 14152, + "spirituality": 14153, + "Purpose": 14154, + "vor": 14155, + "exchanges": 14156, + "discer": 14157, + "Pha": 14158, + "Weather": 14159, + "nm": 14160, + "inea": 14161, + "disabled": 14162, + "Bed": 14163, + "environmentally": 14164, + "Gy": 14165, + "glue": 14166, + "spont": 14167, + "therapists": 14168, + "ateur": 14169, + "perme": 14170, + "appearances": 14171, + "-----------": 14172, + "motivations": 14173, + "thinkers": 14174, + "Operation": 14175, + "refined": 14176, + "destruc": 14177, + "Fortun": 14178, + "Corporation": 14179, + "Tensor": 14180, + "maintains": 14181, + "synony": 14182, + "vag": 14183, + "scissors": 14184, + "offspring": 14185, + "mayor": 14186, + "grapple": 14187, + "leather": 14188, + "ìĭľ": 14189, + "Dry": 14190, + "fatal": 14191, + "breakdown": 14192, + "Load": 14193, + "??": 14194, + "moid": 14195, + "decides": 14196, + "ë¶": 14197, + "empowerment": 14198, + "Amendment": 14199, + "distinguished": 14200, + "Layer": 14201, + "Beng": 14202, + "ulator": 14203, + "workforce": 14204, + "contrary": 14205, + "Tuesday": 14206, + "Solutions": 14207, + "hunt": 14208, + "neurological": 14209, + "ÃŃa": 14210, + "Strategy": 14211, + "decreasing": 14212, + "poorly": 14213, + "Challenge": 14214, + "occasions": 14215, + "Exactly": 14216, + "vars": 14217, + "persistence": 14218, + "%(": 14219, + "tomb": 14220, + "Sources": 14221, + "linking": 14222, + "strokes": 14223, + "exotic": 14224, + "Edition": 14225, + "pent": 14226, + "iso": 14227, + "forestation": 14228, + "Published": 14229, + "<=": 14230, + "Cyber": 14231, + "Adams": 14232, + "Feature": 14233, + "fluctuations": 14234, + "separately": 14235, + "Pub": 14236, + "Norway": 14237, + "Selection": 14238, + "ictive": 14239, + "Alpha": 14240, + ";\"": 14241, + "indi": 14242, + "onymous": 14243, + "ìĿĢ": 14244, + "signaling": 14245, + "overnight": 14246, + "tunnel": 14247, + "indexes": 14248, + "relied": 14249, + "Easter": 14250, + "weighted": 14251, + "rons": 14252, + "Limit": 14253, + "yy": 14254, + "notably": 14255, + "hanging": 14256, + "opposing": 14257, + "Delta": 14258, + "Directions": 14259, + "lege": 14260, + "Tennes": 14261, + "Healthcare": 14262, + "zzle": 14263, + "stretching": 14264, + "woods": 14265, + "rhetor": 14266, + "Artists": 14267, + "Newton": 14268, + "feine": 14269, + "incentives": 14270, + "centralized": 14271, + "GH": 14272, + "cive": 14273, + "accidentally": 14274, + "overlooked": 14275, + "Typically": 14276, + "nedy": 14277, + "Functions": 14278, + "Mathematics": 14279, + "detective": 14280, + "archaeological": 14281, + "ethnicity": 14282, + "convention": 14283, + "Tow": 14284, + "ardo": 14285, + "indirect": 14286, + "Conver": 14287, + "metall": 14288, + "ained": 14289, + "strat": 14290, + "lery": 14291, + "recovered": 14292, + "Had": 14293, + "Zo": 14294, + ":Ġ#": 14295, + "obsc": 14296, + "backup": 14297, + "dictate": 14298, + "methodologies": 14299, + "urgent": 14300, + "RN": 14301, + "restored": 14302, + "admir": 14303, + "Managing": 14304, + "odies": 14305, + "experimenting": 14306, + "seamless": 14307, + "Archi": 14308, + "Independence": 14309, + "conclude": 14310, + "liberty": 14311, + "EST": 14312, + "Sig": 14313, + "utical": 14314, + "beet": 14315, + "fulfilling": 14316, + "ensis": 14317, + "deemed": 14318, + "fetch": 14319, + ".Ġ&Ġ": 14320, + "bial": 14321, + "Bush": 14322, + "aments": 14323, + "Motor": 14324, + "Hans": 14325, + "Looking": 14326, + "PI": 14327, + "console": 14328, + "seline": 14329, + "counties": 14330, + "estial": 14331, + "rocket": 14332, + "exhibits": 14333, + "clinic": 14334, + "Ach": 14335, + "governmental": 14336, + "==\"": 14337, + "thinks": 14338, + "arrested": 14339, + "Dial": 14340, + "estones": 14341, + "protagonist": 14342, + "}\".": 14343, + "fragments": 14344, + "gauge": 14345, + "cale": 14346, + "frontier": 14347, + "penal": 14348, + "noble": 14349, + "lb": 14350, + "liste": 14351, + "çİ": 14352, + "queries": 14353, + "IoT": 14354, + "interfaces": 14355, + "Beach": 14356, + "Iowa": 14357, + "Religion": 14358, + "expose": 14359, + "swing": 14360, + "RIGHT": 14361, + "Louisiana": 14362, + "lyn": 14363, + ":ĠĠĠĠĠĠĠĠĠ": 14364, + "decorative": 14365, + "Wednesday": 14366, + "Judaism": 14367, + "hire": 14368, + "Anderson": 14369, + "Very": 14370, + "pries": 14371, + "grocery": 14372, + "lion": 14373, + "TestCase": 14374, + "iencies": 14375, + "Programming": 14376, + "volcanic": 14377, + "stur": 14378, + "complementary": 14379, + "ëª": 14380, + "umi": 14381, + "MIN": 14382, + "Nich": 14383, + "Wol": 14384, + "solo": 14385, + "Parser": 14386, + "Austria": 14387, + "iors": 14388, + "crystals": 14389, + "ä¼": 14390, + "horror": 14391, + "consisted": 14392, + "tutor": 14393, + "Brun": 14394, + "SER": 14395, + "yours": 14396, + "Castle": 14397, + "uristic": 14398, + "sha": 14399, + "configur": 14400, + "ficiency": 14401, + "responsibly": 14402, + "monetary": 14403, + "Enjoy": 14404, + "Executive": 14405, + "Qual": 14406, + "flav": 14407, + "slop": 14408, + "Atl": 14409, + "pancre": 14410, + "transit": 14411, + "shells": 14412, + "ulas": 14413, + "dip": 14414, + "以": 14415, + "Aut": 14416, + "melan": 14417, + "clf": 14418, + "digestion": 14419, + "calibr": 14420, + "Tennessee": 14421, + "achelor": 14422, + "Animals": 14423, + "Allen": 14424, + "autonomous": 14425, + "hook": 14426, + "tel": 14427, + "Won": 14428, + "firsthand": 14429, + "Insert": 14430, + "Emma": 14431, + "polynomial": 14432, + "intimate": 14433, + "Artific": 14434, + "instantly": 14435, + "headaches": 14436, + "opathy": 14437, + "crossed": 14438, + "Classifier": 14439, + "insertion": 14440, + "cows": 14441, + "Bangladesh": 14442, + "performs": 14443, + "tense": 14444, + "akers": 14445, + "Version": 14446, + "rats": 14447, + "acular": 14448, + "comparative": 14449, + "Friends": 14450, + "Chris": 14451, + "charity": 14452, + "gluten": 14453, + "Kat": 14454, + "Alab": 14455, + "Behavior": 14456, + "Original": 14457, + "telephone": 14458, + "Tell": 14459, + "herb": 14460, + "Shel": 14461, + "regulating": 14462, + "Clark": 14463, + "forgiven": 14464, + "soldier": 14465, + "avenues": 14466, + "rams": 14467, + "sati": 14468, + "approaching": 14469, + "Philosophy": 14470, + "sculptures": 14471, + "prevented": 14472, + "suspected": 14473, + "å̼": 14474, + "gastr": 14475, + "Register": 14476, + "sandwich": 14477, + "Lucy": 14478, + "commemor": 14479, + "Treaty": 14480, + "-Ġ(": 14481, + "Police": 14482, + "investigated": 14483, + "converts": 14484, + "pocket": 14485, + "methodology": 14486, + "rendered": 14487, + "sored": 14488, + "elson": 14489, + "zinc": 14490, + "outlines": 14491, + "licensed": 14492, + "scaling": 14493, + "shortly": 14494, + "compet": 14495, + "Mobile": 14496, + "ultra": 14497, + "Higher": 14498, + "guessed": 14499, + "punctuation": 14500, + "eing": 14501, + "foli": 14502, + "residence": 14503, + "Channel": 14504, + "agle": 14505, + "sixth": 14506, + "Publishing": 14507, + "correction": 14508, + "Ä«": 14509, + "galaxies": 14510, + "Marg": 14511, + "Ground": 14512, + "inquiry": 14513, + "simplicity": 14514, + "appreciated": 14515, + "emplo": 14516, + "epi": 14517, + "Hamilton": 14518, + "anny": 14519, + "capability": 14520, + "midst": 14521, + "umped": 14522, + "Gro": 14523, + "Tool": 14524, + "probabilities": 14525, + "SU": 14526, + "coaches": 14527, + "singular": 14528, + "suspect": 14529, + "neum": 14530, + "IB": 14531, + "rensic": 14532, + "touched": 14533, + "Initialize": 14534, + "knife": 14535, + "homeless": 14536, + "arange": 14537, + "comparisons": 14538, + "appliances": 14539, + "Yu": 14540, + "gland": 14541, + "inhal": 14542, + "opa": 14543, + "exams": 14544, + "Swiss": 14545, + "identifies": 14546, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĊĠĠĠĠĠĠĠĠĠĠĠĠ": 14547, + "Previous": 14548, + "MAT": 14549, + "philosophers": 14550, + "receptor": 14551, + ")Ġ!=Ġ": 14552, + "recre": 14553, + "wilder": 14554, + "spons": 14555, + "contempl": 14556, + "beauti": 14557, + "intentionally": 14558, + "Genesis": 14559, + "concentrate": 14560, + "Gallery": 14561, + "absent": 14562, + "Kennedy": 14563, + "inscri": 14564, + "ramid": 14565, + "uster": 14566, + "Mole": 14567, + "Declar": 14568, + "Email": 14569, + "myths": 14570, + "judicial": 14571, + "Notice": 14572, + "dominal": 14573, + "Collaboration": 14574, + "prevailing": 14575, + "enic": 14576, + "anas": 14577, + "diesel": 14578, + "truths": 14579, + "Scale": 14580, + "·": 14581, + "periodic": 14582, + "PTSD": 14583, + "philosopher": 14584, + "soda": 14585, + "Affairs": 14586, + "prejudice": 14587, + "Marketing": 14588, + "С": 14589, + "traces": 14590, + "Recom": 14591, + "Aboriginal": 14592, + "hierarchy": 14593, + "Players": 14594, + "blocking": 14595, + "letal": 14596, + "carrier": 14597, + "cigarettes": 14598, + "Guess": 14599, + "amation": 14600, + "ateral": 14601, + "curves": 14602, + "catching": 14603, + "ĊĠĠĠĠĠĠĠĠĠĠĠ": 14604, + "Ship": 14605, + "juana": 14606, + "blast": 14607, + "()[": 14608, + "Concer": 14609, + "deadly": 14610, + "organisation": 14611, + "recreational": 14612, + "insulation": 14613, + "ventures": 14614, + "Tag": 14615, + "Ġ'Ġ": 14616, + "disrupt": 14617, + "DOWN": 14618, + "Memorial": 14619, + "knock": 14620, + "Recognizing": 14621, + "withdrawal": 14622, + "Brig": 14623, + "Dir": 14624, + ")Ġ||Ġ": 14625, + "对": 14626, + "disadvantages": 14627, + "Artificial": 14628, + "bass": 14629, + "spam": 14630, + "cargo": 14631, + "ruler": 14632, + "packet": 14633, + "evoke": 14634, + "slower": 14635, + "penalty": 14636, + "Ark": 14637, + "wounds": 14638, + "prolif": 14639, + "assisted": 14640, + "intimid": 14641, + "duplicate": 14642, + "Workshe": 14643, + "conditioning": 14644, + "prod": 14645, + "ARS": 14646, + "arom": 14647, + "clarify": 14648, + "golf": 14649, + "åĪĨ": 14650, + "funny": 14651, + "nutritious": 14652, + "sword": 14653, + "Carl": 14654, + "Feb": 14655, + "trapped": 14656, + "coloring": 14657, + "\"Ġ%Ġ(": 14658, + "Connect": 14659, + "kel": 14660, + "impaired": 14661, + "Individuals": 14662, + "Utah": 14663, + "Communities": 14664, + "izable": 14665, + "evac": 14666, + "ndarray": 14667, + "picking": 14668, + "excer": 14669, + "depicting": 14670, + "POST": 14671, + "TY": 14672, + "NU": 14673, + "oding": 14674, + "ponder": 14675, + "advancement": 14676, + "Events": 14677, + "'),Ġ": 14678, + "Armed": 14679, + "behalf": 14680, + "owed": 14681, + "calculator": 14682, + "Potential": 14683, + "bush": 14684, + "Eye": 14685, + "Kind": 14686, + "chen": 14687, + "supervision": 14688, + "imaginary": 14689, + "Dak": 14690, + "rebel": 14691, + "tremend": 14692, + "ÑģÑı": 14693, + "corresponds": 14694, + "~~~~~~~~": 14695, + "valry": 14696, + "destructive": 14697, + "Pharm": 14698, + "penetr": 14699, + "payload": 14700, + "stayed": 14701, + "cheaper": 14702, + "currents": 14703, + "PER": 14704, + "eliminating": 14705, + "meats": 14706, + "Syd": 14707, + "Guideline": 14708, + "#ĠĠĠĠĠĠĠĠĠĠĠĠĠ": 14709, + "wiki": 14710, + "deterior": 14711, + "lecture": 14712, + "climb": 14713, + "calculates": 14714, + "Problems": 14715, + "BST": 14716, + "Alabama": 14717, + "Moscow": 14718, + "Taiwan": 14719, + "Significance": 14720, + "theore": 14721, + "certification": 14722, + "surely": 14723, + "иÑĤе": 14724, + "################################################################": 14725, + "Adapt": 14726, + "decrypt": 14727, + "Balancing": 14728, + "surname": 14729, + "wisely": 14730, + "jurisdiction": 14731, + ":||": 14732, + "influenza": 14733, + "atories": 14734, + "instein": 14735, + "CF": 14736, + "Soil": 14737, + "astron": 14738, + "folklore": 14739, + "pursuits": 14740, + "projection": 14741, + "Faith": 14742, + "das": 14743, + "radar": 14744, + "dup": 14745, + "assessed": 14746, + "esar": 14747, + "wrapper": 14748, + "jumping": 14749, + "defensive": 14750, + "Integer": 14751, + "DV": 14752, + "happier": 14753, + "./": 14754, + "trash": 14755, + "Split": 14756, + "Gree": 14757, + "rie": 14758, + "oline": 14759, + "Kur": 14760, + "sugars": 14761, + "pren": 14762, + "Chair": 14763, + "expr": 14764, + "}Ġ{": 14765, + "Ġ>>>Ġ": 14766, + "RGB": 14767, + "mito": 14768, + "temples": 14769, + "Integration": 14770, + "durability": 14771, + "Victorian": 14772, + "Bap": 14773, + "Patrick": 14774, + "folds": 14775, + "Sad": 14776, + "stating": 14777, + "Characters": 14778, + "temporarily": 14779, + "upuncture": 14780, + "Encyclopedia": 14781, + "lt": 14782, + "Hou": 14783, + "Jake": 14784, + "heit": 14785, + "metres": 14786, + "Progress": 14787, + "manufacture": 14788, + "ideologies": 14789, + "anges": 14790, + "Novel": 14791, + "ilty": 14792, + "imply": 14793, + "nie": 14794, + "Gram": 14795, + "symbolism": 14796, + "mathematic": 14797, + "fibonacci": 14798, + "infinite": 14799, + "rm": 14800, + "íķ´": 14801, + "anic": 14802, + "peek": 14803, + "vascular": 14804, + "outstanding": 14805, + "Thread": 14806, + "Fab": 14807, + "Insp": 14808, + "esta": 14809, + "unhealthy": 14810, + "astical": 14811, + "fifty": 14812, + "umber": 14813, + "acon": 14814, + "Brad": 14815, + "semic": 14816, + "avoided": 14817, + "considerably": 14818, + "responsive": 14819, + "ube": 14820, + "Flu": 14821, + "passwords": 14822, + "slides": 14823, + "wrapped": 14824, + "lifes": 14825, + "fighters": 14826, + "compul": 14827, + "accessories": 14828, + "Reserve": 14829, + "formerly": 14830, + "ĊĠĊĠ": 14831, + "quad": 14832, + "establishments": 14833, + "frustration": 14834, + "Humans": 14835, + "Toronto": 14836, + "Myster": 14837, + "ingen": 14838, + "comfortably": 14839, + "suppliers": 14840, + "chond": 14841, + "Considerations": 14842, + "kh": 14843, + "ambitious": 14844, + "Goals": 14845, + "Bib": 14846, + "Kit": 14847, + "instability": 14848, + "ensem": 14849, + "Increased": 14850, + "bodied": 14851, + "costly": 14852, + "xtures": 14853, + "grappling": 14854, + "leverage": 14855, + "lins": 14856, + "Member": 14857, + "sevent": 14858, + "amos": 14859, + "interven": 14860, + "iga": 14861, + "Sax": 14862, + "google": 14863, + "textures": 14864, + "administrators": 14865, + "franch": 14866, + "colours": 14867, + "grate": 14868, + "embar": 14869, + "cosmic": 14870, + "Citi": 14871, + "inspection": 14872, + "Pin": 14873, + "assuming": 14874, + "offs": 14875, + "lings": 14876, + "travelers": 14877, + "vacation": 14878, + "chromosome": 14879, + "wol": 14880, + "saves": 14881, + "Pic": 14882, + "Cognitive": 14883, + "'][": 14884, + "Luke": 14885, + "recurring": 14886, + "Hawaii": 14887, + "BY": 14888, + "competence": 14889, + "mia": 14890, + "Lank": 14891, + "galaxy": 14892, + "praise": 14893, + "']Ġ": 14894, + "Bear": 14895, + "athlete": 14896, + "Publish": 14897, + "warnings": 14898, + "Bound": 14899, + "permitted": 14900, + "repeating": 14901, + "vial": 14902, + "rb": 14903, + "Da": 14904, + "Letters": 14905, + "epidemic": 14906, + "stigma": 14907, + "DATA": 14908, + "agar": 14909, + "chess": 14910, + "simulate": 14911, + "biof": 14912, + "rho": 14913, + "employer": 14914, + "CSV": 14915, + "tragedy": 14916, + "velt": 14917, + "GI": 14918, + "evable": 14919, + "cherished": 14920, + "è¾ĵ": 14921, + "Religious": 14922, + "Hous": 14923, + "imprison": 14924, + "gevity": 14925, + "Orthodox": 14926, + "CRE": 14927, + "Leadership": 14928, + "monster": 14929, + "garten": 14930, + "composite": 14931, + "pean": 14932, + "strengthens": 14933, + "Switzer": 14934, + "believing": 14935, + "fitted": 14936, + "addi": 14937, + "conception": 14938, + "apo": 14939, + "async": 14940, + "Race": 14941, + "BU": 14942, + "LIN": 14943, + "æĪIJ": 14944, + "resume": 14945, + "adium": 14946, + "successes": 14947, + "Bron": 14948, + "Alternatively": 14949, + "Rac": 14950, + "drying": 14951, + "(['": 14952, + "Oliver": 14953, + "denied": 14954, + "Insurance": 14955, + "és": 14956, + "mistry": 14957, + "Abstract": 14958, + "accomplishments": 14959, + "sperm": 14960, + "wanting": 14961, + "atitis": 14962, + "maturity": 14963, + "Puerto": 14964, + "Sydney": 14965, + "competen": 14966, + "wolf": 14967, + "hint": 14968, + "pton": 14969, + "allergy": 14970, + "Afghanistan": 14971, + "teenagers": 14972, + "probe": 14973, + "Benj": 14974, + "ä»¶": 14975, + "cardiac": 14976, + "ой": 14977, + "variants": 14978, + "Sco": 14979, + "Ġ($": 14980, + "Individual": 14981, + "proximity": 14982, + "relaxed": 14983, + "Observ": 14984, + "([[": 14985, + "=['": 14986, + "ensi": 14987, + "resident": 14988, + "Morris": 14989, + "rib": 14990, + "Easy": 14991, + "Nan": 14992, + "civic": 14993, + "inhab": 14994, + "finishing": 14995, + "makeup": 14996, + "acceleration": 14997, + "Moz": 14998, + "ée": 14999, + "Wo": 15000, + "HTTP": 15001, + "tended": 15002, + "Goth": 15003, + "hoped": 15004, + "Yeah": 15005, + "peaks": 15006, + "clause": 15007, + "åΰ": 15008, + "commissioned": 15009, + "embraced": 15010, + "celebrations": 15011, + "Silver": 15012, + "terrorism": 15013, + "íĬ": 15014, + "aza": 15015, + "Dal": 15016, + "euro": 15017, + "craw": 15018, + "Soc": 15019, + "passenger": 15020, + "Walter": 15021, + "Fortunately": 15022, + "ideals": 15023, + "emade": 15024, + "corre": 15025, + "ACE": 15026, + "Implications": 15027, + "Material": 15028, + "mercury": 15029, + "guilt": 15030, + "offensive": 15031, + "Tibet": 15032, + "admit": 15033, + "extensively": 15034, + "Options": 15035, + "Denmark": 15036, + ")Ġ:": 15037, + "Switzerland": 15038, + "eno": 15039, + "tails": 15040, + "caregivers": 15041, + "Khan": 15042, + "ailand": 15043, + "Usually": 15044, + "Excel": 15045, + "goddess": 15046, + "capitalism": 15047, + "stimulation": 15048, + "ür": 15049, + "áº": 15050, + "ITY": 15051, + "Peters": 15052, + "Steps": 15053, + "solu": 15054, + "Slow": 15055, + "rif": 15056, + "åĪĹ": 15057, + "permits": 15058, + "////////": 15059, + "nels": 15060, + "Equipment": 15061, + "fractions": 15062, + "swift": 15063, + "Salt": 15064, + "ui": 15065, + "diarrhea": 15066, + "Gab": 15067, + "Economics": 15068, + "Schedule": 15069, + "albums": 15070, + "igraph": 15071, + "candy": 15072, + "olas": 15073, + "eigen": 15074, + "sta": 15075, + "éĻ": 15076, + "embody": 15077, + "Shape": 15078, + "banana": 15079, + "quot": 15080, + "aceae": 15081, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠ": 15082, + "Universal": 15083, + "Preparation": 15084, + "thedral": 15085, + "stepping": 15086, + "genetically": 15087, + "olia": 15088, + "graphical": 15089, + "ustr": 15090, + "veli": 15091, + "Fif": 15092, + "íĺ": 15093, + "tillery": 15094, + "sensing": 15095, + "Entre": 15096, + "recon": 15097, + "editions": 15098, + "éĹ": 15099, + "methane": 15100, + "learner": 15101, + "Historically": 15102, + "coconut": 15103, + "Province": 15104, + "transgender": 15105, + "oni": 15106, + "`,Ġ`": 15107, + "purchases": 15108, + "ìľ¼": 15109, + "azine": 15110, + "Mike": 15111, + "compiled": 15112, + "Brazilian": 15113, + "appetite": 15114, + "Ñģл": 15115, + "adas": 15116, + "Interaction": 15117, + "VO": 15118, + "sorting": 15119, + "Vehic": 15120, + "deg": 15121, + "Category": 15122, + "elucid": 15123, + "seafood": 15124, + "Innovation": 15125, + "antibiotic": 15126, + "streaming": 15127, + "dining": 15128, + "Seat": 15129, + "Ñĸ": 15130, + "lowercase": 15131, + "Portugal": 15132, + "={": 15133, + "px": 15134, + "ISO": 15135, + "Nepal": 15136, + "osevelt": 15137, + "safeguarding": 15138, + "Conflict": 15139, + "nights": 15140, + "blocked": 15141, + "seman": 15142, + "prize": 15143, + "promin": 15144, + "switching": 15145, + "'),": 15146, + "phan": 15147, + "Ell": 15148, + "Quanti": 15149, + "fills": 15150, + "NI": 15151, + "Thailand": 15152, + "dop": 15153, + "bia": 15154, + "lamp": 15155, + "horizons": 15156, + "explosion": 15157, + "inorder": 15158, + "Made": 15159, + "earthquakes": 15160, + "tue": 15161, + "elite": 15162, + "Rober": 15163, + "acquiring": 15164, + "stimuli": 15165, + "painter": 15166, + "Wait": 15167, + "continually": 15168, + "delayed": 15169, + "incar": 15170, + "Evaluation": 15171, + "warmer": 15172, + "encouragement": 15173, + "rated": 15174, + "ç§": 15175, + "linder": 15176, + "Migr": 15177, + "glas": 15178, + "fertilizer": 15179, + "atherine": 15180, + "potato": 15181, + "troubles": 15182, + "Distribution": 15183, + "Ġ+Ġ'": 15184, + "Bishop": 15185, + "ively": 15186, + "æ¯": 15187, + "fortunate": 15188, + "adhere": 15189, + "readline": 15190, + "harnessing": 15191, + "displaying": 15192, + "secured": 15193, + "sensation": 15194, + "exagger": 15195, + "toxicity": 15196, + "liquids": 15197, + "commentary": 15198, + "rical": 15199, + "usher": 15200, + "ìĤ¬": 15201, + "Feed": 15202, + "installing": 15203, + "Feeling": 15204, + "straightforward": 15205, + "adulthood": 15206, + "encrypted": 15207, + "Diabetes": 15208, + "conferences": 15209, + "Lever": 15210, + "Ñį": 15211, + "олÑĮ": 15212, + "Dick": 15213, + "aults": 15214, + "ä¿": 15215, + "è¦": 15216, + "bie": 15217, + "sequential": 15218, + "flights": 15219, + "exer": 15220, + "invested": 15221, + "SL": 15222, + "pays": 15223, + "celestial": 15224, + "supporters": 15225, + "lord": 15226, + "Simon": 15227, + "Territ": 15228, + "precautions": 15229, + "tragic": 15230, + "mascul": 15231, + "hibitions": 15232, + "melt": 15233, + "TI": 15234, + "notation": 15235, + "Temperature": 15236, + "FILE": 15237, + "customized": 15238, + "obia": 15239, + "Almost": 15240, + "ranking": 15241, + "assumption": 15242, + "timber": 15243, + "honesty": 15244, + "magne": 15245, + "guilty": 15246, + "'}": 15247, + "Kenya": 15248, + "rhythms": 15249, + "kinder": 15250, + "modest": 15251, + "Manufac": 15252, + "Perf": 15253, + "Juvenile": 15254, + "facets": 15255, + "forgettable": 15256, + "cavity": 15257, + "Tests": 15258, + "silk": 15259, + "ceil": 15260, + "Aristot": 15261, + "gatherings": 15262, + "betic": 15263, + "shake": 15264, + "weekend": 15265, + "projected": 15266, + "lookup": 15267, + "Chan": 15268, + "critique": 15269, + "Editor": 15270, + "magazines": 15271, + "exercising": 15272, + "fragile": 15273, + "strips": 15274, + "prospects": 15275, + "Rules": 15276, + "fd": 15277, + "chin": 15278, + "enjoyment": 15279, + "promptly": 15280, + "credits": 15281, + "irregular": 15282, + "ни": 15283, + ".:Ġ": 15284, + "trails": 15285, + "addr": 15286, + "Danish": 15287, + "itertools": 15288, + "surviving": 15289, + "elegant": 15290, + "Hart": 15291, + "voluntary": 15292, + "collision": 15293, + "richness": 15294, + "intact": 15295, + "\"+": 15296, + "proactive": 15297, + "Hispanic": 15298, + "Luc": 15299, + "ridge": 15300, + "hopeful": 15301, + "Benjamin": 15302, + "Mut": 15303, + "prompting": 15304, + "predominantly": 15305, + "ghost": 15306, + "ç®": 15307, + "iffs": 15308, + "bent": 15309, + "triggered": 15310, + "idad": 15311, + "condem": 15312, + "portable": 15313, + "illustration": 15314, + "Dream": 15315, + "timeline": 15316, + "Bag": 15317, + ")Ġ%Ġ": 15318, + "futures": 15319, + "provo": 15320, + "hyp": 15321, + "privilege": 15322, + "âĢ¢": 15323, + "protections": 15324, + "securely": 15325, + "Buddha": 15326, + "stics": 15327, + "boss": 15328, + "Ky": 15329, + "XML": 15330, + "chromos": 15331, + "ventilation": 15332, + "fontsize": 15333, + "substit": 15334, + "frost": 15335, + "ORT": 15336, + "destro": 15337, + "mediation": 15338, + "aboard": 15339, + "(),": 15340, + "ceremonies": 15341, + "preschool": 15342, + "Gun": 15343, + "BMI": 15344, + "да": 15345, + "retrieve": 15346, + "pollen": 15347, + "maternal": 15348, + "æĹ¶": 15349, + "toll": 15350, + "tuples": 15351, + "Veter": 15352, + "tireless": 15353, + "vowels": 15354, + "envelop": 15355, + "monary": 15356, + "donor": 15357, + "propri": 15358, + "depri": 15359, + "vintage": 15360, + "Conserv": 15361, + "Pod": 15362, + "recipient": 15363, + "acknowledged": 15364, + "pond": 15365, + "Chemistry": 15366, + "Causes": 15367, + "Bun": 15368, + "CPU": 15369, + "hockey": 15370, + "shoulders": 15371, + "Census": 15372, + "igs": 15373, + "Roosevelt": 15374, + "Greeks": 15375, + "instructor": 15376, + "Recover": 15377, + "atin": 15378, + "lastname": 15379, + "duplicates": 15380, + "Cuba": 15381, + "agenda": 15382, + "Ġ(âĢľ": 15383, + "aspor": 15384, + "transported": 15385, + "pulling": 15386, + "rulers": 15387, + "Depth": 15388, + "mentally": 15389, + "Prevent": 15390, + "Myth": 15391, + "remedies": 15392, + "sels": 15393, + "prayers": 15394, + "lush": 15395, + "enforce": 15396, + "leetcode": 15397, + "sparse": 15398, + "cognition": 15399, + "yer": 15400, + "certificate": 15401, + "specifications": 15402, + "å·": 15403, + "Emergency": 15404, + "Kentucky": 15405, + "toe": 15406, + "ëį": 15407, + "lene": 15408, + "Crim": 15409, + "Seek": 15410, + "Haiti": 15411, + "req": 15412, + "nr": 15413, + "finances": 15414, + "concert": 15415, + "GIS": 15416, + "needing": 15417, + "whilst": 15418, + "greens": 15419, + "commander": 15420, + "Vacc": 15421, + "distract": 15422, + "goto": 15423, + "trajectory": 15424, + "believers": 15425, + "Tokyo": 15426, + "scaled": 15427, + "legends": 15428, + "Lith": 15429, + ",Ġ&Ġ": 15430, + "Prophet": 15431, + "Term": 15432, + "ëĭĪëĭ¤": 15433, + "tightly": 15434, + "omorph": 15435, + "Syndrome": 15436, + "eral": 15437, + "Construct": 15438, + "directors": 15439, + "ilians": 15440, + "Byz": 15441, + "Mong": 15442, + "puty": 15443, + "Diversity": 15444, + "innocent": 15445, + "Exchange": 15446, + "radioactive": 15447, + "illustrates": 15448, + "posals": 15449, + "handled": 15450, + "Diego": 15451, + "conceived": 15452, + "buyers": 15453, + "timedia": 15454, + "ugg": 15455, + "eping": 15456, + "tears": 15457, + "ĉĉĉ": 15458, + "Facts": 15459, + "spheres": 15460, + "æŃ": 15461, + "blit": 15462, + "lasted": 15463, + "Comprehensive": 15464, + "hosted": 15465, + "!=": 15466, + "intertw": 15467, + "attan": 15468, + "harvesting": 15469, + "Opportunities": 15470, + "vomiting": 15471, + "instructional": 15472, + "azed": 15473, + "optimizing": 15474, + "dragon": 15475, + "manufactured": 15476, + "variability": 15477, + "Trail": 15478, + "åĴ": 15479, + "Brid": 15480, + "getic": 15481, + "suppose": 15482, + "listeners": 15483, + "Products": 15484, + "configurations": 15485, + "beautifully": 15486, + "bye": 15487, + "tennis": 15488, + "severely": 15489, + "Lawrence": 15490, + "opolitical": 15491, + "iris": 15492, + "lunar": 15493, + "Coal": 15494, + "ëIJ": 15495, + "Ds": 15496, + "autumn": 15497, + "Compute": 15498, + "lucky": 15499, + "airport": 15500, + "Poetry": 15501, + "Ùİ": 15502, + "chord": 15503, + "scared": 15504, + "litter": 15505, + "Jup": 15506, + "TER": 15507, + "usu": 15508, + "nonprofit": 15509, + "':Ġ['": 15510, + "hardly": 15511, + "forty": 15512, + "hungry": 15513, + "Hell": 15514, + "Kid": 15515, + "topo": 15516, + "еÑģÑĤ": 15517, + "lifting": 15518, + "Glass": 15519, + "creator": 15520, + "rences": 15521, + "overhead": 15522, + "Moore": 15523, + "fere": 15524, + "rof": 15525, + "lady": 15526, + "tweets": 15527, + "microw": 15528, + "liability": 15529, + "Comb": 15530, + "baseline": 15531, + "knit": 15532, + "ahren": 15533, + "stdin": 15534, + "Eat": 15535, + "Successful": 15536, + "civ": 15537, + "trafficking": 15538, + "resign": 15539, + "loyal": 15540, + "sigmoid": 15541, + "journalist": 15542, + "Oak": 15543, + "notebook": 15544, + "Era": 15545, + "å®ļ": 15546, + "MI": 15547, + "citing": 15548, + "intens": 15549, + "Limited": 15550, + "Genetic": 15551, + "anniversary": 15552, + "biome": 15553, + "figsize": 15554, + "ranked": 15555, + "examines": 15556, + "premature": 15557, + "flesh": 15558, + "marsh": 15559, + "germs": 15560, + "digest": 15561, + "Indiana": 15562, + "tomy": 15563, + "resting": 15564, + "comprises": 15565, + "============": 15566, + "Adult": 15567, + "Transportation": 15568, + "Fresh": 15569, + "liness": 15570, + "computed": 15571, + "Wear": 15572, + "basin": 15573, + "uto": 15574, + "vowel": 15575, + "rag": 15576, + "magnesium": 15577, + "poe": 15578, + "âķ": 15579, + "Ġ-Ġ(": 15580, + "Sales": 15581, + "firstname": 15582, + "fred": 15583, + "hai": 15584, + "divorce": 15585, + "Otherwise": 15586, + "Diseases": 15587, + "nucleus": 15588, + "conciliation": 15589, + "elemen": 15590, + "filed": 15591, + "Tk": 15592, + "unc": 15593, + "portrait": 15594, + "lime": 15595, + "answering": 15596, + "Wright": 15597, + "vae": 15598, + "feasible": 15599, + "ista": 15600, + "pier": 15601, + "forgiveness": 15602, + "longevity": 15603, + "obed": 15604, + "ashed": 15605, + "bodily": 15606, + "Curious": 15607, + "declined": 15608, + "Sin": 15609, + "bibli": 15610, + "attraction": 15611, + "manually": 15612, + "Quick": 15613, + "Bh": 15614, + "nú": 15615, + "detecting": 15616, + "Doctor": 15617, + "bral": 15618, + "failing": 15619, + "nested": 15620, + "Treas": 15621, + "Sul": 15622, + "arguing": 15623, + "Colomb": 15624, + "olith": 15625, + "unfair": 15626, + "åĴĮ": 15627, + "Ale": 15628, + "devi": 15629, + "throwing": 15630, + "provinces": 15631, + "reconstruction": 15632, + "Width": 15633, + "Transfer": 15634, + "Maintain": 15635, + "scalar": 15636, + "denominator": 15637, + "Recently": 15638, + "](": 15639, + "problematic": 15640, + "affection": 15641, + "schema": 15642, + "Token": 15643, + "Vene": 15644, + "æĢ": 15645, + "trasound": 15646, + "irts": 15647, + "Phase": 15648, + "upl": 15649, + "graduated": 15650, + "fried": 15651, + "Alliance": 15652, + ":Ġ')": 15653, + "residual": 15654, + "wb": 15655, + "cmap": 15656, + "corr": 15657, + "Napole": 15658, + "mindset": 15659, + "understands": 15660, + "Holly": 15661, + "aggression": 15662, + "ê³ł": 15663, + "ott": 15664, + "Against": 15665, + "parking": 15666, + "enta": 15667, + "Skin": 15668, + "teous": 15669, + "Session": 15670, + "whales": 15671, + "lessness": 15672, + "Fellow": 15673, + "pensable": 15674, + "chopped": 15675, + "eda": 15676, + "mitigating": 15677, + "agi": 15678, + "ÑĤо": 15679, + "camar": 15680, + "åı¯": 15681, + "trucks": 15682, + "parental": 15683, + "smartphone": 15684, + "ensl": 15685, + "chunks": 15686, + "differing": 15687, + "ек": 15688, + "Confederate": 15689, + "consultation": 15690, + "aderie": 15691, + "othing": 15692, + "negotiation": 15693, + "violet": 15694, + "spacing": 15695, + "pense": 15696, + "isure": 15697, + "Describe": 15698, + "chim": 15699, + "settlements": 15700, + "gium": 15701, + "reper": 15702, + "forum": 15703, + "exclusion": 15704, + "pave": 15705, + "descendants": 15706, + "Europeans": 15707, + "fabrics": 15708, + "bund": 15709, + "backdrop": 15710, + "starch": 15711, + "Anth": 15712, + "Legisl": 15713, + "lively": 15714, + "ausea": 15715, + "informative": 15716, + "Edit": 15717, + "Brook": 15718, + "persuasive": 15719, + "WR": 15720, + "unforgettable": 15721, + "disagreements": 15722, + "incoming": 15723, + "blame": 15724, + "distractions": 15725, + "dummy": 15726, + "leys": 15727, + "tickets": 15728, + "gravit": 15729, + "Nev": 15730, + "fascinated": 15731, + "submission": 15732, + "pins": 15733, + "conditional": 15734, + "bulbs": 15735, + "mighty": 15736, + "aiming": 15737, + "willingness": 15738, + "judg": 15739, + "bats": 15740, + "actic": 15741, + "ĠĠĠĠĠĠĠĠĠĠĠĠ": 15742, + "poser": 15743, + "sensations": 15744, + "Independent": 15745, + "ancers": 15746, + "spiral": 15747, + "Alber": 15748, + "Federation": 15749, + "clicking": 15750, + "ç±": 15751, + "Ġ°": 15752, + "classify": 15753, + "href": 15754, + "allocate": 15755, + "ULT": 15756, + "ë©´": 15757, + "ì¤": 15758, + "abdominal": 15759, + "biotic": 15760, + "Sens": 15761, + "Veget": 15762, + "Declaration": 15763, + "emen": 15764, + "bureau": 15765, + "Storage": 15766, + "ocking": 15767, + "gloves": 15768, + "throne": 15769, + "reminis": 15770, + "genital": 15771, + "archive": 15772, + "prompts": 15773, + "fossils": 15774, + "nobody": 15775, + "æĸ¹": 15776, + "posterior": 15777, + "velihood": 15778, + "fortune": 15779, + "obviously": 15780, + "Communist": 15781, + "btedly": 15782, + "satisfying": 15783, + "envision": 15784, + "harassment": 15785, + "Tut": 15786, + "WE": 15787, + "territorial": 15788, + "Accept": 15789, + "cott": 15790, + "©Ġ": 15791, + "bap": 15792, + "®Ġ": 15793, + "inevitable": 15794, + "propagation": 15795, + "groundwater": 15796, + "Ful": 15797, + "Wang": 15798, + "breeds": 15799, + "camaraderie": 15800, + "Hip": 15801, + "microorganisms": 15802, + "ascending": 15803, + "reputable": 15804, + "Collaborative": 15805, + "occurrences": 15806, + "Lives": 15807, + "intercept": 15808, + "по": 15809, + "Must": 15810, + ":`": 15811, + "FE": 15812, + "confined": 15813, + "abstr": 15814, + "todo": 15815, + "sells": 15816, + "Relationships": 15817, + "tablet": 15818, + "sities": 15819, + "nail": 15820, + "Harmony": 15821, + "chefs": 15822, + "filepath": 15823, + "Unique": 15824, + "glands": 15825, + "ewater": 15826, + "shadows": 15827, + "Theatre": 15828, + "deployment": 15829, + "Cul": 15830, + "Ġ()Ġ": 15831, + "cratic": 15832, + "handles": 15833, + "yog": 15834, + "gle": 15835, + "snack": 15836, + "caffeine": 15837, + "backed": 15838, + "randrange": 15839, + "mortg": 15840, + "Initially": 15841, + "mono": 15842, + "Tel": 15843, + "revision": 15844, + "interfere": 15845, + "nostic": 15846, + "successor": 15847, + "bubbles": 15848, + "freshwater": 15849, + "omet": 15850, + "scripts": 15851, + "Disorders": 15852, + "tours": 15853, + "asted": 15854, + "çĤ": 15855, + "Haz": 15856, + "nota": 15857, + "OT": 15858, + "muc": 15859, + "arring": 15860, + "Å¡": 15861, + "lod": 15862, + "Joint": 15863, + "Steve": 15864, + "lind": 15865, + "accessing": 15866, + "åī": 15867, + "soluble": 15868, + "GPIO": 15869, + "istle": 15870, + "manageable": 15871, + "backyard": 15872, + "utenant": 15873, + "RS": 15874, + "adic": 15875, + "Sym": 15876, + "hypertension": 15877, + "ropolitan": 15878, + "combustion": 15879, + "achment": 15880, + "tort": 15881, + "wherever": 15882, + "gambling": 15883, + "recommendation": 15884, + "Authority": 15885, + "êµ": 15886, + "prelim": 15887, + "musician": 15888, + "Mode": 15889, + ">Ġ<": 15890, + "....Ġ": 15891, + "prostate": 15892, + "ки": 15893, + "recommends": 15894, + "humble": 15895, + "Discovering": 15896, + "spy": 15897, + "ptr": 15898, + "continents": 15899, + "\"],": 15900, + "ÐĿ": 15901, + "intend": 15902, + "editors": 15903, + "misunderstandings": 15904, + "oz": 15905, + "lid": 15906, + "consulting": 15907, + "ê·": 15908, + "iki": 15909, + "accountable": 15910, + "embry": 15911, + "billions": 15912, + "fiscal": 15913, + "bloss": 15914, + "parasites": 15915, + "delet": 15916, + "striving": 15917, + "receiver": 15918, + "excluded": 15919, + "Pages": 15920, + "indispensable": 15921, + "martial": 15922, + "emergencies": 15923, + "Interestingly": 15924, + "assumes": 15925, + "Known": 15926, + "propose": 15927, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 15928, + "ifting": 15929, + "guesses": 15930, + "Season": 15931, + "comply": 15932, + "Kings": 15933, + "Evaluate": 15934, + "Margaret": 15935, + "gri": 15936, + "convinced": 15937, + "removes": 15938, + "Hugh": 15939, + "homemade": 15940, + "âĶ": 15941, + "atro": 15942, + "Literary": 15943, + "laptop": 15944, + "cooler": 15945, + "ICT": 15946, + "Argentina": 15947, + "hiring": 15948, + "maneu": 15949, + "Staff": 15950, + "selective": 15951, + "theology": 15952, + "Thor": 15953, + "Forces": 15954, + "][\"": 15955, + "quity": 15956, + "apartment": 15957, + "Drop": 15958, + "cite": 15959, + "iterable": 15960, + "Psychological": 15961, + "pires": 15962, + "ONT": 15963, + "]Ġ==Ġ\"": 15964, + "syllab": 15965, + "arithmetic": 15966, + "banned": 15967, + "Flag": 15968, + "hil": 15969, + "mandatory": 15970, + "anticipated": 15971, + "gem": 15972, + "CEO": 15973, + "Ãī": 15974, + "osity": 15975, + "Creation": 15976, + "spider": 15977, + "bulb": 15978, + "liked": 15979, + "nano": 15980, + "agus": 15981, + "satisfy": 15982, + "Engineers": 15983, + "worsen": 15984, + "thermo": 15985, + "Resistance": 15986, + "personalities": 15987, + "divides": 15988, + "subs": 15989, + "lowering": 15990, + "astically": 15991, + "squeeze": 15992, + "setbacks": 15993, + "revelation": 15994, + "OH": 15995, + "Hem": 15996, + "Wolf": 15997, + "cultivation": 15998, + "surgeon": 15999, + ":',Ġ": 16000, + "),Ġ\"": 16001, + "dilemmas": 16002, + "positioning": 16003, + "chemotherapy": 16004, + "Crime": 16005, + "inges": 16006, + "commod": 16007, + "developer": 16008, + "deserves": 16009, + "gradual": 16010, + "recordings": 16011, + "Vision": 16012, + "Budget": 16013, + "dynasty": 16014, + "resor": 16015, + "Juan": 16016, + "revised": 16017, + "Consu": 16018, + "bonding": 16019, + "Consum": 16020, + "luxury": 16021, + "activate": 16022, + "inplace": 16023, + "maritime": 16024, + "organisations": 16025, + "reproduce": 16026, + "crystall": 16027, + "Agricultural": 16028, + "Fight": 16029, + "izar": 16030, + "conducive": 16031, + "Occup": 16032, + "qualitative": 16033, + "compressed": 16034, + "ellar": 16035, + "ĠĠĠ#Ġ": 16036, + "impairment": 16037, + "icode": 16038, + "NT": 16039, + "docs": 16040, + "Ġ·Ġ": 16041, + "climates": 16042, + "Cris": 16043, + "washed": 16044, + "bai": 16045, + "reconciliation": 16046, + "ìĿ¸": 16047, + "Familiarize": 16048, + "fathers": 16049, + "MIT": 16050, + "eternal": 16051, + "subplots": 16052, + "dirty": 16053, + "blacks": 16054, + "roller": 16055, + "assembled": 16056, + "eur": 16057, + "thetical": 16058, + "PLA": 16059, + "neath": 16060, + "disproportion": 16061, + "suspended": 16062, + "boring": 16063, + "Providing": 16064, + "Fail": 16065, + "terminology": 16066, + ";Ġ(": 16067, + "coco": 16068, + "CBD": 16069, + "rope": 16070, + "lightweight": 16071, + "Examining": 16072, + "itic": 16073, + "antioxidants": 16074, + "Nam": 16075, + "oak": 16076, + "railroad": 16077, + "protagonists": 16078, + "abbre": 16079, + "statue": 16080, + "occupational": 16081, + "Android": 16082, + "wilderness": 16083, + "\">": 16084, + "XT": 16085, + "republic": 16086, + "illo": 16087, + "Rub": 16088, + "facilitates": 16089, + "oct": 16090, + "animated": 16091, + "legacies": 16092, + "LEFT": 16093, + "('-": 16094, + "lacking": 16095, + "resize": 16096, + "аÑĤÑĮ": 16097, + "roleum": 16098, + "paced": 16099, + "æĬ": 16100, + "theft": 16101, + "predicting": 16102, + "Debating": 16103, + "memorial": 16104, + "balloon": 16105, + "proceedings": 16106, + "kidneys": 16107, + "ĠĠ=Ġ": 16108, + "graceful": 16109, + "ignor": 16110, + "bots": 16111, + "negotiate": 16112, + "pneum": 16113, + "Running": 16114, + "considers": 16115, + "ggies": 16116, + "Advant": 16117, + "biomass": 16118, + "COLOR": 16119, + "Creat": 16120, + "righ": 16121, + "manuscript": 16122, + "glory": 16123, + "Customer": 16124, + "Files": 16125, + "recreation": 16126, + "wishes": 16127, + "creatively": 16128, + "Christopher": 16129, + "plaque": 16130, + "intuitive": 16131, + "############": 16132, + "sam": 16133, + "cn": 16134, + "weeds": 16135, + "limbs": 16136, + "Generate": 16137, + "wounded": 16138, + "milestones": 16139, + "unclear": 16140, + "signing": 16141, + "activist": 16142, + "phosphor": 16143, + "æĶ": 16144, + "freezing": 16145, + "generic": 16146, + "ahoma": 16147, + "inspect": 16148, + "Parent": 16149, + "sadness": 16150, + "accordance": 16151, + "opter": 16152, + "Lessons": 16153, + "Items": 16154, + "famil": 16155, + "wand": 16156, + "resultado": 16157, + "mushrooms": 16158, + "packing": 16159, + "exploit": 16160, + "inventions": 16161, + "iller": 16162, + "simplify": 16163, + "humility": 16164, + "tiveness": 16165, + "haw": 16166, + "seventh": 16167, + "ptic": 16168, + "catastro": 16169, + "ĠĠĠ|": 16170, + "destinations": 16171, + "cumulative": 16172, + "plug": 16173, + "cookie": 16174, + "WID": 16175, + "dictionaries": 16176, + "lectures": 16177, + "Correct": 16178, + "terday": 16179, + "eches": 16180, + "================================================================": 16181, + "beats": 16182, + "eleven": 16183, + "earnings": 16184, + "CTION": 16185, + "epidemi": 16186, + "kine": 16187, + "Baker": 16188, + "pid": 16189, + "theli": 16190, + "focal": 16191, + "oscill": 16192, + "overlapping": 16193, + "ITE": 16194, + "dumps": 16195, + "Aware": 16196, + "è§": 16197, + "veins": 16198, + "Conduct": 16199, + "igo": 16200, + "contrasting": 16201, + "Gur": 16202, + "ç½": 16203, + "embedding": 16204, + "Annual": 16205, + "extinct": 16206, + ">=": 16207, + "itud": 16208, + "updating": 16209, + "BeautifulSoup": 16210, + "elo": 16211, + "presum": 16212, + "bowel": 16213, + "boiling": 16214, + "Near": 16215, + "attorney": 16216, + ")])": 16217, + "huh": 16218, + "ticing": 16219, + "Douglas": 16220, + "patron": 16221, + "Formation": 16222, + "corti": 16223, + "decorated": 16224, + "лÑĮ": 16225, + "GD": 16226, + "unsure": 16227, + "laying": 16228, + "ç±»": 16229, + "sibility": 16230, + "upward": 16231, + "ifiers": 16232, + "resonance": 16233, + "infect": 16234, + "Bitcoin": 16235, + ")Ġ+Ġ\"Ġ": 16236, + "Ethics": 16237, + "Utilizing": 16238, + "acher": 16239, + "floods": 16240, + "advised": 16241, + "oped": 16242, + "Establish": 16243, + "Inspired": 16244, + "?!": 16245, + "uno": 16246, + "ahrenheit": 16247, + "Gate": 16248, + "Intersection": 16249, + "inger": 16250, + "Cart": 16251, + "implicit": 16252, + "delays": 16253, + "ARE": 16254, + "Integrating": 16255, + "nar": 16256, + "exhibited": 16257, + "tremendous": 16258, + "continental": 16259, + "Settings": 16260, + "Option": 16261, + "keley": 16262, + "normalized": 16263, + "ãģ®": 16264, + "$$Ġ": 16265, + "']['": 16266, + "exterior": 16267, + "Okl": 16268, + "Einstein": 16269, + "gates": 16270, + "repetition": 16271, + "tricky": 16272, + "productions": 16273, + "municipal": 16274, + "aughters": 16275, + "íĻ": 16276, + "cultivated": 16277, + "portional": 16278, + "instin": 16279, + "violations": 16280, + "hasn": 16281, + "Transform": 16282, + "Fib": 16283, + "rio": 16284, + "guy": 16285, + "Magazine": 16286, + "æ³ķ": 16287, + "Stanford": 16288, + "Laur": 16289, + "baked": 16290, + "Workers": 16291, + "bronze": 16292, + "livelihood": 16293, + "Norm": 16294, + "anatomy": 16295, + "journalists": 16296, + "reinforced": 16297, + "instructors": 16298, + "flora": 16299, + "undou": 16300, + "spinning": 16301, + "Nuclear": 16302, + "ο": 16303, + "thony": 16304, + "Lock": 16305, + "oultry": 16306, + "Studying": 16307, + "hitting": 16308, + "thirds": 16309, + "dominance": 16310, + "WHERE": 16311, + "cautious": 16312, + "Frederick": 16313, + "occasional": 16314, + "Railway": 16315, + "Colonial": 16316, + "dock": 16317, + "diamond": 16318, + "isen": 16319, + "astronomy": 16320, + "Properties": 16321, + "lovely": 16322, + "desper": 16323, + "towers": 16324, + "paragraphs": 16325, + "pertaining": 16326, + "cooperative": 16327, + "chairs": 16328, + "lasts": 16329, + "computation": 16330, + "Investment": 16331, + "athletic": 16332, + "tat": 16333, + "substring": 16334, + "migrants": 16335, + "substantially": 16336, + "('/": 16337, + "inver": 16338, + "keen": 16339, + "Juli": 16340, + "demanded": 16341, + "mirrors": 16342, + "posters": 16343, + "bend": 16344, + "performers": 16345, + "dings": 16346, + "`:Ġ": 16347, + "çī": 16348, + "Dance": 16349, + "Host": 16350, + "shiny": 16351, + "sketch": 16352, + "tose": 16353, + "Rece": 16354, + "cables": 16355, + "Electronic": 16356, + "owl": 16357, + "rim": 16358, + "OD": 16359, + ")Ġ+Ġ(": 16360, + "turtles": 16361, + "Raw": 16362, + "Graphic": 16363, + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 16364, + "vulnerabilities": 16365, + "Recur": 16366, + "otine": 16367, + "urable": 16368, + "snakes": 16369, + "squir": 16370, + "è½": 16371, + "Behind": 16372, + "sequencing": 16373, + "carcin": 16374, + "adolescent": 16375, + "pigs": 16376, + "carved": 16377, + "Dakota": 16378, + "Trees": 16379, + "preliminary": 16380, + "gums": 16381, + "âĤ¬": 16382, + "learns": 16383 + }, + "merges": [ + [ + "i", + "n" + ], + [ + "t", + "h" + ], + [ + "Ġ", + "Ġ" + ], + [ + "e", + "r" + ], + [ + "a", + "n" + ], + [ + "o", + "n" + ], + [ + "r", + "e" + ], + [ + "e", + "n" + ], + [ + "a", + "t" + ], + [ + ",", + "Ġ" + ], + [ + "e", + "s" + ], + [ + "o", + "r" + ], + [ + "th", + "e" + ], + [ + "a", + "l" + ], + [ + "in", + "g" + ], + [ + "s", + "t" + ], + [ + "ĠĠ", + "ĠĠ" + ], + [ + "t", + "i" + ], + [ + "o", + "u" + ], + [ + "a", + "r" + ], + [ + "an", + "d" + ], + [ + "e", + "d" + ], + [ + ".", + "Ġ" + ], + [ + "t", + "o" + ], + [ + "i", + "s" + ], + [ + "o", + "f" + ], + [ + "l", + "e" + ], + [ + "s", + "e" + ], + [ + "i", + "t" + ], + [ + "i", + "c" + ], + [ + "o", + "m" + ], + [ + "a", + "s" + ], + [ + "en", + "t" + ], + [ + "a", + "c" + ], + [ + "i", + "on" + ], + [ + "r", + "o" + ], + [ + "e", + "l" + ], + [ + "i", + "l" + ], + [ + "c", + "h" + ], + [ + "d", + "e" + ], + [ + "ti", + "on" + ], + [ + "b", + "e" + ], + [ + "f", + "or" + ], + [ + "o", + "l" + ], + [ + "ĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "at", + "ion" + ], + [ + "a", + "m" + ], + [ + "u", + "n" + ], + [ + "u", + "r" + ], + [ + "v", + "e" + ], + [ + "=", + "Ġ" + ], + [ + "o", + "w" + ], + [ + "h", + "e" + ], + [ + "a", + "d" + ], + [ + "i", + "g" + ], + [ + "al", + "l" + ], + [ + "Ċ", + "Ċ" + ], + [ + "e", + "c" + ], + [ + "i", + "m" + ], + [ + "c", + "om" + ], + [ + "i", + "f" + ], + [ + "g", + "e" + ], + [ + "c", + "e" + ], + [ + "t", + "er" + ], + [ + "v", + "er" + ], + [ + "Ġ", + "=Ġ" + ], + [ + "u", + "l" + ], + [ + "a", + "b" + ], + [ + "p", + "l" + ], + [ + "c", + "on" + ], + [ + "re", + "s" + ], + [ + "i", + "d" + ], + [ + "w", + "h" + ], + [ + "e", + "x" + ], + [ + "u", + "s" + ], + [ + "i", + "r" + ], + [ + "a", + "y" + ], + [ + "st", + "r" + ], + [ + "i", + "th" + ], + [ + "m", + "ent" + ], + [ + "a", + "p" + ], + [ + "t", + "r" + ], + [ + "-", + "-" + ], + [ + "a", + "re" + ], + [ + ":", + "Ġ" + ], + [ + "t", + "s" + ], + [ + "ou", + "r" + ], + [ + "w", + "ith" + ], + [ + "p", + "ro" + ], + [ + "o", + "p" + ], + [ + "s", + "u" + ], + [ + "â", + "Ģ" + ], + [ + "th", + "at" + ], + [ + "e", + "m" + ], + [ + "er", + "s" + ], + [ + "i", + "st" + ], + [ + "en", + "d" + ], + [ + "u", + "t" + ], + [ + "es", + "s" + ], + [ + "p", + "r" + ], + [ + "o", + "t" + ], + [ + "at", + "e" + ], + [ + "l", + "y" + ], + [ + "m", + "o" + ], + [ + "Ċ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "a", + "in" + ], + [ + "u", + "m" + ], + [ + "f", + "r" + ], + [ + "k", + "e" + ], + [ + "q", + "u" + ], + [ + "l", + "o" + ], + [ + "th", + "er" + ], + [ + "ou", + "n" + ], + [ + "T", + "he" + ], + [ + "d", + "i" + ], + [ + "n", + "e" + ], + [ + "Ġ", + "(" + ], + [ + "m", + "e" + ], + [ + "it", + "y" + ], + [ + "se", + "t" + ], + [ + "ig", + "h" + ], + [ + "in", + "t" + ], + [ + "a", + "g" + ], + [ + "w", + "e" + ], + [ + "s", + "h" + ], + [ + "ou", + "t" + ], + [ + "c", + "tion" + ], + [ + "-", + "Ġ" + ], + [ + "c", + "i" + ], + [ + "il", + "l" + ], + [ + "o", + "d" + ], + [ + "c", + "l" + ], + [ + "p", + "er" + ], + [ + "I", + "n" + ], + [ + "p", + "o" + ], + [ + "s", + "o" + ], + [ + "str", + "ing" + ], + [ + "w", + "or" + ], + [ + "p", + "e" + ], + [ + "b", + "y" + ], + [ + "T", + "h" + ], + [ + "p", + "or" + ], + [ + "es", + "t" + ], + [ + "y", + "ou" + ], + [ + "l", + "i" + ], + [ + "c", + "an" + ], + [ + "fr", + "om" + ], + [ + "s", + "i" + ], + [ + "g", + "r" + ], + [ + "se", + "l" + ], + [ + "h", + "a" + ], + [ + "on", + "e" + ], + [ + "--", + "--" + ], + [ + "t", + "e" + ], + [ + "c", + "o" + ], + [ + "g", + "in" + ], + [ + "l", + "d" + ], + [ + "er", + "e" + ], + [ + "m", + "a" + ], + [ + "d", + "er" + ], + [ + "e", + "t" + ], + [ + "Ċ", + "ĠĠĠĠ" + ], + [ + "s", + "p" + ], + [ + "d", + "u" + ], + [ + ")", + "Ġ" + ], + [ + "f", + "un" + ], + [ + "i", + "es" + ], + [ + "a", + "ge" + ], + [ + "p", + "le" + ], + [ + "in", + "e" + ], + [ + "sel", + "f" + ], + [ + "an", + "t" + ], + [ + "u", + "re" + ], + [ + "be", + "gin" + ], + [ + "p", + "ar" + ], + [ + "g", + "h" + ], + [ + "'", + "s" + ], + [ + "ti", + "c" + ], + [ + "c", + "t" + ], + [ + "as", + "s" + ], + [ + "om", + "e" + ], + [ + "igh", + "t" + ], + [ + "por", + "t" + ], + [ + "am", + "e" + ], + [ + "r", + "i" + ], + [ + "for", + "m" + ], + [ + "th", + "is" + ], + [ + "ar", + "d" + ], + [ + "+", + "Ġ" + ], + [ + "y", + "our" + ], + [ + "w", + "as" + ], + [ + "v", + "i" + ], + [ + "c", + "re" + ], + [ + "t", + "ur" + ], + [ + "all", + "y" + ], + [ + "ac", + "h" + ], + [ + "fun", + "ction" + ], + [ + "the", + "ir" + ], + [ + "n", + "ot" + ], + [ + "ou", + "gh" + ], + [ + "u", + "d" + ], + [ + "c", + "all" + ], + [ + "v", + "al" + ], + [ + "ec", + "t" + ], + [ + "f", + "o" + ], + [ + "ou", + "s" + ], + [ + "oun", + "d" + ], + [ + "a", + "st" + ], + [ + "an", + "s" + ], + [ + "es", + "e" + ], + [ + "p", + "re" + ], + [ + "Ġ", + "+Ġ" + ], + [ + "ab", + "le" + ], + [ + "v", + "el" + ], + [ + "i", + "le" + ], + [ + "i", + "z" + ], + [ + "pr", + "int" + ], + [ + "an", + "ce" + ], + [ + "ation", + "s" + ], + [ + "d", + "o" + ], + [ + "âĢ", + "Ļ" + ], + [ + "at", + "ed" + ], + [ + "ha", + "ve" + ], + [ + "el", + "l" + ], + [ + "in", + "d" + ], + [ + "en", + "ce" + ], + [ + "u", + "e" + ], + [ + "u", + "p" + ], + [ + "p", + "res" + ], + [ + "d", + "is" + ], + [ + "t", + "y" + ], + [ + "k", + "ing" + ], + [ + "f", + "er" + ], + [ + "a", + "u" + ], + [ + "m", + "an" + ], + [ + "b", + "o" + ], + [ + "ar", + "y" + ], + [ + "on", + "g" + ], + [ + "ou", + "ld" + ], + [ + "n", + "o" + ], + [ + "ic", + "h" + ], + [ + "#", + "#" + ], + [ + "it", + "s" + ], + [ + "the", + "y" + ], + [ + "tion", + "s" + ], + [ + "ic", + "al" + ], + [ + "en", + "ti" + ], + [ + "ac", + "t" + ], + [ + "con", + "t" + ], + [ + "u", + "st" + ], + [ + "b", + "er" + ], + [ + "e", + "f" + ], + [ + "tur", + "n" + ], + [ + "k", + "s" + ], + [ + "v", + "es" + ], + [ + "at", + "i" + ], + [ + "com", + "ment" + ], + [ + "e", + "ar" + ], + [ + "*", + "*" + ], + [ + "e", + "v" + ], + [ + "a", + "f" + ], + [ + "ig", + "n" + ], + [ + "_", + "_" + ], + [ + "c", + "ol" + ], + [ + "w", + "ill" + ], + [ + "c", + "es" + ], + [ + "l", + "ist" + ], + [ + "o", + "g" + ], + [ + "b", + "ut" + ], + [ + "g", + "o" + ], + [ + "s", + "ion" + ], + [ + "ti", + "es" + ], + [ + "n", + "um" + ], + [ + "p", + "ut" + ], + [ + "i", + "p" + ], + [ + "ent", + "s" + ], + [ + "#", + "Ġ" + ], + [ + "ac", + "k" + ], + [ + "b", + "r" + ], + [ + "s", + "er" + ], + [ + "ab", + "out" + ], + [ + "ow", + "n" + ], + [ + "ac", + "e" + ], + [ + "s", + "y" + ], + [ + "e", + "ver" + ], + [ + "s", + "ome" + ], + [ + "re", + "n" + ], + [ + "o", + "ther" + ], + [ + "h", + "as" + ], + [ + "mo", + "re" + ], + [ + "Ġ", + "âĢ" + ], + [ + "wh", + "ich" + ], + [ + "at", + "ing" + ], + [ + "Ġ", + "-Ġ" + ], + [ + "a", + "v" + ], + [ + "com", + "m" + ], + [ + "re", + "turn" + ], + [ + "ar", + "t" + ], + [ + "e", + "p" + ], + [ + "W", + "h" + ], + [ + "in", + "ter" + ], + [ + "t", + "a" + ], + [ + "or", + "s" + ], + [ + "ge", + "t" + ], + [ + "a", + "w" + ], + [ + "A", + "n" + ], + [ + "ex", + "t" + ], + [ + "ti", + "me" + ], + [ + "at", + "er" + ], + [ + "an", + "g" + ], + [ + "l", + "ow" + ], + [ + "at", + "a" + ], + [ + "is", + "h" + ], + [ + "c", + "ess" + ], + [ + "al", + "s" + ], + [ + "or", + "y" + ], + [ + "in", + "to" + ], + [ + "c", + "ur" + ], + [ + "il", + "d" + ], + [ + "b", + "le" + ], + [ + "the", + "m" + ], + [ + "ic", + "e" + ], + [ + "----", + "----" + ], + [ + "de", + "f" + ], + [ + "Th", + "is" + ], + [ + "o", + "b" + ], + [ + "e", + "w" + ], + [ + "h", + "ow" + ], + [ + ")", + ":" + ], + [ + "p", + "h" + ], + [ + "th", + "ese" + ], + [ + "f", + "ul" + ], + [ + "it", + "e" + ], + [ + "ul", + "t" + ], + [ + "C", + "h" + ], + [ + "c", + "oun" + ], + [ + "a", + "se" + ], + [ + "im", + "port" + ], + [ + "ti", + "ve" + ], + [ + "ne", + "w" + ], + [ + "c", + "or" + ], + [ + "o", + "ver" + ], + [ + ";", + "Ġ" + ], + [ + "b", + "l" + ], + [ + "un", + "der" + ], + [ + "r", + "ough" + ], + [ + "ar", + "i" + ], + [ + "ro", + "w" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "li", + "ke" + ], + [ + "be", + "t" + ], + [ + "an", + "ge" + ], + [ + "ment", + "s" + ], + [ + "st", + "and" + ], + [ + "g", + "en" + ], + [ + "le", + "ar" + ], + [ + "wh", + "o" + ], + [ + "h", + "el" + ], + [ + "ing", + "s" + ], + [ + "d", + "ata" + ], + [ + "at", + "es" + ], + [ + "en", + "g" + ], + [ + "d", + "if" + ], + [ + "*", + "Ġ" + ], + [ + "al", + "so" + ], + [ + "ar", + "ch" + ], + [ + "=", + "=" + ], + [ + "re", + "e" + ], + [ + "d", + "es" + ], + [ + "n", + "ow" + ], + [ + "an", + "y" + ], + [ + "I", + "t" + ], + [ + "d", + "s" + ], + [ + "v", + "ing" + ], + [ + "ol", + "og" + ], + [ + "wor", + "k" + ], + [ + "ay", + "s" + ], + [ + "t", + "en" + ], + [ + "a", + "th" + ], + [ + "c", + "r" + ], + [ + "o", + "s" + ], + [ + "i", + "al" + ], + [ + "m", + "in" + ], + [ + "\"", + "Ġ" + ], + [ + "c", + "ent" + ], + [ + "com", + "p" + ], + [ + "ir", + "st" + ], + [ + "i", + "a" + ], + [ + "o", + "k" + ], + [ + "wh", + "en" + ], + [ + "S", + "t" + ], + [ + "f", + "l" + ], + [ + "w", + "ere" + ], + [ + "u", + "se" + ], + [ + "o", + "c" + ], + [ + "ti", + "m" + ], + [ + "v", + "id" + ], + [ + "o", + "re" + ], + [ + "wh", + "ile" + ], + [ + "b", + "u" + ], + [ + "f", + "e" + ], + [ + "v", + "en" + ], + [ + "h", + "is" + ], + [ + "re", + "l" + ], + [ + "h", + "er" + ], + [ + "u", + "al" + ], + [ + "op", + "le" + ], + [ + "re", + "ad" + ], + [ + "U", + "n" + ], + [ + "su", + "ch" + ], + [ + "ap", + "p" + ], + [ + "C", + "on" + ], + [ + "hel", + "p" + ], + [ + "t", + "ing" + ], + [ + "t", + "w" + ], + [ + "f", + "ic" + ], + [ + "m", + "s" + ], + [ + "po", + "s" + ], + [ + "sp", + "ec" + ], + [ + "n", + "ing" + ], + [ + "th", + "rough" + ], + [ + "if", + "ic" + ], + [ + "=", + "=Ġ" + ], + [ + "Ġ", + "\"" + ], + [ + "m", + "ain" + ], + [ + "fo", + "re" + ], + [ + "i", + "de" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "v", + "ed" + ], + [ + "so", + "ci" + ], + [ + "ch", + "o" + ], + [ + "in", + "cl" + ], + [ + "e", + "le" + ], + [ + "i", + "re" + ], + [ + "en", + "s" + ], + [ + "us", + "ed" + ], + [ + "re", + "g" + ], + [ + "st", + "ud" + ], + [ + "ther", + "e" + ], + [ + "ar", + "r" + ], + [ + "al", + "th" + ], + [ + "âĢ", + "Ŀ" + ], + [ + "in", + "put" + ], + [ + "pe", + "ople" + ], + [ + "m", + "ay" + ], + [ + "f", + "irst" + ], + [ + "lo", + "c" + ], + [ + "d", + "r" + ], + [ + "m", + "er" + ], + [ + "th", + "an" + ], + [ + "s", + "s" + ], + [ + "cl", + "ass" + ], + [ + "a", + "k" + ], + [ + ")", + ",Ġ" + ], + [ + "y", + "s" + ], + [ + "ati", + "ve" + ], + [ + "Ġ", + "==Ġ" + ], + [ + "u", + "res" + ], + [ + "v", + "is" + ], + [ + "ur", + "ing" + ], + [ + "pl", + "ay" + ], + [ + "str", + "u" + ], + [ + "wh", + "at" + ], + [ + "el", + "y" + ], + [ + "n", + "ame" + ], + [ + "č", + "Ċ" + ], + [ + "E", + "x" + ], + [ + "st", + "em" + ], + [ + "a", + "il" + ], + [ + "m", + "on" + ], + [ + "m", + "ed" + ], + [ + "ic", + "t" + ], + [ + "dif", + "fer" + ], + [ + "ne", + "ed" + ], + [ + "d", + "el" + ], + [ + "su", + "b" + ], + [ + "y", + "ear" + ], + [ + "c", + "er" + ], + [ + "ul", + "ar" + ], + [ + "i", + "ties" + ], + [ + "p", + "t" + ], + [ + "pro", + "du" + ], + [ + "(", + ")" + ], + [ + "tr", + "i" + ], + [ + "d", + "ay" + ], + [ + "ad", + "d" + ], + [ + "o", + "se" + ], + [ + "t", + "ain" + ], + [ + "vel", + "op" + ], + [ + "f", + "i" + ], + [ + "re", + "at" + ], + [ + "A", + "l" + ], + [ + "ex", + "pl" + ], + [ + "l", + "es" + ], + [ + "wh", + "ere" + ], + [ + "c", + "ed" + ], + [ + "l", + "ine" + ], + [ + "m", + "y" + ], + [ + "m", + "ar" + ], + [ + "s", + "c" + ], + [ + "ex", + "am" + ], + [ + "il", + "ity" + ], + [ + "?", + "Ġ" + ], + [ + "con", + "s" + ], + [ + "R", + "e" + ], + [ + "val", + "u" + ], + [ + "we", + "en" + ], + [ + "\"", + "\"" + ], + [ + "c", + "y" + ], + [ + "ic", + "s" + ], + [ + "ec", + "tion" + ], + [ + "p", + "ers" + ], + [ + ".", + "." + ], + [ + "h", + "igh" + ], + [ + "w", + "r" + ], + [ + "mo", + "st" + ], + [ + "H", + "ow" + ], + [ + "per", + "i" + ], + [ + "m", + "at" + ], + [ + "ver", + "s" + ], + [ + "ch", + "n" + ], + [ + "bet", + "ween" + ], + [ + "p", + "ol" + ], + [ + "s", + "ur" + ], + [ + "com", + "e" + ], + [ + "v", + "ari" + ], + [ + "res", + "p" + ], + [ + "man", + "y" + ], + [ + "l", + "ess" + ], + [ + "E", + "n" + ], + [ + "g", + "u" + ], + [ + "ol", + "d" + ], + [ + "ation", + "al" + ], + [ + "in", + "v" + ], + [ + "au", + "se" + ], + [ + "F", + "or" + ], + [ + "l", + "and" + ], + [ + "is", + "e" + ], + [ + "sy", + "stem" + ], + [ + "re", + "qu" + ], + [ + "be", + "en" + ], + [ + "A", + "s" + ], + [ + "h", + "ad" + ], + [ + "g", + "i" + ], + [ + "us", + "ing" + ], + [ + "if", + "e" + ], + [ + "w", + "ould" + ], + [ + "de", + "velop" + ], + [ + "ĵ", + "Ġ" + ], + [ + "r", + "a" + ], + [ + "t", + "al" + ], + [ + "th", + "ing" + ], + [ + "el", + "se" + ], + [ + "tw", + "o" + ], + [ + "as", + "ed" + ], + [ + "tr", + "y" + ], + [ + "!", + "Ġ" + ], + [ + "s", + "ol" + ], + [ + "ac", + "ti" + ], + [ + "res", + "s" + ], + [ + "wor", + "ld" + ], + [ + "e", + "ach" + ], + [ + "W", + "e" + ], + [ + "ter", + "s" + ], + [ + "ĠâĢ", + "ĵĠ" + ], + [ + "t", + "u" + ], + [ + "en", + "ces" + ], + [ + "th", + "en" + ], + [ + "se", + "arch" + ], + [ + "under", + "stand" + ], + [ + "ever", + "y" + ], + [ + "enti", + "al" + ], + [ + "on", + "ly" + ], + [ + "le", + "t" + ], + [ + "ic", + "k" + ], + [ + "tr", + "ans" + ], + [ + "s", + "ign" + ], + [ + "comm", + "un" + ], + [ + "he", + "alth" + ], + [ + "g", + "an" + ], + [ + "st", + "art" + ], + [ + "in", + "st" + ], + [ + "j", + "ust" + ], + [ + "n", + "ess" + ], + [ + "u", + "c" + ], + [ + "H", + "e" + ], + [ + "c", + "ri" + ], + [ + "a", + "ir" + ], + [ + "ter", + "n" + ], + [ + "ec", + "ts" + ], + [ + "s", + "im" + ], + [ + ")", + ".Ġ" + ], + [ + "v", + "ir" + ], + [ + "r", + "ange" + ], + [ + "i", + "an" + ], + [ + "be", + "c" + ], + [ + "ch", + "ar" + ], + [ + "te", + "chn" + ], + [ + "ĉ", + "ĉ" + ], + [ + "(", + "\"" + ], + [ + "s", + "k" + ], + [ + "z", + "e" + ], + [ + "tic", + "al" + ], + [ + "t", + "ed" + ], + [ + "h", + "ist" + ], + [ + "t", + "em" + ], + [ + "su", + "p" + ], + [ + "ch", + "ild" + ], + [ + "l", + "in" + ], + [ + "t", + "est" + ], + [ + "k", + "now" + ], + [ + "l", + "ed" + ], + [ + "ag", + "es" + ], + [ + "num", + "ber" + ], + [ + "w", + "ard" + ], + [ + "B", + "y" + ], + [ + "pro", + "cess" + ], + [ + "b", + "ack" + ], + [ + "##", + "##" + ], + [ + "m", + "em" + ], + [ + "s", + "w" + ], + [ + "differ", + "ent" + ], + [ + "f", + "ol" + ], + [ + "p", + "u" + ], + [ + "ev", + "en" + ], + [ + "il", + "y" + ], + [ + ")", + ")" + ], + [ + "p", + "ow" + ], + [ + "par", + "t" + ], + [ + "p", + "s" + ], + [ + "c", + "ul" + ], + [ + "su", + "re" + ], + [ + "c", + "ould" + ], + [ + "tion", + "al" + ], + [ + "at", + "ure" + ], + [ + "w", + "ay" + ], + [ + "S", + "te" + ], + [ + "qu", + "e" + ], + [ + "ap", + "h" + ], + [ + "'", + "t" + ], + [ + "f", + "ind" + ], + [ + "qu", + "es" + ], + [ + "in", + "s" + ], + [ + "T", + "r" + ], + [ + "l", + "ife" + ], + [ + "C", + "om" + ], + [ + "g", + "er" + ], + [ + "A", + "r" + ], + [ + "c", + "our" + ], + [ + "r", + "ight" + ], + [ + "s", + "m" + ], + [ + "ty", + "pe" + ], + [ + "w", + "ell" + ], + [ + "on", + "s" + ], + [ + "gen", + "er" + ], + [ + "ma", + "ke" + ], + [ + "s", + "ing" + ], + [ + "ad", + "i" + ], + [ + "in", + "form" + ], + [ + "su", + "m" + ], + [ + "com", + "ple" + ], + [ + "ver", + "y" + ], + [ + "pres", + "ent" + ], + [ + "pl", + "ic" + ], + [ + "o", + "y" + ], + [ + "olog", + "y" + ], + [ + "incl", + "ud" + ], + [ + "d", + "uring" + ], + [ + "val", + "ue" + ], + [ + "sh", + "ip" + ], + [ + "pres", + "sion" + ], + [ + "âĢĿ", + "Ġ" + ], + [ + "h", + "um" + ], + [ + "t", + "le" + ], + [ + "c", + "are" + ], + [ + "pl", + "an" + ], + [ + "se", + "e" + ], + [ + "de", + "c" + ], + [ + "w", + "ater" + ], + [ + "j", + "ect" + ], + [ + "po", + "si" + ], + [ + "f", + "ac" + ], + [ + "ef", + "f" + ], + [ + "b", + "re" + ], + [ + "l", + "ab" + ], + [ + "T", + "o" + ], + [ + "Ġ", + "*Ġ" + ], + [ + "tr", + "a" + ], + [ + "b", + "i" + ], + [ + "u", + "tion" + ], + [ + "in", + "de" + ], + [ + "b", + "el" + ], + [ + "a", + "ve" + ], + [ + "in", + "cre" + ], + [ + "A", + "d" + ], + [ + "c", + "us" + ], + [ + "di", + "vid" + ], + [ + "ic", + "es" + ], + [ + "id", + "er" + ], + [ + "f", + "in" + ], + [ + "lear", + "n" + ], + [ + "P", + "ro" + ], + [ + "l", + "ar" + ], + [ + "c", + "ap" + ], + [ + "ke", + "y" + ], + [ + "'", + "Ġ" + ], + [ + "gr", + "am" + ], + [ + "le", + "ad" + ], + [ + "c", + "ar" + ], + [ + "ex", + "p" + ], + [ + "it", + "ed" + ], + [ + "Ġ", + "__" + ], + [ + "ro", + "l" + ], + [ + "pl", + "ace" + ], + [ + "--------", + "--------" + ], + [ + "i", + "e" + ], + [ + "g", + "y" + ], + [ + "f", + "am" + ], + [ + "pow", + "er" + ], + [ + "f", + "ound" + ], + [ + "of", + "f" + ], + [ + "pers", + "on" + ], + [ + "o", + "th" + ], + [ + "af", + "ter" + ], + [ + "sh", + "ould" + ], + [ + "be", + "fore" + ], + [ + "l", + "ong" + ], + [ + "et", + "y" + ], + [ + "S", + "o" + ], + [ + "Ste", + "p" + ], + [ + "th", + "ose" + ], + [ + "ĠâĢ", + "ľ" + ], + [ + "res", + "ult" + ], + [ + "with", + "in" + ], + [ + "is", + "m" + ], + [ + "p", + "op" + ], + [ + "The", + "y" + ], + [ + "ion", + "s" + ], + [ + "be", + "ing" + ], + [ + "ab", + "ility" + ], + [ + "Wh", + "at" + ], + [ + "==", + "==" + ], + [ + "d", + "own" + ], + [ + "re", + "d" + ], + [ + "cho", + "ol" + ], + [ + "it", + "er" + ], + [ + "h", + "o" + ], + [ + "pl", + "y" + ], + [ + "re", + "ct" + ], + [ + "Th", + "ese" + ], + [ + "Y", + "ou" + ], + [ + "ex", + "peri" + ], + [ + "pl", + "es" + ], + [ + "I", + "f" + ], + [ + "re", + "search" + ], + [ + "w", + "ays" + ], + [ + "fol", + "low" + ], + [ + "p", + "ath" + ], + [ + "or", + "d" + ], + [ + "all", + "ow" + ], + [ + "are", + "n" + ], + [ + "e", + "qu" + ], + [ + "bo", + "th" + ], + [ + "ĊĊ", + "ĠĠĠĠ" + ], + [ + "b", + "al" + ], + [ + "on", + "d" + ], + [ + "vi", + "ew" + ], + [ + "coun", + "t" + ], + [ + "gr", + "ou" + ], + [ + "(", + "'" + ], + [ + "\"", + ")" + ], + [ + "ser", + "v" + ], + [ + "mer", + "ic" + ], + [ + "mo", + "ve" + ], + [ + "st", + "ate" + ], + [ + "ad", + "v" + ], + [ + "f", + "act" + ], + [ + "sh", + "ow" + ], + [ + "con", + "n" + ], + [ + "A", + "meric" + ], + [ + "f", + "ile" + ], + [ + "le", + "ct" + ], + [ + "i", + "ti" + ], + [ + "gr", + "aph" + ], + [ + "tu", + "ple" + ], + [ + "g", + "row" + ], + [ + "in", + "k" + ], + [ + "u", + "ch" + ], + [ + "f", + "t" + ], + [ + "vi", + "de" + ], + [ + "iz", + "e" + ], + [ + "p", + "y" + ], + [ + "c", + "lo" + ], + [ + "s", + "he" + ], + [ + "h", + "and" + ], + [ + "iz", + "ed" + ], + [ + "u", + "ally" + ], + [ + "re", + "al" + ], + [ + "eng", + "th" + ], + [ + "des", + "ign" + ], + [ + "ap", + "pro" + ], + [ + "a", + "id" + ], + [ + "un", + "i" + ], + [ + "tim", + "es" + ], + [ + "bec", + "ause" + ], + [ + "th", + "ough" + ], + [ + "year", + "s" + ], + [ + "g", + "g" + ], + [ + "exam", + "ple" + ], + [ + "ren", + "t" + ], + [ + "in", + "divid" + ], + [ + "igh", + "ts" + ], + [ + "cont", + "in" + ], + [ + "th", + "od" + ], + [ + "cre", + "ate" + ], + [ + "n", + "am" + ], + [ + "ce", + "pt" + ], + [ + "vir", + "on" + ], + [ + "ar", + "ound" + ], + [ + "m", + "ight" + ], + [ + "stru", + "ct" + ], + [ + "ar", + "m" + ], + [ + "/", + "Ġ" + ], + [ + "wor", + "d" + ], + [ + "or", + "gan" + ], + [ + "f", + "il" + ], + [ + "l", + "ight" + ], + [ + "'", + ",Ġ" + ], + [ + "do", + "es" + ], + [ + "ul", + "ti" + ], + [ + "co", + "ver" + ], + [ + "import", + "ant" + ], + [ + "od", + "y" + ], + [ + "I", + "m" + ], + [ + "n", + "er" + ], + [ + "en", + "er" + ], + [ + "inform", + "ation" + ], + [ + "c", + "a" + ], + [ + "le", + "vel" + ], + [ + "call", + "ed" + ], + [ + "p", + "ass" + ], + [ + "ro", + "ss" + ], + [ + "s", + "ci" + ], + [ + "ac", + "tion" + ], + [ + ">", + "Ġ" + ], + [ + "l", + "ength" + ], + [ + "B", + "ut" + ], + [ + "st", + "er" + ], + [ + "op", + "er" + ], + [ + "it", + "ing" + ], + [ + "ect", + "ed" + ], + [ + "bu", + "ild" + ], + [ + "pr", + "om" + ], + [ + "he", + "ad" + ], + [ + "pro", + "vid" + ], + [ + "t", + "ext" + ], + [ + "p", + "i" + ], + [ + "as", + "es" + ], + [ + "pu", + "bl" + ], + [ + "b", + "ers" + ], + [ + "h", + "y" + ], + [ + "cor", + "d" + ], + [ + "d", + "ist" + ], + [ + "it", + "al" + ], + [ + "âĢ", + "ľ" + ], + [ + "le", + "ft" + ], + [ + "P", + "r" + ], + [ + "N", + "o" + ], + [ + "m", + "is" + ], + [ + "si", + "de" + ], + [ + "st", + "s" + ], + [ + "iz", + "ation" + ], + [ + "F", + "r" + ], + [ + "S", + "ection" + ], + [ + "or", + "ies" + ], + [ + "di", + "tion" + ], + [ + "O", + "n" + ], + [ + "c", + "al" + ], + [ + "ma", + "de" + ], + [ + "or", + "t" + ], + [ + "ci", + "al" + ], + [ + "k", + "n" + ], + [ + "m", + "en" + ], + [ + "or", + "der" + ], + [ + "i", + "ve" + ], + [ + "pr", + "of" + ], + [ + "op", + "en" + ], + [ + "inv", + "ol" + ], + [ + "c", + "ell" + ], + [ + "'", + ")" + ], + [ + "b", + "ased" + ], + [ + "of", + "ten" + ], + [ + "ag", + "ain" + ], + [ + "to", + "p" + ], + [ + "g", + "re" + ], + [ + "n", + "or" + ], + [ + "ap", + "e" + ], + [ + "fo", + "od" + ], + [ + "u", + "de" + ], + [ + "inde", + "x" + ], + [ + "An", + "sw" + ], + [ + "stud", + "ents" + ], + [ + "cons", + "ider" + ], + [ + "p", + "ot" + ], + [ + "re", + "f" + ], + [ + "u", + "b" + ], + [ + "an", + "al" + ], + [ + "Ġ", + "'" + ], + [ + "d", + "ict" + ], + [ + "app", + "end" + ], + [ + "p", + "ec" + ], + [ + "l", + "en" + ], + [ + "mo", + "del" + ], + [ + "tr", + "ain" + ], + [ + "ma", + "x" + ], + [ + "l", + "ing" + ], + [ + "me", + "thod" + ], + [ + "int", + "e" + ], + [ + "Th", + "ere" + ], + [ + "ur", + "al" + ], + [ + "č", + "ĊĠĠĠĠ" + ], + [ + "sm", + "all" + ], + [ + "are", + "d" + ], + [ + "ch", + "ange" + ], + [ + "en", + "viron" + ], + [ + ",Ġ", + "\"" + ], + [ + "includ", + "ing" + ], + [ + "pro", + "ble" + ], + [ + "%", + "Ġ" + ], + [ + "g", + "l" + ], + [ + "Answ", + "er" + ], + [ + "ti", + "l" + ], + [ + "stud", + "y" + ], + [ + "se", + "ver" + ], + [ + "i", + "ous" + ], + [ + "n", + "ext" + ], + [ + "ch", + "all" + ], + [ + "an", + "ts" + ], + [ + "al", + "ity" + ], + [ + "ta", + "ke" + ], + [ + "v", + "ity" + ], + [ + "vel", + "y" + ], + [ + "me", + "an" + ], + [ + "a", + "x" + ], + [ + "us", + "ion" + ], + [ + "Wh", + "en" + ], + [ + "m", + "uch" + ], + [ + "k", + "es" + ], + [ + "s", + "chool" + ], + [ + "g", + "s" + ], + [ + "pr", + "i" + ], + [ + "cur", + "rent" + ], + [ + "ty", + "p" + ], + [ + "i", + "ed" + ], + [ + "id", + "enti" + ], + [ + "end", + "s" + ], + [ + "D", + "e" + ], + [ + "po", + "int" + ], + [ + "vari", + "ous" + ], + [ + "si", + "ze" + ], + [ + "hum", + "an" + ], + [ + "b", + "ody" + ], + [ + "ac", + "ter" + ], + [ + "c", + "le" + ], + [ + "l", + "im" + ], + [ + "c", + "ing" + ], + [ + "m", + "ulti" + ], + [ + "si", + "ble" + ], + [ + "fl", + "u" + ], + [ + "r", + "is" + ], + [ + "pro", + "gram" + ], + [ + "sign", + "ific" + ], + [ + "kn", + "own" + ], + [ + "el", + "d" + ], + [ + "as", + "k" + ], + [ + "ro", + "du" + ], + [ + "al", + "e" + ], + [ + "in", + "ess" + ], + [ + "ist", + "s" + ], + [ + "ge", + "ther" + ], + [ + "resp", + "on" + ], + [ + ")", + "." + ], + [ + "our", + "ces" + ], + [ + "af", + "f" + ], + [ + "Ġ", + "<" + ], + [ + "s", + "ame" + ], + [ + "in", + "es" + ], + [ + "a", + "ke" + ], + [ + "re", + "du" + ], + [ + "go", + "od" + ], + [ + "ce", + "p" + ], + [ + "spec", + "ific" + ], + [ + "lear", + "ning" + ], + [ + "ar", + "s" + ], + [ + "s", + "l" + ], + [ + "child", + "ren" + ], + [ + "fr", + "i" + ], + [ + "ment", + "al" + ], + [ + "om", + "en" + ], + [ + "it", + "em" + ], + [ + "a", + "de" + ], + [ + "im", + "pro" + ], + [ + "m", + "us" + ], + [ + "An", + "d" + ], + [ + "im", + "p" + ], + [ + "ne", + "t" + ], + [ + "vers", + "ity" + ], + [ + "an", + "ces" + ], + [ + "fe", + "el" + ], + [ + "an", + "ti" + ], + [ + "w", + "ant" + ], + [ + "r", + "y" + ], + [ + "at", + "or" + ], + [ + "as", + "h" + ], + [ + "le", + "g" + ], + [ + "in", + "ce" + ], + [ + "at", + "t" + ], + [ + "ic", + "ally" + ], + [ + "st", + "ep" + ], + [ + "B", + "e" + ], + [ + "com", + "es" + ], + [ + "How", + "ever" + ], + [ + "O", + "ne" + ], + [ + "ch", + "ang" + ], + [ + "on", + "om" + ], + [ + "ed", + "uc" + ], + [ + "r", + "and" + ], + [ + "\"\"", + "\"" + ], + [ + "n", + "s" + ], + [ + "ang", + "u" + ], + [ + "c", + "u" + ], + [ + "soci", + "al" + ], + [ + "understand", + "ing" + ], + [ + "sup", + "port" + ], + [ + "su", + "c" + ], + [ + "b", + "us" + ], + [ + "d", + "ig" + ], + [ + "ma", + "king" + ], + [ + "cont", + "rol" + ], + [ + "ill", + "s" + ], + [ + "P", + "l" + ], + [ + "N", + "ew" + ], + [ + "or", + "ing" + ], + [ + "per", + "form" + ], + [ + "pro", + "t" + ], + [ + "m", + "ust" + ], + [ + ".", + ",Ġ" + ], + [ + "on", + "es" + ], + [ + "is", + "su" + ], + [ + "o", + "od" + ], + [ + "A", + "c" + ], + [ + "d", + "id" + ], + [ + "Ġ", + "/Ġ" + ], + [ + "ish", + "ed" + ], + [ + "at", + "ely" + ], + [ + "ar", + "ti" + ], + [ + "p", + "ur" + ], + [ + "âĢ", + "Ķ" + ], + [ + "ate", + "g" + ], + [ + "at", + "ch" + ], + [ + "ul", + "ts" + ], + [ + "bet", + "ter" + ], + [ + "ire", + "d" + ], + [ + "e", + "y" + ], + [ + "to", + "gether" + ], + [ + "go", + "ver" + ], + [ + "Ċ", + "Ġ" + ], + [ + "b", + "en" + ], + [ + "m", + "ater" + ], + [ + "a", + "h" + ], + [ + "č", + "ĊĠĠĠĠĠĠĠĠ" + ], + [ + "ag", + "ing" + ], + [ + "b", + "in" + ], + [ + "r", + "un" + ], + [ + "al", + "se" + ], + [ + "f", + "ace" + ], + [ + "si", + "ve" + ], + [ + "hist", + "ory" + ], + [ + "h", + "ere" + ], + [ + "s", + "pe" + ], + [ + "te", + "ach" + ], + [ + "oth", + "ers" + ], + [ + "ke", + "t" + ], + [ + "th", + "ree" + ], + [ + "s", + "it" + ], + [ + "W", + "or" + ], + [ + "de", + "p" + ], + [ + "g", + "n" + ], + [ + "t", + "reat" + ], + [ + "a", + "ther" + ], + [ + "`", + "`" + ], + [ + "d", + "ate" + ], + [ + "con", + "f" + ], + [ + "h", + "im" + ], + [ + "t", + "on" + ], + [ + "v", + "ol" + ], + [ + "an", + "other" + ], + [ + "gr", + "ound" + ], + [ + "i", + "ent" + ], + [ + "A", + "t" + ], + [ + "ver", + "se" + ], + [ + "tri", + "but" + ], + [ + "m", + "p" + ], + [ + "re", + "main" + ], + [ + "r", + "or" + ], + [ + "some", + "thing" + ], + [ + "an", + "n" + ], + [ + "|", + "|" + ], + [ + "wor", + "ds" + ], + [ + "l", + "ast" + ], + [ + "c", + "tr" + ], + [ + "du", + "e" + ], + [ + "ar", + "k" + ], + [ + "ĊĊ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "pro", + "per" + ], + [ + "A", + "u" + ], + [ + "cont", + "ain" + ], + [ + "with", + "out" + ], + [ + "valu", + "es" + ], + [ + "di", + "es" + ], + [ + "am", + "ong" + ], + [ + "L", + "e" + ], + [ + "grou", + "p" + ], + [ + "w", + "ar" + ], + [ + "ter", + "m" + ], + [ + "Ð", + "¾" + ], + [ + "ur", + "y" + ], + [ + "p", + "aren" + ], + [ + "ci", + "p" + ], + [ + "C", + "ol" + ], + [ + "ke", + "ep" + ], + [ + "e", + "as" + ], + [ + "expl", + "ore" + ], + [ + "s", + "aid" + ], + [ + "comple", + "x" + ], + [ + "ec", + "tive" + ], + [ + "ul", + "ation" + ], + [ + "l", + "angu" + ], + [ + "us", + "er" + ], + [ + "wor", + "ks" + ], + [ + "arr", + "ay" + ], + [ + "d", + "on" + ], + [ + "d", + "en" + ], + [ + "signific", + "ant" + ], + [ + "th", + "or" + ], + [ + "h", + "app" + ], + [ + "ec", + "k" + ], + [ + "di", + "rect" + ], + [ + "S", + "ome" + ], + [ + "lo", + "ok" + ], + [ + "in", + "it" + ], + [ + "cl", + "usion" + ], + [ + "in", + "al" + ], + [ + "tur", + "al" + ], + [ + "m", + "al" + ], + [ + "j", + "o" + ], + [ + "par", + "ti" + ], + [ + "ap", + "pe" + ], + [ + "ou", + "se" + ], + [ + "incl", + "ude" + ], + [ + "Ċ", + "ĉĉ" + ], + [ + "ac", + "y" + ], + [ + "Ġ=Ġ", + "[" + ], + [ + "chall", + "eng" + ], + [ + "d", + "om" + ], + [ + "bo", + "ok" + ], + [ + "el", + "s" + ], + [ + "o", + "st" + ], + [ + "gover", + "n" + ], + [ + "Americ", + "an" + ], + [ + "bo", + "ard" + ], + [ + "s", + "af" + ], + [ + "b", + "or" + ], + [ + "tr", + "ue" + ], + [ + "se", + "con" + ], + [ + "b", + "est" + ], + [ + "u", + "es" + ], + [ + "pr", + "ac" + ], + [ + "u", + "ro" + ], + [ + "suc", + "cess" + ], + [ + "posi", + "tion" + ], + [ + "tr", + "adi" + ], + [ + "]", + "Ġ" + ], + [ + "I", + "I" + ], + [ + "h", + "ome" + ], + [ + "be", + "come" + ], + [ + "a", + "im" + ], + [ + "no", + "de" + ], + [ + "n", + "p" + ], + [ + "se", + "qu" + ], + [ + "an", + "im" + ], + [ + "publ", + "ic" + ], + [ + "âĢ", + "ĵ" + ], + [ + "W", + "ith" + ], + [ + "c", + "k" + ], + [ + "n", + "on" + ], + [ + "en", + "cy" + ], + [ + "b", + "as" + ], + [ + "es", + "ts" + ], + [ + "p", + "at" + ], + [ + "v", + "ent" + ], + [ + "to", + "o" + ], + [ + "ward", + "s" + ], + [ + "comm", + "on" + ], + [ + "in", + "ts" + ], + [ + "il", + "ar" + ], + [ + "sever", + "al" + ], + [ + "p", + "ati" + ], + [ + "a", + "z" + ], + [ + "u", + "als" + ], + [ + "am", + "p" + ], + [ + "age", + "ment" + ], + [ + "ener", + "gy" + ], + [ + "ur", + "ther" + ], + [ + "pr", + "im" + ], + [ + "to", + "tal" + ], + [ + "ro", + "le" + ], + [ + "p", + "ain" + ], + [ + "N", + "ow" + ], + [ + "ac", + "cess" + ], + [ + "at", + "s" + ], + [ + "an", + "k" + ], + [ + "ess", + "ential" + ], + [ + "S", + "h" + ], + [ + "Ð", + "µ" + ], + [ + "olog", + "ical" + ], + [ + "to", + "ol" + ], + [ + "l", + "aw" + ], + [ + "e", + "valu" + ], + [ + "ap", + "ter" + ], + [ + "I", + "s" + ], + [ + "ta", + "il" + ], + [ + "O", + "r" + ], + [ + "]", + ")" + ], + [ + "at", + "ures" + ], + [ + "ag", + "ine" + ], + [ + "i", + "b" + ], + [ + "m", + "ic" + ], + [ + "loc", + "al" + ], + [ + "par", + "tic" + ], + [ + "oun", + "t" + ], + [ + "as", + "p" + ], + [ + "s", + "ed" + ], + [ + "t", + "ar" + ], + [ + "us", + "es" + ], + [ + "ent", + "er" + ], + [ + "g", + "lo" + ], + [ + "develop", + "ment" + ], + [ + "tr", + "act" + ], + [ + "####", + "####" + ], + [ + "ess", + "ion" + ], + [ + "system", + "s" + ], + [ + "again", + "st" + ], + [ + "&", + "Ġ" + ], + [ + "pro", + "vide" + ], + [ + "c", + "ase" + ], + [ + "rel", + "ation" + ], + [ + "id", + "s" + ], + [ + "col", + "le" + ], + [ + "ot", + "e" + ], + [ + "or", + "ig" + ], + [ + "s", + "en" + ], + [ + "fam", + "ily" + ], + [ + "ction", + "s" + ], + [ + "ut", + "e" + ], + [ + "as", + "on" + ], + [ + "re", + "present" + ], + [ + "n", + "at" + ], + [ + "dis", + "e" + ], + [ + "co", + "re" + ], + [ + "g", + "reat" + ], + [ + "me", + "ans" + ], + [ + "our", + "ce" + ], + [ + "r", + "ic" + ], + [ + "in", + "du" + ], + [ + "pl", + "oy" + ], + [ + "b", + "ro" + ], + [ + "ent", + "ly" + ], + [ + "cer", + "tain" + ], + [ + "r", + "ound" + ], + [ + "low", + "er" + ], + [ + "i", + "er" + ], + [ + "th", + "ings" + ], + [ + "ph", + "ys" + ], + [ + "vis", + "ion" + ], + [ + "end", + "ing" + ], + [ + "st", + "ill" + ], + [ + "uni", + "que" + ], + [ + "sion", + "s" + ], + [ + "me", + "as" + ], + [ + "col", + "or" + ], + [ + "ex", + "pression" + ], + [ + "j", + "ects" + ], + [ + "ec", + "onom" + ], + [ + "em", + "o" + ], + [ + "b", + "lo" + ], + [ + "l", + "l" + ], + [ + "dis", + "cus" + ], + [ + "de", + "v" + ], + [ + "ben", + "ef" + ], + [ + "ac", + "ross" + ], + [ + "ut", + "ure" + ], + [ + "bus", + "iness" + ], + [ + "e", + "ad" + ], + [ + "y", + "ing" + ], + [ + "dr", + "aw" + ], + [ + "k", + "en" + ], + [ + "'", + "'" + ], + [ + "cord", + "ing" + ], + [ + "al", + "ong" + ], + [ + "form", + "at" + ], + [ + "are", + "a" + ], + [ + "Th", + "at" + ], + [ + "Ð", + "°" + ], + [ + "co", + "de" + ], + [ + "L", + "et" + ], + [ + "pot", + "ential" + ], + [ + "ic", + "ation" + ], + [ + "i", + "als" + ], + [ + "char", + "acter" + ], + [ + "f", + "f" + ], + [ + "ou", + "th" + ], + [ + "Ċ", + "ĉ" + ], + [ + "re", + "le" + ], + [ + "ec", + "ti" + ], + [ + "follow", + "ing" + ], + [ + "c", + "ts" + ], + [ + "partic", + "ular" + ], + [ + "h", + "ol" + ], + [ + "ĊĊ", + "Ċ" + ], + [ + "Un", + "i" + ], + [ + "n", + "ec" + ], + [ + "g", + "ame" + ], + [ + "N", + "one" + ], + [ + "m", + "il" + ], + [ + "ele", + "ctr" + ], + [ + "s", + "or" + ], + [ + "m", + "ind" + ], + [ + "co", + "gn" + ], + [ + "ac", + "tions" + ], + [ + "for", + "t" + ], + [ + "t", + "re" + ], + [ + "ard", + "s" + ], + [ + "C", + "o" + ], + [ + "c", + "ult" + ], + [ + "un", + "d" + ], + [ + "techn", + "i" + ], + [ + "th", + "ink" + ], + [ + "pos", + "sible" + ], + [ + "wh", + "y" + ], + [ + "In", + "t" + ], + [ + "in", + "iti" + ], + [ + "m", + "i" + ], + [ + "il", + "ities" + ], + [ + "f", + "lo" + ], + [ + "secon", + "d" + ], + [ + "spec", + "ial" + ], + [ + "rand", + "om" + ], + [ + "st", + "at" + ], + [ + "inter", + "est" + ], + [ + "des", + "cri" + ], + [ + "[", + "'" + ], + [ + "in", + "f" + ], + [ + ",", + "\"Ġ" + ], + [ + "ro", + "om" + ], + [ + "',Ġ", + "'" + ], + [ + "ĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "d", + "ic" + ], + [ + "in", + "ation" + ], + [ + "em", + "p" + ], + [ + "iz", + "ing" + ], + [ + "sk", + "ills" + ], + [ + "im", + "age" + ], + [ + "d", + "am" + ], + [ + "led", + "ge" + ], + [ + "re", + "st" + ], + [ + "ch", + "eck" + ], + [ + "mem", + "ber" + ], + [ + "th", + "on" + ], + [ + "L", + "ist" + ], + [ + "er", + "t" + ], + [ + "of", + "fer" + ], + [ + "h", + "old" + ], + [ + "b", + "ir" + ], + [ + "C", + "an" + ], + [ + "lo", + "ss" + ], + [ + "w", + "omen" + ], + [ + "G", + "r" + ], + [ + "w", + "he" + ], + [ + "b", + "ed" + ], + [ + "individ", + "uals" + ], + [ + "typ", + "es" + ], + [ + "ac", + "c" + ], + [ + "ear", + "ly" + ], + [ + "us", + "h" + ], + [ + "l", + "ay" + ], + [ + "lar", + "ge" + ], + [ + "cour", + "se" + ], + [ + "J", + "o" + ], + [ + "sp", + "ace" + ], + [ + "Ġ", + "&Ġ" + ], + [ + "am", + "s" + ], + [ + "langu", + "age" + ], + [ + "ab", + "l" + ], + [ + "av", + "ail" + ], + [ + "pl", + "ac" + ], + [ + "f", + "uture" + ], + [ + "o", + "ks" + ], + [ + "as", + "soci" + ], + [ + "Ð", + "¸" + ], + [ + "====", + "====" + ], + [ + "ex", + "ist" + ], + [ + "ro", + "p" + ], + [ + "tic", + "s" + ], + [ + "ha", + "vi" + ], + [ + "h", + "t" + ], + [ + "ful", + "ly" + ], + [ + "appro", + "ach" + ], + [ + "th", + "es" + ], + [ + "po", + "st" + ], + [ + "gi", + "ven" + ], + [ + "ap", + "plic" + ], + [ + "d", + "f" + ], + [ + "Ġ", + "_" + ], + [ + "wr", + "ite" + ], + [ + "dec", + "is" + ], + [ + "A", + "f" + ], + [ + "relation", + "ship" + ], + [ + "commun", + "ity" + ], + [ + "hist", + "or" + ], + [ + "c", + "op" + ], + [ + "wor", + "king" + ], + [ + "v", + "o" + ], + [ + "ex", + "per" + ], + [ + "lab", + "or" + ], + [ + "Un", + "der" + ], + [ + "st", + "u" + ], + [ + "ar", + "ing" + ], + [ + "re", + "port" + ], + [ + "st", + "it" + ], + [ + "n", + "ational" + ], + [ + "lo", + "g" + ], + [ + "rodu", + "ction" + ], + [ + "stand", + "ing" + ], + [ + "ch", + "em" + ], + [ + "peri", + "od" + ], + [ + "th", + "s" + ], + [ + "c", + "ir" + ], + [ + "nec", + "ess" + ], + [ + "b", + "all" + ], + [ + "'", + "]" + ], + [ + "ab", + "les" + ], + [ + "C", + "l" + ], + [ + "Ġ", + "-" + ], + [ + "st", + "ory" + ], + [ + "d", + "ri" + ], + [ + "w", + "id" + ], + [ + "pl", + "ot" + ], + [ + "s", + "on" + ], + [ + "m", + "un" + ], + [ + "un", + "til" + ], + [ + "am", + "es" + ], + [ + "D", + "i" + ], + [ + "ro", + "ot" + ], + [ + "f", + "ew" + ], + [ + "fi", + "eld" + ], + [ + "ie", + "ve" + ], + [ + "nat", + "ural" + ], + [ + "i", + "tion" + ], + [ + "str", + "ong" + ], + [ + "mo", + "der" + ], + [ + "in", + "flu" + ], + [ + "Tr", + "ue" + ], + [ + "m", + "b" + ], + [ + "port", + "un" + ], + [ + "end", + "ed" + ], + [ + "S", + "e" + ], + [ + "Ġ", + "`" + ], + [ + "ct", + "or" + ], + [ + "N", + "or" + ], + [ + "ne", + "ar" + ], + [ + "to", + "day" + ], + [ + "prac", + "tic" + ], + [ + "/", + "/" + ], + [ + "ol", + "ution" + ], + [ + "sel", + "ves" + ], + [ + "add", + "ress" + ], + [ + "Ch", + "r" + ], + [ + "experi", + "ence" + ], + [ + "h", + "ar" + ], + [ + "as", + "ing" + ], + [ + "E", + "R" + ], + [ + "e", + "th" + ], + [ + "b", + "ur" + ], + [ + "lo", + "ad" + ], + [ + "str", + "y" + ], + [ + "b", + "s" + ], + [ + "str", + "i" + ], + [ + "I", + "N" + ], + [ + "sci", + "enti" + ], + [ + "up", + "on" + ], + [ + "ap", + "er" + ], + [ + "ys", + "is" + ], + [ + "clo", + "se" + ], + [ + "main", + "tain" + ], + [ + ":", + "**" + ], + [ + "imp", + "act" + ], + [ + "..", + "." + ], + [ + "p", + "tion" + ], + [ + "sh", + "ape" + ], + [ + "res", + "ults" + ], + [ + "A", + "p" + ], + [ + "form", + "s" + ], + [ + "j", + "our" + ], + [ + "qu", + "ality" + ], + [ + "ast", + "er" + ], + [ + "res", + "ources" + ], + [ + "techn", + "ology" + ], + [ + "loc", + "k" + ], + [ + "o", + "ve" + ], + [ + "pr", + "acti" + ], + [ + "em", + "ploy" + ], + [ + "im", + "e" + ], + [ + "D", + "r" + ], + [ + "m", + "ag" + ], + [ + "on", + "t" + ], + [ + "\"", + ",Ġ" + ], + [ + "g", + "ain" + ], + [ + "f", + "ig" + ], + [ + "m", + "ess" + ], + [ + "ust", + "om" + ], + [ + "impro", + "ve" + ], + [ + "pl", + "ant" + ], + [ + "c", + "lear" + ], + [ + "con", + "tribut" + ], + [ + "f", + "ill" + ], + [ + "s", + "ince" + ], + [ + "be", + "havi" + ], + [ + "l", + "it" + ], + [ + "ĠĠ", + "Ġ" + ], + [ + "person", + "al" + ], + [ + "B", + "o" + ], + [ + "at", + "ors" + ], + [ + "to", + "wards" + ], + [ + "i", + "ble" + ], + [ + "issu", + "es" + ], + [ + "m", + "id" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "oc", + "cur" + ], + [ + "pol", + "i" + ], + [ + "Ġ", + "$" + ], + [ + "M", + "e" + ], + [ + "individ", + "ual" + ], + [ + "por", + "ts" + ], + [ + "s", + "al" + ], + [ + "re", + "ce" + ], + [ + "ne", + "y" + ], + [ + "po", + "ints" + ], + [ + "id", + "ence" + ], + [ + "op", + "portun" + ], + [ + "ris", + "k" + ], + [ + "L", + "i" + ], + [ + "B", + "r" + ], + [ + "are", + "as" + ], + [ + "Uni", + "versity" + ], + [ + "D", + "es" + ], + [ + "n", + "one" + ], + [ + "w", + "on" + ], + [ + "st", + "y" + ], + [ + "sp", + "ir" + ], + [ + "au", + "thor" + ], + [ + "we", + "e" + ], + [ + "l", + "a" + ], + [ + "ch", + "es" + ], + [ + "am", + "ple" + ], + [ + "čĊ", + "čĊ" + ], + [ + "m", + "ill" + ], + [ + "Ġ<", + "Ġ" + ], + [ + "di", + "tions" + ], + [ + "l", + "iter" + ], + [ + "âĢĻ", + "Ġ" + ], + [ + "in", + "a" + ], + [ + "pat", + "tern" + ], + [ + "f", + "ree" + ], + [ + "ev", + "ent" + ], + [ + "bre", + "ak" + ], + [ + "s", + "ay" + ], + [ + "Wh", + "ile" + ], + [ + ".", + "\"" + ], + [ + "se", + "em" + ], + [ + "P", + "ar" + ], + [ + "know", + "ledge" + ], + [ + "ati", + "ves" + ], + [ + "inst", + "ance" + ], + [ + "cl", + "es" + ], + [ + "p", + "an" + ], + [ + "R", + "es" + ], + [ + "inte", + "ger" + ], + [ + "al", + "ways" + ], + [ + "avail", + "able" + ], + [ + "Un", + "ited" + ], + [ + "con", + "cer" + ], + [ + "pol", + "ic" + ], + [ + "w", + "a" + ], + [ + "w", + "er" + ], + [ + "{", + "}" + ], + [ + "y", + "oun" + ], + [ + "pi", + "ec" + ], + [ + "need", + "s" + ], + [ + "ple", + "ment" + ], + [ + "sim", + "ilar" + ], + [ + "coun", + "try" + ], + [ + "f", + "our" + ], + [ + "educ", + "ation" + ], + [ + "il", + "i" + ], + [ + "challeng", + "es" + ], + [ + "j", + "or" + ], + [ + "Af", + "ter" + ], + [ + "gin", + "e" + ], + [ + "b", + "ig" + ], + [ + "as", + "c" + ], + [ + "Ñ", + "Ĥ" + ], + [ + "est", + "abl" + ], + [ + "m", + "ap" + ], + [ + "##", + "#Ġ" + ], + [ + "wr", + "it" + ], + [ + "grow", + "th" + ], + [ + "f", + "low" + ], + [ + "S", + "y" + ], + [ + "po", + "se" + ], + [ + "govern", + "ment" + ], + [ + "Th", + "rough" + ], + [ + "vi", + "ties" + ], + [ + "en", + "sion" + ], + [ + "mar", + "k" + ], + [ + "through", + "out" + ], + [ + "h", + "ard" + ], + [ + "Ġ", + "+" + ], + [ + "ter", + "min" + ], + [ + "s", + "pl" + ], + [ + "n", + "u" + ], + [ + "read", + "y" + ], + [ + "d", + "y" + ], + [ + "C", + "O" + ], + [ + "one", + "y" + ], + [ + "D", + "is" + ], + [ + "me", + "t" + ], + [ + "an", + "e" + ], + [ + "b", + "ar" + ], + [ + "ag", + "ed" + ], + [ + "at", + "ic" + ], + [ + "struct", + "ure" + ], + [ + "help", + "s" + ], + [ + "U", + "S" + ], + [ + "id", + "ent" + ], + [ + "ele", + "ments" + ], + [ + "re", + "ach" + ], + [ + "chang", + "es" + ], + [ + "E", + "uro" + ], + [ + "Ġ", + ":Ġ" + ], + [ + "Ġ", + ",Ġ" + ], + [ + "P", + "h" + ], + [ + "si", + "b" + ], + [ + "fo", + "cus" + ], + [ + "t", + "ell" + ], + [ + "Ex", + "pression" + ], + [ + "m", + "or" + ], + [ + "ef", + "fic" + ], + [ + "en", + "sure" + ], + [ + "lin", + "es" + ], + [ + "tar", + "get" + ], + [ + "n", + "al" + ], + [ + "v", + "ation" + ], + [ + "p", + "ast" + ], + [ + "]", + ",Ġ" + ], + [ + "cr", + "u" + ], + [ + "p", + "ed" + ], + [ + "moder", + "n" + ], + [ + "and", + "s" + ], + [ + "P", + "e" + ], + [ + "Chr", + "ist" + ], + [ + "cent", + "ury" + ], + [ + "k", + "ind" + ], + [ + "h", + "ouse" + ], + [ + "w", + "ind" + ], + [ + "comp", + "u" + ], + [ + "mus", + "ic" + ], + [ + "proble", + "ms" + ], + [ + "f", + "ar" + ], + [ + "Ð", + "½" + ], + [ + "con", + "ditions" + ], + [ + "proble", + "m" + ], + [ + "|", + "Ġ" + ], + [ + "our", + "s" + ], + [ + "pre", + "ci" + ], + [ + "S", + "he" + ], + [ + "M", + "ed" + ], + [ + "glo", + "bal" + ], + [ + "l", + "er" + ], + [ + "o", + "king" + ], + [ + "ha", + "ving" + ], + [ + "l", + "ater" + ], + [ + "I", + "D" + ], + [ + "li", + "ves" + ], + [ + "h", + "or" + ], + [ + "build", + "ing" + ], + [ + "`", + "Ġ" + ], + [ + "ques", + "tions" + ], + [ + "In", + "di" + ], + [ + "un", + "it" + ], + [ + "M", + "ar" + ], + [ + "tr", + "ies" + ], + [ + "dise", + "ase" + ], + [ + "re", + "cogn" + ], + [ + "fri", + "end" + ], + [ + "V", + "al" + ], + [ + "coun", + "ter" + ], + [ + "a", + "king" + ], + [ + "fact", + "ors" + ], + [ + "ph", + "o" + ], + [ + "dis", + "cover" + ], + [ + "out", + "put" + ], + [ + "o", + "x" + ], + [ + "level", + "s" + ], + [ + "j", + "oy" + ], + [ + "num", + "bers" + ], + [ + "environ", + "ment" + ], + [ + "val", + "id" + ], + [ + "s", + "ound" + ], + [ + "te", + "am" + ], + [ + "some", + "one" + ], + [ + "aw", + "ay" + ], + [ + "Ġ", + "[" + ], + [ + "ac", + "tive" + ], + [ + "st", + "re" + ], + [ + "Int", + "roduction" + ], + [ + "col", + "um" + ], + [ + "c", + "ustom" + ], + [ + "bel", + "i" + ], + [ + "we", + "ight" + ], + [ + "in", + "king" + ], + [ + "c", + "ity" + ], + [ + ".Ġ", + "(" + ], + [ + "cul", + "tural" + ], + [ + "v", + "il" + ], + [ + "play", + "er" + ], + [ + "in", + "ed" + ], + [ + "al", + "i" + ], + [ + "m", + "it" + ], + [ + "experi", + "ences" + ], + [ + "S", + "T" + ], + [ + "Ġ", + ">Ġ" + ], + [ + "Euro", + "pe" + ], + [ + "h", + "ip" + ], + [ + "T", + "e" + ], + [ + "co", + "st" + ], + [ + "**", + "**" + ], + [ + "id", + "es" + ], + [ + "E", + "ar" + ], + [ + "ri", + "x" + ], + [ + "i", + "ally" + ], + [ + "g", + "es" + ], + [ + "grou", + "ps" + ], + [ + "fr", + "ic" + ], + [ + "em", + "ber" + ], + [ + "re", + "fer" + ], + [ + "techni", + "ques" + ], + [ + "w", + "w" + ], + [ + "b", + "on" + ], + [ + "spec", + "ies" + ], + [ + "Wor", + "ld" + ], + [ + "f", + "urther" + ], + [ + "c", + "ause" + ], + [ + "N", + "A" + ], + [ + "ful", + "l" + ], + [ + "Ã", + "Ĺ" + ], + [ + "contin", + "u" + ], + [ + "R", + "o" + ], + [ + "pr", + "in" + ], + [ + "end", + "er" + ], + [ + "ec", + "tions" + ], + [ + "blo", + "od" + ], + [ + "p", + "en" + ], + [ + "ma", + "kes" + ], + [ + "b", + "an" + ], + [ + "E", + "r" + ], + [ + "em", + "er" + ], + [ + "d", + "ays" + ], + [ + "li", + "k" + ], + [ + "Im", + "agine" + ], + [ + "t", + "able" + ], + [ + "pre", + "h" + ], + [ + "pos", + "ed" + ], + [ + "ma", + "jor" + ], + [ + "an", + "ced" + ], + [ + "er", + "o" + ], + [ + "practi", + "ce" + ], + [ + "str", + "ateg" + ], + [ + "u", + "tions" + ], + [ + "am", + "ount" + ], + [ + "M", + "an" + ], + [ + "vi", + "ous" + ], + [ + "pro", + "ject" + ], + [ + "tool", + "s" + ], + [ + "allow", + "s" + ], + [ + "'", + "re" + ], + [ + "ar", + "ies" + ], + [ + "cre", + "ating" + ], + [ + "parti", + "cip" + ], + [ + "lab", + "el" + ], + [ + "commun", + "ities" + ], + [ + ",", + "âĢĿĠ" + ], + [ + "h", + "ab" + ], + [ + "prof", + "ession" + ], + [ + "St", + "ates" + ], + [ + "acti", + "vities" + ], + [ + "sh", + "are" + ], + [ + "A", + "R" + ], + [ + "Y", + "our" + ], + [ + "go", + "ing" + ], + [ + "med", + "i" + ], + [ + "su", + "gg" + ], + [ + "sci", + "ence" + ], + [ + "sh", + "ort" + ], + [ + "mater", + "ials" + ], + [ + "whe", + "ther" + ], + [ + "gr", + "ad" + ], + [ + "anal", + "y" + ], + [ + "contin", + "ue" + ], + [ + "st", + "ories" + ], + [ + "rel", + "ig" + ], + [ + "]", + "[" + ], + [ + "treat", + "ment" + ], + [ + "ob", + "ject" + ], + [ + "ev", + "ents" + ], + [ + "o", + "id" + ], + [ + "s", + "ent" + ], + [ + "cell", + "s" + ], + [ + "spl", + "it" + ], + [ + "Ã", + "©" + ], + [ + "on", + "line" + ], + [ + "ic", + "ate" + ], + [ + "phys", + "ical" + ], + [ + "lit", + "tle" + ], + [ + "youn", + "g" + ], + [ + "s", + "of" + ], + [ + "reg", + "ard" + ], + [ + "cent", + "r" + ], + [ + "s", + "qu" + ], + [ + "gi", + "ve" + ], + [ + "ent", + "al" + ], + [ + "er", + "y" + ], + [ + "er", + "c" + ], + [ + "S", + "tr" + ], + [ + "p", + "ay" + ], + [ + "Under", + "standing" + ], + [ + "G", + "od" + ], + [ + "R", + "ec" + ], + [ + "item", + "s" + ], + [ + "M", + "ay" + ], + [ + "every", + "one" + ], + [ + "In", + "ter" + ], + [ + "Con", + "clusion" + ], + [ + "ar", + "gu" + ], + [ + "C", + "re" + ], + [ + "requ", + "ire" + ], + [ + "tem", + "per" + ], + [ + "N", + "e" + ], + [ + "cl", + "im" + ], + [ + "in", + "ing" + ], + [ + "li", + "ving" + ], + [ + "method", + "s" + ], + [ + "associ", + "ated" + ], + [ + "om", + "an" + ], + [ + "cor", + "por" + ], + [ + "Al", + "l" + ], + [ + "tem", + "p" + ], + [ + "com", + "ing" + ], + [ + "en", + "ing" + ], + [ + "cri", + "tical" + ], + [ + "f", + "y" + ], + [ + "sit", + "u" + ], + [ + "n", + "ature" + ], + [ + "P", + "o" + ], + [ + ":**", + "Ġ" + ], + [ + "Jo", + "h" + ], + [ + "ques", + "tion" + ], + [ + "F", + "alse" + ], + [ + "he", + "art" + ], + [ + "sh", + "ap" + ], + [ + "t", + "ree" + ], + [ + "h", + "al" + ], + [ + "comp", + "on" + ], + [ + "A", + "fric" + ], + [ + "ch", + "ed" + ], + [ + "mem", + "bers" + ], + [ + "i", + "o" + ], + [ + "pop", + "ular" + ], + [ + "pre", + "vent" + ], + [ + "P", + "ol" + ], + [ + "о", + "Ð" + ], + [ + "anal", + "ysis" + ], + [ + "fri", + "ends" + ], + [ + "M", + "ore" + ], + [ + "sim", + "ple" + ], + [ + "r", + "ich" + ], + [ + "cal", + "cul" + ], + [ + "on", + "ic" + ], + [ + "reg", + "ion" + ], + [ + "P", + "er" + ], + [ + "ab", + "ly" + ], + [ + "ist", + "ic" + ], + [ + "in", + "ser" + ], + [ + "en", + "e" + ], + [ + "ta", + "king" + ], + [ + "ith", + "er" + ], + [ + "bec", + "ame" + ], + [ + "mis", + "sion" + ], + [ + "read", + "ing" + ], + [ + "rel", + "ated" + ], + [ + "ad", + "dition" + ], + [ + "soci", + "ety" + ], + [ + "in", + "ary" + ], + [ + "de", + "tail" + ], + [ + "sing", + "le" + ], + [ + "ap", + "s" + ], + [ + "ac", + "ks" + ], + [ + "'", + "," + ], + [ + "tradi", + "tional" + ], + [ + "man", + "agement" + ], + [ + "u", + "g" + ], + [ + "en", + "ough" + ], + [ + "A", + "T" + ], + [ + "necess", + "ary" + ], + [ + "inte", + "gr" + ], + [ + "ass", + "ert" + ], + [ + "r", + "adi" + ], + [ + "por", + "ary" + ], + [ + "N", + "ational" + ], + [ + "f", + "all" + ], + [ + "com", + "preh" + ], + [ + "n", + "ed" + ], + [ + "br", + "ain" + ], + [ + "plan", + "ts" + ], + [ + "com", + "pe" + ], + [ + "i", + "ved" + ], + [ + "c", + "tive" + ], + [ + "ough", + "t" + ], + [ + "at", + "ten" + ], + [ + "st", + "ain" + ], + [ + "par", + "ts" + ], + [ + "W", + "ar" + ], + [ + "er", + "ing" + ], + [ + "p", + "ing" + ], + [ + "in", + "stru" + ], + [ + "dif", + "fic" + ], + [ + "]", + "Ġ=Ġ" + ], + [ + "i", + "k" + ], + [ + "H", + "ist" + ], + [ + "for", + "ce" + ], + [ + "m", + "ing" + ], + [ + "us", + "ually" + ], + [ + "ht", + "t" + ], + [ + "me", + "et" + ], + [ + "b", + "it" + ], + [ + "Ġ", + ";Ġ" + ], + [ + "wr", + "iting" + ], + [ + "de", + "m" + ], + [ + "cult", + "ure" + ], + [ + "r", + "ate" + ], + [ + "en", + "gine" + ], + [ + "in", + "no" + ], + [ + "Ñ", + "ģ" + ], + [ + "Ad", + "d" + ], + [ + "D", + "ata" + ], + [ + "serv", + "ices" + ], + [ + "fe", + "atures" + ], + [ + ".", + "âĢĿ" + ], + [ + "S", + "ci" + ], + [ + "i", + "res" + ], + [ + "p", + "aper" + ], + [ + "O", + "f" + ], + [ + "c", + "od" + ], + [ + "el", + "if" + ], + [ + "practic", + "es" + ], + [ + "d", + "im" + ], + [ + "C", + "ar" + ], + [ + "inst", + "ead" + ], + [ + "au", + "gh" + ], + [ + "l", + "s" + ], + [ + "ac", + "ts" + ], + [ + "G", + "er" + ], + [ + "ap", + "preci" + ], + [ + "de", + "ath" + ], + [ + "en", + "h" + ], + [ + "f", + "alse" + ], + [ + "Ñ", + "Ģ" + ], + [ + "m", + "oney" + ], + [ + "ect", + "ing" + ], + [ + "per", + "cent" + ], + [ + "re", + "cent" + ], + [ + "en", + "cour" + ], + [ + "w", + "in" + ], + [ + "s", + "ource" + ], + [ + "produ", + "ction" + ], + [ + "is", + "ed" + ], + [ + "D", + "ec" + ], + [ + "op", + "e" + ], + [ + "high", + "er" + ], + [ + "ren", + "g" + ], + [ + "g", + "ing" + ], + [ + "import", + "ance" + ], + [ + "produ", + "cts" + ], + [ + "le", + "x" + ], + [ + "f", + "requ" + ], + [ + "sy", + "ch" + ], + [ + "b", + "at" + ], + [ + "S", + "er" + ], + [ + "coun", + "tries" + ], + [ + "b", + "ot" + ], + [ + "ne", + "g" + ], + [ + "pho", + "to" + ], + [ + "ul", + "es" + ], + [ + "st", + "op" + ], + [ + "----------------", + "----------------" + ], + [ + "av", + "or" + ], + [ + "in", + "ating" + ], + [ + "G", + "u" + ], + [ + "less", + "on" + ], + [ + "fr", + "ame" + ], + [ + "mean", + "ing" + ], + [ + "histor", + "ical" + ], + [ + "com", + "bin" + ], + [ + "mat", + "rix" + ], + [ + "s", + "le" + ], + [ + "Ġ+", + "=Ġ" + ], + [ + "D", + "o" + ], + [ + ")", + ":Ġ" + ], + [ + "w", + "ide" + ], + [ + ":", + "//" + ], + [ + "re", + "member" + ], + [ + "in", + "side" + ], + [ + "is", + "es" + ], + [ + "\"", + "," + ], + [ + "se", + "ction" + ], + [ + "f", + "it" + ], + [ + "train", + "ing" + ], + [ + "tra", + "vel" + ], + [ + "valu", + "able" + ], + [ + "C", + "oun" + ], + [ + "al", + "ing" + ], + [ + "su", + "f" + ], + [ + "ou", + "ts" + ], + [ + "d", + "ed" + ], + [ + "ans", + "wer" + ], + [ + "poli", + "tical" + ], + [ + "min", + "im" + ], + [ + "F", + "in" + ], + [ + "st", + "ore" + ], + [ + "Ġ", + "!" + ], + [ + "B", + "l" + ], + [ + "P", + "re" + ], + [ + "respon", + "se" + ], + [ + "cre", + "ated" + ], + [ + "some", + "times" + ], + [ + "expl", + "ain" + ], + [ + "n", + "a" + ], + [ + "es", + "pec" + ], + [ + "need", + "ed" + ], + [ + "at", + "ory" + ], + [ + "Ch", + "apter" + ], + [ + "them", + "selves" + ], + [ + "f", + "ish" + ], + [ + "meas", + "ure" + ], + [ + "step", + "s" + ], + [ + "is", + "ing" + ], + [ + "cru", + "cial" + ], + [ + "c", + "up" + ], + [ + "č", + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "__", + "__" + ], + [ + "pro", + "b" + ], + [ + "comp", + "any" + ], + [ + "mp", + "to" + ], + [ + "though", + "t" + ], + [ + "bo", + "oks" + ], + [ + "trans", + "form" + ], + [ + "posi", + "tive" + ], + [ + "do", + "cu" + ], + [ + "F", + "irst" + ], + [ + "espec", + "ially" + ], + [ + "ex", + "cept" + ], + [ + "to", + "w" + ], + [ + "multi", + "ple" + ], + [ + "S", + "im" + ], + [ + "benef", + "its" + ], + [ + "cont", + "ent" + ], + [ + "mb", + "ol" + ], + [ + "pop", + "ulation" + ], + [ + "u", + "le" + ], + [ + "ĠâĢ", + "ĺ" + ], + [ + "i", + "ans" + ], + [ + "produ", + "ct" + ], + [ + "ul", + "ations" + ], + [ + "T", + "op" + ], + [ + "c", + "ases" + ], + [ + "expl", + "oring" + ], + [ + "li", + "ve" + ], + [ + "O", + "R" + ], + [ + "j", + "ob" + ], + [ + "c", + "ut" + ], + [ + "incre", + "ase" + ], + [ + "ti", + "v" + ], + [ + "ex", + "c" + ], + [ + "p", + "ite" + ], + [ + "di", + "ag" + ], + [ + "g", + "ar" + ], + [ + "s", + "un" + ], + [ + "on", + "ce" + ], + [ + "qu", + "ick" + ], + [ + "o", + "graph" + ], + [ + "eff", + "ects" + ], + [ + "ra", + "ther" + ], + [ + "Ġ", + ":" + ], + [ + "s", + "core" + ], + [ + "econom", + "ic" + ], + [ + "de", + "e" + ], + [ + "st", + "reng" + ], + [ + "provid", + "es" + ], + [ + "w", + "al" + ], + [ + "cont", + "ext" + ], + [ + "su", + "per" + ], + [ + "bo", + "x" + ], + [ + "G", + "e" + ], + [ + "s", + "es" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "lo", + "ve" + ], + [ + "inv", + "est" + ], + [ + "ap", + "ply" + ], + [ + "Fr", + "om" + ], + [ + "u", + "bl" + ], + [ + "prin", + "ci" + ], + [ + "se", + "lect" + ], + [ + "c", + "at" + ], + [ + "``", + "`" + ], + [ + "il", + "t" + ], + [ + "a", + "ver" + ], + [ + "de", + "ep" + ], + [ + "gu", + "id" + ], + [ + "lik", + "ely" + ], + [ + "cle", + "an" + ], + [ + "i", + "ver" + ], + [ + "eff", + "ective" + ], + [ + "am", + "ples" + ], + [ + "redu", + "ce" + ], + [ + "c", + "s" + ], + [ + "No", + "de" + ], + [ + "commun", + "ication" + ], + [ + "con", + "ver" + ], + [ + "cons", + "ist" + ], + [ + "T", + "y" + ], + [ + "en", + "joy" + ], + [ + "reg", + "ular" + ], + [ + "p", + "ha" + ], + [ + "compu", + "ter" + ], + [ + "N", + "um" + ], + [ + "en", + "sive" + ], + [ + "de", + "t" + ], + [ + "invol", + "ves" + ], + [ + "b", + "ase" + ], + [ + ".", + "\"Ġ" + ], + [ + "E", + "S" + ], + [ + "your", + "self" + ], + [ + "ne", + "ver" + ], + [ + "du", + "ct" + ], + [ + "F", + "e" + ], + [ + "m", + "ach" + ], + [ + "Er", + "ror" + ], + [ + "ig", + "r" + ], + [ + "r", + "ights" + ], + [ + "con", + "cept" + ], + [ + "En", + "gl" + ], + [ + "g", + "ed" + ], + [ + "d", + "le" + ], + [ + "saf", + "e" + ], + [ + "s", + "mo" + ], + [ + "num", + "er" + ], + [ + "ch", + "an" + ], + [ + "im", + "plement" + ], + [ + "sur", + "round" + ], + [ + "nor", + "mal" + ], + [ + "of", + "fic" + ], + [ + "en", + "ed" + ], + [ + "st", + "e" + ], + [ + "L", + "ess" + ], + [ + "acti", + "vity" + ], + [ + "med", + "ical" + ], + [ + "ab", + "ove" + ], + [ + "s", + "cre" + ], + [ + "r", + "it" + ], + [ + "de", + "mon" + ], + [ + "su", + "stain" + ], + [ + "Engl", + "ish" + ], + [ + "ac", + "cording" + ], + [ + "cor", + "rect" + ], + [ + "pro", + "g" + ], + [ + "opportun", + "ities" + ], + [ + "c", + "arr" + ], + [ + "anim", + "als" + ], + [ + "av", + "ing" + ], + [ + "ac", + "cur" + ], + [ + "h", + "ind" + ], + [ + "O", + "ver" + ], + [ + "y", + "et" + ], + [ + "stu", + "dies" + ], + [ + "incre", + "asing" + ], + [ + "se", + "en" + ], + [ + "ti", + "s" + ], + [ + "fo", + "ot" + ], + [ + "gen", + "e" + ], + [ + "perform", + "ance" + ], + [ + "environ", + "mental" + ], + [ + "med", + "ia" + ], + [ + "lin", + "k" + ], + [ + "py", + "thon" + ], + [ + "health", + "y" + ], + [ + "mater", + "ial" + ], + [ + "S", + "p" + ], + [ + "se", + "x" + ], + [ + "strateg", + "ies" + ], + [ + "cent", + "er" + ], + [ + "..", + ".Ġ" + ], + [ + "n", + "ers" + ], + [ + "ad", + "ap" + ], + [ + "lead", + "ing" + ], + [ + "E", + "N" + ], + [ + "R", + "ese" + ], + [ + "how", + "ever" + ], + [ + "if", + "ied" + ], + [ + "fer", + "ences" + ], + [ + "re", + "li" + ], + [ + "iz", + "ations" + ], + [ + "M", + "o" + ], + [ + "Rese", + "arch" + ], + [ + "str", + "ate" + ], + [ + "s", + "at" + ], + [ + "sy", + "n" + ], + [ + "o", + "ts" + ], + [ + "cep", + "ts" + ], + [ + "u", + "ary" + ], + [ + "behavi", + "or" + ], + [ + "f", + "asc" + ], + [ + "stud", + "ent" + ], + [ + "__", + "Ġ" + ], + [ + "over", + "all" + ], + [ + "ob", + "j" + ], + [ + "ex", + "erc" + ], + [ + "ven", + "tion" + ], + [ + "ab", + "ilities" + ], + [ + "he", + "ight" + ], + [ + "sur", + "face" + ], + [ + "'", + "ll" + ], + [ + "pati", + "ents" + ], + [ + "st", + "ates" + ], + [ + "br", + "ing" + ], + [ + "le", + "y" + ], + [ + "H", + "ere" + ], + [ + "di", + "stri" + ], + [ + "ed", + "s" + ], + [ + "aw", + "are" + ], + [ + "wh", + "ite" + ], + [ + "mess", + "age" + ], + [ + "ail", + "y" + ], + [ + "R", + "em" + ], + [ + "x", + "t" + ], + [ + "ast", + "e" + ], + [ + "ele", + "ment" + ], + [ + "He", + "alth" + ], + [ + "m", + "om" + ], + [ + "res", + "h" + ], + [ + "P", + "y" + ], + [ + "Wh", + "y" + ], + [ + "ti", + "g" + ], + [ + "a", + "e" + ], + [ + "en", + "se" + ], + [ + "ut", + "es" + ], + [ + "cl", + "aim" + ], + [ + "(", + "):" + ], + [ + "A", + "N" + ], + [ + "pl", + "t" + ], + [ + "M", + "od" + ], + [ + "fr", + "u" + ], + [ + "fo", + "ster" + ], + [ + "b", + "ound" + ], + [ + "is", + "on" + ], + [ + "comp", + "an" + ], + [ + "de", + "termin" + ], + [ + "exp", + "ected" + ], + [ + "design", + "ed" + ], + [ + "tic", + "le" + ], + [ + "On", + "ce" + ], + [ + "ti", + "tle" + ], + [ + "pre", + "vious" + ], + [ + "av", + "ig" + ], + [ + "di", + "verse" + ], + [ + "a", + "i" + ], + [ + "ist", + "ics" + ], + [ + "ĠâĢ", + "Ķ" + ], + [ + "sle", + "ep" + ], + [ + "ac", + "ters" + ], + [ + "cont", + "em" + ], + [ + "St", + "ate" + ], + [ + "in", + "tr" + ], + [ + "atten", + "tion" + ], + [ + "pattern", + "s" + ], + [ + "d", + "one" + ], + [ + "S", + "ub" + ], + [ + "au", + "ti" + ], + [ + "ev", + "idence" + ], + [ + "M", + "y" + ], + [ + "A", + "m" + ], + [ + "J", + "ust" + ], + [ + "ev", + "ed" + ], + [ + "st", + "ress" + ], + [ + "fin", + "an" + ], + [ + "it", + "ch" + ], + [ + "sy", + "mbol" + ], + [ + "op", + "tim" + ], + [ + "ch", + "ol" + ], + [ + "re", + "cord" + ], + [ + "E", + "m" + ], + [ + "f", + "ail" + ], + [ + "can", + "cer" + ], + [ + "requ", + "ired" + ], + [ + "ist", + "ance" + ], + [ + "ro", + "ad" + ], + [ + "y", + "ond" + ], + [ + "z", + "ing" + ], + [ + "orig", + "inal" + ], + [ + "p", + "air" + ], + [ + "sy", + "mpto" + ], + [ + "au", + "di" + ], + [ + "ide", + "a" + ], + [ + "\"", + ",Ġ\"" + ], + [ + "f", + "re" + ], + [ + "ad", + "a" + ], + [ + "St", + "ud" + ], + [ + "se", + "ts" + ], + [ + "appe", + "ar" + ], + [ + "al", + "ready" + ], + [ + "au", + "to" + ], + [ + "be", + "gan" + ], + [ + "I", + "S" + ], + [ + "cho", + "ice" + ], + [ + "ser", + "ve" + ], + [ + "if", + "t" + ], + [ + "ecti", + "vely" + ], + [ + "ag", + "o" + ], + [ + "ch", + "r" + ], + [ + "le", + "ast" + ], + [ + "O", + "N" + ], + [ + "s", + "ays" + ], + [ + "ser", + "ies" + ], + [ + "S", + "outh" + ], + [ + ".Ġ", + "\"" + ], + [ + "M", + "any" + ], + [ + "c", + "ame" + ], + [ + "int", + "rodu" + ], + [ + "in", + "c" + ], + [ + "se", + "par" + ], + [ + "e", + "ts" + ], + [ + "Con", + "t" + ], + [ + "incre", + "ased" + ], + [ + "d", + "a" + ], + [ + "enti", + "re" + ], + [ + "dic", + "tion" + ], + [ + "o", + "il" + ], + [ + "for", + "ts" + ], + [ + "jour", + "ney" + ], + [ + "pres", + "s" + ], + [ + "oc", + "k" + ], + [ + "l", + "at" + ], + [ + "di", + "re" + ], + [ + "N", + "ot" + ], + [ + "ir", + "d" + ], + [ + "fin", + "al" + ], + [ + ".", + "_" + ], + [ + "ti", + "li" + ], + [ + "ul", + "y" + ], + [ + "H", + "is" + ], + [ + "fi", + "ve" + ], + [ + "gre", + "en" + ], + [ + "C", + "he" + ], + [ + "jo", + "in" + ], + [ + "Re", + "g" + ], + [ + "re", + "view" + ], + [ + "gr", + "id" + ], + [ + "un", + "e" + ], + [ + "ist", + "er" + ], + [ + "st", + "ay" + ], + [ + "serv", + "ice" + ], + [ + "H", + "ave" + ], + [ + "con", + "dition" + ], + [ + "p", + "end" + ], + [ + "th", + "inking" + ], + [ + "bl", + "ack" + ], + [ + "ĠâĢĶ", + "Ġ" + ], + [ + "av", + "oid" + ], + [ + "fe", + "ed" + ], + [ + "start", + "ing" + ], + [ + "e", + "ither" + ], + [ + "pers", + "pec" + ], + [ + "gener", + "al" + ], + [ + "Joh", + "n" + ], + [ + "ot", + "ing" + ], + [ + "h", + "om" + ], + [ + "ac", + "es" + ], + [ + "start", + "ed" + ], + [ + "d", + "est" + ], + [ + "G", + "o" + ], + [ + "mar", + "ket" + ], + [ + "research", + "ers" + ], + [ + "w", + "ood" + ], + [ + "##", + "Ġ" + ], + [ + "c", + "ast" + ], + [ + "be", + "hind" + ], + [ + "it", + "ation" + ], + [ + "'", + ":Ġ" + ], + [ + "ac", + "count" + ], + [ + "p", + "age" + ], + [ + "g", + "est" + ], + [ + "B", + "ri" + ], + [ + "bal", + "ance" + ], + [ + "ch", + "apter" + ], + [ + "col", + "labor" + ], + [ + "ma", + "th" + ], + [ + "relationship", + "s" + ], + [ + "p", + "on" + ], + [ + "ta", + "kes" + ], + [ + "ho", + "od" + ], + [ + "ap", + "y" + ], + [ + "af", + "t" + ], + [ + "wee", + "k" + ], + [ + "re", + "ason" + ], + [ + "to", + "ok" + ], + [ + "pres", + "sure" + ], + [ + "L", + "o" + ], + [ + "invol", + "ved" + ], + [ + "=", + "'" + ], + [ + "plic", + "ation" + ], + [ + "S", + "ec" + ], + [ + "dis", + "play" + ], + [ + "Less", + "on" + ], + [ + "olog", + "ies" + ], + [ + "a", + "ves" + ], + [ + "b", + "es" + ], + [ + "learn", + "ed" + ], + [ + "ci", + "es" + ], + [ + "C", + "our" + ], + [ + "clim", + "ate" + ], + [ + "equ", + "ip" + ], + [ + "pre", + "t" + ], + [ + "**", + ":Ġ" + ], + [ + "al", + "g" + ], + [ + "ci", + "ent" + ], + [ + "st", + "or" + ], + [ + "ta", + "ken" + ], + [ + "W", + "ell" + ], + [ + "hal", + "f" + ], + [ + "asp", + "ects" + ], + [ + "char", + "acters" + ], + [ + "dist", + "ance" + ], + [ + "ass", + "ess" + ], + [ + "Ġ!", + "=Ġ" + ], + [ + "an", + "a" + ], + [ + "min", + "i" + ], + [ + "ta", + "x" + ], + [ + "re", + "move" + ], + [ + "or", + "g" + ], + [ + "bro", + "ad" + ], + [ + "vis", + "ual" + ], + [ + "h", + "ours" + ], + [ + "nam", + "es" + ], + [ + "wid", + "th" + ], + [ + "sen", + "se" + ], + [ + "M", + "in" + ], + [ + "ti", + "sh" + ], + [ + "ide", + "as" + ], + [ + "equ", + "al" + ], + [ + "es", + "tim" + ], + [ + "re", + "ally" + ], + [ + "st", + "ar" + ], + [ + "resp", + "ond" + ], + [ + "ed", + "er" + ], + [ + "nu", + "tri" + ], + [ + "med", + "ic" + ], + [ + "ĠĠĠĠ", + "Ġ" + ], + [ + "if", + "y" + ], + [ + "mill", + "ion" + ], + [ + "ach", + "ieve" + ], + [ + "s", + "ources" + ], + [ + "A", + "b" + ], + [ + "ly", + "ing" + ], + [ + "comm", + "it" + ], + [ + "=", + "\"" + ], + [ + "str", + "ict" + ], + [ + "__", + "(" + ], + [ + "lo", + "op" + ], + [ + "L", + "E" + ], + [ + "al", + "tern" + ], + [ + "se", + "cur" + ], + [ + "dig", + "ital" + ], + [ + "ä", + "¸" + ], + [ + "Ear", + "th" + ], + [ + "f", + "a" + ], + [ + "mon", + "th" + ], + [ + "polic", + "y" + ], + [ + "u", + "el" + ], + [ + "paren", + "ts" + ], + [ + "who", + "le" + ], + [ + "initi", + "al" + ], + [ + "ter", + "ms" + ], + [ + ":Ġ", + "\"" + ], + [ + "P", + "res" + ], + [ + "ad", + "es" + ], + [ + "Americ", + "a" + ], + [ + "writ", + "ten" + ], + [ + "in", + "corpor" + ], + [ + "ef", + "forts" + ], + [ + "d", + "aily" + ], + [ + "Nor", + "th" + ], + [ + "particular", + "ly" + ], + [ + "en", + "ced" + ], + [ + "cep", + "tion" + ], + [ + "ur", + "ch" + ], + [ + "loc", + "ation" + ], + [ + "con", + "tr" + ], + [ + "Ġ", + "{" + ], + [ + "bel", + "ow" + ], + [ + "mat", + "ter" + ], + [ + "l", + "ate" + ], + [ + "Ġ", + ".Ġ" + ], + [ + "leg", + "al" + ], + [ + "im", + "ages" + ], + [ + "flo", + "at" + ], + [ + "p", + "sych" + ], + [ + "bu", + "ilt" + ], + [ + "per", + "f" + ], + [ + "ves", + "tig" + ], + [ + "Ġ", + "%Ġ" + ], + [ + "ti", + "vity" + ], + [ + "ne", + "igh" + ], + [ + "T", + "od" + ], + [ + "th", + "us" + ], + [ + "decis", + "ion" + ], + [ + "c", + "ross" + ], + [ + "in", + "j" + ], + [ + "land", + "s" + ], + [ + "nam", + "ed" + ], + [ + "le", + "ction" + ], + [ + "ak", + "es" + ], + [ + "qu", + "al" + ], + [ + "ra", + "ise" + ], + [ + "en", + "ous" + ], + [ + "M", + "on" + ], + [ + "do", + "ing" + ], + [ + "colum", + "n" + ], + [ + "indu", + "stry" + ], + [ + "t", + "ex" + ], + [ + "'", + ":" + ], + [ + "C", + "or" + ], + [ + "exper", + "im" + ], + [ + "k", + "er" + ], + [ + "O", + "ur" + ], + [ + "ther", + "n" + ], + [ + "H", + "er" + ], + [ + "cr", + "im" + ], + [ + "bor", + "n" + ], + [ + "develop", + "ed" + ], + [ + "saf", + "ety" + ], + [ + "pr", + "ice" + ], + [ + "gre", + "ater" + ], + [ + "er", + "ror" + ], + [ + "fasc", + "inating" + ], + [ + "provid", + "ed" + ], + [ + "ang", + "er" + ], + [ + "produ", + "ce" + ], + [ + "process", + "es" + ], + [ + "sympto", + "ms" + ], + [ + "########", + "########" + ], + [ + "di", + "tional" + ], + [ + "r", + "ain" + ], + [ + "appro", + "pri" + ], + [ + "be", + "yond" + ], + [ + "ast", + "ic" + ], + [ + "se", + "ason" + ], + [ + "oper", + "ation" + ], + [ + "pro", + "te" + ], + [ + "S", + "E" + ], + [ + "me", + "chan" + ], + [ + "pl", + "ied" + ], + [ + "A", + "C" + ], + [ + "r", + "out" + ], + [ + "pres", + "er" + ], + [ + "p", + "ack" + ], + [ + "chem", + "ical" + ], + [ + "ser", + "ved" + ], + [ + "it", + "ary" + ], + [ + "ch", + "e" + ], + [ + "fi", + "x" + ], + [ + "er", + "a" + ], + [ + "s", + "ave" + ], + [ + "won", + "der" + ], + [ + "ex", + "act" + ], + [ + "cr", + "y" + ], + [ + "power", + "ful" + ], + [ + "con", + "sum" + ], + [ + "R", + "E" + ], + [ + "sol", + "ution" + ], + [ + "set", + "t" + ], + [ + "ge", + "ts" + ], + [ + "compon", + "ents" + ], + [ + "p", + "ict" + ], + [ + "contem", + "porary" + ], + [ + "re", + "t" + ], + [ + "ex", + "ec" + ], + [ + "ar", + "g" + ], + [ + "provid", + "ing" + ], + [ + "Q", + "u" + ], + [ + "vi", + "a" + ], + [ + "st", + "ic" + ], + [ + "Ad", + "dition" + ], + [ + "lead", + "ers" + ], + [ + "s", + "il" + ], + [ + "Ġ", + "â" + ], + [ + "ang", + "le" + ], + [ + "s", + "ite" + ], + [ + "O", + "b" + ], + [ + "c", + "ateg" + ], + [ + "as", + "ks" + ], + [ + "contribut", + "e" + ], + [ + "b", + "ul" + ], + [ + "applic", + "ations" + ], + [ + "Top", + "ic" + ], + [ + "w", + "ise" + ], + [ + "pri", + "v" + ], + [ + "od", + "es" + ], + [ + "c", + "ard" + ], + [ + "princi", + "ples" + ], + [ + "Ch", + "ar" + ], + [ + "identi", + "fy" + ], + [ + "finan", + "cial" + ], + [ + "program", + "s" + ], + [ + "ell", + "ow" + ], + [ + "piec", + "e" + ], + [ + "Ġ=Ġ[", + "]" + ], + [ + "ap", + "an" + ], + [ + "al", + "y" + ], + [ + "bu", + "tion" + ], + [ + "sk", + "in" + ], + [ + "Tod", + "ay" + ], + [ + "act", + "ually" + ], + [ + "D", + "uring" + ], + [ + "f", + "em" + ], + [ + "s", + "pr" + ], + [ + "for", + "ward" + ], + [ + "con", + "clusion" + ], + [ + "exam", + "ples" + ], + [ + "he", + "at" + ], + [ + "we", + "b" + ], + [ + "prot", + "ect" + ], + [ + "mic", + "ro" + ], + [ + "i", + "eld" + ], + [ + "el", + "ds" + ], + [ + "pl", + "ays" + ], + [ + "or", + "k" + ], + [ + "s", + "ens" + ], + [ + "aver", + "age" + ], + [ + "vi", + "ol" + ], + [ + "co", + "ol" + ], + [ + "vis", + "it" + ], + [ + "rele", + "v" + ], + [ + "f", + "avor" + ], + [ + "let", + "ter" + ], + [ + "requ", + "ires" + ], + [ + "l", + "ot" + ], + [ + "se", + "c" + ], + [ + "n", + "avig" + ], + [ + "g", + "ender" + ], + [ + "n", + "ight" + ], + [ + "]", + "." + ], + [ + "conn", + "ections" + ], + [ + "f", + "ire" + ], + [ + "am", + "in" + ], + [ + "show", + "s" + ], + [ + "ins", + "ights" + ], + [ + "sty", + "le" + ], + [ + "consider", + "ed" + ], + [ + "re", + "m" + ], + [ + "sub", + "st" + ], + [ + "tr", + "an" + ], + [ + "comple", + "te" + ], + [ + "ì", + "Ŀ" + ], + [ + "*Ġ", + "**" + ], + [ + "con", + "stru" + ], + [ + "pl", + "at" + ], + [ + "it", + "self" + ], + [ + "bas", + "ic" + ], + [ + "hum", + "ans" + ], + [ + "ess", + "ay" + ], + [ + "net", + "work" + ], + [ + "Ð", + "²" + ], + [ + "en", + "n" + ], + [ + "de", + "b" + ], + [ + "h", + "i" + ], + [ + "eff", + "ect" + ], + [ + "spe", + "ed" + ], + [ + "(", + "[" + ], + [ + "so", + "il" + ], + [ + "move", + "ment" + ], + [ + "col", + "on" + ], + [ + "num", + "s" + ], + [ + "is", + "s" + ], + [ + "con", + "cepts" + ], + [ + "Ċ", + "ĠĠ" + ], + [ + "r", + "up" + ], + [ + "il", + "ies" + ], + [ + "re", + "comm" + ], + [ + "sh", + "ared" + ], + [ + "(", + ")Ġ" + ], + [ + "beli", + "ef" + ], + [ + "off", + "ers" + ], + [ + "con", + "duct" + ], + [ + "ob", + "jects" + ], + [ + "ous", + "ly" + ], + [ + "temper", + "ature" + ], + [ + "pre", + "p" + ], + [ + "every", + "thing" + ], + [ + "ar", + "ticle" + ], + [ + "dy", + "nam" + ], + [ + "Ð", + "»" + ], + [ + "Au", + "str" + ], + [ + "I", + "V" + ], + [ + "play", + "ers" + ], + [ + "R", + "et" + ], + [ + "K", + "ey" + ], + [ + "J", + "apan" + ], + [ + "I", + "T" + ], + [ + "ti", + "ves" + ], + [ + "a", + "ut" + ], + [ + "f", + "ast" + ], + [ + "Ġ<", + "=Ġ" + ], + [ + "comm", + "and" + ], + [ + "com", + "fort" + ], + [ + "n", + "arr" + ], + [ + "M", + "us" + ], + [ + "fe", + "ature" + ], + [ + "Addition", + "ally" + ], + [ + "grow", + "ing" + ], + [ + "ac", + "cept" + ], + [ + "ord", + "ers" + ], + [ + "outs", + "ide" + ], + [ + ".Ġ", + "âĢľ" + ], + [ + "G", + "ener" + ], + [ + "i", + "or" + ], + [ + "Rem", + "ember" + ], + [ + "eas", + "y" + ], + [ + "D", + "ef" + ], + [ + "co", + "ord" + ], + [ + "A", + "D" + ], + [ + "T", + "w" + ], + [ + "E", + "ach" + ], + [ + "S", + "c" + ], + [ + "m", + "igr" + ], + [ + "th", + "reat" + ], + [ + "can", + "not" + ], + [ + "A", + "L" + ], + [ + "ass", + "ign" + ], + [ + "resp", + "ect" + ], + [ + "el", + "come" + ], + [ + "no", + "vel" + ], + [ + "T", + "est" + ], + [ + "develop", + "ing" + ], + [ + "does", + "n" + ], + [ + "g", + "as" + ], + [ + "vide", + "o" + ], + [ + "he", + "av" + ], + [ + "S", + "u" + ], + [ + "plic", + "ations" + ], + [ + "con", + "fl" + ], + [ + "success", + "ful" + ], + [ + "mat", + "ch" + ], + [ + "]", + "," + ], + [ + "effic", + "ient" + ], + [ + "cho", + "ose" + ], + [ + "op", + "tions" + ], + [ + "f", + "air" + ], + [ + "en", + "ge" + ], + [ + "establ", + "ish" + ], + [ + "c", + "amp" + ], + [ + "ti", + "t" + ], + [ + "j", + "ud" + ], + [ + "be", + "comes" + ], + [ + "tw", + "are" + ], + [ + "Re", + "ad" + ], + [ + "si", + "x" + ], + [ + "di", + "ed" + ], + [ + "col", + "lect" + ], + [ + "Al", + "though" + ], + [ + "decis", + "ions" + ], + [ + "lo", + "oking" + ], + [ + "ind", + "ic" + ], + [ + "proper", + "ty" + ], + [ + "tern", + "al" + ], + [ + "ure", + "d" + ], + [ + "s", + "ort" + ], + [ + "thes", + "es" + ], + [ + "pres", + "ents" + ], + [ + "C", + "ur" + ], + [ + "''", + "'" + ], + [ + "stat", + "us" + ], + [ + "model", + "s" + ], + [ + "includ", + "es" + ], + [ + "B", + "u" + ], + [ + "r", + "ules" + ], + [ + "us", + "ers" + ], + [ + "school", + "s" + ], + [ + "diffic", + "ult" + ], + [ + "m", + "ut" + ], + [ + "S", + "chool" + ], + [ + "op", + "h" + ], + [ + "secur", + "ity" + ], + [ + "w", + "all" + ], + [ + "form", + "ation" + ], + [ + "b", + "lock" + ], + [ + "A", + "no" + ], + [ + "it", + "es" + ], + [ + ",Ġ", + "âĢľ" + ], + [ + "ac", + "ing" + ], + [ + "r", + "ap" + ], + [ + "an", + "cing" + ], + [ + "sur", + "vi" + ], + [ + "ou", + "d" + ], + [ + "ul", + "l" + ], + [ + "tal", + "k" + ], + [ + "pre", + "dict" + ], + [ + "U", + "se" + ], + [ + "bi", + "o" + ], + [ + "id", + "ed" + ], + [ + "G", + "re" + ], + [ + "En", + "ter" + ], + [ + "for", + "d" + ], + [ + "prim", + "ary" + ], + [ + "du", + "c" + ], + [ + "ific", + "ation" + ], + [ + "Bri", + "tish" + ], + [ + "ex", + "tra" + ], + [ + "go", + "als" + ], + [ + "back", + "ground" + ], + [ + "tow", + "n" + ], + [ + "ur", + "n" + ], + [ + "us", + "si" + ], + [ + "p", + "es" + ], + [ + "f", + "arm" + ], + [ + "mo", + "d" + ], + [ + "}", + "Ġ" + ], + [ + "s", + "ou" + ], + [ + ",Ġ", + "'" + ], + [ + "term", + "ine" + ], + [ + "d", + "at" + ], + [ + "mon", + "ths" + ], + [ + "in", + "sp" + ], + [ + "a", + "ult" + ], + [ + "m", + "ass" + ], + [ + "in", + "vestig" + ], + [ + "]", + ":" + ], + [ + "sim", + "ply" + ], + [ + "En", + "g" + ], + [ + "is", + "ms" + ], + [ + "i", + "um" + ], + [ + "Ġ", + ">" + ], + [ + "sugg", + "est" + ], + [ + "spir", + "it" + ], + [ + "li", + "br" + ], + [ + "conn", + "ected" + ], + [ + "docu", + "ment" + ], + [ + "im", + "al" + ], + [ + "struct", + "ures" + ], + [ + "com", + "put" + ], + [ + "E", + "d" + ], + [ + "Ġ", + "ÃĹ" + ], + [ + "publ", + "ished" + ], + [ + "ed", + "ge" + ], + [ + "cop", + "y" + ], + [ + "con", + "st" + ], + [ + "regard", + "ing" + ], + [ + "neg", + "ative" + ], + [ + "function", + "s" + ], + [ + "mi", + "x" + ], + [ + "ri", + "ed" + ], + [ + "re", + "mo" + ], + [ + "identi", + "ty" + ], + [ + "inde", + "pend" + ], + [ + "Y", + "ork" + ], + [ + "cs", + "v" + ], + [ + "influ", + "ence" + ], + [ + "ce", + "le" + ], + [ + "Ano", + "ther" + ], + [ + "diag", + "no" + ], + [ + "Te", + "chn" + ], + [ + "fr", + "ont" + ], + [ + "tr", + "action" + ], + [ + "sc", + "ale" + ], + [ + "r", + "an" + ], + [ + "respon", + "sible" + ], + [ + "ho", + "st" + ], + [ + "an", + "cient" + ], + [ + "s", + "ess" + ], + [ + "dam", + "age" + ], + [ + "ar", + "ily" + ], + [ + "t", + "or" + ], + [ + "fo", + "c" + ], + [ + "sc", + "ri" + ], + [ + "w", + "arm" + ], + [ + "re", + "ve" + ], + [ + "d", + "ro" + ], + [ + "wind", + "ow" + ], + [ + ".Ġ", + "**" + ], + [ + "tr", + "ust" + ], + [ + "ag", + "ree" + ], + [ + "electr", + "ic" + ], + [ + "sit", + "es" + ], + [ + "ubl", + "ic" + ], + [ + "F", + "urther" + ], + [ + "ĠÃĹ", + "Ġ" + ], + [ + "hel", + "d" + ], + [ + "allow", + "ing" + ], + [ + "go", + "al" + ], + [ + "is", + "n" + ], + [ + "ele", + "ct" + ], + [ + "am", + "a" + ], + [ + "d", + "ing" + ], + [ + "dee", + "per" + ], + [ + "adv", + "ant" + ], + [ + "un", + "g" + ], + [ + "inst", + "it" + ], + [ + "relig", + "ious" + ], + [ + "C", + "ent" + ], + [ + "stru", + "gg" + ], + [ + "remain", + "s" + ], + [ + "e", + "at" + ], + [ + "c", + "am" + ], + [ + "A", + "S" + ], + [ + "Ġ", + "." + ], + [ + "w", + "atch" + ], + [ + "Ac", + "cording" + ], + [ + "comp", + "ared" + ], + [ + "par", + "ame" + ], + [ + "differ", + "ence" + ], + [ + "T", + "ime" + ], + [ + "hab", + "it" + ], + [ + "F", + "l" + ], + [ + "Ġ", + "*" + ], + [ + "scienti", + "sts" + ], + [ + "I", + "C" + ], + [ + "z", + "z" + ], + [ + "organ", + "izations" + ], + [ + "es", + "tern" + ], + [ + "um", + "e" + ], + [ + "g", + "ames" + ], + [ + "t", + "es" + ], + [ + "m", + "as" + ], + [ + "f", + "at" + ], + [ + "s", + "low" + ], + [ + "compreh", + "ension" + ], + [ + "J", + "ew" + ], + [ + "it", + "or" + ], + [ + "d", + "ir" + ], + [ + "sc", + "en" + ], + [ + "In", + "st" + ], + [ + "r", + "ing" + ], + [ + "inter", + "national" + ], + [ + "S", + "et" + ], + [ + "plac", + "es" + ], + [ + "ke", + "ts" + ], + [ + "di", + "ve" + ], + [ + "h", + "arm" + ], + [ + "L", + "oc" + ], + [ + "fam", + "ilies" + ], + [ + "k", + "ill" + ], + [ + "evalu", + "ated" + ], + [ + "scienti", + "fic" + ], + [ + "sh", + "op" + ], + [ + "G", + "et" + ], + [ + "su", + "it" + ], + [ + "conf", + "ig" + ], + [ + "liter", + "ature" + ], + [ + "pati", + "ent" + ], + [ + "ar", + "gs" + ], + [ + "========", + "========" + ], + [ + "im", + "agine" + ], + [ + "ref", + "lect" + ], + [ + "fill", + "ed" + ], + [ + "add", + "ed" + ], + [ + "issu", + "e" + ], + [ + "N", + "ame" + ], + [ + "dev", + "ices" + ], + [ + "row", + "s" + ], + [ + "orig", + "in" + ], + [ + "s", + "n" + ], + [ + ")Ġ", + "+Ġ" + ], + [ + "serv", + "ation" + ], + [ + "dist", + "in" + ], + [ + "carr", + "y" + ], + [ + "ti", + "z" + ], + [ + "il", + "os" + ], + [ + "trans", + "port" + ], + [ + "get", + "ting" + ], + [ + "I", + "d" + ], + [ + "g", + "ot" + ], + [ + "perf", + "ect" + ], + [ + "co", + "very" + ], + [ + "emp", + "has" + ], + [ + "profession", + "al" + ], + [ + "cele", + "br" + ], + [ + "or", + "ith" + ], + [ + "O", + "ut" + ], + [ + "establ", + "ished" + ], + [ + "V", + "i" + ], + [ + "ain", + "s" + ], + [ + "ren", + "ch" + ], + [ + "re", + "place" + ], + [ + "d", + "ou" + ], + [ + "conn", + "ection" + ], + [ + "th", + "ous" + ], + [ + "anim", + "al" + ], + [ + "Ð", + "º" + ], + [ + "eff", + "ectively" + ], + [ + "appropri", + "ate" + ], + [ + "et", + "c" + ], + [ + "quick", + "ly" + ], + [ + "ear", + "li" + ], + [ + "ro", + "t" + ], + [ + "prog", + "ress" + ], + [ + "B", + "ob" + ], + [ + "compan", + "ies" + ], + [ + "W", + "ill" + ], + [ + "A", + "P" + ], + [ + "i", + "ency" + ], + [ + "ad", + "o" + ], + [ + "ve", + "y" + ], + [ + "P", + "ers" + ], + [ + "pri", + "or" + ], + [ + "ref", + "ers" + ], + [ + "br", + "id" + ], + [ + "in", + "fo" + ], + [ + "uc", + "k" + ], + [ + "ma", + "ster" + ], + [ + "ver", + "sion" + ], + [ + "to", + "m" + ], + [ + "()", + ")" + ], + [ + "or", + "ation" + ], + [ + "im", + "mun" + ], + [ + "par", + "am" + ], + [ + "L", + "ear" + ], + [ + "lay", + "er" + ], + [ + "K", + "ing" + ], + [ + "ev", + "olution" + ], + [ + "de", + "cl" + ], + [ + "land", + "sc" + ], + [ + "p", + "al" + ], + [ + "inst", + "all" + ], + [ + "ul", + "ate" + ], + [ + "c", + "as" + ], + [ + "on", + "to" + ], + [ + "el", + "f" + ], + [ + "te", + "en" + ], + [ + "contain", + "s" + ], + [ + "er", + "r" + ], + [ + ".", + "âĢĿĠ" + ], + [ + "Tr", + "ans" + ], + [ + "h", + "ot" + ], + [ + "im", + "ag" + ], + [ + "ca", + "used" + ], + [ + "T", + "H" + ], + [ + "se", + "cre" + ], + [ + "ur", + "l" + ], + [ + "ati", + "vely" + ], + [ + "d", + "rop" + ], + [ + "scre", + "en" + ], + [ + "re", + "pe" + ], + [ + "um", + "p" + ], + [ + "ey", + "e" + ], + [ + "paren", + "t" + ], + [ + "c", + "and" + ], + [ + "M", + "a" + ], + [ + "surround", + "ing" + ], + [ + "W", + "r" + ], + [ + "i", + "x" + ], + [ + "fi", + "ed" + ], + [ + "ar", + "ri" + ], + [ + "the", + "ory" + ], + [ + "ask", + "ed" + ], + [ + "cont", + "act" + ], + [ + "bel", + "ieve" + ], + [ + "De", + "velop" + ], + [ + "lim", + "it" + ], + [ + "ur", + "ies" + ], + [ + "h", + "ic" + ], + [ + "J", + "an" + ], + [ + "w", + "ild" + ], + [ + "sl", + "ice" + ], + [ + "s", + "po" + ], + [ + "More", + "over" + ], + [ + "max", + "im" + ], + [ + "dep", + "end" + ], + [ + "demon", + "str" + ], + [ + "k", + "ids" + ], + [ + "Un", + "it" + ], + [ + "K", + "e" + ], + [ + "\"", + ":" + ], + [ + "ad", + "ditional" + ], + [ + "auti", + "ful" + ], + [ + "em", + "br" + ], + [ + "bir", + "th" + ], + [ + "di", + "et" + ], + [ + "al", + "es" + ], + [ + "Europe", + "an" + ], + [ + "plac", + "ed" + ], + [ + "fact", + "or" + ], + [ + "sub", + "ject" + ], + [ + "E", + "le" + ], + [ + "sol", + "utions" + ], + [ + "wor", + "th" + ], + [ + "adv", + "ent" + ], + [ + "long", + "er" + ], + [ + "Ex", + "ample" + ], + [ + "pro", + "jects" + ], + [ + "Au", + "g" + ], + [ + "c", + "il" + ], + [ + "sof", + "tware" + ], + [ + "sh", + "aring" + ], + [ + "inno", + "v" + ], + [ + "h", + "on" + ], + [ + "c", + "um" + ], + [ + "Com", + "mun" + ], + [ + "tr", + "u" + ], + [ + "significant", + "ly" + ], + [ + "dev", + "ice" + ], + [ + "de", + "termine" + ], + [ + "ev", + "ol" + ], + [ + "l", + "if" + ], + [ + "C", + "r" + ], + [ + "cap", + "ac" + ], + [ + "Pe", + "ople" + ], + [ + "up", + "per" + ], + [ + "di", + "versity" + ], + [ + "health", + "care" + ], + [ + "st", + "ack" + ], + [ + "play", + "ing" + ], + [ + "chall", + "enge" + ], + [ + "row", + "n" + ], + [ + "op", + "tion" + ], + [ + "un", + "its" + ], + [ + "bo", + "dies" + ], + [ + "sp", + "read" + ], + [ + "lar", + "ger" + ], + [ + "squ", + "are" + ], + [ + "min", + "utes" + ], + [ + "indu", + "str" + ], + [ + "Con", + "s" + ], + [ + "Al", + "ice" + ], + [ + "fer", + "ence" + ], + [ + "el", + "t" + ], + [ + "prom", + "ote" + ], + [ + "z", + "er" + ], + [ + "D", + "on" + ], + [ + "M", + "ost" + ], + [ + "Ĵ", + "Ġ" + ], + [ + "s", + "ong" + ], + [ + "s", + "ample" + ], + [ + "Indi", + "a" + ], + [ + "applic", + "ation" + ], + [ + "Val", + "ue" + ], + [ + "stre", + "am" + ], + [ + "H", + "igh" + ], + [ + "g", + "ree" + ], + [ + "c", + "is" + ], + [ + "exp", + "ect" + ], + [ + "ic", + "tion" + ], + [ + "l", + "am" + ], + [ + "new", + "s" + ], + [ + "n", + "ation" + ], + [ + "mem", + "ory" + ], + [ + "h", + "am" + ], + [ + "co", + "sts" + ], + [ + "ore", + "d" + ], + [ + "up", + "date" + ], + [ + "g", + "ather" + ], + [ + "ce", + "ed" + ], + [ + "th", + "ird" + ], + [ + "ca", + "uses" + ], + [ + "concer", + "ns" + ], + [ + "O", + "c" + ], + [ + "z", + "ed" + ], + [ + "Py", + "thon" + ], + [ + "pos", + "sib" + ], + [ + "ens", + "uring" + ], + [ + "con", + "ven" + ], + [ + "Ġ", + "--" + ], + [ + "ci", + "vil" + ], + [ + "S", + "pec" + ], + [ + "'", + "ve" + ], + [ + "tr", + "ack" + ], + [ + "Ġ", + "/" + ], + [ + "as", + "ons" + ], + [ + "g", + "ard" + ], + [ + "ww", + "w" + ], + [ + "Christ", + "ian" + ], + [ + "mini", + "str" + ], + [ + "them", + "at" + ], + [ + "sequ", + "ences" + ], + [ + "al", + "og" + ], + [ + "respon", + "sib" + ], + [ + "fig", + "ure" + ], + [ + "s", + "is" + ], + [ + "pur", + "pose" + ], + [ + "aff", + "ect" + ], + [ + "ir", + "ing" + ], + [ + "E", + "ven" + ], + [ + "al", + "most" + ], + [ + "go", + "es" + ], + [ + "Be", + "fore" + ], + [ + "pol", + "y" + ], + [ + "o", + "es" + ], + [ + "ve", + "get" + ], + [ + "se", + "a" + ], + [ + "conn", + "ect" + ], + [ + "h", + "es" + ], + [ + "x", + "im" + ], + [ + "p", + "ush" + ], + [ + "Ġ==Ġ", + "'" + ], + [ + "oper", + "ations" + ], + [ + "b", + "ill" + ], + [ + "Hist", + "ory" + ], + [ + "coun", + "ts" + ], + [ + "A", + "re" + ], + [ + "Austr", + "al" + ], + [ + "Ex", + "pl" + ], + [ + "business", + "es" + ], + [ + "exp", + "and" + ], + [ + "continu", + "ed" + ], + [ + "v", + "oc" + ], + [ + "man", + "u" + ], + [ + "num", + "py" + ], + [ + "Afric", + "an" + ], + [ + "E", + "duc" + ], + [ + "numer", + "ous" + ], + [ + "car", + "bon" + ], + [ + "ph", + "one" + ], + [ + "piec", + "es" + ], + [ + "C", + "al" + ], + [ + "W", + "elcome" + ], + [ + "typ", + "ically" + ], + [ + "m", + "l" + ], + [ + "S", + "ep" + ], + [ + "try", + "ing" + ], + [ + "exact", + "ly" + ], + [ + "h", + "ib" + ], + [ + "ul", + "tural" + ], + [ + "fi", + "elds" + ], + [ + "dire", + "ction" + ], + [ + "differ", + "ences" + ], + [ + "o", + "v" + ], + [ + "z", + "a" + ], + [ + "in", + "y" + ], + [ + "em", + "ail" + ], + [ + "com", + "pl" + ], + [ + "r", + "ates" + ], + [ + "proper", + "ties" + ], + [ + "i", + "tive" + ], + [ + "ip", + "s" + ], + [ + "part", + "ment" + ], + [ + "stand", + "ard" + ], + [ + "requ", + "est" + ], + [ + "ke", + "ys" + ], + [ + "The", + "ir" + ], + [ + "eng", + "aging" + ], + [ + "ult", + "ure" + ], + [ + "Ch", + "ina" + ], + [ + "F", + "rench" + ], + [ + "hand", + "s" + ], + [ + "b", + "acter" + ], + [ + "tim", + "ately" + ], + [ + "col", + "ors" + ], + [ + "com", + "par" + ], + [ + "ph", + "en" + ], + [ + "gu", + "ess" + ], + [ + "Ġ", + "%" + ], + [ + "ct", + "ors" + ], + [ + "al", + "ign" + ], + [ + "ell", + "ig" + ], + [ + "arch", + "it" + ], + [ + "vari", + "able" + ], + [ + "S", + "m" + ], + [ + "j", + "u" + ], + [ + "alg", + "orith" + ], + [ + "ax", + "is" + ], + [ + "n", + "ic" + ], + [ + "st", + "age" + ], + [ + "Fin", + "ally" + ], + [ + "Ġ", + "|Ġ" + ], + [ + "b", + "ad" + ], + [ + "v", + "ital" + ], + [ + "detail", + "s" + ], + [ + "s", + "us" + ], + [ + "Se", + "e" + ], + [ + "centr", + "al" + ], + [ + "li", + "es" + ], + [ + "m", + "es" + ], + [ + "for", + "ces" + ], + [ + "invol", + "ve" + ], + [ + "so", + "on" + ], + [ + "Sci", + "ence" + ], + [ + "he", + "ard" + ], + [ + "R", + "ed" + ], + [ + "t", + "ren" + ], + [ + "compe", + "ti" + ], + [ + "tra", + "de" + ], + [ + "not", + "e" + ], + [ + "f", + "ight" + ], + [ + "Ch", + "ild" + ], + [ + "relev", + "ant" + ], + [ + "men", + "tion" + ], + [ + "fil", + "es" + ], + [ + "h", + "id" + ], + [ + "\"", + "." + ], + [ + "fil", + "m" + ], + [ + "au", + "th" + ], + [ + "A", + "M" + ], + [ + "play", + "ed" + ], + [ + "produ", + "ced" + ], + [ + "ear", + "th" + ], + [ + "su", + "res" + ], + [ + "discover", + "ed" + ], + [ + "Th", + "en" + ], + [ + "eas", + "ily" + ], + [ + "want", + "ed" + ], + [ + "oun", + "tain" + ], + [ + "Ð", + "¼" + ], + [ + "Cl", + "ass" + ], + [ + "h", + "aps" + ], + [ + "Q", + "ues" + ], + [ + "set", + "ting" + ], + [ + "ir", + "m" + ], + [ + "M", + "r" + ], + [ + "on", + "y" + ], + [ + "cap", + "ital" + ], + [ + "T", + "im" + ], + [ + "di", + "vision" + ], + [ + "ag", + "er" + ], + [ + "L", + "ab" + ], + [ + "im", + "g" + ], + [ + "ill", + "u" + ], + [ + "inform", + "ed" + ], + [ + "de", + "al" + ], + [ + "top", + "ics" + ], + [ + "H", + "um" + ], + [ + "cre", + "d" + ], + [ + "[", + "\"" + ], + [ + "S", + "w" + ], + [ + "cult", + "ures" + ], + [ + "plan", + "ning" + ], + [ + "mil", + "itary" + ], + [ + "ey", + "es" + ], + [ + "id", + "x" + ], + [ + "Ġ=Ġ", + "\"" + ], + [ + "direct", + "ly" + ], + [ + "lim", + "ited" + ], + [ + "sequ", + "ence" + ], + [ + "H", + "ar" + ], + [ + "ish", + "ing" + ], + [ + "dem", + "and" + ], + [ + "o", + "res" + ], + [ + "a", + "ur" + ], + [ + "sk", + "ill" + ], + [ + "H", + "el" + ], + [ + "Sy", + "stem" + ], + [ + "res", + "id" + ], + [ + "dec", + "ided" + ], + [ + "exist", + "ing" + ], + [ + "ci", + "tiz" + ], + [ + "fil", + "ter" + ], + [ + "bl", + "ue" + ], + [ + "food", + "s" + ], + [ + "U", + "sing" + ], + [ + "Further", + "more" + ], + [ + "ve", + "hic" + ], + [ + "diction", + "ary" + ], + [ + "t", + "asks" + ], + [ + "add", + "ing" + ], + [ + "Ġâ", + "Ĩ" + ], + [ + "arti", + "sts" + ], + [ + "mo", + "b" + ], + [ + "w", + "ent" + ], + [ + "stit", + "ute" + ], + [ + "t", + "ask" + ], + [ + "Ex", + "amples" + ], + [ + "pro", + "ced" + ], + [ + "i", + "v" + ], + [ + "u", + "tili" + ], + [ + "\"", + ".Ġ" + ], + [ + "ac", + "ade" + ], + [ + "t", + "xt" + ], + [ + "read", + "ers" + ], + [ + "mach", + "ine" + ], + [ + "be", + "autiful" + ], + [ + "exerc", + "ise" + ], + [ + "el", + "ines" + ], + [ + "ound", + "s" + ], + [ + "test", + "ing" + ], + [ + "n", + "ia" + ], + [ + "eder", + "al" + ], + [ + "an", + "ch" + ], + [ + "enti", + "ally" + ], + [ + "b", + "ing" + ], + [ + "emo", + "tional" + ], + [ + "ib", + "ility" + ], + [ + "di", + "a" + ], + [ + "pe", + "t" + ], + [ + "ul", + "a" + ], + [ + "teach", + "ers" + ], + [ + "R", + "O" + ], + [ + "al", + "pha" + ], + [ + "li", + "p" + ], + [ + "con", + "vers" + ], + [ + "specific", + "ally" + ], + [ + "ad", + "just" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "ship", + "s" + ], + [ + "A", + "pr" + ], + [ + "includ", + "ed" + ], + [ + "al", + "le" + ], + [ + "law", + "s" + ], + [ + "Re", + "ferences" + ], + [ + "en", + "cies" + ], + [ + "gener", + "ate" + ], + [ + "S", + "olution" + ], + [ + "h", + "ous" + ], + [ + "aware", + "ness" + ], + [ + "in", + "ner" + ], + [ + "lo", + "st" + ], + [ + "cl", + "in" + ], + [ + "mo", + "dif" + ], + [ + "constru", + "ction" + ], + [ + "h", + "u" + ], + [ + "T", + "it" + ], + [ + "htt", + "p" + ], + [ + "R", + "el" + ], + [ + "tre", + "es" + ], + [ + "t", + "end" + ], + [ + "techn", + "ologies" + ], + [ + "small", + "er" + ], + [ + "organ", + "ization" + ], + [ + "****", + "****" + ], + [ + "b", + "and" + ], + [ + "li", + "ved" + ], + [ + "suf", + "fer" + ], + [ + "eng", + "age" + ], + [ + "M", + "arch" + ], + [ + "sh", + "own" + ], + [ + "meas", + "ures" + ], + [ + "bs", + "ite" + ], + [ + "Ð", + "´" + ], + [ + "ili", + "ar" + ], + [ + "Aug", + "ust" + ], + [ + "U", + "N" + ], + [ + "ing", + "re" + ], + [ + "gu", + "ide" + ], + [ + "mid", + "dle" + ], + [ + "l", + "ic" + ], + [ + "B", + "C" + ], + [ + "d", + "re" + ], + [ + "maintain", + "ing" + ], + [ + "pre", + "v" + ], + [ + "att", + "ack" + ], + [ + "il", + "it" + ], + [ + "who", + "se" + ], + [ + "htt", + "ps" + ], + [ + "In", + "tern" + ], + [ + "teach", + "ing" + ], + [ + "ther", + "apy" + ], + [ + "c", + "ou" + ], + [ + "ac", + "qu" + ], + [ + "M", + "ic" + ], + [ + "less", + "ons" + ], + [ + "qu", + "ite" + ], + [ + "A", + "ss" + ], + [ + "chang", + "ing" + ], + [ + "emp", + "ty" + ], + [ + "qu", + "anti" + ], + [ + "M", + "at" + ], + [ + "de", + "cre" + ], + [ + "dise", + "ases" + ], + [ + "rap", + "id" + ], + [ + "a", + "res" + ], + [ + "ph", + "ilos" + ], + [ + "loc", + "ated" + ], + [ + "p", + "ick" + ], + [ + "appreci", + "ate" + ], + [ + "adap", + "t" + ], + [ + "fic", + "tion" + ], + [ + "g", + "a" + ], + [ + "polic", + "ies" + ], + [ + "R", + "ussi" + ], + [ + "in", + "fl" + ], + [ + "vari", + "ety" + ], + [ + "colle", + "ction" + ], + [ + "challeng", + "ing" + ], + [ + "def", + "in" + ], + [ + "S", + "ince" + ], + [ + "po", + "or" + ], + [ + "cod", + "ing" + ], + [ + "ic", + "ated" + ], + [ + "A", + "si" + ], + [ + "at", + "tribut" + ], + [ + "rece", + "ived" + ], + [ + "ris", + "ks" + ], + [ + "multi", + "plication" + ], + [ + "b", + "ab" + ], + [ + "situ", + "ation" + ], + [ + "n", + "y" + ], + [ + "r", + "aw" + ], + [ + "ingre", + "di" + ], + [ + "j", + "son" + ], + [ + "B", + "ar" + ], + [ + "Ch", + "o" + ], + [ + "tr", + "ic" + ], + [ + "(", + "(" + ], + [ + "f", + "resh" + ], + [ + "do", + "or" + ], + [ + "Ġ=Ġ", + "-" + ], + [ + "tur", + "ing" + ], + [ + "S", + "ur" + ], + [ + "er", + "n" + ], + [ + "r", + "ac" + ], + [ + "Ð", + "¿" + ], + [ + "feel", + "ings" + ], + [ + "U", + "p" + ], + [ + "J", + "une" + ], + [ + "p", + "ul" + ], + [ + "ot", + "es" + ], + [ + "im", + "medi" + ], + [ + "s", + "aw" + ], + [ + "mom", + "ent" + ], + [ + "tic", + "ally" + ], + [ + "in", + "ate" + ], + [ + "comp", + "ass" + ], + [ + "an", + "cy" + ], + [ + "ong", + "o" + ], + [ + "k", + "ers" + ], + [ + "H", + "ol" + ], + [ + "process", + "ing" + ], + [ + "v", + "it" + ], + [ + "O", + "p" + ], + [ + "ĠĠ", + "#Ġ" + ], + [ + "A", + "ct" + ], + [ + "find", + "ing" + ], + [ + "equip", + "ment" + ], + [ + "h", + "und" + ], + [ + "am", + "ent" + ], + [ + "const", + "ant" + ], + [ + "prot", + "ection" + ], + [ + "out", + "comes" + ], + [ + "earli", + "er" + ], + [ + "S", + "ol" + ], + [ + "dis", + "ci" + ], + [ + "ac", + "king" + ], + [ + "streng", + "th" + ], + [ + "Ġ=Ġ", + "'" + ], + [ + "f", + "ear" + ], + [ + "gi", + "ving" + ], + [ + "d", + "ark" + ], + [ + "W", + "est" + ], + [ + "we", + "ather" + ], + [ + "Ċĉĉ", + "ĉ" + ], + [ + "r", + "id" + ], + [ + "prom", + "oting" + ], + [ + "Ger", + "man" + ], + [ + "spe", + "ak" + ], + [ + "Ty", + "pe" + ], + [ + "run", + "ning" + ], + [ + "cap", + "t" + ], + [ + "distri", + "bution" + ], + [ + "i", + "os" + ], + [ + "ĠâĨ", + "ĴĠ" + ], + [ + "S", + "A" + ], + [ + "fac", + "es" + ], + [ + "bre", + "ath" + ], + [ + "at", + "om" + ], + [ + "Pl", + "ay" + ], + [ + "Intern", + "ational" + ], + [ + "employ", + "e" + ], + [ + "def", + "ault" + ], + [ + "bu", + "y" + ], + [ + "fe", + "et" + ], + [ + "favor", + "ite" + ], + [ + "report", + "ed" + ], + [ + "ow", + "er" + ], + [ + "x", + "i" + ], + [ + "O", + "ther" + ], + [ + "--", + "-" + ], + [ + "Sim", + "ilar" + ], + [ + "augh", + "t" + ], + [ + "te", + "le" + ], + [ + "argu", + "ment" + ], + [ + "ati", + "vity" + ], + [ + "de", + "cor" + ], + [ + "Des", + "pite" + ], + [ + "pu", + "ts" + ], + [ + "v", + "ic" + ], + [ + "con", + "centr" + ], + [ + "sof", + "t" + ], + [ + "priv", + "ate" + ], + [ + "g", + "al" + ], + [ + "Pr", + "of" + ], + [ + "sup", + "ply" + ], + [ + "work", + "ers" + ], + [ + "use", + "um" + ], + [ + "v", + "acc" + ], + [ + "ch", + "i" + ], + [ + "capac", + "ity" + ], + [ + "C", + "ity" + ], + [ + "dep", + "th" + ], + [ + "str", + "ain" + ], + [ + "del", + "ve" + ], + [ + "en", + "ame" + ], + [ + "str", + "ip" + ], + [ + "g", + "ent" + ], + [ + "di", + "v" + ], + [ + "F", + "un" + ], + [ + "de", + "mo" + ], + [ + "perspec", + "tives" + ], + [ + "re", + "presents" + ], + [ + "though", + "ts" + ], + [ + "mo", + "le" + ], + [ + "Ñ", + "ĥ" + ], + [ + "con", + "struct" + ], + [ + "pass", + "ed" + ], + [ + "Apr", + "il" + ], + [ + "mil", + "es" + ], + [ + "su", + "e" + ], + [ + "ro", + "y" + ], + [ + "we", + "bsite" + ], + [ + "T", + "O" + ], + [ + "T", + "ur" + ], + [ + "J", + "uly" + ], + [ + "un", + "ch" + ], + [ + "did", + "n" + ], + [ + "pur", + "ch" + ], + [ + "pos", + "es" + ], + [ + "fam", + "ous" + ], + [ + "altern", + "ative" + ], + [ + "v", + "ar" + ], + [ + "E", + "l" + ], + [ + "ap", + "es" + ], + [ + "graph", + "y" + ], + [ + "ag", + "r" + ], + [ + "po", + "sure" + ], + [ + "u", + "k" + ], + [ + "ci", + "ties" + ], + [ + "sen", + "si" + ], + [ + "||", + "Ġ" + ], + [ + "let", + "ters" + ], + [ + "t", + "ag" + ], + [ + "D", + "E" + ], + [ + "h", + "ope" + ], + [ + "w", + "aste" + ], + [ + "s", + "chol" + ], + [ + "M", + "id" + ], + [ + "p", + "and" + ], + [ + "b", + "ust" + ], + [ + "br", + "ought" + ], + [ + "Ġ>", + "=Ġ" + ], + [ + "ber", + "t" + ], + [ + "inser", + "ted" + ], + [ + "l", + "ack" + ], + [ + "sor", + "ted" + ], + [ + "act", + "ual" + ], + [ + "t", + "ests" + ], + [ + "thes", + "is" + ], + [ + "e", + "ating" + ], + [ + "co", + "ok" + ], + [ + "Afric", + "a" + ], + [ + "cy", + "cl" + ], + [ + "interest", + "ing" + ], + [ + "Ġ", + "#" + ], + [ + "approach", + "es" + ], + [ + "ch", + "ann" + ], + [ + "c", + "el" + ], + [ + "Cour", + "se" + ], + [ + "lar", + "gest" + ], + [ + "ce", + "an" + ], + [ + "return", + "s" + ], + [ + "ell", + "ing" + ], + [ + "n", + "odes" + ], + [ + "foster", + "ing" + ], + [ + "sol", + "id" + ], + [ + "G", + "reat" + ], + [ + "ob", + "tain" + ], + [ + "le", + "aves" + ], + [ + "signific", + "ance" + ], + [ + "inser", + "t" + ], + [ + "we", + "ak" + ], + [ + "dr", + "y" + ], + [ + "ad", + "ults" + ], + [ + "S", + "um" + ], + [ + "emo", + "tions" + ], + [ + "v", + "an" + ], + [ + "fac", + "ed" + ], + [ + "sustain", + "able" + ], + [ + "benef", + "it" + ], + [ + "t", + "ou" + ], + [ + "adv", + "ance" + ], + [ + "l", + "ation" + ], + [ + "ser", + "ious" + ], + [ + "situ", + "ations" + ], + [ + "et", + "al" + ], + [ + "allow", + "ed" + ], + [ + "f", + "uel" + ], + [ + "ec", + "o" + ], + [ + "Bl", + "ack" + ], + [ + "in", + "come" + ], + [ + "D", + "ay" + ], + [ + "Ã", + "¡" + ], + [ + "ach", + "i" + ], + [ + "plan", + "et" + ], + [ + "redu", + "cing" + ], + [ + "rece", + "ive" + ], + [ + "res", + "ource" + ], + [ + "gener", + "ations" + ], + [ + "ex", + "it" + ], + [ + "care", + "er" + ], + [ + "I", + "P" + ], + [ + ")Ġ", + "-Ġ" + ], + [ + "def", + "ined" + ], + [ + "comm", + "er" + ], + [ + "des", + "pite" + ], + [ + "de", + "gree" + ], + [ + "thous", + "ands" + ], + [ + "S", + "up" + ], + [ + "just", + "ice" + ], + [ + "az", + "ing" + ], + [ + "B", + "en" + ], + [ + "ha", + "ir" + ], + [ + "ari", + "o" + ], + [ + "cre", + "ation" + ], + [ + "ag", + "ric" + ], + [ + "z", + "y" + ], + [ + "¢", + "Ġ" + ], + [ + "t", + "our" + ], + [ + "e", + "ch" + ], + [ + "gener", + "ally" + ], + [ + "en", + "cing" + ], + [ + "g", + "ir" + ], + [ + "ic", + "o" + ], + [ + "cre", + "ative" + ], + [ + "man", + "age" + ], + [ + "study", + "ing" + ], + [ + "Ġ==Ġ", + "\"" + ], + [ + "Wh", + "o" + ], + [ + "ed", + "om" + ], + [ + "lin", + "ks" + ], + [ + "help", + "ing" + ], + [ + "fa", + "ith" + ], + [ + "gl", + "ass" + ], + [ + "asp", + "ect" + ], + [ + "Ch", + "in" + ], + [ + "pres", + "sed" + ], + [ + "Indi", + "an" + ], + [ + "pol", + "l" + ], + [ + "form", + "ed" + ], + [ + "r", + "ule" + ], + [ + "mo", + "ving" + ], + [ + "L", + "ife" + ], + [ + "he", + "ar" + ], + [ + "ur", + "ban" + ], + [ + "tem", + "ber" + ], + [ + "ic", + "ts" + ], + [ + "gen", + "cy" + ], + [ + "them", + "es" + ], + [ + "c", + "ards" + ], + [ + "prote", + "in" + ], + [ + "B", + "i" + ], + [ + "ma", + "themat" + ], + [ + "inter", + "pret" + ], + [ + "',", + "'" + ], + [ + "ab", + "s" + ], + [ + "sol", + "ve" + ], + [ + "any", + "thing" + ], + [ + "s", + "co" + ], + [ + "chang", + "ed" + ], + [ + "to", + "ber" + ], + [ + "a", + "ks" + ], + [ + "posi", + "tions" + ], + [ + "(", + "Ġ" + ], + [ + "teach", + "er" + ], + [ + "discus", + "s" + ], + [ + "ari", + "an" + ], + [ + "path", + "y" + ], + [ + "Sep", + "tember" + ], + [ + "J", + "es" + ], + [ + "{}", + "Ġ" + ], + [ + "belief", + "s" + ], + [ + "e", + "gg" + ], + [ + "II", + "I" + ], + [ + "g", + "old" + ], + [ + "S", + "k" + ], + [ + "h", + "un" + ], + [ + "enh", + "ance" + ], + [ + "cr", + "aft" + ], + [ + "mo", + "ther" + ], + [ + "In", + "de" + ], + [ + "ĊĠĠĠĠ", + "ĊĠĠĠĠ" + ], + [ + "b", + "ud" + ], + [ + "us", + "ive" + ], + [ + "alth", + "ough" + ], + [ + "ag", + "ue" + ], + [ + "r", + "ig" + ], + [ + "lab", + "els" + ], + [ + "C", + "T" + ], + [ + "gr", + "ade" + ], + [ + "Ser", + "v" + ], + [ + "n", + "ur" + ], + [ + "shap", + "ing" + ], + [ + "pl", + "ate" + ], + [ + "ho", + "sp" + ], + [ + "tradi", + "tions" + ], + [ + "adv", + "anced" + ], + [ + ")", + "," + ], + [ + "B", + "ec" + ], + [ + "Oc", + "tober" + ], + [ + "prac", + "tical" + ], + [ + "ad", + "op" + ], + [ + "T", + "ree" + ], + [ + "use", + "ful" + ], + [ + "view", + "s" + ], + [ + "iz", + "es" + ], + [ + "ess", + "or" + ], + [ + "[", + ":" + ], + [ + "a", + "ul" + ], + [ + "fore", + "st" + ], + [ + "redu", + "ced" + ], + [ + "sex", + "ual" + ], + [ + "follow", + "ed" + ], + [ + "on", + "al" + ], + [ + "n", + "el" + ], + [ + "n", + "om" + ], + [ + "F", + "ind" + ], + [ + "f", + "elt" + ], + [ + "work", + "ed" + ], + [ + "se", + "g" + ], + [ + "educ", + "ational" + ], + [ + "con", + "su" + ], + [ + "Inst", + "ead" + ], + [ + "?", + "Ġ=Ġ" + ], + [ + "sett", + "ings" + ], + [ + "G", + "over" + ], + [ + "vol", + "ution" + ], + [ + "Com", + "p" + ], + [ + "int", + "ellig" + ], + [ + "incre", + "di" + ], + [ + "w", + "est" + ], + [ + "begin", + "ning" + ], + [ + "paren", + "theses" + ], + [ + "sp", + "aces" + ], + [ + "auth", + "ors" + ], + [ + "narr", + "atives" + ], + [ + "disci", + "pl" + ], + [ + "ti", + "ce" + ], + [ + "cor", + "ds" + ], + [ + ":", + "ĠĠ" + ], + [ + "con", + "stit" + ], + [ + "ow", + "s" + ], + [ + "h", + "our" + ], + [ + "ne", + "ur" + ], + [ + "cover", + "ed" + ], + [ + "ro", + "les" + ], + [ + "Tit", + "le" + ], + [ + "So", + "cial" + ], + [ + "č", + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "ap", + "plied" + ], + [ + "oc", + "cup" + ], + [ + "i", + "am" + ], + [ + "adv", + "oc" + ], + [ + "Ġ=Ġ", + "(" + ], + [ + "to", + "ward" + ], + [ + "opportun", + "ity" + ], + [ + "happ", + "ens" + ], + [ + "Jan", + "uary" + ], + [ + "m", + "ber" + ], + [ + "ter", + "y" + ], + [ + "aff", + "ected" + ], + [ + "manu", + "fac" + ], + [ + "gi", + "ves" + ], + [ + "real", + "ity" + ], + [ + "C", + "enter" + ], + [ + "do", + "g" + ], + [ + "c", + "ular" + ], + [ + "top", + "ic" + ], + [ + "be", + "coming" + ], + [ + "M", + "c" + ], + [ + "R", + "oman" + ], + [ + "form", + "er" + ], + [ + "s", + "we" + ], + [ + "exam", + "ine" + ], + [ + "pro", + "p" + ], + [ + "Tw", + "o" + ], + [ + "feel", + "ing" + ], + [ + "ind", + "ig" + ], + [ + "ens", + "ity" + ], + [ + "f", + "ather" + ], + [ + "su", + "gar" + ], + [ + "ç", + "ļ" + ], + [ + "ing", + "ton" + ], + [ + "fil", + "ename" + ], + [ + "res", + "sion" + ], + [ + "C", + "ali" + ], + [ + "hid", + "den" + ], + [ + "class", + "es" + ], + [ + "fam", + "iliar" + ], + [ + "appro", + "xim" + ], + [ + "Educ", + "ation" + ], + [ + "see", + "king" + ], + [ + "Cons", + "ider" + ], + [ + "D", + "av" + ], + [ + "in", + "o" + ], + [ + "çļ", + "Ħ" + ], + [ + "pl", + "ies" + ], + [ + "d", + "anger" + ], + [ + ".", + "__" + ], + [ + "ol", + "der" + ], + [ + "mo", + "de" + ], + [ + "s", + "ports" + ], + [ + "high", + "ly" + ], + [ + "A", + "I" + ], + [ + "increasing", + "ly" + ], + [ + "em", + "b" + ], + [ + "w", + "are" + ], + [ + "ur", + "ation" + ], + [ + "pre", + "par" + ], + [ + "ser", + "ving" + ], + [ + "fun", + "dam" + ], + [ + "f", + "ying" + ], + [ + "st", + "im" + ], + [ + "ro", + "ck" + ], + [ + "ex", + "posure" + ], + [ + "it", + "ude" + ], + [ + "J", + "our" + ], + [ + "techni", + "que" + ], + [ + "r", + "ace" + ], + [ + "Pro", + "gram" + ], + [ + "n", + "uc" + ], + [ + "evalu", + "ate" + ], + [ + "trans", + "fer" + ], + [ + "sp", + "here" + ], + [ + "langu", + "ages" + ], + [ + "wal", + "k" + ], + [ + "fac", + "ilit" + ], + [ + "gener", + "ation" + ], + [ + "to", + "x" + ], + [ + "Cre", + "ate" + ], + [ + "A", + "lex" + ], + [ + "par", + "ty" + ], + [ + "calcul", + "ate" + ], + [ + "L", + "at" + ], + [ + "inter", + "ests" + ], + [ + "keep", + "ing" + ], + [ + "M", + "ake" + ], + [ + "ms", + "g" + ], + [ + "S", + "am" + ], + [ + "Chin", + "ese" + ], + [ + "ograph", + "y" + ], + [ + "Can", + "ada" + ], + [ + "find", + "ings" + ], + [ + "ef", + "fort" + ], + [ + "pict", + "ure" + ], + [ + "Q", + "ue" + ], + [ + "re", + "asons" + ], + [ + "result", + "ing" + ], + [ + "wr", + "ong" + ], + [ + "Num", + "ber" + ], + [ + "ac", + "id" + ], + [ + "G", + "i" + ], + [ + "neigh", + "b" + ], + [ + "sub", + "traction" + ], + [ + "ili", + "ence" + ], + [ + "li", + "b" + ], + [ + ">", + ">" + ], + [ + "do", + "ctor" + ], + [ + "ch", + "ain" + ], + [ + "L", + "u" + ], + [ + "fl", + "ag" + ], + [ + "st", + "one" + ], + [ + "him", + "self" + ], + [ + "colum", + "ns" + ], + [ + "ree", + "k" + ], + [ + "Cali", + "for" + ], + [ + "Hist", + "or" + ], + [ + "medic", + "ine" + ], + [ + "s", + "ession" + ], + [ + "de", + "ad" + ], + [ + "E", + "very" + ], + [ + "z", + "ero" + ], + [ + "stand", + "ards" + ], + [ + "cy", + "cle" + ], + [ + "a", + "ign" + ], + [ + "F", + "ig" + ], + [ + "part", + "ners" + ], + [ + "g", + "am" + ], + [ + "L", + "aw" + ], + [ + "exam", + "ining" + ], + [ + "cons", + "ci" + ], + [ + "ca", + "using" + ], + [ + "in", + "ated" + ], + [ + "res", + "istance" + ], + [ + "le", + "ave" + ], + [ + "th", + "r" + ], + [ + "al", + "one" + ], + [ + "Eng", + "land" + ], + [ + "b", + "a" + ], + [ + "prob", + "ably" + ], + [ + "v", + "ill" + ], + [ + "libr", + "ary" + ], + [ + "prim", + "e" + ], + [ + "bel", + "ong" + ], + [ + "si", + "tion" + ], + [ + "in", + "her" + ], + [ + ":Ġ", + "-" + ], + [ + "fr", + "a" + ], + [ + "ve", + "mber" + ], + [ + "S", + "ar" + ], + [ + "environ", + "ments" + ], + [ + "s", + "q" + ], + [ + "Re", + "al" + ], + [ + "Dec", + "ember" + ], + [ + "b", + "ri" + ], + [ + "as", + "y" + ], + [ + "s", + "a" + ], + [ + "r", + "ise" + ], + [ + "experim", + "ent" + ], + [ + "sy", + "s" + ], + [ + "sat", + "is" + ], + [ + "ongo", + "ing" + ], + [ + "m", + "ary" + ], + [ + "sol", + "ar" + ], + [ + "U", + "R" + ], + [ + "u", + "gs" + ], + [ + "h", + "op" + ], + [ + "aster", + "n" + ], + [ + "del", + "iver" + ], + [ + "profession", + "als" + ], + [ + "cho", + "ices" + ], + [ + "e", + "ties" + ], + [ + "sur", + "pr" + ], + [ + "rol", + "l" + ], + [ + "No", + "vember" + ], + [ + "E", + "M" + ], + [ + "mention", + "ed" + ], + [ + "s", + "cr" + ], + [ + "P", + "le" + ], + [ + "ul", + "ated" + ], + [ + "d", + "b" + ], + [ + "V", + "is" + ], + [ + "our", + "selves" + ], + [ + "í", + "ķ" + ], + [ + "m", + "outh" + ], + [ + "hol", + "ds" + ], + [ + "As", + "soci" + ], + [ + "dep", + "ending" + ], + [ + "high", + "light" + ], + [ + "cand", + "id" + ], + [ + "D", + "O" + ], + [ + "R", + "iver" + ], + [ + "ph", + "y" + ], + [ + "B", + "el" + ], + [ + "z", + "es" + ], + [ + "app", + "ing" + ], + [ + "descri", + "bed" + ], + [ + "est", + "y" + ], + [ + "pop", + "ulations" + ], + [ + "sound", + "s" + ], + [ + "Califor", + "nia" + ], + [ + "ex", + "tract" + ], + [ + "Col", + "le" + ], + [ + "lay", + "ers" + ], + [ + "Ke", + "ep" + ], + [ + "or", + "al" + ], + [ + "c", + "m" + ], + [ + "fem", + "ale" + ], + [ + "it", + "age" + ], + [ + "experi", + "enced" + ], + [ + "rele", + "ase" + ], + [ + "require", + "ments" + ], + [ + "s", + "end" + ], + [ + "'", + "." + ], + [ + "le", + "an" + ], + [ + "fac", + "ts" + ], + [ + "com", + "b" + ], + [ + "Jes", + "us" + ], + [ + "any", + "one" + ], + [ + "foc", + "used" + ], + [ + "state", + "ment" + ], + [ + "line", + "ar" + ], + [ + "s", + "in" + ], + [ + "vari", + "ables" + ], + [ + "ass", + "ist" + ], + [ + "In", + "put" + ], + [ + "b", + "atch" + ], + [ + "S", + "un" + ], + [ + "r", + "al" + ], + [ + "indig", + "enous" + ], + [ + "r", + "ay" + ], + [ + "reve", + "al" + ], + [ + "inf", + "ection" + ], + [ + "l", + "or" + ], + [ + "to", + "ld" + ], + [ + "m", + "el" + ], + [ + "P", + "ress" + ], + [ + "vi", + "e" + ], + [ + "data", + "set" + ], + [ + "t", + "ual" + ], + [ + "Id", + "enti" + ], + [ + "bot", + "tom" + ], + [ + "m", + "ir" + ], + [ + "link", + "ed" + ], + [ + "por", + "tion" + ], + [ + "wee", + "ks" + ], + [ + "th", + "ri" + ], + [ + "P", + "al" + ], + [ + "care", + "fully" + ], + [ + "C", + "ount" + ], + [ + "econom", + "y" + ], + [ + "Americ", + "ans" + ], + [ + "in", + "spir" + ], + [ + "dat", + "ab" + ], + [ + "s", + "av" + ], + [ + "v", + "ary" + ], + [ + "world", + "wide" + ], + [ + "w", + "oman" + ], + [ + "D", + "ig" + ], + [ + "que", + "ue" + ], + [ + "ve", + "ctor" + ], + [ + "ad", + "ministr" + ], + [ + "per", + "haps" + ], + [ + "re", + "cords" + ], + [ + "So", + "ci" + ], + [ + "C", + "D" + ], + [ + "am", + "m" + ], + [ + "reg", + "ions" + ], + [ + "val", + "s" + ], + [ + "M", + "ax" + ], + [ + "ent", + "ry" + ], + [ + "xi", + "ety" + ], + [ + "p", + "un" + ], + [ + "sever", + "e" + ], + [ + "em", + "is" + ], + [ + "impro", + "ved" + ], + [ + "sign", + "s" + ], + [ + "move", + "ments" + ], + [ + "M", + "ex" + ], + [ + "d", + "ol" + ], + [ + "V", + "ir" + ], + [ + "gene", + "tic" + ], + [ + "collabor", + "ation" + ], + [ + "en", + "counter" + ], + [ + "P", + "at" + ], + [ + "Com", + "mon" + ], + [ + "S", + "al" + ], + [ + "m", + "ot" + ], + [ + "Che", + "ck" + ], + [ + "nor", + "th" + ], + [ + "char", + "ge" + ], + [ + "os", + "en" + ], + [ + "N", + "O" + ], + [ + "tr", + "ig" + ], + [ + "fun", + "c" + ], + [ + "fru", + "it" + ], + [ + "I", + "M" + ], + [ + "R", + "ep" + ], + [ + "En", + "viron" + ], + [ + "L", + "a" + ], + [ + "I", + "ts" + ], + [ + "engine", + "ering" + ], + [ + "dec", + "imal" + ], + [ + "om", + "a" + ], + [ + "maxim", + "um" + ], + [ + "M", + "ulti" + ], + [ + "op", + "hy" + ], + [ + "W", + "ater" + ], + [ + "n", + "i" + ], + [ + "H", + "y" + ], + [ + "..", + ".." + ], + [ + "op", + "in" + ], + [ + "C", + "are" + ], + [ + "s", + "ched" + ], + [ + "may", + "be" + ], + [ + "eas", + "ier" + ], + [ + "r", + "ad" + ], + [ + "Similar", + "ly" + ], + [ + "ro", + "te" + ], + [ + "s", + "ac" + ], + [ + "contain", + "ing" + ], + [ + "E", + "D" + ], + [ + "Ar", + "t" + ], + [ + "ingredi", + "ents" + ], + [ + "B", + "oth" + ], + [ + "E", + "ast" + ], + [ + "ci", + "de" + ], + [ + "smo", + "oth" + ], + [ + "B", + "re" + ], + [ + "Im", + "port" + ], + [ + "distin", + "ct" + ], + [ + "vir", + "us" + ], + [ + "Gener", + "al" + ], + [ + "tell", + "ing" + ], + [ + "no", + "thing" + ], + [ + "con", + "sequences" + ], + [ + "there", + "fore" + ], + [ + "Des", + "ign" + ], + [ + "str", + "a" + ], + [ + "S", + "an" + ], + [ + "immun", + "e" + ], + [ + "acade", + "mic" + ], + [ + "ex", + "cess" + ], + [ + "w", + "is" + ], + [ + "dr", + "ug" + ], + [ + "seem", + "s" + ], + [ + "invol", + "ving" + ], + [ + "P", + "ri" + ], + [ + "help", + "ed" + ], + [ + "pl", + "ans" + ], + [ + "remain", + "ing" + ], + [ + "l", + "ights" + ], + [ + "res", + "ilience" + ], + [ + "innov", + "ative" + ], + [ + "a", + "j" + ], + [ + "Ñ", + "ĭ" + ], + [ + "Loc", + "al" + ], + [ + "at", + "mo" + ], + [ + "stor", + "age" + ], + [ + "N", + "et" + ], + [ + "F", + "ile" + ], + [ + "spirit", + "ual" + ], + [ + "W", + "ash" + ], + [ + "character", + "istics" + ], + [ + "analy", + "ze" + ], + [ + "ĊĠĠĠĠ", + "ĠĠ" + ], + [ + "____", + "____" + ], + [ + "P", + "ark" + ], + [ + "L", + "ast" + ], + [ + "parame", + "ters" + ], + [ + "landsc", + "ape" + ], + [ + "not", + "es" + ], + [ + "ol", + "ic" + ], + [ + "Th", + "ink" + ], + [ + "nor", + "m" + ], + [ + "incorpor", + "ating" + ], + [ + "pass", + "word" + ], + [ + "ect", + "ure" + ], + [ + "co", + "ast" + ], + [ + "se", + "ed" + ], + [ + "jour", + "nal" + ], + [ + "lam", + "b" + ], + [ + "r", + "ang" + ], + [ + "F", + "am" + ], + [ + "h", + "it" + ], + [ + "Â", + "°" + ], + [ + "v", + "ast" + ], + [ + "occur", + "s" + ], + [ + "n", + "es" + ], + [ + "Al", + "so" + ], + [ + "hy", + "dro" + ], + [ + "s", + "outh" + ], + [ + "b", + "ow" + ], + [ + "te", + "e" + ], + [ + "s", + "amples" + ], + [ + "strate", + "gy" + ], + [ + "E", + "T" + ], + [ + "build", + "ings" + ], + [ + "D", + "el" + ], + [ + "B", + "as" + ], + [ + "C", + "ap" + ], + [ + "sum", + "mer" + ], + [ + "Th", + "om" + ], + [ + "bl", + "es" + ], + [ + "og", + "le" + ], + [ + "ag", + "g" + ], + [ + "ord", + "inary" + ], + [ + "il", + "es" + ], + [ + "g", + "un" + ], + [ + "B", + "al" + ], + [ + "w", + "rote" + ], + [ + "v", + "est" + ], + [ + "cre", + "ativity" + ], + [ + "bin", + "ary" + ], + [ + "Ñ", + "ı" + ], + [ + "De", + "partment" + ], + [ + "St", + "u" + ], + [ + "confl", + "ict" + ], + [ + "prof", + "it" + ], + [ + "class", + "room" + ], + [ + "graph", + "ic" + ], + [ + "turn", + "ed" + ], + [ + "ti", + "fic" + ], + [ + "en", + "able" + ], + [ + "ra", + "el" + ], + [ + "fre", + "edom" + ], + [ + "con", + "v" + ], + [ + "att", + "ach" + ], + [ + "am", + "pl" + ], + [ + "ab", + "sor" + ], + [ + "ac", + "he" + ], + [ + "tem", + "pt" + ], + [ + "draw", + "ing" + ], + [ + "up", + "d" + ], + [ + "ond", + "on" + ], + [ + "foot", + "ball" + ], + [ + "ven", + "ess" + ], + [ + "sol", + "ving" + ], + [ + "M", + "or" + ], + [ + "ap", + "ers" + ], + [ + "recomm", + "end" + ], + [ + "cir", + "cum" + ], + [ + ")Ġ", + "==Ġ" + ], + [ + "tradi", + "tion" + ], + [ + "col", + "d" + ], + [ + "ill", + "ness" + ], + [ + "pre", + "ced" + ], + [ + "address", + "ing" + ], + [ + "D", + "ire" + ], + [ + "le", + "aving" + ], + [ + "al", + "ter" + ], + [ + "fore", + "ign" + ], + [ + "St", + "art" + ], + [ + "mo", + "du" + ], + [ + "net", + "works" + ], + [ + "to", + "ken" + ], + [ + "bir", + "ds" + ], + [ + "am", + "id" + ], + [ + "event", + "ually" + ], + [ + "C", + "H" + ], + [ + "contr", + "ast" + ], + [ + "H", + "ouse" + ], + [ + "D", + "NA" + ], + [ + "F", + "ol" + ], + [ + "pre", + "fer" + ], + [ + "sent", + "ence" + ], + [ + "modu", + "le" + ], + [ + "perform", + "ed" + ], + [ + "cl", + "ient" + ], + [ + "m", + "ale" + ], + [ + "frequ", + "ency" + ], + [ + "br", + "uary" + ], + [ + "co", + "hol" + ], + [ + "a", + "o" + ], + [ + "In", + "stitute" + ], + [ + "illu", + "str" + ], + [ + "c", + "ro" + ], + [ + "N", + "ext" + ], + [ + "l", + "ap" + ], + [ + "Th", + "us" + ], + [ + "bet", + "es" + ], + [ + "ap", + "point" + ], + [ + "effic", + "iency" + ], + [ + "am", + "azing" + ], + [ + "st", + "ood" + ], + [ + "S", + "ou" + ], + [ + "tex", + "ts" + ], + [ + "loc", + "ks" + ], + [ + "W", + "estern" + ], + [ + "se", + "ven" + ], + [ + "wor", + "ry" + ], + [ + "L", + "ondon" + ], + [ + "l", + "st" + ], + [ + "Hum", + "an" + ], + [ + "ri", + "ver" + ], + [ + "r", + "u" + ], + [ + "con", + "tri" + ], + [ + "es", + "ti" + ], + [ + "le", + "te" + ], + [ + "ol", + "es" + ], + [ + "ne", + "uro" + ], + [ + "ser", + "ves" + ], + [ + "instit", + "utions" + ], + [ + "happ", + "en" + ], + [ + "phen", + "omen" + ], + [ + "ul", + "ty" + ], + [ + "Jew", + "ish" + ], + [ + "fig", + "ures" + ], + [ + "cl", + "ust" + ], + [ + "pres", + "ence" + ], + [ + "citiz", + "ens" + ], + [ + "à", + "¤" + ], + [ + "pre", + "d" + ], + [ + "r", + "are" + ], + [ + "h", + "ur" + ], + [ + "expl", + "o" + ], + [ + "me", + "tal" + ], + [ + "Is", + "rael" + ], + [ + "rele", + "ased" + ], + [ + "w", + "inter" + ], + [ + "bacter", + "ia" + ], + [ + "sec", + "ure" + ], + [ + "C", + "S" + ], + [ + "li", + "qu" + ], + [ + "S", + "ch" + ], + [ + "at", + "tr" + ], + [ + "ro", + "ots" + ], + [ + "Ple", + "ase" + ], + [ + "con", + "cl" + ], + [ + "inter", + "nal" + ], + [ + "vol", + "ume" + ], + [ + "plat", + "forms" + ], + [ + "Un", + "ion" + ], + [ + "Or", + "gan" + ], + [ + "represent", + "ation" + ], + [ + "own", + "ers" + ], + [ + "I", + "r" + ], + [ + "V", + "ol" + ], + [ + "it", + "oring" + ], + [ + "sequ", + "ently" + ], + [ + "pos", + "sess" + ], + [ + "all", + "er" + ], + [ + "look", + "ed" + ], + [ + "G", + "en" + ], + [ + "comm", + "only" + ], + [ + "my", + "ster" + ], + [ + "n", + "ative" + ], + [ + "\"", + ":Ġ" + ], + [ + "res", + "er" + ], + [ + "en", + "ab" + ], + [ + "E", + "mp" + ], + [ + "t", + "ely" + ], + [ + "appreci", + "ation" + ], + [ + "Japan", + "ese" + ], + [ + "Sec", + "ond" + ], + [ + "camp", + "aign" + ], + [ + "friend", + "ly" + ], + [ + "frequ", + "ently" + ], + [ + "Ch", + "urch" + ], + [ + "current", + "ly" + ], + [ + "V", + "er" + ], + [ + "F", + "ound" + ], + [ + "ent", + "y" + ], + [ + "se", + "lection" + ], + [ + "separ", + "ate" + ], + [ + "di", + "alog" + ], + [ + "e", + "k" + ], + [ + "Pl", + "an" + ], + [ + "fundam", + "ental" + ], + [ + "Pres", + "ident" + ], + [ + "Coun", + "ty" + ], + [ + "Fe", + "bruary" + ], + [ + "l", + "as" + ], + [ + "Bec", + "ause" + ], + [ + "B", + "er" + ], + [ + "Ġ", + "\\" + ], + [ + "um", + "s" + ], + [ + "contin", + "ues" + ], + [ + "di", + "e" + ], + [ + "offer", + "ing" + ], + [ + "th", + "ers" + ], + [ + "se", + "m" + ], + [ + "navig", + "ate" + ], + [ + "ad", + "or" + ], + [ + "prim", + "arily" + ], + [ + "re", + "verse" + ], + [ + "gr", + "and" + ], + [ + "accur", + "acy" + ], + [ + "f", + "lex" + ], + [ + "Bu", + "ild" + ], + [ + "Fr", + "ance" + ], + [ + "sl", + "am" + ], + [ + "an", + "i" + ], + [ + "ex", + "ists" + ], + [ + "um", + "b" + ], + [ + "sign", + "al" + ], + [ + "present", + "ed" + ], + [ + "pre", + "dic" + ], + [ + "an", + "xiety" + ], + [ + "af", + "fic" + ], + [ + "en", + "sures" + ], + [ + "fic", + "ient" + ], + [ + "secre", + "t" + ], + [ + "st", + "ock" + ], + [ + "relig", + "ion" + ], + [ + "m", + "and" + ], + [ + "Me", + "an" + ], + [ + "v", + "ul" + ], + [ + "heav", + "y" + ], + [ + "Ar", + "ch" + ], + [ + "st", + "aff" + ], + [ + "#", + "ĠĠĠĠĠ" + ], + [ + "recent", + "ly" + ], + [ + "cap", + "able" + ], + [ + "ext", + "ends" + ], + [ + "cour", + "t" + ], + [ + "vi", + "br" + ], + [ + "S", + "pan" + ], + [ + "accur", + "ate" + ], + [ + "or", + "ge" + ], + [ + "ag", + "on" + ], + [ + "viol", + "ence" + ], + [ + "m", + "ers" + ], + [ + "H", + "T" + ], + [ + "colle", + "ge" + ], + [ + "Some", + "times" + ], + [ + "c", + "v" + ], + [ + "A", + "ir" + ], + [ + "cul", + "tiv" + ], + [ + "T", + "ri" + ], + [ + "Stud", + "ents" + ], + [ + "dynam", + "ics" + ], + [ + "H", + "app" + ], + [ + "hom", + "es" + ], + [ + "ens", + "es" + ], + [ + "m", + "ist" + ], + [ + "argu", + "ments" + ], + [ + "def", + "ine" + ], + [ + "r", + "ies" + ], + [ + "bas", + "is" + ], + [ + "comple", + "tely" + ], + [ + "ud", + "es" + ], + [ + "y", + "ield" + ], + [ + "man", + "aging" + ], + [ + "U", + "T" + ], + [ + "P", + "S" + ], + [ + "re", + "ci" + ], + [ + "cre", + "ates" + ], + [ + "wa", + "it" + ], + [ + "the", + "tic" + ], + [ + "discus", + "sions" + ], + [ + "M", + "al" + ], + [ + "hand", + "le" + ], + [ + ")", + "):" + ], + [ + "ox", + "y" + ], + [ + "Ñ", + "Į" + ], + [ + "n", + "d" + ], + [ + "M", + "ag" + ], + [ + "sm", + "art" + ], + [ + "st", + "ation" + ], + [ + "consum", + "ption" + ], + [ + "descri", + "ption" + ], + [ + "qu", + "ar" + ], + [ + "Ã", + "³" + ], + [ + "M", + "S" + ], + [ + "cl", + "ick" + ], + [ + "em", + "pathy" + ], + [ + "ing", + "ly" + ], + [ + "Ġ--", + "Ġ" + ], + [ + "Ret", + "ur" + ], + [ + "t", + "un" + ], + [ + "ail", + "s" + ], + [ + "discus", + "sion" + ], + [ + "\"", + "Ġ(" + ], + [ + "cur", + "ren" + ], + [ + "inno", + "vation" + ], + [ + "Gover", + "n" + ], + [ + "broad", + "er" + ], + [ + ".", + ")Ġ" + ], + [ + "tren", + "ds" + ], + [ + "co", + "oking" + ], + [ + "ari", + "os" + ], + [ + "ed", + "ges" + ], + [ + "B", + "ack" + ], + [ + "mar", + "gin" + ], + [ + "arti", + "cles" + ], + [ + "Through", + "out" + ], + [ + "aut", + "y" + ], + [ + "T", + "ra" + ], + [ + "spe", + "ech" + ], + [ + "compon", + "ent" + ], + [ + "å", + "ı" + ], + [ + "particip", + "ants" + ], + [ + "impro", + "ving" + ], + [ + "lead", + "s" + ], + [ + "P", + "aren" + ], + [ + "sp", + "ot" + ], + [ + "C", + "am" + ], + [ + "identi", + "fied" + ], + [ + "star", + "ts" + ], + [ + "ti", + "vely" + ], + [ + "custom", + "ers" + ], + [ + "()", + "." + ], + [ + "mo", + "ved" + ], + [ + "g", + "ers" + ], + [ + "care", + "ful" + ], + [ + "I", + "ON" + ], + [ + "l", + "u" + ], + [ + "ul", + "timately" + ], + [ + "I", + "slam" + ], + [ + "il", + "s" + ], + [ + "ht", + "ml" + ], + [ + "F", + "ood" + ], + [ + "M", + "ain" + ], + [ + "p", + "p" + ], + [ + "\",", + "\"" + ], + [ + "guid", + "elines" + ], + [ + "wr", + "iter" + ], + [ + "we", + "alth" + ], + [ + "to", + "s" + ], + [ + "near", + "ly" + ], + [ + "beli", + "eved" + ], + [ + "at", + "ers" + ], + [ + "P", + "D" + ], + [ + "but", + "ton" + ], + [ + "meet", + "ing" + ], + [ + "Ph", + "il" + ], + [ + "--------", + "----" + ], + [ + "ã", + "ģ" + ], + [ + "sh", + "if" + ], + [ + "k", + "a" + ], + [ + "ex", + "ternal" + ], + [ + "Ġ", + "||Ġ" + ], + [ + "f", + "ing" + ], + [ + "ios", + "ity" + ], + [ + "close", + "ly" + ], + [ + "vo", + "ice" + ], + [ + "ch", + "urch" + ], + [ + "introdu", + "ced" + ], + [ + "soci", + "etal" + ], + [ + "f", + "ederal" + ], + [ + "I", + "G" + ], + [ + "see", + "k" + ], + [ + "#", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "b", + "ank" + ], + [ + "eng", + "agement" + ], + [ + "O", + "S" + ], + [ + "pres", + "sing" + ], + [ + "mess", + "ages" + ], + [ + "w", + "it" + ], + [ + "ic", + "ious" + ], + [ + "ch", + "ance" + ], + [ + "Jour", + "nal" + ], + [ + "P", + "ublic" + ], + [ + "hy", + "po" + ], + [ + "responsib", + "ility" + ], + [ + "âĢ", + "¢Ġ" + ], + [ + "del", + "i" + ], + [ + "mar", + "ks" + ], + [ + "dim", + "ension" + ], + [ + "Y", + "ear" + ], + [ + "Ċĉĉ", + "ĉĉ" + ], + [ + "incredi", + "ble" + ], + [ + "ab", + "sol" + ], + [ + "ex", + "cell" + ], + [ + "expl", + "oration" + ], + [ + "refer", + "ence" + ], + [ + "ad", + "j" + ], + [ + "tre", + "ated" + ], + [ + "cent", + "uries" + ], + [ + "C", + "y" + ], + [ + "consci", + "ous" + ], + [ + "hy", + "dr" + ], + [ + "b", + "ag" + ], + [ + "ari", + "a" + ], + [ + "lamb", + "da" + ], + [ + "aim", + "ed" + ], + [ + "pl", + "astic" + ], + [ + "g", + "ave" + ], + [ + "lo", + "ved" + ], + [ + "approxim", + "ately" + ], + [ + "qu", + "ery" + ], + [ + "T", + "er" + ], + [ + "sh", + "ift" + ], + [ + "prep", + "ared" + ], + [ + "dis", + "orders" + ], + [ + "tou", + "ch" + ], + [ + "encour", + "age" + ], + [ + "čĊ", + "čĊĠĠĠĠ" + ], + [ + "s", + "light" + ], + [ + "P", + "art" + ], + [ + "B", + "ud" + ], + [ + "Gre", + "en" + ], + [ + "Ã", + "Ń" + ], + [ + "u", + "til" + ], + [ + "select", + "ed" + ], + [ + "sh", + "all" + ], + [ + "ter", + "rit" + ], + [ + "fe", + "e" + ], + [ + "pr", + "ices" + ], + [ + "v", + "a" + ], + [ + "ad", + "ing" + ], + [ + "ph", + "r" + ], + [ + "pe", + "ace" + ], + [ + "m", + "ountain" + ], + [ + "har", + "mon" + ], + [ + "-", + ">Ġ" + ], + [ + "dis", + "order" + ], + [ + "J", + "ames" + ], + [ + "Pr", + "ac" + ], + [ + "dis", + "crim" + ], + [ + "C", + "A" + ], + [ + "Wash", + "ington" + ], + [ + "happ", + "ened" + ], + [ + "te", + "eth" + ], + [ + "Lear", + "ning" + ], + [ + "R", + "ef" + ], + [ + "Sc", + "ot" + ], + [ + "s", + "and" + ], + [ + "p", + "d" + ], + [ + "sk", + "y" + ], + [ + "Gr", + "ou" + ], + [ + "Austral", + "ia" + ], + [ + "ren", + "der" + ], + [ + "dig", + "it" + ], + [ + "p", + "tions" + ], + [ + "Ġ", + "@" + ], + [ + "c", + "ket" + ], + [ + "conver", + "t" + ], + [ + "or", + "ial" + ], + [ + "ot", + "al" + ], + [ + "dom", + "in" + ], + [ + "clin", + "ical" + ], + [ + "sus", + "p" + ], + [ + "t", + "iny" + ], + [ + "p", + "ages" + ], + [ + "dig", + "its" + ], + [ + "recogn", + "ize" + ], + [ + "G", + "loss" + ], + [ + "ti", + "ps" + ], + [ + "L", + "ine" + ], + [ + "r", + "ati" + ], + [ + "re", + "ds" + ], + [ + "shap", + "es" + ], + [ + "guid", + "ance" + ], + [ + "ser", + "ver" + ], + [ + "sp", + "ent" + ], + [ + "fin", + "ally" + ], + [ + "=", + "-" + ], + [ + "Ñ", + "ĩ" + ], + [ + "spr", + "ing" + ], + [ + "$", + "Ġ" + ], + [ + "E", + "gy" + ], + [ + "neigh", + "bor" + ], + [ + "Cur", + "rent" + ], + [ + "Develop", + "ment" + ], + [ + "Ger", + "many" + ], + [ + "imp", + "acts" + ], + [ + "comfort", + "able" + ], + [ + "list", + "a" + ], + [ + "vis", + "ible" + ], + [ + "independ", + "ent" + ], + [ + "perspec", + "tive" + ], + [ + "ex", + "change" + ], + [ + "res", + "ist" + ], + [ + "cr", + "af" + ], + [ + "gard", + "en" + ], + [ + "in", + "sur" + ], + [ + "e", + "ast" + ], + [ + "Gloss", + "ary" + ], + [ + "inv", + "ent" + ], + [ + "op", + "s" + ], + [ + "cur", + "r" + ], + [ + "bound", + "aries" + ], + [ + "know", + "s" + ], + [ + "show", + "ed" + ], + [ + "Li", + "ke" + ], + [ + "mo", + "ves" + ], + [ + "\"", + "]" + ], + [ + "å", + "Ī" + ], + [ + "mis", + "sing" + ], + [ + "industr", + "ial" + ], + [ + "brid", + "ge" + ], + [ + "C", + "E" + ], + [ + "cour", + "age" + ], + [ + "we", + "ar" + ], + [ + "off", + "ice" + ], + [ + "er", + "ate" + ], + [ + "lo", + "se" + ], + [ + "appe", + "ars" + ], + [ + "ch", + "osen" + ], + [ + "S", + "uch" + ], + [ + "par", + "ties" + ], + [ + "pain", + "t" + ], + [ + "dis", + "covery" + ], + [ + "pro", + "to" + ], + [ + "dr", + "ugs" + ], + [ + "eth", + "ical" + ], + [ + "an", + "c" + ], + [ + "consist", + "ent" + ], + [ + "b", + "one" + ], + [ + "inter", + "act" + ], + [ + "v", + "s" + ], + [ + "explain", + "ed" + ], + [ + "Colle", + "ge" + ], + [ + "um", + "a" + ], + [ + "mo", + "vie" + ], + [ + "sel", + "l" + ], + [ + "is", + "ol" + ], + [ + "ex", + "cl" + ], + [ + "high", + "est" + ], + [ + "for", + "ced" + ], + [ + "M", + "ac" + ], + [ + "support", + "ing" + ], + [ + "ti", + "le" + ], + [ + "combin", + "ation" + ], + [ + "intellig", + "ence" + ], + [ + "p", + "a" + ], + [ + "bar", + "ri" + ], + [ + "P", + "ower" + ], + [ + "par", + "ams" + ], + [ + "ger", + "y" + ], + [ + "bu", + "tions" + ], + [ + "p", + "in" + ], + [ + "el", + "im" + ], + [ + "H", + "o" + ], + [ + "D", + "if" + ], + [ + "G", + "reek" + ], + [ + "Mid", + "dle" + ], + [ + "ë", + "ĭ" + ], + [ + "im", + "ent" + ], + [ + "vis", + "ited" + ], + [ + "vul", + "ner" + ], + [ + "ic", + "y" + ], + [ + "There", + "fore" + ], + [ + "des", + "ired" + ], + [ + "augh", + "ter" + ], + [ + "pre", + "gn" + ], + [ + "at", + "tempt" + ], + [ + "ut", + "f" + ], + [ + "pow", + "ers" + ], + [ + "inter", + "actions" + ], + [ + "pl", + "us" + ], + [ + "Will", + "iam" + ], + [ + "commun", + "icate" + ], + [ + "ev", + "ing" + ], + [ + "audi", + "ence" + ], + [ + "str", + "act" + ], + [ + "Med", + "ic" + ], + [ + "cogn", + "itive" + ], + [ + "O", + "pen" + ], + [ + "al", + "cohol" + ], + [ + "os", + "ing" + ], + [ + "mil", + "k" + ], + [ + "assess", + "ment" + ], + [ + "sh", + "o" + ], + [ + "po", + "ol" + ], + [ + "dri", + "ve" + ], + [ + "invest", + "ment" + ], + [ + "Retur", + "ns" + ], + [ + "en", + "em" + ], + [ + "stra", + "ight" + ], + [ + "ob", + "served" + ], + [ + "âĢ", + "ĺ" + ], + [ + "W", + "ind" + ], + [ + "clo", + "ser" + ], + [ + "be", + "auty" + ], + [ + "advant", + "ages" + ], + [ + "P", + "ost" + ], + [ + "Go", + "ogle" + ], + [ + "read", + "er" + ], + [ + "es", + "tic" + ], + [ + "min", + "or" + ], + [ + "st", + "ers" + ], + [ + "Ġ", + "#Ġ" + ], + [ + "good", + "s" + ], + [ + "an", + "o" + ], + [ + "ach", + "es" + ], + [ + "f", + "ab" + ], + [ + "f", + "ant" + ], + [ + "y", + "es" + ], + [ + "k", + "war" + ], + [ + "Wor", + "k" + ], + [ + "gain", + "ed" + ], + [ + "pass", + "ion" + ], + [ + "ĊĊĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "st", + "ro" + ], + [ + "Ġ(", + "Ġ" + ], + [ + "Span", + "ish" + ], + [ + "M", + "L" + ], + [ + "e", + "ight" + ], + [ + "list", + "s" + ], + [ + "W", + "omen" + ], + [ + "Man", + "agement" + ], + [ + "behavi", + "ors" + ], + [ + "ke", + "ting" + ], + [ + "cor", + "respond" + ], + [ + "id", + "a" + ], + [ + "ded", + "icated" + ], + [ + "mit", + "ted" + ], + [ + "if", + "ying" + ], + [ + "tis", + "sue" + ], + [ + "so", + "le" + ], + [ + "F", + "re" + ], + [ + "fic", + "ial" + ], + [ + "commer", + "cial" + ], + [ + "M", + "ary" + ], + [ + "Fr", + "ame" + ], + [ + "Ques", + "tion" + ], + [ + "incre", + "ases" + ], + [ + "F", + "il" + ], + [ + "vir", + "tual" + ], + [ + "lo", + "ts" + ], + [ + "exper", + "ts" + ], + [ + "Happ", + "y" + ], + [ + "an", + "ks" + ], + [ + "ad", + "s" + ], + [ + "t", + "f" + ], + [ + "car", + "s" + ], + [ + "compu", + "ters" + ], + [ + "s", + "ides" + ], + [ + "fort", + "un" + ], + [ + "P", + "A" + ], + [ + "con", + "tract" + ], + [ + "organ", + "ic" + ], + [ + "ad", + "ult" + ], + [ + "dou", + "ble" + ], + [ + "i", + "ents" + ], + [ + "int", + "en" + ], + [ + "re", + "new" + ], + [ + "dif", + "f" + ], + [ + "tr", + "affic" + ], + [ + "as", + "sum" + ], + [ + "represent", + "ed" + ], + [ + "kwar", + "gs" + ], + [ + "tr", + "uly" + ], + [ + "demo", + "cr" + ], + [ + "grad", + "u" + ], + [ + "th", + "in" + ], + [ + "suf", + "ficient" + ], + [ + "S", + "to" + ], + [ + "was", + "n" + ], + [ + "st", + "ick" + ], + [ + "F", + "ore" + ], + [ + "sugg", + "ests" + ], + [ + "ne", + "tic" + ], + [ + "acti", + "v" + ], + [ + "dia", + "betes" + ], + [ + "M", + "A" + ], + [ + "cons", + "ult" + ], + [ + "^", + "Ġ" + ], + [ + "happ", + "y" + ], + [ + "conf", + "idence" + ], + [ + "region", + "al" + ], + [ + "along", + "side" + ], + [ + "Soci", + "ety" + ], + [ + "electric", + "ity" + ], + [ + "sco", + "res" + ], + [ + "ecti", + "ves" + ], + [ + "re", + "in" + ], + [ + "el", + "lect" + ], + [ + "descri", + "be" + ], + [ + "con", + "servation" + ], + [ + "vol", + "un" + ], + [ + "insp", + "ired" + ], + [ + "cred", + "it" + ], + [ + "iz", + "er" + ], + [ + "ext", + "rem" + ], + [ + "re", + "str" + ], + [ + "liter", + "ary" + ], + [ + "P", + "ho" + ], + [ + "re", + "volution" + ], + [ + "We", + "b" + ], + [ + "U", + "K" + ], + [ + "optim", + "al" + ], + [ + "at", + "ter" + ], + [ + "n", + "g" + ], + [ + "pha", + "se" + ], + [ + "ed", + "ia" + ], + [ + "Associ", + "ation" + ], + [ + "cur", + "iosity" + ], + [ + "ing", + "u" + ], + [ + "mo", + "tion" + ], + [ + "Ġ=Ġ", + "{" + ], + [ + "then", + "tic" + ], + [ + "Child", + "ren" + ], + [ + "C", + "ong" + ], + [ + "V", + "ID" + ], + [ + "poli", + "tics" + ], + [ + "i", + "stry" + ], + [ + "pot", + "entially" + ], + [ + "ì", + "ŀ" + ], + [ + "olog", + "ists" + ], + [ + "S", + "en" + ], + [ + "her", + "itage" + ], + [ + "vil", + "le" + ], + [ + "G", + "ood" + ], + [ + "In", + "dig" + ], + [ + "ap", + "art" + ], + [ + "advent", + "ure" + ], + [ + "C", + "ase" + ], + [ + "mat", + "ic" + ], + [ + "Ġ", + "**" + ], + [ + "call", + "s" + ], + [ + "found", + "ation" + ], + [ + "c", + "atch" + ], + [ + "al", + "ysis" + ], + [ + "t", + "ro" + ], + [ + "minim", + "um" + ], + [ + "Bo", + "ok" + ], + [ + "ê", + "°" + ], + [ + "mus", + "cle" + ], + [ + "datab", + "ase" + ], + [ + "Inde", + "x" + ], + [ + "i", + "at" + ], + [ + "vers", + "al" + ], + [ + "L", + "in" + ], + [ + "·", + "Ġ" + ], + [ + "U", + "l" + ], + [ + "chr", + "onic" + ], + [ + "z", + "o" + ], + [ + "Cent", + "ral" + ], + [ + "Am", + "ong" + ], + [ + "analy", + "zing" + ], + [ + "Ð", + "·" + ], + [ + "Sar", + "ah" + ], + [ + "Rep", + "ublic" + ], + [ + "exc", + "iting" + ], + [ + "re", + "ports" + ], + [ + "en", + "sions" + ], + [ + "reg", + "ul" + ], + [ + "te", + "ams" + ], + [ + "hund", + "reds" + ], + [ + "or", + "ient" + ], + [ + "Ph", + "ys" + ], + [ + ",Ġ", + "(" + ], + [ + "pur", + "poses" + ], + [ + "par", + "se" + ], + [ + "r", + "ul" + ], + [ + "categ", + "ory" + ], + [ + "ex", + "hib" + ], + [ + "T", + "ext" + ], + [ + "ob", + "serv" + ], + [ + "employe", + "es" + ], + [ + "tru", + "th" + ], + [ + "A", + "B" + ], + [ + "Sub", + "tract" + ], + [ + "el", + "ine" + ], + [ + "Ge", + "orge" + ], + [ + "ex", + "press" + ], + [ + "m", + "m" + ], + [ + "det", + "ect" + ], + [ + "radi", + "o" + ], + [ + "R", + "ich" + ], + [ + "th", + "ick" + ], + [ + "bre", + "aking" + ], + [ + "k", + "new" + ], + [ + "gre", + "es" + ], + [ + "co", + "s" + ], + [ + "period", + "s" + ], + [ + "design", + "s" + ], + [ + ".", + "ĠĠ" + ], + [ + "G", + "B" + ], + [ + "im", + "plications" + ], + [ + "combin", + "ed" + ], + [ + "fac", + "ing" + ], + [ + "P", + "or" + ], + [ + "temper", + "atures" + ], + [ + "de", + "pression" + ], + [ + "an", + "th" + ], + [ + "ot", + "y" + ], + [ + "meaning", + "ful" + ], + [ + "fra", + "structure" + ], + [ + "leg", + "is" + ], + [ + "comp", + "are" + ], + [ + "treat", + "ments" + ], + [ + "'", + "))" + ], + [ + "us", + "ual" + ], + [ + "ar", + "row" + ], + [ + "N", + "ote" + ], + [ + "l", + "an" + ], + [ + "sub", + "jects" + ], + [ + "N", + "at" + ], + [ + "M", + "en" + ], + [ + "custom", + "er" + ], + [ + "M", + "il" + ], + [ + "produ", + "c" + ], + [ + "ca", + "de" + ], + [ + "bab", + "y" + ], + [ + "distri", + "but" + ], + [ + "am", + "oun" + ], + [ + "ti", + "se" + ], + [ + "cl", + "ub" + ], + [ + "tem", + "porary" + ], + [ + "ic", + "it" + ], + [ + "ain", + "t" + ], + [ + "M", + "em" + ], + [ + "Str", + "ing" + ], + [ + "Col", + "or" + ], + [ + "no", + "tice" + ], + [ + "docu", + "ments" + ], + [ + "ef", + "ul" + ], + [ + "en", + "um" + ], + [ + "Po", + "int" + ], + [ + "scri", + "pt" + ], + [ + "comple", + "ted" + ], + [ + "Ġ", + "Â" + ], + [ + "arti", + "st" + ], + [ + "intr", + "icate" + ], + [ + "other", + "wise" + ], + [ + "know", + "ing" + ], + [ + "immedi", + "ately" + ], + [ + "man", + "ip" + ], + [ + "ack", + "now" + ], + [ + "ar", + "di" + ], + [ + "w", + "ers" + ], + [ + "fru", + "its" + ], + [ + "ot", + "ed" + ], + [ + "ch", + "ec" + ], + [ + "as", + "king" + ], + [ + "er", + "gy" + ], + [ + "ic", + "ial" + ], + [ + "Wr", + "ite" + ], + [ + "writ", + "ers" + ], + [ + "par", + "k" + ], + [ + "r", + "am" + ], + [ + "advant", + "age" + ], + [ + "se", + "eds" + ], + [ + "program", + "ming" + ], + [ + "appear", + "ance" + ], + [ + "tic", + "es" + ], + [ + "æ", + "ķ" + ], + [ + "mon", + "itoring" + ], + [ + "ic", + "a" + ], + [ + "colle", + "ctive" + ], + [ + "n", + "ations" + ], + [ + "en", + "ables" + ], + [ + "bl", + "ing" + ], + [ + "flo", + "or" + ], + [ + "Dav", + "id" + ], + [ + "min", + "er" + ], + [ + "migr", + "ation" + ], + [ + "return", + "ed" + ], + [ + "circum", + "st" + ], + [ + "act", + "ors" + ], + [ + "l", + "on" + ], + [ + "hor", + "iz" + ], + [ + "ann", + "oun" + ], + [ + "C", + "i" + ], + [ + "explore", + "d" + ], + [ + "B", + "ur" + ], + [ + "f", + "old" + ], + [ + "under", + "lying" + ], + [ + "P", + "aul" + ], + [ + "ic", + "an" + ], + [ + "B", + "et" + ], + [ + "exist", + "ence" + ], + [ + "flow", + "ers" + ], + [ + "le", + "ts" + ], + [ + "feed", + "back" + ], + [ + "ten", + "ance" + ], + [ + "ver", + "si" + ], + [ + "interest", + "ed" + ], + [ + "B", + "ra" + ], + [ + "air", + "s" + ], + [ + "sum", + "mary" + ], + [ + "th", + "y" + ], + [ + "T", + "each" + ], + [ + "in", + "se" + ], + [ + "has", + "h" + ], + [ + "re", + "mind" + ], + [ + "veget", + "ables" + ], + [ + "pers", + "ist" + ], + [ + "Fol", + "low" + ], + [ + "Sp", + "ace" + ], + [ + "M", + "M" + ], + [ + "Ġ", + ")Ġ" + ], + [ + "cr", + "is" + ], + [ + "St", + "and" + ], + [ + "Fr", + "an" + ], + [ + "Indig", + "enous" + ], + [ + "E", + "ff" + ], + [ + "previous", + "ly" + ], + [ + "n", + "ine" + ], + [ + "o", + "cean" + ], + [ + "leaders", + "hip" + ], + [ + "determin", + "ed" + ], + [ + "res", + "ol" + ], + [ + "i", + "to" + ], + [ + "cut", + "ting" + ], + [ + "oc", + "cas" + ], + [ + "techn", + "ical" + ], + [ + "regular", + "ly" + ], + [ + "F", + "o" + ], + [ + "~", + "~" + ], + [ + "mot", + "or" + ], + [ + "c", + "ks" + ], + [ + "ma", + "ge" + ], + [ + "open", + "ing" + ], + [ + "say", + "ing" + ], + [ + "mob", + "ile" + ], + [ + "ten", + "s" + ], + [ + "IN", + "G" + ], + [ + "dynam", + "ic" + ], + [ + "ele", + "ction" + ], + [ + "oxy", + "gen" + ], + [ + "job", + "s" + ], + [ + "sty", + "les" + ], + [ + "clo", + "sed" + ], + [ + "inter", + "net" + ], + [ + "emis", + "sions" + ], + [ + "f", + "aster" + ], + [ + "was", + "h" + ], + [ + "a", + "head" + ], + [ + "de", + "grees" + ], + [ + "Mod", + "el" + ], + [ + "An", + "g" + ], + [ + "rece", + "i" + ], + [ + "transport", + "ation" + ], + [ + "ten", + "sion" + ], + [ + "tr", + "al" + ], + [ + "B", + "us" + ], + [ + "L", + "O" + ], + [ + "follow", + "s" + ], + [ + "Gi", + "ven" + ], + [ + "T", + "E" + ], + [ + "strong", + "er" + ], + [ + "bl", + "ed" + ], + [ + "ar", + "ts" + ], + [ + "lo", + "oks" + ], + [ + "reach", + "ed" + ], + [ + "T", + "ex" + ], + [ + "algorith", + "m" + ], + [ + "conduct", + "ed" + ], + [ + "symbol", + "s" + ], + [ + "tal", + "king" + ], + [ + "g", + "od" + ], + [ + "suit", + "able" + ], + [ + "CO", + "VID" + ], + [ + "Cont", + "rol" + ], + [ + "g", + "ate" + ], + [ + "parti", + "cles" + ], + [ + "prep", + "are" + ], + [ + "br", + "ight" + ], + [ + "in", + "ates" + ], + [ + "sp", + "end" + ], + [ + "t", + "um" + ], + [ + "off", + "set" + ], + [ + "complex", + "ity" + ], + [ + "bill", + "ion" + ], + [ + "D", + "id" + ], + [ + "M", + "is" + ], + [ + "wid", + "ely" + ], + [ + "f", + "irm" + ], + [ + "shap", + "ed" + ], + [ + "pre", + "cis" + ], + [ + "t", + "mp" + ], + [ + "ons", + "es" + ], + [ + "her", + "o" + ], + [ + "i", + "i" + ], + [ + "un", + "expected" + ], + [ + "bor", + "row" + ], + [ + "f", + "ellow" + ], + [ + "pre", + "c" + ], + [ + "instru", + "ctions" + ], + [ + "bir", + "d" + ], + [ + "secon", + "ds" + ], + [ + "Ear", + "ly" + ], + [ + "date", + "time" + ], + [ + "G", + "lo" + ], + [ + "In", + "iti" + ], + [ + "y", + "a" + ], + [ + "do", + "ors" + ], + [ + "dri", + "ving" + ], + [ + "ven", + "tions" + ], + [ + "C", + "C" + ], + [ + "evalu", + "ates" + ], + [ + "Br", + "it" + ], + [ + "men", + "u" + ], + [ + "apply", + "ing" + ], + [ + "S", + "ha" + ], + [ + "conven", + "tional" + ], + [ + "v", + "as" + ], + [ + "we", + "ights" + ], + [ + "y", + "ellow" + ], + [ + "ore", + "tical" + ], + [ + "Out", + "put" + ], + [ + "aren", + "t" + ], + [ + "]", + "Ġ==Ġ" + ], + [ + "atmo", + "sphere" + ], + [ + "val", + "ent" + ], + [ + "commun", + "ic" + ], + [ + "S", + "af" + ], + [ + "ade", + "qu" + ], + [ + "Pro", + "cess" + ], + [ + "L", + "ong" + ], + [ + "proper", + "ly" + ], + [ + "I", + "mage" + ], + [ + "th", + "read" + ], + [ + "bat", + "tle" + ], + [ + "rel", + "ax" + ], + [ + "m", + "ul" + ], + [ + "if", + "f" + ], + [ + "en", + "a" + ], + [ + "sh", + "ar" + ], + [ + "spe", + "aking" + ], + [ + "gen", + "es" + ], + [ + "av", + "a" + ], + [ + "pict", + "ures" + ], + [ + "k", + "id" + ], + [ + "H", + "and" + ], + [ + "ma", + "il" + ], + [ + "me", + "at" + ], + [ + "major", + "ity" + ], + [ + "Ġ(", + "\"" + ], + [ + "amoun", + "ts" + ], + [ + "M", + "er" + ], + [ + "m", + "ask" + ], + [ + "remo", + "ved" + ], + [ + "Bo", + "ard" + ], + [ + "w", + "ave" + ], + [ + "go", + "ti" + ], + [ + "re", + "mark" + ], + [ + "in", + "i" + ], + [ + "oper", + "ating" + ], + [ + "consider", + "ing" + ], + [ + "n", + "t" + ], + [ + "no", + "tic" + ], + [ + "you", + "th" + ], + [ + "E", + "ss" + ], + [ + "clear", + "ly" + ], + [ + "function", + "al" + ], + [ + "p", + "ip" + ], + [ + "ult", + "ane" + ], + [ + "Wh", + "ite" + ], + [ + "dec", + "ades" + ], + [ + "li", + "ber" + ], + [ + "streng", + "then" + ], + [ + "f", + "ine" + ], + [ + "m", + "ac" + ], + [ + "inj", + "ury" + ], + [ + "real", + "ized" + ], + [ + "defin", + "ition" + ], + [ + "at", + "o" + ], + [ + "aff", + "ects" + ], + [ + "err", + "ors" + ], + [ + "mor", + "al" + ], + [ + "W", + "he" + ], + [ + "rel", + "ations" + ], + [ + "sensi", + "tive" + ], + [ + "offic", + "ial" + ], + [ + "T", + "ake" + ], + [ + "\"", + ")Ġ" + ], + [ + ":Ġ", + "{" + ], + [ + "emer", + "ging" + ], + [ + "E", + "con" + ], + [ + "t", + "aught" + ], + [ + "sal", + "es" + ], + [ + "Grou", + "p" + ], + [ + "d", + "ot" + ], + [ + "dest", + "roy" + ], + [ + "[", + "-" + ], + [ + "gr", + "ass" + ], + [ + "gener", + "ated" + ], + [ + "me", + "ant" + ], + [ + "dee", + "ply" + ], + [ + "T", + "V" + ], + [ + "br", + "and" + ], + [ + "wis", + "dom" + ], + [ + "Asi", + "a" + ], + [ + "govern", + "ments" + ], + [ + "near", + "by" + ], + [ + "sol", + "di" + ], + [ + "cir", + "cle" + ], + [ + "mat", + "ters" + ], + [ + "O", + "ff" + ], + [ + "mechan", + "isms" + ], + [ + "expect", + "ations" + ], + [ + "br", + "a" + ], + [ + "P", + "ath" + ], + [ + "com", + "position" + ], + [ + "int", + "ellect" + ], + [ + "rel", + "ative" + ], + [ + "car", + "ried" + ], + [ + "competi", + "tion" + ], + [ + "Y", + "es" + ], + [ + "wa", + "ves" + ], + [ + "arr", + "ange" + ], + [ + "po", + "em" + ], + [ + "organ", + "isms" + ], + [ + "tr", + "ip" + ], + [ + "ide", + "al" + ], + [ + "Ar", + "ab" + ], + [ + "k", + "m" + ], + [ + "hold", + "ers" + ], + [ + "control", + "led" + ], + [ + ".", + ")" + ], + [ + "W", + "ord" + ], + [ + "C", + "P" + ], + [ + "fl", + "our" + ], + [ + "loc", + "ations" + ], + [ + "ad", + "ian" + ], + [ + "ill", + "ing" + ], + [ + "Con", + "n" + ], + [ + "e", + "try" + ], + [ + "in", + "frastructure" + ], + [ + "l", + "ig" + ], + [ + "rel", + "atively" + ], + [ + "int", + "ended" + ], + [ + "sim", + "pl" + ], + [ + "par", + "alle" + ], + [ + "bud", + "get" + ], + [ + "K", + "ore" + ], + [ + "ma", + "kers" + ], + [ + "bri", + "ef" + ], + [ + "ans", + "wers" + ], + [ + "jo", + "int" + ], + [ + "proced", + "ures" + ], + [ + "cre", + "atures" + ], + [ + "ch", + "er" + ], + [ + "employ", + "ment" + ], + [ + "Dis", + "cus" + ], + [ + "archit", + "ecture" + ], + [ + "offer", + "ed" + ], + [ + "liqu", + "id" + ], + [ + "ir", + "on" + ], + [ + "lead", + "er" + ], + [ + "r", + "ank" + ], + [ + "bre", + "ast" + ], + [ + "D", + "A" + ], + [ + "at", + "temp" + ], + [ + "cover", + "ing" + ], + [ + "C", + "all" + ], + [ + "de", + "lete" + ], + [ + "O", + "ld" + ], + [ + "app", + "ed" + ], + [ + "os", + "is" + ], + [ + "plat", + "form" + ], + [ + "Sci", + "enti" + ], + [ + "P", + "ac" + ], + [ + "tr", + "ou" + ], + [ + "Lat", + "in" + ], + [ + "capt", + "ure" + ], + [ + "il", + "ed" + ], + [ + "resp", + "onses" + ], + [ + "pi", + "x" + ], + [ + "Econ", + "om" + ], + [ + "support", + "ed" + ], + [ + "T", + "em" + ], + [ + "wall", + "s" + ], + [ + "x", + "y" + ], + [ + "Lo", + "ok" + ], + [ + "In", + "te" + ], + [ + "circumst", + "ances" + ], + [ + "refer", + "red" + ], + [ + "s", + "can" + ], + [ + "å", + "ħ" + ], + [ + "de", + "cide" + ], + [ + "su", + "d" + ], + [ + "li", + "e" + ], + [ + "ar", + "ms" + ], + [ + "sy", + "m" + ], + [ + "egg", + "s" + ], + [ + "ac", + "les" + ], + [ + "Techn", + "ology" + ], + [ + "ves", + "sel" + ], + [ + "excell", + "ent" + ], + [ + "L", + "and" + ], + [ + "hosp", + "ital" + ], + [ + "ri", + "age" + ], + [ + "ed", + "ing" + ], + [ + "w", + "ants" + ], + [ + "s", + "chem" + ], + [ + "Mod", + "ern" + ], + [ + "poll", + "ution" + ], + [ + "k", + "y" + ], + [ + "Stud", + "y" + ], + [ + "form", + "ing" + ], + [ + "To", + "gether" + ], + [ + "success", + "fully" + ], + [ + "Is", + "land" + ], + [ + "cre", + "te" + ], + [ + "col", + "s" + ], + [ + "us", + "age" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "in", + "ent" + ], + [ + "radi", + "ation" + ], + [ + "recogn", + "ition" + ], + [ + "'", + ")Ġ" + ], + [ + "remain", + "ed" + ], + [ + "s", + "an" + ], + [ + "en", + "de" + ], + [ + "list", + "en" + ], + [ + "electr", + "ical" + ], + [ + "?", + "\"Ġ" + ], + [ + "we", + "ap" + ], + [ + "en", + "v" + ], + [ + "ag", + "re" + ], + [ + "instru", + "ction" + ], + [ + "fail", + "ure" + ], + [ + "show", + "ing" + ], + [ + "hu", + "ge" + ], + [ + "trans", + "l" + ], + [ + "O", + "h" + ], + [ + "C", + "ath" + ], + [ + "em", + "power" + ], + [ + "colon", + "ial" + ], + [ + "tri", + "eved" + ], + [ + "medi", + "um" + ], + [ + "T", + "able" + ], + [ + "Coun", + "cil" + ], + [ + "r", + "on" + ], + [ + "w", + "estern" + ], + [ + "flo", + "od" + ], + [ + "vehic", + "le" + ], + [ + "k", + "in" + ], + [ + "report", + "ing" + ], + [ + "Ġ", + "^Ġ" + ], + [ + "thor", + "ough" + ], + [ + "St", + "re" + ], + [ + "C", + "R" + ], + [ + "int", + "roduction" + ], + [ + "cap", + "tiv" + ], + [ + "ra", + "ised" + ], + [ + "s", + "ig" + ], + [ + "p", + "ts" + ], + [ + "hy", + "per" + ], + [ + "a", + "str" + ], + [ + "organ", + "ized" + ], + [ + "dol", + "lar" + ], + [ + "could", + "n" + ], + [ + "En", + "gine" + ], + [ + "J", + "er" + ], + [ + "slight", + "ly" + ], + [ + "ha", + "z" + ], + [ + "f", + "u" + ], + [ + "ind", + "icate" + ], + [ + "S", + "pe" + ], + [ + "f", + "ly" + ], + [ + "ali", + "ke" + ], + [ + "Value", + "Error" + ], + [ + "gr", + "ant" + ], + [ + "ac", + "ed" + ], + [ + "ash", + "ion" + ], + [ + "cour", + "ses" + ], + [ + "mill", + "ions" + ], + [ + "Mus", + "lim" + ], + [ + "Ac", + "tivity" + ], + [ + "H", + "en" + ], + [ + "g", + "ro" + ], + [ + "ref", + "le" + ], + [ + "wal", + "king" + ], + [ + "id", + "ents" + ], + [ + "ann", + "ual" + ], + [ + "O", + "per" + ], + [ + "fl", + "at" + ], + [ + ",Ġ", + "-" + ], + [ + "au", + "thentic" + ], + [ + "every", + "day" + ], + [ + "S", + "ing" + ], + [ + "Serv", + "ice" + ], + [ + "techn", + "ological" + ], + [ + "st", + "ars" + ], + [ + "mark", + "ed" + ], + [ + "cep", + "tions" + ], + [ + "no", + "ise" + ], + [ + "M", + "ove" + ], + [ + "exerc", + "ises" + ], + [ + "################", + "################" + ], + [ + "reg", + "ulations" + ], + [ + "prote", + "ins" + ], + [ + "sud", + "den" + ], + [ + "sc", + "ene" + ], + [ + "Ã", + "¼" + ], + [ + "l", + "ers" + ], + [ + "arti", + "stic" + ], + [ + "b", + "t" + ], + [ + "encour", + "ages" + ], + [ + "st", + "d" + ], + [ + "strugg", + "le" + ], + [ + "sur", + "gery" + ], + [ + "V", + "ari" + ], + [ + "In", + "formation" + ], + [ + "appe", + "ared" + ], + [ + "embr", + "acing" + ], + [ + "t", + "aste" + ], + [ + "il", + "ing" + ], + [ + "inter", + "vention" + ], + [ + "Ab", + "out" + ], + [ + "improve", + "ment" + ], + [ + "P", + "op" + ], + [ + "qu", + "i" + ], + [ + "sh", + "or" + ], + [ + "gr", + "av" + ], + [ + "re", + "action" + ], + [ + "categ", + "ories" + ], + [ + "nuc", + "lear" + ], + [ + "Ci", + "vil" + ], + [ + "hold", + "ing" + ], + [ + "Pro", + "ject" + ], + [ + "po", + "ver" + ], + [ + "cir", + "cu" + ], + [ + "ass", + "istance" + ], + [ + "hous", + "es" + ], + [ + "Cho", + "ose" + ], + [ + "pu", + "zz" + ], + [ + "C", + "a" + ], + [ + "Ap", + "ply" + ], + [ + "fil", + "ms" + ], + [ + "sub", + "tract" + ], + [ + "mach", + "ines" + ], + [ + "S", + "S" + ], + [ + ")", + ";Ġ" + ], + [ + "emer", + "ged" + ], + [ + "z", + "on" + ], + [ + "he", + "ap" + ], + [ + "op", + "y" + ], + [ + "r", + "hy" + ], + [ + "Mic", + "ro" + ], + [ + "rati", + "o" + ], + [ + "author", + "ity" + ], + [ + "dialog", + "ue" + ], + [ + "c", + "in" + ], + [ + "soci", + "eties" + ], + [ + "un", + "k" + ], + [ + "list", + "ening" + ], + [ + "v", + "in" + ], + [ + "b", + "locks" + ], + [ + "plot", + "lib" + ], + [ + "е", + "н" + ], + [ + "T", + "reat" + ], + [ + "L", + "angu" + ], + [ + "rout", + "e" + ], + [ + "b", + "um" + ], + [ + "Thom", + "as" + ], + [ + "and", + "er" + ], + [ + "gr", + "ap" + ], + [ + "b", + "ility" + ], + [ + "direct", + "ory" + ], + [ + "W", + "al" + ], + [ + "is", + "land" + ], + [ + "electr", + "onic" + ], + [ + "S", + "elf" + ], + [ + "g", + "ment" + ], + [ + "produ", + "cing" + ], + [ + ")", + "]" + ], + [ + "form", + "al" + ], + [ + "pre", + "ferences" + ], + [ + "b", + "ell" + ], + [ + "ele", + "v" + ], + [ + "scen", + "arios" + ], + [ + "pr", + "ison" + ], + [ + "B", + "at" + ], + [ + "W", + "il" + ], + [ + "pr", + "ay" + ], + [ + "enab", + "ling" + ], + [ + "employ", + "ed" + ], + [ + "n", + "an" + ], + [ + "exam", + "ination" + ], + [ + "b", + "ond" + ], + [ + "Me", + "thod" + ], + [ + "En", + "ergy" + ], + [ + "adv", + "ice" + ], + [ + "vic", + "tim" + ], + [ + "ple", + "ase" + ], + [ + "li", + "ver" + ], + [ + "pro", + "ve" + ], + [ + "plic", + "ated" + ], + [ + "cur", + "ious" + ], + [ + "ab", + "use" + ], + [ + "harm", + "ful" + ], + [ + "Stu", + "dies" + ], + [ + "room", + "s" + ], + [ + "res", + "olution" + ], + [ + "ul", + "um" + ], + [ + "photo", + "graph" + ], + [ + "b", + "its" + ], + [ + "V", + "e" + ], + [ + "ne", + "u" + ], + [ + "prom", + "ise" + ], + [ + "G", + "ame" + ], + [ + "do", + "gs" + ], + [ + "implement", + "ation" + ], + [ + "notic", + "ed" + ], + [ + "tox", + "ic" + ], + [ + "well", + "being" + ], + [ + "pair", + "s" + ], + [ + "M", + "useum" + ], + [ + "he", + "aling" + ], + [ + "sp", + "an" + ], + [ + "b", + "row" + ], + [ + "b", + "order" + ], + [ + "inter", + "action" + ], + [ + "or", + "n" + ], + [ + "help", + "ful" + ], + [ + "turn", + "s" + ], + [ + "æ", + "ľ" + ], + [ + "S", + "ign" + ], + [ + "B", + "ay" + ], + [ + "farm", + "ers" + ], + [ + "St", + "at" + ], + [ + "rapid", + "ly" + ], + [ + "Mex", + "ico" + ], + [ + "A", + "A" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĊĠĠĠĠĠĠĠĠ" + ], + [ + "Or", + "ig" + ], + [ + "coun", + "ting" + ], + [ + "u", + "tional" + ], + [ + "se", + "ctions" + ], + [ + "pro", + "posed" + ], + [ + "ob", + "st" + ], + [ + "cons", + "ists" + ], + [ + "es", + "cap" + ], + [ + "L", + "L" + ], + [ + "as", + "su" + ], + [ + "Histor", + "ical" + ], + [ + "M", + "E" + ], + [ + "recomm", + "ended" + ], + [ + "divid", + "ed" + ], + [ + "av", + "ors" + ], + [ + "Ñģ", + "ÑĤ" + ], + [ + "absol", + "ute" + ], + [ + "vis", + "ions" + ], + [ + "Govern", + "ment" + ], + [ + "af", + "ford" + ], + [ + "demon", + "strate" + ], + [ + "M", + "et" + ], + [ + "of", + "fee" + ], + [ + "represent", + "ing" + ], + [ + ":Ġ", + "âĢľ" + ], + [ + "path", + "s" + ], + [ + "Ret", + "urn" + ], + [ + "tim", + "ate" + ], + [ + "mag", + "n" + ], + [ + "le", + "af" + ], + [ + "initi", + "atives" + ], + [ + "she", + "et" + ], + [ + "tr", + "ial" + ], + [ + "for", + "get" + ], + [ + "co", + "al" + ], + [ + "Ġ/", + "/Ġ" + ], + [ + "confl", + "icts" + ], + [ + "compreh", + "ensive" + ], + [ + "zer", + "os" + ], + [ + ">>", + ">Ġ" + ], + [ + "thus", + "i" + ], + [ + "death", + "s" + ], + [ + "convers", + "ations" + ], + [ + "Fig", + "ure" + ], + [ + "sal", + "t" + ], + [ + "se", + "mb" + ], + [ + "ful", + "ness" + ], + [ + "particip", + "ate" + ], + [ + "âĢ", + "ĵĠ" + ], + [ + "redu", + "ction" + ], + [ + "Inter", + "net" + ], + [ + "main", + "tenance" + ], + [ + "real", + "m" + ], + [ + "bi", + "ological" + ], + [ + "Mus", + "ic" + ], + [ + "flu", + "id" + ], + [ + "Ġ-", + ">Ġ" + ], + [ + "introdu", + "ce" + ], + [ + "L", + "ou" + ], + [ + "Cal", + "cul" + ], + [ + "vehic", + "les" + ], + [ + "fe", + "at" + ], + [ + "ins", + "ight" + ], + [ + "st", + "ages" + ], + [ + "u", + "ct" + ], + [ + "insur", + "ance" + ], + [ + "\"", + "))" + ], + [ + "discus", + "sed" + ], + [ + "emb", + "ark" + ], + [ + "he", + "aring" + ], + [ + "subst", + "anti" + ], + [ + "or", + "ds" + ], + [ + "Med", + "ical" + ], + [ + "ac", + "counts" + ], + [ + "chemical", + "s" + ], + [ + "c", + "rop" + ], + [ + "preser", + "ving" + ], + [ + "æķ", + "°" + ], + [ + "An", + "ti" + ], + [ + "sim", + "ultane" + ], + [ + "C", + "ri" + ], + [ + "nutri", + "tion" + ], + [ + "ar", + "an" + ], + [ + ")Ġ", + "->Ġ" + ], + [ + "esty", + "le" + ], + [ + "A", + "ge" + ], + [ + "mar", + "ine" + ], + [ + "wa", + "iting" + ], + [ + "T", + "om" + ], + [ + "An", + "alysis" + ], + [ + "sign", + "als" + ], + [ + "man", + "aged" + ], + [ + "colle", + "ctions" + ], + [ + "Cong", + "ress" + ], + [ + "estim", + "ated" + ], + [ + "psych", + "ological" + ], + [ + "down", + "load" + ], + [ + "hab", + "its" + ], + [ + "pos", + "ing" + ], + [ + "to", + "oth" + ], + [ + "compass", + "ion" + ], + [ + "ne", + "goti" + ], + [ + "prof", + "ound" + ], + [ + "pos", + "ite" + ], + [ + "T", + "S" + ], + [ + "fr", + "on" + ], + [ + "ac", + "compl" + ], + [ + "pain", + "ting" + ], + [ + "own", + "ed" + ], + [ + "industr", + "ies" + ], + [ + "practic", + "ing" + ], + [ + "U", + "s" + ], + [ + "cur", + "ric" + ], + [ + "z", + "one" + ], + [ + "olog", + "ist" + ], + [ + "ox", + "ide" + ], + [ + "ast", + "y" + ], + [ + "s", + "om" + ], + [ + "re", + "covery" + ], + [ + "ìĿ", + "´" + ], + [ + "ext", + "re" + ], + [ + "b", + "ol" + ], + [ + "em", + "ic" + ], + [ + "p", + "aid" + ], + [ + "log", + "ical" + ], + [ + "en", + "thusi" + ], + [ + "gu", + "ard" + ], + [ + "H", + "ome" + ], + [ + "Pr", + "acti" + ], + [ + "S", + "ear" + ], + [ + "assign", + "ment" + ], + [ + "Russi", + "an" + ], + [ + "sh", + "ot" + ], + [ + "čĊ", + "ĉĉ" + ], + [ + "re", + "ward" + ], + [ + "f", + "ont" + ], + [ + "discrim", + "ination" + ], + [ + "r", + "ub" + ], + [ + "]", + "]" + ], + [ + "tic", + "ism" + ], + [ + "dre", + "am" + ], + [ + "me", + "al" + ], + [ + "qual", + "ities" + ], + [ + "r", + "t" + ], + [ + "br", + "anch" + ], + [ + "Tr", + "ain" + ], + [ + "do", + "ctors" + ], + [ + "Build", + "ing" + ], + [ + "z", + "en" + ], + [ + "onom", + "y" + ], + [ + "w", + "aters" + ], + [ + "mix", + "ed" + ], + [ + "b", + "ind" + ], + [ + "An", + "y" + ], + [ + "prom", + "pt" + ], + [ + "Pr", + "int" + ], + [ + "begin", + "s" + ], + [ + "amid", + "st" + ], + [ + "N", + "ative" + ], + [ + "pres", + "sive" + ], + [ + "kill", + "ed" + ], + [ + "D", + "own" + ], + [ + "enh", + "ancing" + ], + [ + "I", + "R" + ], + [ + "mo", + "v" + ], + [ + "mar", + "kets" + ], + [ + "mus", + "cles" + ], + [ + "agree", + "ment" + ], + [ + "enter", + "tain" + ], + [ + "danger", + "ous" + ], + [ + "amp", + "ion" + ], + [ + "ì", + "Ĺ" + ], + [ + "d", + "ance" + ], + [ + "mo", + "ti" + ], + [ + "ther", + "ap" + ], + [ + "store", + "d" + ], + [ + "extre", + "me" + ], + [ + "at", + "tract" + ], + [ + "in", + "puts" + ], + [ + "ag", + "ers" + ], + [ + "claim", + "s" + ], + [ + "i", + "ef" + ], + [ + "discus", + "sing" + ], + [ + "focus", + "es" + ], + [ + "nutri", + "ents" + ], + [ + "st", + "ake" + ], + [ + "open", + "ed" + ], + [ + "mag", + "ic" + ], + [ + "st", + "able" + ], + [ + "Ad", + "v" + ], + [ + "sur", + "vey" + ], + [ + "att", + "acks" + ], + [ + "M", + "ark" + ], + [ + "May", + "be" + ], + [ + "P", + "R" + ], + [ + "L", + "ord" + ], + [ + "tran", + "sition" + ], + [ + "ä", + "»" + ], + [ + "not", + "able" + ], + [ + "jo", + "ined" + ], + [ + "Cour", + "t" + ], + [ + "grow", + "n" + ], + [ + "ig", + "er" + ], + [ + "j", + "e" + ], + [ + "Ac", + "cess" + ], + [ + "sw", + "itch" + ], + [ + "phys", + "ic" + ], + [ + "tell", + "s" + ], + [ + "gen", + "re" + ], + [ + "Environ", + "mental" + ], + [ + "br", + "ush" + ], + [ + "cr", + "iter" + ], + [ + "f", + "ro" + ], + [ + "evalu", + "ation" + ], + [ + "f", + "if" + ], + [ + "Local", + "ization" + ], + [ + "!", + "!" + ], + [ + "the", + "less" + ], + [ + "Wh", + "ere" + ], + [ + "swe", + "et" + ], + [ + "res", + "sive" + ], + [ + "draw", + "n" + ], + [ + "ur", + "ally" + ], + [ + "there", + "by" + ], + [ + "vibr", + "ant" + ], + [ + "dis", + "rup" + ], + [ + "chann", + "el" + ], + [ + "aw", + "a" + ], + [ + "Sm", + "ith" + ], + [ + "An", + "aly" + ], + [ + "Expl", + "oring" + ], + [ + "ol", + "f" + ], + [ + "kind", + "s" + ], + [ + "P", + "an" + ], + [ + "es", + "ter" + ], + [ + "L", + "iter" + ], + [ + "recogn", + "ized" + ], + [ + "n", + "it" + ], + [ + "mar", + "keting" + ], + [ + "concer", + "n" + ], + [ + "character", + "ized" + ], + [ + "accept", + "ed" + ], + [ + "br", + "an" + ], + [ + "stre", + "t" + ], + [ + "ext", + "end" + ], + [ + "mom", + "ents" + ], + [ + "Di", + "vision" + ], + [ + "Pro", + "t" + ], + [ + "n", + "est" + ], + [ + ")", + "Ġ=Ġ" + ], + [ + "dom", + "ain" + ], + [ + "der", + "ived" + ], + [ + "ti", + "gh" + ], + [ + "pover", + "ty" + ], + [ + "bas", + "ics" + ], + [ + "dom", + "estic" + ], + [ + "identi", + "fying" + ], + [ + "ul", + "f" + ], + [ + "lat", + "est" + ], + [ + "c", + "row" + ], + [ + "Re", + "trieved" + ], + [ + "algorith", + "ms" + ], + [ + "wh", + "om" + ], + [ + "a", + "vi" + ], + [ + "ber", + "g" + ], + [ + "ab", + "ol" + ], + [ + "Do", + "es" + ], + [ + "s", + "now" + ], + [ + "continu", + "ous" + ], + [ + "i", + "ance" + ], + [ + "enum", + "erate" + ], + [ + "cam", + "era" + ], + [ + "see", + "ing" + ], + [ + "r", + "ail" + ], + [ + "p", + "ti" + ], + [ + "un", + "a" + ], + [ + "mo", + "tiv" + ], + [ + "r", + "ural" + ], + [ + "id", + "ing" + ], + [ + "agric", + "ulture" + ], + [ + "Bud", + "d" + ], + [ + "fortun", + "ately" + ], + [ + "))", + ")" + ], + [ + "st", + "ability" + ], + [ + "us", + "i" + ], + [ + "commit", + "ment" + ], + [ + "tri", + "ed" + ], + [ + "ad", + "ver" + ], + [ + "ar", + "a" + ], + [ + "se", + "ctor" + ], + [ + "P", + "O" + ], + [ + "ar", + "ity" + ], + [ + "L", + "os" + ], + [ + "eng", + "aged" + ], + [ + "dri", + "ver" + ], + [ + "It", + "al" + ], + [ + "su", + "es" + ], + [ + "set", + "tle" + ], + [ + "C", + "B" + ], + [ + "per", + "man" + ], + [ + "under", + "stood" + ], + [ + "om", + "b" + ], + [ + "f", + "lower" + ], + [ + "string", + "s" + ], + [ + "ven", + "ue" + ], + [ + "Ele", + "ctr" + ], + [ + "mo", + "ist" + ], + [ + "re", + "ly" + ], + [ + "learn", + "ers" + ], + [ + "cri", + "ption" + ], + [ + "fac", + "ilities" + ], + [ + "wit", + "ness" + ], + [ + "L", + "og" + ], + [ + "aff", + "ecting" + ], + [ + "ad", + "y" + ], + [ + "res", + "on" + ], + [ + "ex", + "posed" + ], + [ + "k", + "il" + ], + [ + "re", + "cur" + ], + [ + "is", + "ation" + ], + [ + "fun", + "ding" + ], + [ + "fr", + "ag" + ], + [ + "tra", + "its" + ], + [ + "P", + "sych" + ], + [ + "arti", + "ficial" + ], + [ + "S", + "at" + ], + [ + "fab", + "ric" + ], + [ + "reli", + "able" + ], + [ + "minim", + "ize" + ], + [ + "se", + "q" + ], + [ + "convers", + "ation" + ], + [ + "collect", + "ed" + ], + [ + "o", + "de" + ], + [ + "cor", + "ner" + ], + [ + "frame", + "work" + ], + [ + "S", + "elect" + ], + [ + "ul", + "i" + ], + [ + "record", + "ed" + ], + [ + "el", + "ess" + ], + [ + "Glo", + "bal" + ], + [ + "z", + "ip" + ], + [ + "insp", + "ire" + ], + [ + "D", + "u" + ], + [ + "?", + "**" + ], + [ + "l", + "ens" + ], + [ + "or", + "ous" + ], + [ + "],Ġ", + "[" + ], + [ + "expression", + "s" + ], + [ + "ast", + "ro" + ], + [ + "s", + "ight" + ], + [ + "schol", + "ars" + ], + [ + "Ġ", + "...Ġ" + ], + [ + "m", + "ur" + ], + [ + "suggest", + "ed" + ], + [ + "Li", + "br" + ], + [ + "reg", + "ister" + ], + [ + "determin", + "ation" + ], + [ + "partners", + "hip" + ], + [ + "extrem", + "ely" + ], + [ + "initi", + "ally" + ], + [ + "eth", + "nic" + ], + [ + "Z", + "e" + ], + [ + "u", + "ge" + ], + [ + "uni", + "verse" + ], + [ + "ur", + "ity" + ], + [ + "philos", + "ophy" + ], + [ + "F", + "ree" + ], + [ + "og", + "n" + ], + [ + "M", + "ass" + ], + [ + "per", + "ce" + ], + [ + "inst", + "ances" + ], + [ + "tur", + "tle" + ], + [ + "ans", + "ion" + ], + [ + "possib", + "ilities" + ], + [ + "Dr", + "aw" + ], + [ + "sustain", + "ability" + ], + [ + "J", + "ud" + ], + [ + "me", + "als" + ], + [ + "ch", + "ing" + ], + [ + "foc", + "using" + ], + [ + "]", + "Ġ+Ġ" + ], + [ + "D", + "emo" + ], + [ + "t", + "ack" + ], + [ + "Russi", + "a" + ], + [ + "ent", + "ed" + ], + [ + "direct", + "or" + ], + [ + "Bus", + "iness" + ], + [ + "pres", + "ident" + ], + [ + "produ", + "ctive" + ], + [ + "M", + "os" + ], + [ + "sc", + "al" + ], + [ + "$", + "$" + ], + [ + "Ar", + "my" + ], + [ + "advance", + "ments" + ], + [ + "inv", + "as" + ], + [ + "b", + "read" + ], + [ + "tal", + "es" + ], + [ + "consum", + "ers" + ], + [ + "Gr", + "aph" + ], + [ + "ke", + "pt" + ], + [ + "most", + "ly" + ], + [ + "survi", + "val" + ], + [ + "n", + "ings" + ], + [ + "U", + "ser" + ], + [ + "?", + "\"" + ], + [ + "sp", + "ect" + ], + [ + "dr", + "am" + ], + [ + "stand", + "s" + ], + [ + "contri", + "butions" + ], + [ + "H", + "or" + ], + [ + "N", + "on" + ], + [ + "fin", + "ished" + ], + [ + "T", + "or" + ], + [ + "arr", + "y" + ], + [ + "R", + "un" + ], + [ + "tu", + "de" + ], + [ + "pret", + "ty" + ], + [ + "Pac", + "ific" + ], + [ + "semb", + "ly" + ], + [ + "B", + "ro" + ], + [ + "New", + "s" + ], + [ + "id", + "ay" + ], + [ + "H", + "am" + ], + [ + "bu", + "g" + ], + [ + "ac", + "ies" + ], + [ + "ch", + "a" + ], + [ + "br", + "ings" + ], + [ + "i", + "tions" + ], + [ + "we", + "t" + ], + [ + "hor", + "se" + ], + [ + "remark", + "able" + ], + [ + "W", + "H" + ], + [ + "pol", + "ice" + ], + [ + "G", + "old" + ], + [ + "dis", + "h" + ], + [ + "inf", + "ections" + ], + [ + "dr", + "ome" + ], + [ + "it", + "able" + ], + [ + "prob", + "ability" + ], + [ + "fight", + "ing" + ], + [ + "ro", + "id" + ], + [ + "R", + "oy" + ], + [ + "us", + "r" + ], + [ + "subst", + "ance" + ], + [ + "decor", + "ator" + ], + [ + "mor", + "ning" + ], + [ + "Can", + "adian" + ], + [ + "p", + "up" + ], + [ + "si", + "zes" + ], + [ + "domin", + "ant" + ], + [ + "fix", + "ed" + ], + [ + "sc", + "ope" + ], + [ + "mus", + "ical" + ], + [ + "t", + "ons" + ], + [ + "Play", + "er" + ], + [ + "stor", + "m" + ], + [ + "ÑĢ", + "а" + ], + [ + "volun", + "te" + ], + [ + "stu", + "died" + ], + [ + "wonder", + "ed" + ], + [ + "P", + "L" + ], + [ + "Ġ-", + "*" + ], + [ + "AN", + "D" + ], + [ + "I", + "O" + ], + [ + ".", + "\")" + ], + [ + "gg", + "ing" + ], + [ + "r", + "ating" + ], + [ + "pi", + "v" + ], + [ + "ou", + "ter" + ], + [ + "cul", + "es" + ], + [ + "expl", + "an" + ], + [ + "g", + "ence" + ], + [ + "threat", + "s" + ], + [ + "schol", + "ar" + ], + [ + "ot", + "a" + ], + [ + "con", + "strain" + ], + [ + "run", + "s" + ], + [ + "occas", + "ion" + ], + [ + "Whe", + "ther" + ], + [ + "ro", + "bust" + ], + [ + "occur", + "red" + ], + [ + "mathemat", + "ical" + ], + [ + "M", + "O" + ], + [ + "Brit", + "ain" + ], + [ + "d", + "ates" + ], + [ + "hi", + "bi" + ], + [ + "ge", + "ome" + ], + [ + "facilit", + "ate" + ], + [ + "p", + "ig" + ], + [ + "ad", + "vis" + ], + [ + "cl", + "ients" + ], + [ + "Li", + "ving" + ], + [ + "A", + "cade" + ], + [ + "car", + "di" + ], + [ + "o", + "le" + ], + [ + "dim", + "ensions" + ], + [ + "n", + "n" + ], + [ + "w", + "ing" + ], + [ + "=", + "[" + ], + [ + "ox", + "id" + ], + [ + "tran", + "sp" + ], + [ + "mon", + "itor" + ], + [ + "barri", + "ers" + ], + [ + "tele", + "vision" + ], + [ + "K", + "now" + ], + [ + "f", + "ashion" + ], + [ + "Langu", + "age" + ], + [ + "efficient", + "ly" + ], + [ + "tr", + "ay" + ], + [ + "p", + "ic" + ], + [ + "Practi", + "ce" + ], + [ + "song", + "s" + ], + [ + "re", + "actions" + ], + [ + "vill", + "age" + ], + [ + "des", + "c" + ], + [ + "m", + "u" + ], + [ + "claim", + "ed" + ], + [ + "ep", + "is" + ], + [ + "chann", + "els" + ], + [ + "wild", + "life" + ], + [ + "Ap", + "pro" + ], + [ + "parame", + "ter" + ], + [ + "b", + "id" + ], + [ + "Pho", + "to" + ], + [ + "adequ", + "ate" + ], + [ + "to", + "ler" + ], + [ + "P", + "ubl" + ], + [ + "p", + "atch" + ], + [ + "entire", + "ly" + ], + [ + "Fun", + "ction" + ], + [ + "mag", + "ical" + ], + [ + "when", + "ever" + ], + [ + "dr", + "ink" + ], + [ + "p", + "to" + ], + [ + "correct", + "ly" + ], + [ + "Im", + "p" + ], + [ + "ic", + "tions" + ], + [ + "to", + "k" + ], + [ + "mat", + "plotlib" + ], + [ + "prot", + "ecting" + ], + [ + "rem", + "ote" + ], + [ + "til", + "l" + ], + [ + "perform", + "ing" + ], + [ + "em", + "bed" + ], + [ + "pre", + "ad" + ], + [ + "con", + "vey" + ], + [ + "manufac", + "turing" + ], + [ + "w", + "ish" + ], + [ + "arri", + "ved" + ], + [ + "part", + "ner" + ], + [ + "present", + "ation" + ], + [ + "Ro", + "bert" + ], + [ + "emer", + "gency" + ], + [ + "rac", + "ial" + ], + [ + "implement", + "ing" + ], + [ + "depend", + "ent" + ], + [ + "Ital", + "ian" + ], + [ + "b", + "rown" + ], + [ + "map", + "s" + ], + [ + "di", + "strict" + ], + [ + "gir", + "ls" + ], + [ + "diagno", + "sis" + ], + [ + "w", + "ife" + ], + [ + "s", + "old" + ], + [ + "w", + "o" + ], + [ + "__", + "Ġ==Ġ" + ], + [ + "main", + "ly" + ], + [ + "m", + "useum" + ], + [ + "Ex", + "ternal" + ], + [ + "pre", + "neur" + ], + [ + "nor", + "ms" + ], + [ + "proced", + "ure" + ], + [ + "exp", + "ensive" + ], + [ + "r", + "om" + ], + [ + "E", + "th" + ], + [ + "und", + "ers" + ], + [ + "B", + "E" + ], + [ + "w", + "i" + ], + [ + "second", + "ary" + ], + [ + "ĊĊ", + "ĉ" + ], + [ + "âĢĿ", + "Ġ(" + ], + [ + "integr", + "ation" + ], + [ + "ol", + "s" + ], + [ + "Ty", + "pes" + ], + [ + "un", + "known" + ], + [ + "el", + "i" + ], + [ + "stat", + "istics" + ], + [ + "not", + "ed" + ], + [ + "sequ", + "ent" + ], + [ + "L", + "it" + ], + [ + "U", + "r" + ], + [ + "H", + "u" + ], + [ + "J", + "ose" + ], + [ + "gre", + "w" + ], + [ + "cl", + "oud" + ], + [ + "ag", + "ent" + ], + [ + "inj", + "uries" + ], + [ + "voc", + "ab" + ], + [ + "conn", + "ecting" + ], + [ + "qu", + "est" + ], + [ + "ut", + "ed" + ], + [ + "Co", + "de" + ], + [ + "access", + "ible" + ], + [ + "P", + "E" + ], + [ + "my", + "th" + ], + [ + "bur", + "g" + ], + [ + "el", + "es" + ], + [ + "prot", + "ected" + ], + [ + "Ex", + "ception" + ], + [ + "cri", + "pt" + ], + [ + "stre", + "et" + ], + [ + "lo", + "s" + ], + [ + "B", + "io" + ], + [ + "D", + "ate" + ], + [ + "Tex", + "as" + ], + [ + "intr", + "ig" + ], + [ + "col", + "l" + ], + [ + "Le", + "ague" + ], + [ + "clo", + "thing" + ], + [ + "Se", + "a" + ], + [ + "Ch", + "ange" + ], + [ + "regard", + "less" + ], + [ + "h", + "ang" + ], + [ + "cro", + "ps" + ], + [ + "Ã", + "¶" + ], + [ + "ent", + "re" + ], + [ + "T", + "u" + ], + [ + "all", + "oc" + ], + [ + "ge", + "ograph" + ], + [ + "M", + "art" + ], + [ + "human", + "ity" + ], + [ + "turn", + "ing" + ], + [ + "Mean", + "while" + ], + [ + "c", + "offee" + ], + [ + "seem", + "ed" + ], + [ + "mer", + "ge" + ], + [ + "Con", + "sequently" + ], + [ + "H", + "a" + ], + [ + "acti", + "vely" + ], + [ + "pur", + "su" + ], + [ + "cr", + "ime" + ], + [ + "slow", + "ly" + ], + [ + "min", + "ute" + ], + [ + "B", + "ible" + ], + [ + "bal", + "anced" + ], + [ + "emo", + "tion" + ], + [ + "the", + "me" + ], + [ + "simultane", + "ously" + ], + [ + "ĠĠ", + ":ĠĠ" + ], + [ + "t", + "ab" + ], + [ + "hous", + "ing" + ], + [ + "Le", + "g" + ], + [ + "po", + "etry" + ], + [ + "man", + "if" + ], + [ + "B", + "ased" + ], + [ + "test", + "ed" + ], + [ + "Ch", + "all" + ], + [ + "d", + "ensity" + ], + [ + "cho", + "osing" + ], + [ + "Th", + "er" + ], + [ + "p", + "il" + ], + [ + "resid", + "ents" + ], + [ + "sh", + "ell" + ], + [ + "inspir", + "ation" + ], + [ + "requ", + "iring" + ], + [ + "s", + "per" + ], + [ + "ul", + "ating" + ], + [ + "incl", + "usive" + ], + [ + "ref", + "lection" + ], + [ + "ang", + "les" + ], + [ + "ast", + "s" + ], + [ + "R", + "ights" + ], + [ + "Austral", + "ian" + ], + [ + "lim", + "its" + ], + [ + "O", + "F" + ], + [ + "s", + "ick" + ], + [ + "v", + "ac" + ], + [ + "consider", + "ation" + ], + [ + "K", + "en" + ], + [ + "agre", + "ed" + ], + [ + "m", + "iti" + ], + [ + "incorpor", + "ate" + ], + [ + ")", + "Ġ(" + ], + [ + "Fl", + "or" + ], + [ + "plan", + "e" + ], + [ + "f", + "le" + ], + [ + "contribut", + "ing" + ], + [ + "preser", + "ve" + ], + [ + "Th", + "ose" + ], + [ + "sup", + "ports" + ], + [ + "a", + "a" + ], + [ + "web", + "sites" + ], + [ + "cris", + "is" + ], + [ + "ir", + "s" + ], + [ + "vacc", + "ine" + ], + [ + "oper", + "ate" + ], + [ + "H", + "IV" + ], + [ + "mis", + "sions" + ], + [ + "pos", + "it" + ], + [ + "par", + "a" + ], + [ + "P", + "M" + ], + [ + "L", + "ink" + ], + [ + "So", + "vi" + ], + [ + "оÐ", + "²" + ], + [ + "mas", + "sive" + ], + [ + "D", + "et" + ], + [ + "D", + "ep" + ], + [ + "I", + "F" + ], + [ + "agric", + "ultural" + ], + [ + "ion", + "e" + ], + [ + "ecti", + "veness" + ], + [ + "fo", + "ss" + ], + [ + "prof", + "essor" + ], + [ + "]", + "))" + ], + [ + "radi", + "us" + ], + [ + "hand", + "ling" + ], + [ + "ist", + "an" + ], + [ + "dis", + "hes" + ], + [ + "mo", + "od" + ], + [ + "M", + "iss" + ], + [ + "ed", + "ition" + ], + [ + "ext", + "ended" + ], + [ + "Lear", + "n" + ], + [ + "demonstr", + "ated" + ], + [ + ")", + ")Ġ" + ], + [ + "p", + "apers" + ], + [ + "stit", + "ution" + ], + [ + "Vir", + "gin" + ], + [ + "i", + "ers" + ], + [ + "================", + "================" + ], + [ + "provid", + "ers" + ], + [ + "E", + "qu" + ], + [ + "fore", + "sts" + ], + [ + "Y", + "et" + ], + [ + "On", + "ly" + ], + [ + "att", + "end" + ], + [ + "exec", + "ute" + ], + [ + "ph", + "ones" + ], + [ + "Au", + "thor" + ], + [ + "soldi", + "ers" + ], + [ + "than", + "ks" + ], + [ + "sc", + "atter" + ], + [ + "Comp", + "any" + ], + [ + "habit", + "at" + ], + [ + "margin", + "al" + ], + [ + "train", + "ed" + ], + [ + "cur", + "sor" + ], + [ + "story", + "telling" + ], + [ + "Char", + "les" + ], + [ + "Car", + "ol" + ], + [ + "where", + "as" + ], + [ + "un", + "certain" + ], + [ + "enem", + "y" + ], + [ + "M", + "u" + ], + [ + "Ar", + "ray" + ], + [ + "teen", + "th" + ], + [ + "purch", + "ase" + ], + [ + "list", + "ed" + ], + [ + "bon", + "ds" + ], + [ + "Or", + "der" + ], + [ + "ic", + "on" + ], + [ + ":Ġ", + "(" + ], + [ + "um", + "es" + ], + [ + "ã", + "Ĥ" + ], + [ + "C", + "er" + ], + [ + "reach", + "ing" + ], + [ + "sh", + "el" + ], + [ + "transform", + "ation" + ], + [ + "In", + "du" + ], + [ + "R", + "ight" + ], + [ + "å", + "IJ" + ], + [ + "sou", + "thern" + ], + [ + "Ã", + "§" + ], + [ + "Sear", + "ch" + ], + [ + "c", + "tic" + ], + [ + "bir", + "ths" + ], + [ + "S", + "pr" + ], + [ + "val", + "or" + ], + [ + "exper", + "tise" + ], + [ + "Ġ", + "{}Ġ" + ], + [ + "Com", + "ple" + ], + [ + "dem", + "ands" + ], + [ + "stat", + "ic" + ], + [ + "T", + "otal" + ], + [ + "cent", + "ers" + ], + [ + "ess", + "ays" + ], + [ + "de", + "aling" + ], + [ + "in", + "ations" + ], + [ + "Ä", + "ģ" + ], + [ + "Fr", + "ank" + ], + [ + "coord", + "inates" + ], + [ + "s", + "ought" + ], + [ + "feel", + "s" + ], + [ + "Jew", + "s" + ], + [ + "inter", + "pre" + ], + [ + "audi", + "o" + ], + [ + "dis", + "par" + ], + [ + "percent", + "age" + ], + [ + "dist", + "ingu" + ], + [ + "cup", + "s" + ], + [ + "Medic", + "ine" + ], + [ + "a", + "qu" + ], + [ + "be", + "ar" + ], + [ + "in", + "ches" + ], + [ + "R", + "A" + ], + [ + "mind", + "s" + ], + [ + "re", + "tain" + ], + [ + "philos", + "oph" + ], + [ + "vit", + "amin" + ], + [ + "oper", + "ator" + ], + [ + "me", + "tr" + ], + [ + "electr", + "on" + ], + [ + "instru", + "ments" + ], + [ + "intellect", + "ual" + ], + [ + "heav", + "ily" + ], + [ + "C", + "ir" + ], + [ + "mut", + "ual" + ], + [ + "Tr", + "adi" + ], + [ + "head", + "er" + ], + [ + "plac", + "ing" + ], + [ + "L", + "y" + ], + [ + "co", + "in" + ], + [ + "co", + "vers" + ], + [ + "bi", + "ology" + ], + [ + "neighb", + "ors" + ], + [ + "(\"", + "\\" + ], + [ + "Ques", + "tions" + ], + [ + "typ", + "ical" + ], + [ + "sp", + "her" + ], + [ + "iti", + "ci" + ], + [ + "':Ġ", + "'" + ], + [ + "v", + "ict" + ], + [ + "man", + "ner" + ], + [ + "special", + "ized" + ], + [ + "P", + "ass" + ], + [ + "cop", + "e" + ], + [ + "L", + "im" + ], + [ + "equ", + "i" + ], + [ + "d", + "ress" + ], + [ + "prof", + "ile" + ], + [ + "F", + "our" + ], + [ + "pr", + "on" + ], + [ + "and", + "a" + ], + [ + "des", + "er" + ], + [ + "fun", + "ds" + ], + [ + "i", + "j" + ], + [ + "ar", + "my" + ], + [ + "un", + "ion" + ], + [ + "up", + "s" + ], + [ + "bo", + "y" + ], + [ + "concentr", + "ation" + ], + [ + "ì", + "ł" + ], + [ + "ven", + "ile" + ], + [ + "Ġ", + "=" + ], + [ + "pre", + "vention" + ], + [ + "manufac", + "tur" + ], + [ + "particip", + "ation" + ], + [ + "I", + "L" + ], + [ + "pl", + "ain" + ], + [ + "st", + "ores" + ], + [ + "aim", + "s" + ], + [ + "asc", + "ular" + ], + [ + "g", + "ently" + ], + [ + "Cath", + "olic" + ], + [ + "gram", + "s" + ], + [ + "tr", + "um" + ], + [ + "own", + "er" + ], + [ + "Commun", + "ity" + ], + [ + "prom", + "ising" + ], + [ + "xt", + "ure" + ], + [ + "suffer", + "ing" + ], + [ + "dep", + "ends" + ], + [ + "detail", + "ed" + ], + [ + "sess", + "ions" + ], + [ + "fl", + "ight" + ], + [ + "if", + "ier" + ], + [ + "influ", + "ences" + ], + [ + "t", + "ut" + ], + [ + "Y", + "O" + ], + [ + "al", + "d" + ], + [ + "neighbor", + "hood" + ], + [ + "ph", + "er" + ], + [ + "ud", + "ed" + ], + [ + "н", + "а" + ], + [ + "design", + "ing" + ], + [ + "nat", + "urally" + ], + [ + "gr", + "at" + ], + [ + "wh", + "el" + ], + [ + "evol", + "ving" + ], + [ + "vol", + "t" + ], + [ + "repe", + "ated" + ], + [ + "S", + "qu" + ], + [ + "ã", + "Ģ" + ], + [ + "chr", + "om" + ], + [ + "obj", + "ectives" + ], + [ + "dri", + "ven" + ], + [ + "chi", + "ef" + ], + [ + "develop", + "ments" + ], + [ + "t", + "k" + ], + [ + "seem", + "ingly" + ], + [ + "Read", + "ing" + ], + [ + "st", + "ated" + ], + [ + "act", + "ing" + ], + [ + "Tr", + "y" + ], + [ + "amm", + "ation" + ], + [ + "mathemat", + "ics" + ], + [ + "measure", + "d" + ], + [ + "ex", + "ts" + ], + [ + "act", + "or" + ], + [ + "extra", + "ordinary" + ], + [ + "n", + "arrow" + ], + [ + "ch", + "ick" + ], + [ + "am", + "bi" + ], + [ + "captiv", + "ating" + ], + [ + "al", + "k" + ], + [ + "cre", + "am" + ], + [ + "mar", + "riage" + ], + [ + "gener", + "ator" + ], + [ + "nor", + "thern" + ], + [ + "del", + "icious" + ], + [ + "watch", + "ing" + ], + [ + "s", + "ke" + ], + [ + "tit", + "udes" + ], + [ + "og", + "en" + ], + [ + "the", + "ta" + ], + [ + "ac", + "eful" + ], + [ + "arg", + "ue" + ], + [ + "********", + "********" + ], + [ + "independ", + "ence" + ], + [ + "re", + "put" + ], + [ + "s", + "port" + ], + [ + "ste", + "el" + ], + [ + ".", + ";Ġ" + ], + [ + "fail", + "ed" + ], + [ + "EN", + "D" + ], + [ + "inher", + "ent" + ], + [ + "audi", + "ences" + ], + [ + "Cont", + "in" + ], + [ + "concer", + "ning" + ], + [ + "contain", + "er" + ], + [ + "mov", + "ies" + ], + [ + "reveal", + "ed" + ], + [ + "c", + "ash" + ], + [ + "identi", + "ties" + ], + [ + "ig", + "no" + ], + [ + "t", + "all" + ], + [ + "ell", + "a" + ], + [ + "consu", + "mer" + ], + [ + "D", + "y" + ], + [ + "ag", + "ency" + ], + [ + "D", + "ise" + ], + [ + "+", + "+" + ], + [ + "bro", + "ken" + ], + [ + "inter", + "ventions" + ], + [ + "er", + "as" + ], + [ + "S", + "il" + ], + [ + "practi", + "tion" + ], + [ + "Pl", + "ace" + ], + [ + "form", + "ula" + ], + [ + "TH", + "E" + ], + [ + "phys", + "ics" + ], + [ + "Prac", + "tical" + ], + [ + "EN", + "T" + ], + [ + "ha", + "el" + ], + [ + "the", + "ories" + ], + [ + "trig", + "ger" + ], + [ + "En", + "d" + ], + [ + "subst", + "ances" + ], + [ + "mem", + "ories" + ], + [ + "ro", + "bo" + ], + [ + "be", + "ings" + ], + [ + "but", + "ter" + ], + [ + "C", + "lim" + ], + [ + "last", + "ing" + ], + [ + "trans", + "mission" + ], + [ + "M", + "P" + ], + [ + "agr", + "aph" + ], + [ + "ag", + "encies" + ], + [ + "direct", + "ed" + ], + [ + "it", + "a" + ], + [ + "g", + "ap" + ], + [ + "landsc", + "apes" + ], + [ + "medic", + "ations" + ], + [ + "ate", + "ver" + ], + [ + "acc", + "um" + ], + [ + "influ", + "enced" + ], + [ + "leg", + "end" + ], + [ + "qu", + "er" + ], + [ + "en", + "compass" + ], + [ + "u", + "tive" + ], + [ + "princi", + "ple" + ], + [ + "sp", + "ending" + ], + [ + "h", + "an" + ], + [ + "dr", + "inking" + ], + [ + "M", + "ad" + ], + [ + "class", + "ic" + ], + [ + "us", + "ions" + ], + [ + "encour", + "aging" + ], + [ + "(", + "-" + ], + [ + "deli", + "very" + ], + [ + "G", + "l" + ], + [ + "M", + "ater" + ], + [ + "bre", + "aks" + ], + [ + "Th", + "ough" + ], + [ + "engine", + "ers" + ], + [ + "redu", + "ces" + ], + [ + "est", + "ate" + ], + [ + "rang", + "ing" + ], + [ + "histor", + "ic" + ], + [ + "Dig", + "ital" + ], + [ + "attribut", + "e" + ], + [ + "G", + "ra" + ], + [ + "th", + "res" + ], + [ + "Pol", + "i" + ], + [ + "Pro", + "ble" + ], + [ + "Inte", + "gr" + ], + [ + "pati", + "ence" + ], + [ + "vide", + "os" + ], + [ + "M", + "ill" + ], + [ + "cap", + "abilities" + ], + [ + "it", + "ors" + ], + [ + "Asi", + "an" + ], + [ + "suc", + "ceed" + ], + [ + "educ", + "ators" + ], + [ + "ag", + "ents" + ], + [ + "observ", + "ations" + ], + [ + "u", + "tic" + ], + [ + "a", + "es" + ], + [ + "sel", + "ling" + ], + [ + "ti", + "tude" + ], + [ + "found", + "ed" + ], + [ + "ex", + "ception" + ], + [ + "Pro", + "per" + ], + [ + "Nat", + "ural" + ], + [ + "o", + "ples" + ], + [ + "<", + "/" + ], + [ + "investig", + "ation" + ], + [ + "ers", + "on" + ], + [ + "Sovi", + "et" + ], + [ + "fall", + "s" + ], + [ + "F", + "ield" + ], + [ + "Re", + "view" + ], + [ + "ect", + "or" + ], + [ + "eff", + "ectiveness" + ], + [ + "ad", + "ds" + ], + [ + "em", + "on" + ], + [ + "Com", + "mission" + ], + [ + "ag", + "ues" + ], + [ + "l", + "un" + ], + [ + "for", + "th" + ], + [ + "Joh", + "ns" + ], + [ + "pro", + "of" + ], + [ + "Im", + "plement" + ], + [ + "di", + "str" + ], + [ + "equ", + "ation" + ], + [ + "com", + "pr" + ], + [ + "fl", + "avor" + ], + [ + "ens", + "us" + ], + [ + "ap", + "ples" + ], + [ + "k", + "i" + ], + [ + "en", + "rich" + ], + [ + "sup", + "plies" + ], + [ + "ct", + "u" + ], + [ + "count", + "less" + ], + [ + "breath", + "ing" + ], + [ + "c", + "ot" + ], + [ + "igh", + "ter" + ], + [ + "opin", + "ion" + ], + [ + "Hen", + "ry" + ], + [ + "recogn", + "izing" + ], + [ + "acc", + "el" + ], + [ + "prepar", + "ation" + ], + [ + "great", + "est" + ], + [ + "acknow", + "led" + ], + [ + "Ċ", + "ĠĠĠ" + ], + [ + "sat", + "ell" + ], + [ + "ab", + "stract" + ], + [ + "m", + "one" + ], + [ + "different", + "ly" + ], + [ + "comput", + "e" + ], + [ + "mole", + "cules" + ], + [ + "child", + "hood" + ], + [ + "r", + "ice" + ], + [ + "ì", + "Ī" + ], + [ + "sur", + "faces" + ], + [ + "Th", + "ree" + ], + [ + "qu", + "it" + ], + [ + "obtain", + "ed" + ], + [ + "ti", + "p" + ], + [ + "d", + "uration" + ], + [ + "reg", + "ulation" + ], + [ + "t", + "ables" + ], + [ + "stu", + "ff" + ], + [ + "'", + "m" + ], + [ + "sp", + "ark" + ], + [ + "Cre", + "ating" + ], + [ + "com", + "plicated" + ], + [ + "shop", + "s" + ], + [ + "will", + "ing" + ], + [ + "sur", + "ve" + ], + [ + "]", + ")Ġ" + ], + [ + "ac", + "com" + ], + [ + "pe", + "ak" + ], + [ + "Par", + "ty" + ], + [ + "navig", + "ating" + ], + [ + "r", + "c" + ], + [ + "mar", + "ried" + ], + [ + "L", + "ight" + ], + [ + "experim", + "ents" + ], + [ + "candid", + "ate" + ], + [ + "Wr", + "iting" + ], + [ + "administr", + "ation" + ], + [ + "obst", + "acles" + ], + [ + "cou", + "ple" + ], + [ + "decre", + "ase" + ], + [ + "evol", + "ved" + ], + [ + "ap", + "i" + ], + [ + "cry", + "st" + ], + [ + "strateg", + "ic" + ], + [ + "feed", + "ing" + ], + [ + "N", + "ature" + ], + [ + "R", + "evolution" + ], + [ + "C", + "L" + ], + [ + "fic", + "ation" + ], + [ + "un", + "ity" + ], + [ + "spec", + "ified" + ], + [ + "offic", + "ials" + ], + [ + "reci", + "pe" + ], + [ + "happ", + "ening" + ], + [ + "prevent", + "ing" + ], + [ + "aw", + "ard" + ], + [ + "P", + "AR" + ], + [ + "inter", + "section" + ], + [ + "ul", + "ties" + ], + [ + "c", + "lock" + ], + [ + "sub", + "sequent" + ], + [ + "V", + "I" + ], + [ + "Def", + "in" + ], + [ + "ling", + "u" + ], + [ + "clust", + "er" + ], + [ + "pro", + "ceed" + ], + [ + "im", + "mers" + ], + [ + "Fam", + "ily" + ], + [ + "tre", + "ating" + ], + [ + "ict", + "ed" + ], + [ + "fol", + "k" + ], + [ + "lar", + "g" + ], + [ + "'", + ".Ġ" + ], + [ + "ol", + "i" + ], + [ + "criter", + "ia" + ], + [ + "few", + "er" + ], + [ + "indic", + "ates" + ], + [ + "limit", + "ations" + ], + [ + "E", + "L" + ], + [ + "ec", + "e" + ], + [ + "E", + "astern" + ], + [ + "Y", + "oun" + ], + [ + "over", + "come" + ], + [ + "equ", + "ality" + ], + [ + "pl", + "o" + ], + [ + "S", + "O" + ], + [ + "Emp", + "ire" + ], + [ + "achi", + "eved" + ], + [ + "elect", + "ro" + ], + [ + "gr", + "ab" + ], + [ + "Lou", + "is" + ], + [ + "box", + "es" + ], + [ + "tigh", + "t" + ], + [ + "am", + "ed" + ], + [ + "li", + "ament" + ], + [ + "prom", + "inent" + ], + [ + "center", + "ed" + ], + [ + "horiz", + "on" + ], + [ + "E", + "st" + ], + [ + "is", + "ion" + ], + [ + "libr", + "aries" + ], + [ + "p", + "ure" + ], + [ + "lo", + "y" + ], + [ + "u", + "ing" + ], + [ + "D", + "ou" + ], + [ + "equ", + "ally" + ], + [ + "rhy", + "th" + ], + [ + "Pro", + "du" + ], + [ + "la", + "un" + ], + [ + "b", + "ath" + ], + [ + "mat", + "ches" + ], + [ + "P", + "ur" + ], + [ + "correspond", + "ing" + ], + [ + "C", + "ross" + ], + [ + "f", + "s" + ], + [ + "a", + "is" + ], + [ + "ëĭ", + "¤" + ], + [ + "announ", + "ced" + ], + [ + "t", + "ac" + ], + [ + "enter", + "ed" + ], + [ + "Import", + "ance" + ], + [ + "For", + "m" + ], + [ + "H", + "ear" + ], + [ + "ex", + "tr" + ], + [ + "tri", + "als" + ], + [ + "Prof", + "essor" + ], + [ + "On", + "line" + ], + [ + "requ", + "ests" + ], + [ + "It", + "aly" + ], + [ + "ind", + "ices" + ], + [ + "cir", + "cul" + ], + [ + "M", + "ich" + ], + [ + "review", + "s" + ], + [ + "Ġ_", + "Ġ" + ], + [ + "Demo", + "cr" + ], + [ + "Spec", + "ial" + ], + [ + "pand", + "emic" + ], + [ + "al", + "ty" + ], + [ + "pass", + "ing" + ], + [ + "ne", + "ys" + ], + [ + "dis", + "put" + ], + [ + "Par", + "is" + ], + [ + "rest", + "aur" + ], + [ + "des", + "ire" + ], + [ + "obj", + "ective" + ], + [ + "po", + "ch" + ], + [ + "ren", + "ce" + ], + [ + "Imp", + "act" + ], + [ + "ext", + "ent" + ], + [ + "D", + "S" + ], + [ + "estim", + "ate" + ], + [ + "state", + "ments" + ], + [ + "cry", + "pt" + ], + [ + "ish", + "ment" + ], + [ + "L", + "ake" + ], + [ + "infl", + "ammation" + ], + [ + "re", + "cycl" + ], + [ + "comput", + "ing" + ], + [ + "if", + "ies" + ], + [ + "Reg", + "ular" + ], + [ + "immedi", + "ate" + ], + [ + "cont", + "exts" + ], + [ + "vo", + "id" + ], + [ + "lif", + "estyle" + ], + [ + "co", + "ins" + ], + [ + "author", + "ities" + ], + [ + "Un", + "fortunately" + ], + [ + "acc", + "ident" + ], + [ + "over", + "whel" + ], + [ + "E", + "li" + ], + [ + "med", + "ication" + ], + [ + "bring", + "ing" + ], + [ + "interpret", + "ation" + ], + [ + "S", + "ever" + ], + [ + "cont", + "ro" + ], + [ + "N", + "a" + ], + [ + "ul", + "ary" + ], + [ + "air", + "craft" + ], + [ + "le", + "m" + ], + [ + "har", + "vest" + ], + [ + "è", + "¿" + ], + [ + "psych", + "ology" + ], + [ + "v", + "ote" + ], + [ + "X", + "X" + ], + [ + "fin", + "ish" + ], + [ + "']", + "Ġ=Ġ" + ], + [ + "ad", + "er" + ], + [ + "Sh", + "are" + ], + [ + "exper", + "t" + ], + [ + "st", + "ere" + ], + [ + "Con", + "f" + ], + [ + "Egy", + "pt" + ], + [ + "tw", + "ice" + ], + [ + "del", + "ay" + ], + [ + "ro", + "gen" + ], + [ + "pol", + "itici" + ], + [ + "light", + "ing" + ], + [ + "Ar", + "ti" + ], + [ + "ver", + "tex" + ], + [ + "D", + "ev" + ], + [ + "mem", + "or" + ], + [ + "s", + "op" + ], + [ + "sent", + "ences" + ], + [ + "achi", + "eving" + ], + [ + "t", + "rop" + ], + [ + "tre", + "as" + ], + [ + "g", + "one" + ], + [ + "d", + "p" + ], + [ + "com", + "bat" + ], + [ + "feat", + "uring" + ], + [ + "deb", + "ate" + ], + [ + "Fran", + "cis" + ], + [ + "youn", + "ger" + ], + [ + "inde", + "ed" + ], + [ + "Ex", + "per" + ], + [ + "N", + "ever" + ], + [ + "novel", + "s" + ], + [ + "sup", + "por" + ], + [ + "ar", + "ise" + ], + [ + "force", + "ment" + ], + [ + "ã", + "ĥ" + ], + [ + "ro", + "s" + ], + [ + "road", + "s" + ], + [ + "Di", + "strict" + ], + [ + "sh", + "u" + ], + [ + "Ð", + "¹" + ], + [ + "Gu", + "id" + ], + [ + "H", + "D" + ], + [ + "bi", + "as" + ], + [ + ".Ġ", + ".Ġ" + ], + [ + "vo", + "ices" + ], + [ + "inf", + "ected" + ], + [ + "p", + "it" + ], + [ + "ä", + "º" + ], + [ + "h", + "at" + ], + [ + "Spec", + "ific" + ], + [ + "ple", + "as" + ], + [ + "D", + "ict" + ], + [ + "mag", + "netic" + ], + [ + "ad", + "ers" + ], + [ + "j", + "un" + ], + [ + "pand", + "as" + ], + [ + "del", + "ta" + ], + [ + "cor", + "n" + ], + [ + "Pe", + "ter" + ], + [ + "Le", + "vel" + ], + [ + "instru", + "ment" + ], + [ + "sy", + "l" + ], + [ + "'", + "])" + ], + [ + "ho", + "le" + ], + [ + "m", + "ph" + ], + [ + "ex", + "pressed" + ], + [ + "w", + "ine" + ], + [ + "C", + "ultural" + ], + [ + "contain", + "ed" + ], + [ + "rout", + "ine" + ], + [ + "'", + "d" + ], + [ + "Found", + "ation" + ], + [ + "dist", + "ances" + ], + [ + "Sup", + "port" + ], + [ + "Pr", + "in" + ], + [ + "Ul", + "timately" + ], + [ + "im", + "possible" + ], + [ + "or", + "m" + ], + [ + "R", + "ob" + ], + [ + "Pers", + "onal" + ], + [ + "quanti", + "ty" + ], + [ + "d", + "in" + ], + [ + "N", + "u" + ], + [ + "O", + "w" + ], + [ + "Vi", + "ew" + ], + [ + "descri", + "bes" + ], + [ + "B", + "ig" + ], + [ + "System", + "s" + ], + [ + "V", + "ict" + ], + [ + "!", + "\"" + ], + [ + "wid", + "es" + ], + [ + "certain", + "ly" + ], + [ + "h", + "us" + ], + [ + "a", + "er" + ], + [ + "combin", + "ing" + ], + [ + "Defin", + "ition" + ], + [ + "y", + "e" + ], + [ + "p", + "ace" + ], + [ + "Ob", + "j" + ], + [ + "D", + "om" + ], + [ + "as", + "sets" + ], + [ + "b", + "ones" + ], + [ + "det", + "ection" + ], + [ + "vulner", + "able" + ], + [ + "larg", + "ely" + ], + [ + "ual", + "ity" + ], + [ + "cri", + "tically" + ], + [ + "fac", + "tion" + ], + [ + "ad", + "ed" + ], + [ + "struct", + "ural" + ], + [ + "exp", + "ansion" + ], + [ + "app", + "arent" + ], + [ + "tra", + "uma" + ], + [ + "ant", + "um" + ], + [ + "uni", + "versity" + ], + [ + "NA", + "SA" + ], + [ + "cod", + "es" + ], + [ + "cont", + "ents" + ], + [ + "re", + "c" + ], + [ + "te", + "a" + ], + [ + "H", + "aw" + ], + [ + "auto", + "m" + ], + [ + "S", + "how" + ], + [ + "r", + "d" + ], + [ + "hund", + "red" + ], + [ + "am", + "ing" + ], + [ + "out", + "come" + ], + [ + "wides", + "pread" + ], + [ + "d", + "aughter" + ], + [ + "'", + "Ġ(" + ], + [ + "B", + "ir" + ], + [ + "Techn", + "i" + ], + [ + "ist", + "ical" + ], + [ + "adop", + "ted" + ], + [ + "sc", + "ul" + ], + [ + "Su", + "per" + ], + [ + "Stre", + "et" + ], + [ + "Com", + "pu" + ], + [ + "al", + "um" + ], + [ + "predic", + "tions" + ], + [ + "!", + "=Ġ" + ], + [ + "comb", + "ine" + ], + [ + "ĠĠĠĠ", + "ĠĠ" + ], + [ + "ro", + "of" + ], + [ + "w", + "s" + ], + [ + "C", + "at" + ], + [ + "user", + "name" + ], + [ + "pro", + "ved" + ], + [ + "upd", + "ated" + ], + [ + "chem", + "istry" + ], + [ + "ab", + "und" + ], + [ + "fi", + "ber" + ], + [ + "stake", + "holders" + ], + [ + "G", + "rand" + ], + [ + "sc", + "ar" + ], + [ + "s", + "ad" + ], + [ + "tar", + "gets" + ], + [ + "sp", + "in" + ], + [ + "fit", + "ness" + ], + [ + "av", + "en" + ], + [ + "pers", + "ons" + ], + [ + "sty", + "py" + ], + [ + "min", + "ing" + ], + [ + "E", + "qual" + ], + [ + "æ", + "ĸ" + ], + [ + "A", + "G" + ], + [ + "sign", + "ed" + ], + [ + "inter", + "val" + ], + [ + "contribut", + "es" + ], + [ + "S", + "ize" + ], + [ + "ob", + "vious" + ], + [ + "b", + "acks" + ], + [ + "re", + "ti" + ], + [ + "#ĠĠĠĠĠĠĠĠ", + "Ġ" + ], + [ + "rand", + "int" + ], + [ + "Christian", + "ity" + ], + [ + "P", + "ot" + ], + [ + "attribut", + "es" + ], + [ + "D", + "oc" + ], + [ + "P", + "i" + ], + [ + "associ", + "ation" + ], + [ + "do", + "c" + ], + [ + "--------", + "--" + ], + [ + "Ch", + "ic" + ], + [ + "bas", + "ket" + ], + [ + "j", + "a" + ], + [ + "T", + "re" + ], + [ + "Ġ=Ġ", + "{}" + ], + [ + "m", + "ine" + ], + [ + "âĢĿ", + ",Ġ" + ], + [ + "me", + "ters" + ], + [ + "p", + "ad" + ], + [ + "av", + "y" + ], + [ + "pos", + "al" + ], + [ + "Ġ", + "|" + ], + [ + "appe", + "al" + ], + [ + "priv", + "acy" + ], + [ + "let", + "es" + ], + [ + "S", + "pain" + ], + [ + "benef", + "icial" + ], + [ + "phr", + "ase" + ], + [ + "`", + ",Ġ" + ], + [ + "Libr", + "ary" + ], + [ + "commit", + "ted" + ], + [ + "k", + "g" + ], + [ + "Ġ", + "\"Ġ" + ], + [ + "multi", + "ply" + ], + [ + "new", + "sp" + ], + [ + "tail", + "ored" + ], + [ + "conf", + "ir" + ], + [ + "equip", + "ped" + ], + [ + "B", + "est" + ], + [ + "uni", + "form" + ], + [ + "ver", + "sions" + ], + [ + "),Ġ", + "(" + ], + [ + "experi", + "encing" + ], + [ + "is", + "sion" + ], + [ + "A", + "gr" + ], + [ + "M", + "el" + ], + [ + "Ġ", + "}" + ], + [ + "B", + "ase" + ], + [ + "st", + "ones" + ], + [ + "ver", + "tical" + ], + [ + "å", + "Ń" + ], + [ + "deb", + "ates" + ], + [ + "dest", + "ination" + ], + [ + "diffic", + "ulty" + ], + [ + "bo", + "ost" + ], + [ + "e", + "ve" + ], + [ + "appoint", + "ed" + ], + [ + "di", + "vide" + ], + [ + "narr", + "ative" + ], + [ + "be", + "ta" + ], + [ + "K", + "ar" + ], + [ + "Sy", + "n" + ], + [ + "id", + "ge" + ], + [ + "W", + "ood" + ], + [ + "bro", + "ther" + ], + [ + "f", + "urn" + ], + [ + "ĠĠĠĠ", + "ĠĠĠ" + ], + [ + "curren", + "cy" + ], + [ + "z", + "il" + ], + [ + "F", + "T" + ], + [ + "par", + "agraph" + ], + [ + "eco", + "systems" + ], + [ + "dist", + "ur" + ], + [ + "dollar", + "s" + ], + [ + "employe", + "e" + ], + [ + "id", + "ential" + ], + [ + "Cl", + "ick" + ], + [ + "y", + "o" + ], + [ + "bat", + "tery" + ], + [ + "def", + "ic" + ], + [ + "def", + "ense" + ], + [ + "G", + "al" + ], + [ + "strugg", + "les" + ], + [ + "par", + "ser" + ], + [ + "blo", + "g" + ], + [ + "col", + "our" + ], + [ + "grad", + "ually" + ], + [ + "E", + "vent" + ], + [ + "are", + "t" + ], + [ + "F", + "ederal" + ], + [ + "me", + "tic" + ], + [ + "Pl", + "us" + ], + [ + "Bl", + "ue" + ], + [ + "P", + "os" + ], + [ + "print", + "ing" + ], + [ + "ch", + "art" + ], + [ + "z", + "ation" + ], + [ + "con", + "crete" + ], + [ + "it", + "ure" + ], + [ + "Jose", + "ph" + ], + [ + "custom", + "s" + ], + [ + "C", + "ell" + ], + [ + "celebr", + "ate" + ], + [ + "Phil", + "ip" + ], + [ + "circu", + "it" + ], + [ + "num", + "ero" + ], + [ + "th", + "ir" + ], + [ + "en", + "zy" + ], + [ + "log", + "ic" + ], + [ + "M", + "R" + ], + [ + "d", + "ur" + ], + [ + "excess", + "ive" + ], + [ + "the", + "oretical" + ], + [ + "od", + "d" + ], + [ + "um", + "ps" + ], + [ + "tem", + "plate" + ], + [ + "fill", + "ing" + ], + [ + "substanti", + "al" + ], + [ + "ill", + "a" + ], + [ + "id", + "en" + ], + [ + "pro", + "portion" + ], + [ + "curric", + "ulum" + ], + [ + "min", + "ister" + ], + [ + "lin", + "ed" + ], + [ + "dr", + "ain" + ], + [ + "opin", + "ions" + ], + [ + "orig", + "ins" + ], + [ + "reli", + "ef" + ], + [ + "crim", + "inal" + ], + [ + "sched", + "ule" + ], + [ + "comment", + "s" + ], + [ + "Wh", + "ich" + ], + [ + "assign", + "ed" + ], + [ + "cip", + "al" + ], + [ + "un", + "t" + ], + [ + "m", + "ad" + ], + [ + "Lit", + "tle" + ], + [ + "implement", + "ed" + ], + [ + "d", + "ental" + ], + [ + "R", + "and" + ], + [ + "Ð", + "±" + ], + [ + "d", + "il" + ], + [ + "ach", + "ing" + ], + [ + "bur", + "n" + ], + [ + "dimension", + "al" + ], + [ + "contribut", + "ed" + ], + [ + "c", + "ow" + ], + [ + "ic", + "ks" + ], + [ + "C", + "ard" + ], + [ + "sk", + "learn" + ], + [ + "rel", + "and" + ], + [ + "g", + "all" + ], + [ + "gir", + "l" + ], + [ + "An", + "n" + ], + [ + "di", + "o" + ], + [ + "mo", + "on" + ], + [ + "attemp", + "ts" + ], + [ + "sw", + "im" + ], + [ + "sl", + "a" + ], + [ + "R", + "emo" + ], + [ + "prepar", + "ing" + ], + [ + "sp", + "ati" + ], + [ + "ç", + "Ķ" + ], + [ + "Be", + "ing" + ], + [ + "si", + "vely" + ], + [ + "survi", + "ve" + ], + [ + "ter", + "ies" + ], + [ + "pregn", + "ancy" + ], + [ + "would", + "n" + ], + [ + "Com", + "mit" + ], + [ + "f", + "ell" + ], + [ + "ut", + "ch" + ], + [ + "int", + "ense" + ], + [ + "F", + "ace" + ], + [ + "phy", + "si" + ], + [ + "order", + "ed" + ], + [ + "target", + "ed" + ], + [ + "fing", + "er" + ], + [ + "pr", + "ints" + ], + [ + "iti", + "s" + ], + [ + "M", + "ap" + ], + [ + "P", + "C" + ], + [ + "**", + "Ġ" + ], + [ + "Ã", + "£" + ], + [ + "Re", + "port" + ], + [ + "M", + "D" + ], + [ + "candid", + "ates" + ], + [ + "do", + "i" + ], + [ + "sac", + "r" + ], + [ + "Paren", + "theses" + ], + [ + "origin", + "ally" + ], + [ + "F", + "uture" + ], + [ + "Islam", + "ic" + ], + [ + "py", + "game" + ], + [ + "pon", + "ents" + ], + [ + "It", + "em" + ], + [ + "win", + "ning" + ], + [ + "install", + "ed" + ], + [ + "it", + "ter" + ], + [ + "vis", + "iting" + ], + [ + "f", + "fer" + ], + [ + "Ir", + "ish" + ], + [ + "B", + "lo" + ], + [ + "M", + "ont" + ], + [ + "Roy", + "al" + ], + [ + "f", + "an" + ], + [ + "ext", + "ensive" + ], + [ + "im", + "per" + ], + [ + "cl", + "s" + ], + [ + "p", + "as" + ], + [ + "happ", + "iness" + ], + [ + "R", + "adi" + ], + [ + "al", + "ive" + ], + [ + "Sp", + "ir" + ], + [ + "Get", + "ting" + ], + [ + "return", + "ing" + ], + [ + "Mic", + "hael" + ], + [ + "calcul", + "ated" + ], + [ + "P", + "arti" + ], + [ + "B", + "ank" + ], + [ + "flow", + "s" + ], + [ + "f", + "av" + ], + [ + "scen", + "es" + ], + [ + "Virgin", + "ia" + ], + [ + "Ã", + "¢" + ], + [ + "fol", + "der" + ], + [ + "place", + "ment" + ], + [ + "diffic", + "ulties" + ], + [ + "accur", + "ately" + ], + [ + "âĢĿ", + ".Ġ" + ], + [ + "vessel", + "s" + ], + [ + "dec", + "k" + ], + [ + "ĊĊ", + "Ġ" + ], + [ + "b", + "ly" + ], + [ + "her", + "oes" + ], + [ + "entre", + "preneur" + ], + [ + "ap", + "ple" + ], + [ + "US", + "A" + ], + [ + "I", + "reland" + ], + [ + "pl", + "as" + ], + [ + "R", + "ome" + ], + [ + "man", + "ager" + ], + [ + "S", + "I" + ], + [ + "Youn", + "g" + ], + [ + "works", + "he" + ], + [ + "C", + "N" + ], + [ + "C", + "ost" + ], + [ + "et", + "te" + ], + [ + "Tim", + "es" + ], + [ + "th", + "row" + ], + [ + "at", + "titudes" + ], + [ + "le", + "ver" + ], + [ + "compar", + "ison" + ], + [ + "sh", + "ares" + ], + [ + "sh", + "ed" + ], + [ + "st", + "ats" + ], + [ + "recei", + "ving" + ], + [ + "int", + "ensity" + ], + [ + "comp", + "ounds" + ], + [ + "č", + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "v", + "ous" + ], + [ + "al", + "bum" + ], + [ + "gr", + "asp" + ], + [ + "Last", + "ly" + ], + [ + "Rich", + "ard" + ], + [ + "tr", + "ace" + ], + [ + "la", + "unch" + ], + [ + "al", + "a" + ], + [ + "te", + "ch" + ], + [ + "attach", + "ed" + ], + [ + "stay", + "ing" + ], + [ + "vari", + "ations" + ], + [ + "à", + "¸" + ], + [ + "pass", + "age" + ], + [ + "ut", + "ter" + ], + [ + "vary", + "ing" + ], + [ + "Flor", + "ida" + ], + [ + "d", + "type" + ], + [ + "e", + "poch" + ], + [ + "le", + "gs" + ], + [ + "ant", + "a" + ], + [ + "str", + "ange" + ], + [ + "competi", + "tive" + ], + [ + "f", + "esti" + ], + [ + "concer", + "ned" + ], + [ + "soci", + "o" + ], + [ + "Pol", + "y" + ], + [ + "pay", + "ment" + ], + [ + "Off", + "ice" + ], + [ + "mor", + "tal" + ], + [ + "Ass", + "ess" + ], + [ + "acti", + "vation" + ], + [ + "r", + "oman" + ], + [ + "c", + "ache" + ], + [ + "re", + "pair" + ], + [ + "exc", + "ite" + ], + [ + "anc", + "est" + ], + [ + "str", + "ation" + ], + [ + "saf", + "ely" + ], + [ + "ak", + "er" + ], + [ + "ie", + "val" + ], + [ + "e", + "u" + ], + [ + "leg", + "acy" + ], + [ + "C", + "amp" + ], + [ + "st", + "ations" + ], + [ + "Ã", + "·Ġ" + ], + [ + "resp", + "ectively" + ], + [ + "integr", + "ated" + ], + [ + "k", + "o" + ], + [ + "Bra", + "zil" + ], + [ + "bo", + "o" + ], + [ + "Clim", + "ate" + ], + [ + "whe", + "el" + ], + [ + "im", + "migr" + ], + [ + "W", + "ild" + ], + [ + "big", + "ger" + ], + [ + "clean", + "ing" + ], + [ + "Res", + "pon" + ], + [ + "J", + "am" + ], + [ + "gr", + "adi" + ], + [ + "mi", + "xture" + ], + [ + "O", + "cean" + ], + [ + "avail", + "ability" + ], + [ + "Phys", + "ical" + ], + [ + "čĊčĊ", + "čĊ" + ], + [ + "se", + "at" + ], + [ + "process", + "ed" + ], + [ + "ame", + "ter" + ], + [ + "bo", + "ol" + ], + [ + "hon", + "or" + ], + [ + "pe", + "oples" + ], + [ + "her", + "self" + ], + [ + "practition", + "ers" + ], + [ + "ari", + "ties" + ], + [ + "Ġ", + "÷Ġ" + ], + [ + "N", + "ations" + ], + [ + "phenomen", + "on" + ], + [ + "Add", + "ress" + ], + [ + "me", + "tric" + ], + [ + "inter", + "view" + ], + [ + "harmon", + "y" + ], + [ + "ab", + "or" + ], + [ + "s", + "aving" + ], + [ + "Un", + "like" + ], + [ + "c", + "c" + ], + [ + "produc", + "tivity" + ], + [ + "ref", + "uge" + ], + [ + "person", + "ality" + ], + [ + "ë", + "Ĭ" + ], + [ + "ì", + "Ħ" + ], + [ + "gu", + "aran" + ], + [ + "P", + "ay" + ], + [ + "ant", + "ly" + ], + [ + "cy", + "ber" + ], + [ + "t", + "ough" + ], + [ + "precis", + "ion" + ], + [ + "pe", + "p" + ], + [ + "ent", + "r" + ], + [ + "select", + "ing" + ], + [ + "so", + "c" + ], + [ + "an", + "es" + ], + [ + "C", + "lin" + ], + [ + "e", + "e" + ], + [ + "Data", + "Frame" + ], + [ + "seg", + "ment" + ], + [ + "ch", + "air" + ], + [ + "re", + "placed" + ], + [ + "ors", + "es" + ], + [ + "a", + "ud" + ], + [ + "expl", + "icit" + ], + [ + "G", + "ard" + ], + [ + "exc", + "ited" + ], + [ + "M", + "ess" + ], + [ + "m", + "ates" + ], + [ + "lo", + "sing" + ], + [ + "F", + "A" + ], + [ + "enh", + "anced" + ], + [ + "tor", + "ch" + ], + [ + "m", + "ol" + ], + [ + "Ġ", + "{}" + ], + [ + "op", + "posite" + ], + [ + "Johns", + "on" + ], + [ + "be", + "at" + ], + [ + "è", + "¯" + ], + [ + "ph", + "arm" + ], + [ + "syn", + "drome" + ], + [ + "O", + "x" + ], + [ + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "i", + "ro" + ], + [ + "elect", + "ed" + ], + [ + "е", + "ÑĤ" + ], + [ + "du", + "st" + ], + [ + "B", + "M" + ], + [ + "visit", + "ors" + ], + [ + "F", + "ri" + ], + [ + "resp", + "ir" + ], + [ + "enti", + "ties" + ], + [ + "produ", + "ces" + ], + [ + "M", + "ach" + ], + [ + "U", + "M" + ], + [ + "ad", + "oles" + ], + [ + "mat", + "ure" + ], + [ + "phenomen", + "a" + ], + [ + "r", + "ics" + ], + [ + "st", + "ead" + ], + [ + "according", + "ly" + ], + [ + "F", + "lo" + ], + [ + "B", + "rown" + ], + [ + "ri", + "vers" + ], + [ + "h", + "ier" + ], + [ + "ob", + "serve" + ], + [ + "d", + "t" + ], + [ + "-Ġ", + "\"" + ], + [ + "Str", + "ateg" + ], + [ + "E", + "valu" + ], + [ + "sq", + "rt" + ], + [ + "possib", + "ly" + ], + [ + "weak", + "ness" + ], + [ + "scen", + "ario" + ], + [ + "print", + "ed" + ], + [ + "renew", + "able" + ], + [ + "ne", + "ural" + ], + [ + "loss", + "es" + ], + [ + "new", + "ly" + ], + [ + "al", + "and" + ], + [ + "Net", + "work" + ], + [ + "Vict", + "or" + ], + [ + "graph", + "ics" + ], + [ + "v", + "ig" + ], + [ + ")Ġ", + "*Ġ" + ], + [ + "sh", + "r" + ], + [ + "o", + "is" + ], + [ + "ob", + "servation" + ], + [ + "st", + "om" + ], + [ + "us", + "al" + ], + [ + "T", + "R" + ], + [ + "coun", + "sel" + ], + [ + "ac", + "le" + ], + [ + "J", + "u" + ], + [ + "cer", + "tific" + ], + [ + "St", + "ar" + ], + [ + "L", + "GB" + ], + [ + "tal", + "e" + ], + [ + "J", + "e" + ], + [ + "r", + "ab" + ], + [ + "paralle", + "l" + ], + [ + "integr", + "ating" + ], + [ + "B", + "ill" + ], + [ + "preced", + "ence" + ], + [ + "In", + "d" + ], + [ + "A", + "v" + ], + [ + "um", + "n" + ], + [ + "we", + "igh" + ], + [ + "sun", + "light" + ], + [ + "King", + "dom" + ], + [ + "necess", + "arily" + ], + [ + "fact", + "ory" + ], + [ + "L", + "ow" + ], + [ + "Lab", + "or" + ], + [ + "Follow", + "ing" + ], + [ + "ã", + "o" + ], + [ + "Em", + "ploy" + ], + [ + "adv", + "ances" + ], + [ + "class", + "ical" + ], + [ + "f", + "ur" + ], + [ + "adj", + "ac" + ], + [ + "ER", + "R" + ], + [ + "si", + "p" + ], + [ + "og", + "y" + ], + [ + "co", + "operation" + ], + [ + "flex", + "ibility" + ], + [ + "un", + "less" + ], + [ + "ill", + "um" + ], + [ + "ape", + "utic" + ], + [ + "to", + "ys" + ], + [ + "keep", + "s" + ], + [ + "n", + "eck" + ], + [ + "e", + "val" + ], + [ + "y", + "ard" + ], + [ + "modif", + "ied" + ], + [ + "S", + "ud" + ], + [ + "fl", + "ash" + ], + [ + "Str", + "uct" + ], + [ + "uni", + "versal" + ], + [ + "M", + "aster" + ], + [ + "F", + "oc" + ], + [ + "re", + "fr" + ], + [ + "au", + "x" + ], + [ + "Serv", + "ices" + ], + [ + "ter", + "ior" + ], + [ + "D", + "C" + ], + [ + "high", + "lights" + ], + [ + "mechan", + "ical" + ], + [ + "ic", + "ting" + ], + [ + "le", + "mon" + ], + [ + "relev", + "ance" + ], + [ + "warm", + "ing" + ], + [ + "iat", + "ric" + ], + [ + "recommend", + "ations" + ], + [ + "B", + "N" + ], + [ + "fl", + "avors" + ], + [ + "mer", + "ely" + ], + [ + "carr", + "ying" + ], + [ + "u", + "x" + ], + [ + "Sou", + "thern" + ], + [ + "LGB", + "T" + ], + [ + "farm", + "ing" + ], + [ + "o", + "o" + ], + [ + "ci", + "um" + ], + [ + "Lab", + "el" + ], + [ + "B", + "ul" + ], + [ + "control", + "s" + ], + [ + "shar", + "p" + ], + [ + "oc", + "ity" + ], + [ + "decl", + "ine" + ], + [ + "trou", + "ble" + ], + [ + "D", + "en" + ], + [ + "f", + "are" + ], + [ + "f", + "n" + ], + [ + "measure", + "ment" + ], + [ + "In", + "c" + ], + [ + "responsib", + "ilities" + ], + [ + "scul", + "pt" + ], + [ + "Pr", + "om" + ], + [ + "R", + "u" + ], + [ + "glo", + "b" + ], + [ + "gen", + "u" + ], + [ + "arg", + "v" + ], + [ + "minim", + "al" + ], + [ + "!", + "\"Ġ" + ], + [ + "Ro", + "le" + ], + [ + "en", + "coding" + ], + [ + "improve", + "ments" + ], + [ + "In", + "cre" + ], + [ + "Pl", + "ant" + ], + [ + "Wor", + "ks" + ], + [ + "complex", + "ities" + ], + [ + "Dif", + "fer" + ], + [ + "streng", + "ths" + ], + [ + "photo", + "s" + ], + [ + "Ben", + "ef" + ], + [ + "win", + "ner" + ], + [ + "explain", + "s" + ], + [ + "ĊĊ", + "ĊĊ" + ], + [ + "thres", + "hold" + ], + [ + "\"", + "Ġ+Ġ" + ], + [ + "å", + "¤" + ], + [ + "background", + "s" + ], + [ + "tw", + "enty" + ], + [ + "S", + "ource" + ], + [ + "p", + "ac" + ], + [ + "ç", + "»" + ], + [ + "R", + "os" + ], + [ + "R", + "ock" + ], + [ + "construct", + "ed" + ], + [ + "int", + "est" + ], + [ + "M", + "eas" + ], + [ + "Apply", + "ing" + ], + [ + "u", + "ous" + ], + [ + "am", + "i" + ], + [ + "оÐ", + "»" + ], + [ + "agree", + "ments" + ], + [ + "se", + "y" + ], + [ + "ail", + "ing" + ], + [ + "satis", + "faction" + ], + [ + "territ", + "ory" + ], + [ + "u", + "ment" + ], + [ + "ben", + "e" + ], + [ + "Nor", + "thern" + ], + [ + "integr", + "ity" + ], + [ + "illu", + "strate" + ], + [ + "dam", + "aged" + ], + [ + "possib", + "ility" + ], + [ + "o", + "tion" + ], + [ + "pe", + "ts" + ], + [ + "plan", + "ned" + ], + [ + "un", + "ning" + ], + [ + "put", + "ting" + ], + [ + "publ", + "ish" + ], + [ + "exhib", + "it" + ], + [ + "m", + "ere" + ], + [ + "ver", + "t" + ], + [ + "inter", + "active" + ], + [ + "find", + "s" + ], + [ + "vocab", + "ulary" + ], + [ + "weap", + "ons" + ], + [ + "rup", + "t" + ], + [ + "head", + "s" + ], + [ + "den", + "se" + ], + [ + "ou", + "l" + ], + [ + "frequ", + "ent" + ], + [ + "R", + "om" + ], + [ + "anal", + "ys" + ], + [ + "qui", + "et" + ], + [ + "stro", + "ke" + ], + [ + "text", + "ure" + ], + [ + "spati", + "al" + ], + [ + "fem", + "in" + ], + [ + "Chic", + "ago" + ], + [ + "As", + "k" + ], + [ + "pl", + "ots" + ], + [ + "long", + "est" + ], + [ + "it", + "als" + ], + [ + "m", + "n" + ], + [ + "I", + "A" + ], + [ + "D", + "an" + ], + [ + "cur", + "ve" + ], + [ + "be", + "th" + ], + [ + "quar", + "ter" + ], + [ + "ist", + "ers" + ], + [ + "fair", + "ly" + ], + [ + "mole", + "cular" + ], + [ + "constant", + "ly" + ], + [ + "ci", + "a" + ], + [ + "hibi", + "tion" + ], + [ + "bran", + "ches" + ], + [ + "is", + "k" + ], + [ + "citiz", + "en" + ], + [ + "house", + "hold" + ], + [ + "tok", + "ens" + ], + [ + "ìĪ", + "ĺ" + ], + [ + "dire", + "ctions" + ], + [ + "real", + "ize" + ], + [ + "predict", + "ed" + ], + [ + "c", + "ats" + ], + [ + "ro", + "cks" + ], + [ + "oty", + "pes" + ], + [ + "ker", + "nel" + ], + [ + "ol", + "a" + ], + [ + "mat", + "ically" + ], + [ + "grad", + "es" + ], + [ + "excite", + "ment" + ], + [ + "ban", + "ks" + ], + [ + "col", + "ate" + ], + [ + "T", + "ips" + ], + [ + "ch", + "ances" + ], + [ + "escap", + "e" + ], + [ + "ri", + "a" + ], + [ + "sole", + "ly" + ], + [ + "ev", + "il" + ], + [ + "distribut", + "ed" + ], + [ + "int", + "ake" + ], + [ + ",", + "\"" + ], + [ + "prec", + "ise" + ], + [ + "Saf", + "ety" + ], + [ + "measure", + "ments" + ], + [ + "un", + "usual" + ], + [ + "manif", + "est" + ], + [ + "S", + "chol" + ], + [ + "window", + "s" + ], + [ + "surpr", + "ise" + ], + [ + "F", + "i" + ], + [ + "inter", + "connected" + ], + [ + "s", + "ampl" + ], + [ + "Pers", + "on" + ], + [ + "c", + "nt" + ], + [ + "com", + "posed" + ], + [ + "k", + "ins" + ], + [ + "S", + "C" + ], + [ + "four", + "th" + ], + [ + "great", + "ly" + ], + [ + "my", + "self" + ], + [ + "Be", + "gin" + ], + [ + "ó", + "n" + ], + [ + "B", + "ab" + ], + [ + "f", + "lip" + ], + [ + "rel", + "ess" + ], + [ + "norm", + "ally" + ], + [ + "M", + "ountain" + ], + [ + "lat", + "ter" + ], + [ + "or", + "a" + ], + [ + "Ap", + "plications" + ], + [ + "{", + "'" + ], + [ + "f", + "et" + ], + [ + "Acade", + "my" + ], + [ + "ec", + "ological" + ], + [ + "Ass", + "ign" + ], + [ + "call", + "ing" + ], + [ + "c", + "aught" + ], + [ + "he", + "ating" + ], + [ + "S", + "uc" + ], + [ + "advent", + "ures" + ], + [ + "mechan", + "ism" + ], + [ + "parti", + "al" + ], + [ + "gl", + "u" + ], + [ + "wonder", + "ful" + ], + [ + "With", + "in" + ], + [ + "Wind", + "ows" + ], + [ + "--------------------------------", + "----------------" + ], + [ + "posi", + "tively" + ], + [ + "s", + "au" + ], + [ + "D", + "P" + ], + [ + "for", + "cing" + ], + [ + "di", + "ving" + ], + [ + "K", + "o" + ], + [ + "r", + "ational" + ], + [ + "Pr", + "im" + ], + [ + "Sec", + "urity" + ], + [ + "tr", + "acking" + ], + [ + "G", + "ar" + ], + [ + "inse", + "cts" + ], + [ + "equi", + "valent" + ], + [ + "tr", + "ick" + ], + [ + "ì", + "§" + ], + [ + "h", + "all" + ], + [ + "I", + "l" + ], + [ + "F", + "er" + ], + [ + "ri", + "de" + ], + [ + "g", + "ical" + ], + [ + "colle", + "agues" + ], + [ + "sk", + "i" + ], + [ + "dre", + "ams" + ], + [ + "N", + "E" + ], + [ + "prot", + "ective" + ], + [ + "ig", + "an" + ], + [ + "pack", + "age" + ], + [ + "st", + "on" + ], + [ + "emphas", + "is" + ], + [ + "PD", + "F" + ], + [ + "Over", + "view" + ], + [ + "n", + "od" + ], + [ + "photo", + "graphy" + ], + [ + "p", + "sy" + ], + [ + "ad", + "her" + ], + [ + "categ", + "or" + ], + [ + "el", + "der" + ], + [ + "itch", + "en" + ], + [ + "con", + "du" + ], + [ + "prop", + "ag" + ], + [ + "ve", + "ter" + ], + [ + "Train", + "ing" + ], + [ + "liter", + "acy" + ], + [ + "deb", + "t" + ], + [ + "v", + "ince" + ], + [ + "ä", + "½" + ], + [ + "и", + "ÑĤ" + ], + [ + "result", + "ed" + ], + [ + "p", + "el" + ], + [ + "G", + "ene" + ], + [ + "H", + "all" + ], + [ + "tain", + "ing" + ], + [ + "trans", + "mit" + ], + [ + "the", + "ast" + ], + [ + "bo", + "ys" + ], + [ + "conscious", + "ness" + ], + [ + "cri", + "ti" + ], + [ + "Ad", + "ministr" + ], + [ + "Ġ{", + "Ġ" + ], + [ + "Con", + "temporary" + ], + [ + "in", + "ity" + ], + [ + "sensi", + "tivity" + ], + [ + "in", + "habit" + ], + [ + "moist", + "ure" + ], + [ + "Compu", + "ter" + ], + [ + "stru", + "ction" + ], + [ + "capt", + "ured" + ], + [ + "ëĬ", + "Ķ" + ], + [ + "Ze", + "aland" + ], + [ + "c", + "ab" + ], + [ + "Vi", + "et" + ], + [ + "arch", + "ae" + ], + [ + "ob", + "lig" + ], + [ + "lan", + "tic" + ], + [ + "Col", + "labor" + ], + [ + "bu", + "ying" + ], + [ + "Ġ:", + "ĠĠ" + ], + [ + "ath", + "letes" + ], + [ + "r", + "ome" + ], + [ + "H", + "E" + ], + [ + "M", + "ind" + ], + [ + "=", + "(" + ], + [ + "smo", + "king" + ], + [ + "ac", + "ids" + ], + [ + "sugg", + "es" + ], + [ + "tren", + "d" + ], + [ + "Techni", + "ques" + ], + [ + "Th", + "anks" + ], + [ + "meas", + "uring" + ], + [ + "P", + "enn" + ], + [ + "sens", + "ors" + ], + [ + "t", + "one" + ], + [ + "inter", + "face" + ], + [ + "S", + "of" + ], + [ + "comp", + "elling" + ], + [ + "T", + "ren" + ], + [ + "bene", + "ath" + ], + [ + "d", + "d" + ], + [ + "pro", + "j" + ], + [ + "tis", + "sues" + ], + [ + "â", + "Ī" + ], + [ + "sop", + "hist" + ], + [ + "æ", + "ĺ" + ], + [ + "Stud", + "ent" + ], + [ + "ab", + "il" + ], + [ + "highlight", + "ing" + ], + [ + "ten", + "sor" + ], + [ + "J", + "ack" + ], + [ + "se", + "ct" + ], + [ + "wor", + "ship" + ], + [ + "foss", + "il" + ], + [ + "B", + "O" + ], + [ + "Ã", + "¤" + ], + [ + "ro", + "bot" + ], + [ + "perman", + "ent" + ], + [ + "With", + "out" + ], + [ + "kind", + "ness" + ], + [ + "Identi", + "fy" + ], + [ + "ti", + "ous" + ], + [ + "b", + "old" + ], + [ + "ang", + "ers" + ], + [ + "Ġ-", + "=Ġ" + ], + [ + "altern", + "atives" + ], + [ + "G", + "a" + ], + [ + "ro", + "se" + ], + [ + "de", + "ploy" + ], + [ + "F", + "C" + ], + [ + "accel", + "er" + ], + [ + "gent", + "le" + ], + [ + ")", + "-" + ], + [ + "S", + "i" + ], + [ + "he", + "t" + ], + [ + "org", + "ans" + ], + [ + "mag", + "az" + ], + [ + "sit", + "ting" + ], + [ + "se", + "min" + ], + [ + "wh", + "atever" + ], + [ + "sh", + "ad" + ], + [ + "dis", + "abilities" + ], + [ + "class", + "ification" + ], + [ + "St", + "ory" + ], + [ + "%", + "Ġ(" + ], + [ + "mist", + "akes" + ], + [ + "in", + "struct" + ], + [ + "L", + "ay" + ], + [ + "exp", + "enses" + ], + [ + "Christ", + "ians" + ], + [ + "py", + "plot" + ], + [ + "ul", + "in" + ], + [ + "inspir", + "ing" + ], + [ + "d", + "ys" + ], + [ + "miner", + "als" + ], + [ + "cover", + "age" + ], + [ + "key", + "word" + ], + [ + "repe", + "at" + ], + [ + "(", + "),Ġ" + ], + [ + "G", + "P" + ], + [ + "cal", + "c" + ], + [ + "pre", + "fix" + ], + [ + "A", + "ma" + ], + [ + "And", + "re" + ], + [ + "Hel", + "lo" + ], + [ + "е", + "ÑĢ" + ], + [ + "cast", + "ing" + ], + [ + "j", + "i" + ], + [ + "reflect", + "ing" + ], + [ + "fant", + "astic" + ], + [ + "om", + "es" + ], + [ + "imag", + "ination" + ], + [ + "expl", + "or" + ], + [ + "metr", + "ics" + ], + [ + "O", + "t" + ], + [ + "En", + "courage" + ], + [ + "Ġ", + "?Ġ" + ], + [ + "P", + "u" + ], + [ + "M", + "aking" + ], + [ + "board", + "s" + ], + [ + "est", + "e" + ], + [ + "tro", + "ops" + ], + [ + "Ġ", + "..." + ], + [ + "be", + "an" + ], + [ + "un", + "able" + ], + [ + "E", + "mer" + ], + [ + "nuc", + "le" + ], + [ + "bo", + "at" + ], + [ + "orient", + "ation" + ], + [ + "l", + "aid" + ], + [ + "But", + "ton" + ], + [ + "C", + "ast" + ], + [ + "so", + "ver" + ], + [ + "ass", + "er" + ], + [ + "volt", + "age" + ], + [ + ".Ġ", + "[" + ], + [ + "war", + "ning" + ], + [ + "am", + "er" + ], + [ + "S", + "l" + ], + [ + ":Ġ", + "'" + ], + [ + "valid", + "ation" + ], + [ + "a", + "the" + ], + [ + "assu", + "me" + ], + [ + "anti", + "cip" + ], + [ + "ä¸", + "ª" + ], + [ + "im", + "aging" + ], + [ + "è", + "¡" + ], + [ + "Ġ-*", + "-" + ], + [ + "peri", + "or" + ], + [ + "C", + "ustom" + ], + [ + "F", + "ish" + ], + [ + "Sw", + "ed" + ], + [ + "ë", + "¡" + ], + [ + "pres", + "cri" + ], + [ + "b", + "ac" + ], + [ + "tran", + "si" + ], + [ + "ch", + "ant" + ], + [ + "Em", + "br" + ], + [ + "rol", + "ling" + ], + [ + "expand", + "ing" + ], + [ + "anti", + "bio" + ], + [ + "constrain", + "ts" + ], + [ + "F", + "S" + ], + [ + "owners", + "hip" + ], + [ + "F", + "ire" + ], + [ + "com", + "ed" + ], + [ + "E", + "U" + ], + [ + "or", + "ph" + ], + [ + "re", + "pr" + ], + [ + "tri", + "angle" + ], + [ + "comm", + "ission" + ], + [ + "Ser", + "ies" + ], + [ + "r", + "ays" + ], + [ + "H", + "ill" + ], + [ + "čĊ", + "ĉ" + ], + [ + "Med", + "ia" + ], + [ + "c", + "ure" + ], + [ + "ell", + "ed" + ], + [ + "big", + "gest" + ], + [ + "chec", + "king" + ], + [ + "de", + "als" + ], + [ + "ju", + "venile" + ], + [ + "control", + "ling" + ], + [ + "r", + "h" + ], + [ + "g", + "ies" + ], + [ + "Carol", + "ina" + ], + [ + "pl", + "enty" + ], + [ + "health", + "ier" + ], + [ + "cultiv", + "ate" + ], + [ + "h", + "ob" + ], + [ + "sla", + "very" + ], + [ + "se", + "am" + ], + [ + "Agr", + "ic" + ], + [ + "transform", + "ed" + ], + [ + "G", + "row" + ], + [ + "p", + "df" + ], + [ + "m", + "ouse" + ], + [ + "pre", + "me" + ], + [ + "g", + "ly" + ], + [ + "He", + "ad" + ], + [ + "to", + "t" + ], + [ + "determin", + "ing" + ], + [ + "Ñ", + "ħ" + ], + [ + "og", + "a" + ], + [ + "laun", + "ched" + ], + [ + "Sever", + "al" + ], + [ + "Gu", + "ide" + ], + [ + "popular", + "ity" + ], + [ + "bl", + "ind" + ], + [ + "encour", + "aged" + ], + [ + "J", + "ac" + ], + [ + "comp", + "ens" + ], + [ + "ERR", + "OR" + ], + [ + "we", + "et" + ], + [ + "de", + "partment" + ], + [ + "tax", + "es" + ], + [ + "re", + "venue" + ], + [ + "med", + "itation" + ], + [ + "Are", + "a" + ], + [ + "Chall", + "eng" + ], + [ + "ree", + "ts" + ], + [ + "char", + "ged" + ], + [ + "ak", + "ed" + ], + [ + "tem", + "por" + ], + [ + "legis", + "lation" + ], + [ + "p", + "ine" + ], + [ + "e", + "ager" + ], + [ + "Pol", + "icy" + ], + [ + "def", + "end" + ], + [ + "t", + "les" + ], + [ + "vir", + "uses" + ], + [ + "trans", + "lation" + ], + [ + "fish", + "ing" + ], + [ + "es", + "is" + ], + [ + "ä¸", + "Ģ" + ], + [ + "wor", + "se" + ], + [ + "evalu", + "ating" + ], + [ + "in", + "ks" + ], + [ + "Spir", + "it" + ], + [ + "embr", + "ace" + ], + [ + "T", + "ar" + ], + [ + "dig", + "es" + ], + [ + "load", + "s" + ], + [ + "conf", + "usion" + ], + [ + "in", + "ch" + ], + [ + "C", + "lar" + ], + [ + "Commit", + "tee" + ], + [ + "Vis", + "ual" + ], + [ + "j", + "ur" + ], + [ + "pl", + "ates" + ], + [ + "gradu", + "ate" + ], + [ + "per", + "ception" + ], + [ + "cho", + "se" + ], + [ + "prom", + "otes" + ], + [ + "moti", + "vation" + ], + [ + "less", + "ly" + ], + [ + ",", + "'Ġ" + ], + [ + "å", + "®" + ], + [ + "Tim", + "my" + ], + [ + "ch", + "at" + ], + [ + "c", + "ents" + ], + [ + "g", + "if" + ], + [ + "do", + "s" + ], + [ + "pl", + "ed" + ], + [ + "The", + "ory" + ], + [ + "re", + "cip" + ], + [ + "arr", + "ang" + ], + [ + "wr", + "ap" + ], + [ + "preci", + "ous" + ], + [ + ".", + "'Ġ" + ], + [ + "ut", + "y" + ], + [ + "comple", + "ment" + ], + [ + "qu", + "antum" + ], + [ + "discover", + "ies" + ], + [ + "re", + "ver" + ], + [ + "and", + "on" + ], + [ + ")Ġ", + "#Ġ" + ], + [ + "function", + "ing" + ], + [ + "pay", + "ing" + ], + [ + "teach", + "ings" + ], + [ + "div", + "ine" + ], + [ + "remo", + "ving" + ], + [ + "li", + "de" + ], + [ + "app", + "s" + ], + [ + "k", + "ne" + ], + [ + "Mat", + "rix" + ], + [ + "ed", + "itor" + ], + [ + "stom", + "ach" + ], + [ + "cal", + "m" + ], + [ + "P", + "ort" + ], + [ + "G", + "R" + ], + [ + "Ch", + "ang" + ], + [ + "(", + "__" + ], + [ + "eth", + "ics" + ], + [ + "avoid", + "ing" + ], + [ + "bu", + "b" + ], + [ + "particip", + "ating" + ], + [ + "U", + "L" + ], + [ + "chr", + "on" + ], + [ + "vir", + "tu" + ], + [ + "pr", + "a" + ], + [ + "I", + "ran" + ], + [ + "pan", + "el" + ], + [ + "V", + "an" + ], + [ + "ra", + "ising" + ], + [ + "por", + "tray" + ], + [ + "Sh", + "ould" + ], + [ + "sav", + "ed" + ], + [ + "()", + "`Ġ" + ], + [ + "A", + "ction" + ], + [ + "clo", + "thes" + ], + [ + "world", + "s" + ], + [ + "Bo", + "oks" + ], + [ + "Initi", + "al" + ], + [ + "Dise", + "ase" + ], + [ + "comp", + "ati" + ], + [ + "Ex", + "erc" + ], + [ + "shif", + "ts" + ], + [ + "c", + "ater" + ], + [ + "de", + "part" + ], + [ + "cy", + "cles" + ], + [ + "green", + "house" + ], + [ + ":Ġ", + "\")" + ], + [ + "vel", + "ocity" + ], + [ + "lay", + "out" + ], + [ + ")", + "/" + ], + [ + "Ð", + "³" + ], + [ + "har", + "ness" + ], + [ + "sudden", + "ly" + ], + [ + "discipl", + "inary" + ], + [ + "hol", + "es" + ], + [ + "Mart", + "in" + ], + [ + "in", + "n" + ], + [ + "оÐ", + "´" + ], + [ + "ris", + "ing" + ], + [ + "и", + "Ñģ" + ], + [ + "arr", + "ays" + ], + [ + "N", + "S" + ], + [ + "P", + "ak" + ], + [ + "de", + "bug" + ], + [ + "dis", + "aster" + ], + [ + "gather", + "ed" + ], + [ + "color", + "ful" + ], + [ + "recip", + "es" + ], + [ + "Viet", + "nam" + ], + [ + "pe", + "er" + ], + [ + "om", + "s" + ], + [ + "ne", + "ither" + ], + [ + "b", + "b" + ], + [ + "Tree", + "Node" + ], + [ + "v", + "ine" + ], + [ + "th", + "al" + ], + [ + "W", + "ik" + ], + [ + "combin", + "ations" + ], + [ + "is", + "ine" + ], + [ + "tru", + "ction" + ], + [ + "!", + "\")" + ], + [ + "gr", + "ay" + ], + [ + "\"", + ":Ġ\"" + ], + [ + "resp", + "ective" + ], + [ + "glo", + "be" + ], + [ + "puzz", + "le" + ], + [ + "w", + "ire" + ], + [ + "diagno", + "sed" + ], + [ + "de", + "grad" + ], + [ + "dou", + "bt" + ], + [ + "intrig", + "uing" + ], + [ + "gr", + "y" + ], + [ + "pe", + "ers" + ], + [ + "versi", + "ties" + ], + [ + "op", + "t" + ], + [ + "b", + "is" + ], + [ + "c", + "ers" + ], + [ + "Ex", + "am" + ], + [ + "collect", + "ing" + ], + [ + "ur", + "a" + ], + [ + "H", + "aving" + ], + [ + "coord", + "inate" + ], + [ + "it", + "arian" + ], + [ + "T", + "ok" + ], + [ + "rel", + "ate" + ], + [ + "pow", + "der" + ], + [ + "g", + "on" + ], + [ + "sh", + "ore" + ], + [ + "D", + "iction" + ], + [ + "p", + "iz" + ], + [ + "l", + "um" + ], + [ + "habit", + "ats" + ], + [ + "inte", + "gers" + ], + [ + "ten", + "tion" + ], + [ + "ĠĠ:ĠĠ", + ":ĠĠ" + ], + [ + "other", + "apy" + ], + [ + "re", + "fin" + ], + [ + "Econom", + "ic" + ], + [ + "fer", + "tili" + ], + [ + "st", + "ig" + ], + [ + "ner", + "vous" + ], + [ + "separ", + "ated" + ], + [ + "k", + "it" + ], + [ + "Val", + "ley" + ], + [ + "auto", + "matically" + ], + [ + "con", + "c" + ], + [ + "P", + "age" + ], + [ + "M", + "s" + ], + [ + "flex", + "ible" + ], + [ + "trop", + "ical" + ], + [ + "pe", + "aceful" + ], + [ + "O", + "ly" + ], + [ + "P", + "en" + ], + [ + "@", + "Ġ" + ], + [ + "s", + "rc" + ], + [ + "behavi", + "our" + ], + [ + "hier", + "arch" + ], + [ + "av", + "g" + ], + [ + "}", + ")" + ], + [ + "Can", + "cer" + ], + [ + "Cl", + "ub" + ], + [ + "identi", + "fication" + ], + [ + "sum", + "mar" + ], + [ + "iss", + "ance" + ], + [ + "necess", + "it" + ], + [ + "Scienti", + "sts" + ], + [ + "ur", + "s" + ], + [ + "ut", + "en" + ], + [ + "Que", + "en" + ], + [ + "ë", + "¥" + ], + [ + "appro", + "ved" + ], + [ + "sil", + "ver" + ], + [ + "Bet", + "ween" + ], + [ + "ti", + "fied" + ], + [ + "no", + "se" + ], + [ + "ine", + "quality" + ], + [ + "demonstr", + "ates" + ], + [ + "innov", + "ations" + ], + [ + "fre", + "q" + ], + [ + "t", + "ank" + ], + [ + "influ", + "ential" + ], + [ + "ther", + "apeutic" + ], + [ + "hydro", + "gen" + ], + [ + "expand", + "ed" + ], + [ + "thri", + "ve" + ], + [ + "ter", + "ror" + ], + [ + "S", + "ir" + ], + [ + "in", + "der" + ], + [ + "m", + "apping" + ], + [ + "ar", + "med" + ], + [ + "king", + "s" + ], + [ + "legis", + "l" + ], + [ + "gin", + "es" + ], + [ + "S", + "Q" + ], + [ + "differ", + "enti" + ], + [ + "B", + "a" + ], + [ + "prin", + "cipal" + ], + [ + "oc", + "ks" + ], + [ + "engine", + "er" + ], + [ + "ic", + "ing" + ], + [ + "di", + "pl" + ], + [ + "A", + "void" + ], + [ + "rot", + "ation" + ], + [ + "ast", + "ers" + ], + [ + "Of", + "ten" + ], + [ + "model", + "ing" + ], + [ + "conver", + "sion" + ], + [ + "M", + "i" + ], + [ + "chick", + "en" + ], + [ + "ti", + "er" + ], + [ + "pl", + "ing" + ], + [ + "Rec", + "ogn" + ], + [ + "Ar", + "ts" + ], + [ + "he", + "im" + ], + [ + "eli", + "hood" + ], + [ + "communic", + "ations" + ], + [ + "B", + "ody" + ], + [ + "elf", + "are" + ], + [ + "sup", + "plement" + ], + [ + "p", + "ng" + ], + [ + "vi", + "ation" + ], + [ + "en", + "to" + ], + [ + "p", + "ill" + ], + [ + "Pr", + "ince" + ], + [ + "ch", + "am" + ], + [ + "cep", + "ti" + ], + [ + "gen", + "res" + ], + [ + "establish", + "ing" + ], + [ + "integr", + "al" + ], + [ + "ti", + "sm" + ], + [ + "lo", + "gy" + ], + [ + "adapt", + "ation" + ], + [ + "ìĿ", + "ĺ" + ], + [ + "design", + "ers" + ], + [ + "to", + "y" + ], + [ + "L", + "ar" + ], + [ + "tic", + "k" + ], + [ + "####", + "Ġ" + ], + [ + "atom", + "s" + ], + [ + "h", + "orses" + ], + [ + "ic", + "ide" + ], + [ + "De", + "b" + ], + [ + "vis", + "m" + ], + [ + "em", + "a" + ], + [ + "pol", + "ar" + ], + [ + "labor", + "atory" + ], + [ + "Reg", + "ion" + ], + [ + "re", + "min" + ], + [ + "prior", + "ity" + ], + [ + "Rec", + "ent" + ], + [ + "pron", + "oun" + ], + [ + "_", + "{" + ], + [ + "qu", + "ir" + ], + [ + "spec", + "trum" + ], + [ + "coast", + "al" + ], + [ + "consider", + "ations" + ], + [ + "sac", + "red" + ], + [ + "Sm", + "all" + ], + [ + "coun", + "ty" + ], + [ + "regul", + "atory" + ], + [ + "čĊ", + "čĊĠĠĠĠĠĠĠĠ" + ], + [ + "Hel", + "p" + ], + [ + "h", + "r" + ], + [ + "trans", + "c" + ], + [ + "íķ", + "ĺ" + ], + [ + "jud", + "ge" + ], + [ + "ess", + "ence" + ], + [ + "refle", + "cts" + ], + [ + "assum", + "ptions" + ], + [ + "D", + "R" + ], + [ + "perce", + "ived" + ], + [ + "å", + "ĩ" + ], + [ + "ad", + "r" + ], + [ + ").Ġ", + "\"" + ], + [ + "S", + "cal" + ], + [ + "accept", + "ance" + ], + [ + "Research", + "ers" + ], + [ + "sens", + "or" + ], + [ + "M", + "ah" + ], + [ + "govern", + "ance" + ], + [ + "Commun", + "ication" + ], + [ + "do", + "se" + ], + [ + "bur", + "ning" + ], + [ + "x", + "x" + ], + [ + "________", + "________" + ], + [ + "thous", + "and" + ], + [ + "syn", + "thesis" + ], + [ + "ext", + "ension" + ], + [ + "d", + "ad" + ], + [ + "G", + "O" + ], + [ + "az", + "z" + ], + [ + "S", + "and" + ], + [ + "Com", + "put" + ], + [ + "investig", + "ate" + ], + [ + "gr", + "ain" + ], + [ + "hard", + "ware" + ], + [ + "YO", + "U" + ], + [ + "M", + "ath" + ], + [ + "horizon", + "tal" + ], + [ + "hus", + "band" + ], + [ + "__", + "':" + ], + [ + "e", + "astern" + ], + [ + "equ", + "ations" + ], + [ + "d", + "ess" + ], + [ + "ic", + "ip" + ], + [ + "it", + "ar" + ], + [ + "art", + "work" + ], + [ + "H", + "O" + ], + [ + "Ġ", + "," + ], + [ + "di", + "oxide" + ], + [ + "small", + "est" + ], + [ + "Ro", + "ad" + ], + [ + "Engine", + "ering" + ], + [ + "C", + "ulture" + ], + [ + "th", + "ro" + ], + [ + "reg", + "ression" + ], + [ + "Bo", + "x" + ], + [ + "acqu", + "ired" + ], + [ + "vis", + "ed" + ], + [ + "victim", + "s" + ], + [ + "gi", + "ant" + ], + [ + "W", + "all" + ], + [ + "democr", + "acy" + ], + [ + "med", + "ian" + ], + [ + "we", + "aring" + ], + [ + "til", + "ity" + ], + [ + "ph", + "i" + ], + [ + "at", + "ically" + ], + [ + "coun", + "ters" + ], + [ + "c", + "d" + ], + [ + "be", + "ans" + ], + [ + "entertain", + "ment" + ], + [ + "At", + "lantic" + ], + [ + "Christ", + "mas" + ], + [ + "id", + "ers" + ], + [ + "']", + "." + ], + [ + "M", + "ars" + ], + [ + "soc", + "cer" + ], + [ + "Suc", + "cess" + ], + [ + "ens", + "or" + ], + [ + "discipl", + "ine" + ], + [ + "chec", + "ks" + ], + [ + "k", + "l" + ], + [ + "w", + "ast" + ], + [ + "UR", + "L" + ], + [ + "Con", + "text" + ], + [ + "Res", + "ources" + ], + [ + "eco", + "system" + ], + [ + "i", + "us" + ], + [ + "secre", + "ts" + ], + [ + "A", + "gain" + ], + [ + "fr", + "ames" + ], + [ + "on", + "ia" + ], + [ + "Sec", + "ret" + ], + [ + "p", + "od" + ], + [ + "surpr", + "ising" + ], + [ + "re", + "form" + ], + [ + "smo", + "ke" + ], + [ + "phys", + "ically" + ], + [ + "comp", + "ound" + ], + [ + "ch", + "lor" + ], + [ + "econom", + "ics" + ], + [ + "frame", + "works" + ], + [ + "ab", + "andon" + ], + [ + "cal", + "cium" + ], + [ + "D", + "ar" + ], + [ + "worth", + "y" + ], + [ + "Benef", + "its" + ], + [ + "v", + "ow" + ], + [ + "B", + "S" + ], + [ + "S", + "ust" + ], + [ + "bag", + "s" + ], + [ + "con", + "ce" + ], + [ + "i", + "as" + ], + [ + "resist", + "ant" + ], + [ + "st", + "reets" + ], + [ + "pe", + "ti" + ], + [ + "cont", + "amin" + ], + [ + "ac", + "er" + ], + [ + ",", + "'" + ], + [ + "lik", + "elihood" + ], + [ + "involve", + "ment" + ], + [ + "R", + "NA" + ], + [ + "fin", + "ance" + ], + [ + "val", + "ence" + ], + [ + "del", + "ves" + ], + [ + "f", + "ever" + ], + [ + "destroy", + "ed" + ], + [ + "For", + "ce" + ], + [ + "minim", + "izing" + ], + [ + "ex", + "em" + ], + [ + "resh", + "ape" + ], + [ + "F", + "ar" + ], + [ + "pix", + "el" + ], + [ + "tw", + "ist" + ], + [ + "emer", + "ge" + ], + [ + "ë¡", + "ľ" + ], + [ + "vers", + "us" + ], + [ + "ded", + "ication" + ], + [ + "corpor", + "ate" + ], + [ + "lingu", + "istic" + ], + [ + "develop", + "ers" + ], + [ + "j", + "an" + ], + [ + "t", + "ent" + ], + [ + "des", + "truction" + ], + [ + "tra", + "it" + ], + [ + ":Ġ", + "%" + ], + [ + "vol", + "can" + ], + [ + "Inde", + "ed" + ], + [ + "dec", + "ade" + ], + [ + "ath", + "ers" + ], + [ + "F", + "L" + ], + [ + "Ä", + "±" + ], + [ + "av", + "ed" + ], + [ + "issu", + "ed" + ], + [ + "or", + "ange" + ], + [ + "nu", + "ts" + ], + [ + "Sust", + "ain" + ], + [ + "__", + "Ġ==Ġ'" + ], + [ + "local", + "ization" + ], + [ + ")", + "**" + ], + [ + "gather", + "ing" + ], + [ + "compar", + "ing" + ], + [ + "equ", + "ity" + ], + [ + "R", + "am" + ], + [ + "spo", + "ken" + ], + [ + "tag", + "s" + ], + [ + "tr", + "im" + ], + [ + "can", + "vas" + ], + [ + "enn", + "y" + ], + [ + "skill", + "ed" + ], + [ + "ple", + "ments" + ], + [ + "E", + "E" + ], + [ + "D", + "utch" + ], + [ + "hol", + "der" + ], + [ + "remain", + "der" + ], + [ + "gover", + "ning" + ], + [ + "scienti", + "st" + ], + [ + "consist", + "ently" + ], + [ + "del", + "icate" + ], + [ + "hor", + "mon" + ], + [ + "king", + "dom" + ], + [ + "Te", + "am" + ], + [ + "di", + "um" + ], + [ + "pass", + "eng" + ], + [ + "re", + "sem" + ], + [ + "trans", + "actions" + ], + [ + "i", + "od" + ], + [ + "__Ġ==Ġ'", + "__" + ], + [ + "C", + "lean" + ], + [ + "se", + "le" + ], + [ + "pre", + "diction" + ], + [ + "utili", + "ze" + ], + [ + "air", + "y" + ], + [ + "explan", + "ation" + ], + [ + "Al", + "ways" + ], + [ + "provid", + "er" + ], + [ + "Wor", + "ds" + ], + [ + "а", + "ÑĤ" + ], + [ + "ti", + "les" + ], + [ + "ha", + "ven" + ], + [ + "ver", + "tices" + ], + [ + "re", + "cept" + ], + [ + "Ap", + "ple" + ], + [ + "ge", + "bra" + ], + [ + "N", + "i" + ], + [ + "Char", + "acter" + ], + [ + "fi", + "res" + ], + [ + "Al", + "tern" + ], + [ + "col", + "ored" + ], + [ + "achieve", + "ments" + ], + [ + "e", + "ase" + ], + [ + "emphas", + "izing" + ], + [ + "Proble", + "m" + ], + [ + "W", + "in" + ], + [ + "offic", + "ers" + ], + [ + "lo", + "an" + ], + [ + "lo", + "gging" + ], + [ + "sk", + "ip" + ], + [ + "F", + "und" + ], + [ + "to", + "wer" + ], + [ + "per", + "mission" + ], + [ + "dec", + "ay" + ], + [ + "K", + "r" + ], + [ + "conf", + "irm" + ], + [ + "Ã", + "¨" + ], + [ + "cent", + "re" + ], + [ + "loc", + "king" + ], + [ + "shop", + "ping" + ], + [ + "C", + "u" + ], + [ + "t", + "ang" + ], + [ + "he", + "x" + ], + [ + "cri", + "ticism" + ], + [ + "gener", + "ating" + ], + [ + "ob", + "es" + ], + [ + "com", + "plications" + ], + [ + "d", + "ating" + ], + [ + "sur", + "ge" + ], + [ + "IS", + "BN" + ], + [ + "experim", + "ental" + ], + [ + "l", + "uck" + ], + [ + "R", + "ow" + ], + [ + "re", + "set" + ], + [ + "sen", + "ior" + ], + [ + "ch", + "est" + ], + [ + "CO", + "N" + ], + [ + "sou", + "p" + ], + [ + "F", + "O" + ], + [ + "bu", + "ffer" + ], + [ + "refer", + "ences" + ], + [ + "ð", + "Ł" + ], + [ + "Min", + "ister" + ], + [ + "k", + "itchen" + ], + [ + "fil", + "ters" + ], + [ + "om", + "ing" + ], + [ + "myster", + "y" + ], + [ + "Cri", + "tical" + ], + [ + "gg", + "ed" + ], + [ + "N", + "avig" + ], + [ + "Tren", + "ds" + ], + [ + "en", + "cod" + ], + [ + "p", + "ounds" + ], + [ + "collabor", + "ative" + ], + [ + "sav", + "ings" + ], + [ + "diet", + "ary" + ], + [ + "inten", + "tion" + ], + [ + "d", + "x" + ], + [ + "i", + "ence" + ], + [ + "Per", + "haps" + ], + [ + "sq", + "l" + ], + [ + "sol", + "ved" + ], + [ + "estim", + "ates" + ], + [ + "pro", + "ven" + ], + [ + "mortal", + "ity" + ], + [ + "stri", + "ke" + ], + [ + "aren", + "cy" + ], + [ + "usi", + "vity" + ], + [ + "paint", + "ings" + ], + [ + "m", + "oun" + ], + [ + "marginal", + "ized" + ], + [ + "L", + "ef" + ], + [ + "p", + "g" + ], + [ + "che", + "ese" + ], + [ + "invest", + "ors" + ], + [ + "Pr", + "ime" + ], + [ + "I", + "ST" + ], + [ + "E", + "p" + ], + [ + "satell", + "ite" + ], + [ + "C", + "opy" + ], + [ + "depend", + "ence" + ], + [ + "confir", + "med" + ], + [ + "public", + "ation" + ], + [ + "inc", + "ident" + ], + [ + "V", + "ide" + ], + [ + "Por", + "tu" + ], + [ + "N", + "az" + ], + [ + "Con", + "stitution" + ], + [ + "Au", + "to" + ], + [ + "push", + "ing" + ], + [ + "fo", + "sters" + ], + [ + "w", + "ed" + ], + [ + "Ã", + "º" + ], + [ + "decl", + "ared" + ], + [ + "sub", + "tle" + ], + [ + "represent", + "ations" + ], + [ + "del", + "ight" + ], + [ + "S", + "ort" + ], + [ + "t", + "an" + ], + [ + "L", + "ily" + ], + [ + "Le", + "e" + ], + [ + "y", + "i" + ], + [ + "explain", + "ing" + ], + [ + "dis", + "ability" + ], + [ + "ov", + "ascular" + ], + [ + "ber", + "ries" + ], + [ + "ê°", + "Ģ" + ], + [ + "tit", + "les" + ], + [ + "comb", + "ines" + ], + [ + "su", + "perior" + ], + [ + "travel", + "s" + ], + [ + "P", + "T" + ], + [ + "op", + "ath" + ], + [ + "par", + "ad" + ], + [ + "belong", + "ing" + ], + [ + "s", + "id" + ], + [ + "fr", + "ac" + ], + [ + "b", + "att" + ], + [ + "sou", + "l" + ], + [ + "j", + "ump" + ], + [ + "I", + "de" + ], + [ + "att", + "ending" + ], + [ + "ure", + "au" + ], + [ + "en", + "ess" + ], + [ + "ad", + "verse" + ], + [ + "ear", + "s" + ], + [ + "men", + "se" + ], + [ + ".", + "|" + ], + [ + "adap", + "ted" + ], + [ + "Ex", + "p" + ], + [ + "cl", + "ar" + ], + [ + "per", + "m" + ], + [ + "sophist", + "icated" + ], + [ + ":Ġ", + "[" + ], + [ + "fr", + "action" + ], + [ + "Ñ", + "Ĩ" + ], + [ + "c", + "ence" + ], + [ + "Oly", + "mp" + ], + [ + "id", + "ity" + ], + [ + "ner", + "ve" + ], + [ + "im", + "mense" + ], + [ + "C", + "ha" + ], + [ + "P", + "ati" + ], + [ + "cho", + "colate" + ], + [ + "surround", + "ings" + ], + [ + "co", + "se" + ], + [ + "R", + "ev" + ], + [ + "earth", + "qu" + ], + [ + "al", + "leg" + ], + [ + "en", + "gines" + ], + [ + "smooth", + "ly" + ], + [ + "S", + "or" + ], + [ + "demonstr", + "ating" + ], + [ + "in", + "hib" + ], + [ + "re", + "strict" + ], + [ + "b", + "orders" + ], + [ + "Ch", + "ampion" + ], + [ + "G", + "ames" + ], + [ + "('", + "\\" + ], + [ + "accompl", + "ish" + ], + [ + "ut", + "ely" + ], + [ + "o", + "ke" + ], + [ + "le", + "ep" + ], + [ + "remo", + "val" + ], + [ + "B", + "A" + ], + [ + "Ele", + "ment" + ], + [ + "m", + "g" + ], + [ + "h", + "oney" + ], + [ + "invest", + "ments" + ], + [ + "spo", + "ts" + ], + [ + "w", + "ound" + ], + [ + "M", + "ur" + ], + [ + "ther", + "mal" + ], + [ + "ver", + "bal" + ], + [ + "adjac", + "ent" + ], + [ + "tu", + "be" + ], + [ + "cul", + "inary" + ], + [ + "man", + "n" + ], + [ + "Diction", + "ary" + ], + [ + "t", + "ary" + ], + [ + "neu", + "tral" + ], + [ + "__", + ",Ġ" + ], + [ + "T", + "ele" + ], + [ + "hun", + "ting" + ], + [ + "ver", + "b" + ], + [ + "respir", + "atory" + ], + [ + "add", + "iction" + ], + [ + "hur", + "t" + ], + [ + "Com", + "mand" + ], + [ + "Organ", + "ization" + ], + [ + "maintain", + "ed" + ], + [ + "grav", + "ity" + ], + [ + "Rel", + "ig" + ], + [ + "H", + "S" + ], + [ + "~~", + "~~" + ], + [ + "An", + "cient" + ], + [ + "po", + "sts" + ], + [ + "Kore", + "a" + ], + [ + "Ġ", + ")" + ], + [ + "l", + "ung" + ], + [ + "Bat", + "tle" + ], + [ + "Col", + "umb" + ], + [ + "Hol", + "y" + ], + [ + "+", + "=" + ], + [ + "Egy", + "pti" + ], + [ + "tr", + "ail" + ], + [ + "Fore", + "st" + ], + [ + "invent", + "ory" + ], + [ + "friend", + "ship" + ], + [ + "sched", + "ul" + ], + [ + "Challeng", + "es" + ], + [ + "t", + "apes" + ], + [ + "mor", + "ph" + ], + [ + "p", + "ull" + ], + [ + "mur", + "der" + ], + [ + "R", + "a" + ], + [ + "exec", + "ution" + ], + [ + "ĊĊ", + "ĉĉ" + ], + [ + "L", + "ove" + ], + [ + "Poli", + "tical" + ], + [ + "at", + "ile" + ], + [ + "Per", + "form" + ], + [ + "St", + "ay" + ], + [ + "in", + "valid" + ], + [ + "det", + "ected" + ], + [ + "cre", + "ations" + ], + [ + "no", + "on" + ], + [ + "in", + "fer" + ], + [ + "par", + "as" + ], + [ + "il", + "a" + ], + [ + "o", + "tic" + ], + [ + "am", + "mat" + ], + [ + "C", + "ub" + ], + [ + "l", + "ad" + ], + [ + "ob", + "serving" + ], + [ + "equ", + "itable" + ], + [ + "sig", + "ma" + ], + [ + "D", + "ue" + ], + [ + "A", + "ri" + ], + [ + "p", + "ump" + ], + [ + "<", + "Ġ" + ], + [ + "U", + "P" + ], + [ + "enti", + "ty" + ], + [ + "med", + "ieval" + ], + [ + "f", + "lying" + ], + [ + "Fo", + "ot" + ], + [ + "Link", + "ed" + ], + [ + "Treat", + "ment" + ], + [ + "per", + "pe" + ], + [ + "preser", + "vation" + ], + [ + "n", + "ull" + ], + [ + "C", + "ore" + ], + [ + "function", + "ality" + ], + [ + "mountain", + "s" + ], + [ + "restr", + "ictions" + ], + [ + "consist", + "ency" + ], + [ + "with", + "draw" + ], + [ + "obes", + "ity" + ], + [ + "cour", + "ts" + ], + [ + "gradi", + "ent" + ], + [ + "b", + "low" + ], + [ + "A", + "g" + ], + [ + "Ho", + "sp" + ], + [ + "re", + "cording" + ], + [ + "Just", + "ice" + ], + [ + "ti", + "sing" + ], + [ + "di", + "al" + ], + [ + "C", + "lear" + ], + [ + "æ", + "Ī" + ], + [ + "ear", + "n" + ], + [ + "def", + "ining" + ], + [ + "sup", + "posed" + ], + [ + "F", + "R" + ], + [ + "Ã", + "±" + ], + [ + "campaign", + "s" + ], + [ + "ec", + "tural" + ], + [ + "ess", + "entially" + ], + [ + "assert", + "Equal" + ], + [ + "le", + "gi" + ], + [ + "pl", + "a" + ], + [ + "upd", + "ates" + ], + [ + "organ", + "izing" + ], + [ + "rig", + "orous" + ], + [ + "bl", + "ical" + ], + [ + "E", + "X" + ], + [ + "gr", + "ains" + ], + [ + "conver", + "ted" + ], + [ + "H", + "P" + ], + [ + "ê", + "³" + ], + [ + "stat", + "istical" + ], + [ + "Rand", + "om" + ], + [ + "st", + "ew" + ], + [ + "organ", + "iz" + ], + [ + "set", + "up" + ], + [ + "consider", + "able" + ], + [ + "vict", + "ory" + ], + [ + "prefer", + "red" + ], + [ + "sus", + "cepti" + ], + [ + "conduct", + "ing" + ], + [ + "L", + "ater" + ], + [ + "sa", + "fer" + ], + [ + "ang", + "ular" + ], + [ + "met", + "abol" + ], + [ + "],", + "[" + ], + [ + "fac", + "ility" + ], + [ + "jud", + "gment" + ], + [ + "inter", + "vals" + ], + [ + "di", + "ameter" + ], + [ + "W", + "ay" + ], + [ + "]", + "Ġ-Ġ" + ], + [ + "Eff", + "ective" + ], + [ + "pr", + "oud" + ], + [ + "invest", + "ing" + ], + [ + "bound", + "ary" + ], + [ + "f", + "on" + ], + [ + "E", + "v" + ], + [ + "mut", + "ation" + ], + [ + "hum", + "or" + ], + [ + "An", + "imal" + ], + [ + "rad", + "ical" + ], + [ + "law", + "y" + ], + [ + "is", + "instance" + ], + [ + "Scot", + "land" + ], + [ + "pho", + "sp" + ], + [ + "ed", + "ay" + ], + [ + "low", + "est" + ], + [ + "str", + "ive" + ], + [ + "LE", + "D" + ], + [ + "chol", + "ester" + ], + [ + "T", + "our" + ], + [ + "st", + "um" + ], + [ + "travel", + "ing" + ], + [ + "viol", + "ent" + ], + [ + "analys", + "es" + ], + [ + "den", + "om" + ], + [ + "A", + "ff" + ], + [ + "real", + "istic" + ], + [ + "ve", + "c" + ], + [ + "tow", + "ns" + ], + [ + "strong", + "ly" + ], + [ + "util", + "ity" + ], + [ + "enter", + "ing" + ], + [ + "grow", + "s" + ], + [ + "leg", + "es" + ], + [ + "ax", + "es" + ], + [ + "har", + "sh" + ], + [ + "Strateg", + "ies" + ], + [ + "even", + "ing" + ], + [ + "bacter", + "ial" + ], + [ + "met", + "als" + ], + [ + "H", + "A" + ], + [ + "and", + "o" + ], + [ + "is", + "lands" + ], + [ + "D", + "ie" + ], + [ + "LGBT", + "Q" + ], + [ + "M", + "ari" + ], + [ + "decre", + "ased" + ], + [ + "t", + "d" + ], + [ + "Pr", + "ice" + ], + [ + "P", + "ut" + ], + [ + "Sci", + "ences" + ], + [ + "cop", + "per" + ], + [ + "as", + "sem" + ], + [ + "bre", + "eding" + ], + [ + "Ĥ", + "¬" + ], + [ + "work", + "er" + ], + [ + "Differ", + "ent" + ], + [ + "ha", + "ust" + ], + [ + "i", + "ves" + ], + [ + "o", + "ved" + ], + [ + "Con", + "cepts" + ], + [ + "fore", + "ver" + ], + [ + "plic", + "ate" + ], + [ + "cook", + "ed" + ], + [ + "f", + "ought" + ], + [ + "tr", + "uc" + ], + [ + "am", + "ins" + ], + [ + "ve", + "ctors" + ], + [ + "encounter", + "ed" + ], + [ + "am", + "b" + ], + [ + "C", + "el" + ], + [ + "go", + "v" + ], + [ + "List", + "Node" + ], + [ + "display", + "ed" + ], + [ + "ìĿ", + "Ħ" + ], + [ + "p", + "ione" + ], + [ + "se", + "p" + ], + [ + "v", + "otes" + ], + [ + "M", + "aria" + ], + [ + "ie", + "ves" + ], + [ + "Ar", + "ticle" + ], + [ + "O", + "thers" + ], + [ + "man", + "ual" + ], + [ + "Res", + "ults" + ], + [ + "IG", + "HT" + ], + [ + "\\", + "\\" + ], + [ + "out", + "door" + ], + [ + "ish", + "op" + ], + [ + "w", + "an" + ], + [ + "}", + ",Ġ" + ], + [ + "in", + "er" + ], + [ + "AT", + "E" + ], + [ + "dist", + "ress" + ], + [ + "pri", + "vi" + ], + [ + "consu", + "me" + ], + [ + "Ess", + "ay" + ], + [ + "H", + "om" + ], + [ + "power", + "ed" + ], + [ + "_", + "Ġ" + ], + [ + "occur", + "ring" + ], + [ + "p", + "itch" + ], + [ + "access", + "ibility" + ], + [ + "Eli", + "za" + ], + [ + "partnership", + "s" + ], + [ + "sh", + "ire" + ], + [ + "stop", + "ped" + ], + [ + "me", + "ets" + ], + [ + "no", + "v" + ], + [ + "ĊĊĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + ")", + "+" + ], + [ + "B", + "on" + ], + [ + "tri", + "bes" + ], + [ + "exec", + "utive" + ], + [ + "S", + "P" + ], + [ + "ser", + "ial" + ], + [ + "c", + "it" + ], + [ + "ic", + "ations" + ], + [ + "Environ", + "ment" + ], + [ + "met", + "aph" + ], + [ + "T", + "i" + ], + [ + "any", + "where" + ], + [ + "sp", + "reading" + ], + [ + "rout", + "es" + ], + [ + "U", + "k" + ], + [ + "mind", + "fulness" + ], + [ + "Ox", + "ford" + ], + [ + "Ge", + "org" + ], + [ + "vir", + "al" + ], + [ + "root", + "ed" + ], + [ + "s", + "ale" + ], + [ + "f", + "ir" + ], + [ + "music", + "ians" + ], + [ + "las", + "er" + ], + [ + "d", + "uty" + ], + [ + "strugg", + "ling" + ], + [ + "cor", + "on" + ], + [ + "ammat", + "ory" + ], + [ + "per", + "su" + ], + [ + ",Ġ", + "[" + ], + [ + "ome", + "ters" + ], + [ + "hist", + "ories" + ], + [ + "Bre", + "ak" + ], + [ + "par", + "ks" + ], + [ + "å", + "Ľ" + ], + [ + "cholester", + "ol" + ], + [ + "end", + "ar" + ], + [ + "em", + "ia" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĠĠ" + ], + [ + "G", + "IN" + ], + [ + "ed", + "it" + ], + [ + "dri", + "vers" + ], + [ + "surround", + "ed" + ], + [ + "po", + "ison" + ], + [ + "ancest", + "ors" + ], + [ + "head", + "ers" + ], + [ + "Fin", + "an" + ], + [ + "it", + "z" + ], + [ + "а", + "н" + ], + [ + "Inter", + "est" + ], + [ + "sh", + "ut" + ], + [ + "bi", + "ke" + ], + [ + "co", + "res" + ], + [ + "Kore", + "an" + ], + [ + "ti", + "e" + ], + [ + "Com", + "par" + ], + [ + "bul", + "lying" + ], + [ + "ani", + "el" + ], + [ + "Po", + "sition" + ], + [ + "cu", + "ts" + ], + [ + "w", + "ins" + ], + [ + "pro", + "sper" + ], + [ + "jo", + "ining" + ], + [ + "Pri", + "or" + ], + [ + "Mr", + "s" + ], + [ + "B", + "or" + ], + [ + "V", + "ector" + ], + [ + "re", + "p" + ], + [ + "pan", + "els" + ], + [ + "uncertain", + "ty" + ], + [ + "op", + "her" + ], + [ + "lo", + "gin" + ], + [ + "stere", + "otypes" + ], + [ + "address", + "es" + ], + [ + "]", + ".Ġ" + ], + [ + "out", + "line" + ], + [ + "Est", + "abl" + ], + [ + "vari", + "eties" + ], + [ + "som", + "eday" + ], + [ + "p", + "m" + ], + [ + "'", + "Ġ+Ġ" + ], + [ + "isol", + "ation" + ], + [ + "fall", + "ing" + ], + [ + "n", + "ice" + ], + [ + "e", + "cho" + ], + [ + "behavior", + "al" + ], + [ + "о", + "ÑĢ" + ], + [ + "Dire", + "ctor" + ], + [ + "H", + "al" + ], + [ + "ele", + "ctions" + ], + [ + "ent", + "ries" + ], + [ + "m", + "ild" + ], + [ + "sh", + "oes" + ], + [ + "//", + "//" + ], + [ + "b", + "ought" + ], + [ + "ear", + "ned" + ], + [ + "f", + "lies" + ], + [ + "ab", + "normal" + ], + [ + "ir", + "a" + ], + [ + "sal", + "ary" + ], + [ + "plant", + "ing" + ], + [ + "tack", + "le" + ], + [ + "geome", + "try" + ], + [ + "der", + "iv" + ], + [ + "t", + "ap" + ], + [ + "F", + "F" + ], + [ + "ins", + "ulin" + ], + [ + "For", + "t" + ], + [ + "comm", + "ands" + ], + [ + "conf", + "ident" + ], + [ + "s", + "enti" + ], + [ + "Ġ=Ġ[", + "'" + ], + [ + "hel", + "lo" + ], + [ + "anth", + "rop" + ], + [ + "perfect", + "ly" + ], + [ + "V", + "it" + ], + [ + "elim", + "inate" + ], + [ + "ar", + "rest" + ], + [ + "search", + "ing" + ], + [ + "ra", + "ises" + ], + [ + "ps", + "on" + ], + [ + "bi", + "om" + ], + [ + "B", + "ang" + ], + [ + "imag", + "ery" + ], + [ + "T", + "P" + ], + [ + "mut", + "ations" + ], + [ + "Liter", + "ature" + ], + [ + "reve", + "als" + ], + [ + "W", + "W" + ], + [ + "re", + "ject" + ], + [ + "Mater", + "ials" + ], + [ + "re", + "wards" + ], + [ + "whe", + "at" + ], + [ + "op", + "tional" + ], + [ + "ber", + "ry" + ], + [ + "illness", + "es" + ], + [ + "qu", + "is" + ], + [ + "Bas", + "ic" + ], + [ + "ig", + "ue" + ], + [ + ")Ġ", + "/Ġ" + ], + [ + "U", + "V" + ], + [ + "\"\"", + "\"Ġ" + ], + [ + "P", + "aper" + ], + [ + "cool", + "ing" + ], + [ + "B", + "L" + ], + [ + "ins", + "on" + ], + [ + "alpha", + "bet" + ], + [ + "cons", + "ent" + ], + [ + "c", + "ig" + ], + [ + "c", + "f" + ], + [ + "haz", + "ard" + ], + [ + "w", + "elcome" + ], + [ + "re", + "vers" + ], + [ + "Mo", + "on" + ], + [ + "ch", + "ap" + ], + [ + "thr", + "illing" + ], + [ + "thorough", + "ly" + ], + [ + "stri", + "king" + ], + [ + "ind", + "rome" + ], + [ + "repe", + "ti" + ], + [ + "typ", + "ing" + ], + [ + "enjoy", + "ed" + ], + [ + "as", + "ide" + ], + [ + "o", + "gram" + ], + [ + "ge", + "ar" + ], + [ + "Pre", + "p" + ], + [ + "by", + "tes" + ], + [ + "Li", + "ber" + ], + [ + "ext", + "in" + ], + [ + "ci", + "pher" + ], + [ + "fin", + "ite" + ], + [ + "è", + "®" + ], + [ + "discipl", + "ines" + ], + [ + "ep", + "ide" + ], + [ + "et", + "ed" + ], + [ + "U", + "tili" + ], + [ + "pan", + "ic" + ], + [ + "P", + "RO" + ], + [ + "c", + "ub" + ], + [ + "col", + "lap" + ], + [ + "),Ġ", + "'" + ], + [ + "optim", + "ize" + ], + [ + "j", + "ew" + ], + [ + "Gre", + "ece" + ], + [ + "adop", + "t" + ], + [ + "bio", + "diversity" + ], + [ + "numer", + "ical" + ], + [ + "NO", + "T" + ], + [ + "end", + "o" + ], + [ + "P", + "ed" + ], + [ + "Lef", + "t" + ], + [ + "manu", + "fact" + ], + [ + "genu", + "ine" + ], + [ + "photograph", + "s" + ], + [ + "b", + "g" + ], + [ + "Nu", + "tri" + ], + [ + "o", + "ids" + ], + [ + "cook", + "ies" + ], + [ + "ì", + "ļ" + ], + [ + "u", + "ed" + ], + [ + "brow", + "ser" + ], + [ + "um", + "my" + ], + [ + "g", + "aps" + ], + [ + "å", + "º" + ], + [ + "S", + "em" + ], + [ + "pon", + "ent" + ], + [ + "st", + "unning" + ], + [ + "cl", + "ay" + ], + [ + "deliver", + "ed" + ], + [ + "Co", + "ast" + ], + [ + "cry", + "pto" + ], + [ + "over", + "view" + ], + [ + "h", + "ill" + ], + [ + "enjoy", + "ing" + ], + [ + "incl", + "usion" + ], + [ + "el", + "a" + ], + [ + "D", + "og" + ], + [ + "E", + "C" + ], + [ + "contro", + "versi" + ], + [ + "suffer", + "ed" + ], + [ + "w", + "arr" + ], + [ + "um", + "ping" + ], + [ + "il", + "der" + ], + [ + "S", + "ty" + ], + [ + "hel", + "per" + ], + [ + "car", + "ri" + ], + [ + "å", + "°" + ], + [ + "than", + "k" + ], + [ + "interpret", + "ations" + ], + [ + "In", + "divid" + ], + [ + "S", + "aint" + ], + [ + "ill", + "ed" + ], + [ + "i", + "ant" + ], + [ + "bab", + "ies" + ], + [ + "Con", + "servation" + ], + [ + "Finan", + "cial" + ], + [ + "igno", + "re" + ], + [ + "H", + "ot" + ], + [ + "nu", + "anced" + ], + [ + "n", + "oun" + ], + [ + "t", + "ong" + ], + [ + "incl", + "usivity" + ], + [ + "oc", + "y" + ], + [ + "at", + "re" + ], + [ + "ash", + "es" + ], + [ + "emphas", + "ize" + ], + [ + "е", + "д" + ], + [ + "ony", + "m" + ], + [ + "B", + "ost" + ], + [ + "gain", + "ing" + ], + [ + "lo", + "ose" + ], + [ + "w", + "ider" + ], + [ + "ten", + "sions" + ], + [ + "reput", + "ation" + ], + [ + "Tra", + "de" + ], + [ + "J", + "ava" + ], + [ + "glu", + "cose" + ], + [ + ":Ġ", + "+Ġ" + ], + [ + "organ", + "ize" + ], + [ + "P", + "red" + ], + [ + "V", + "o" + ], + [ + "fun", + "d" + ], + [ + "c", + "ited" + ], + [ + "pass", + "es" + ], + [ + "meet", + "ings" + ], + [ + ":Ġ\"", + "))" + ], + [ + "ìĹ", + "IJ" + ], + [ + "âĢĻ", + ",Ġ" + ], + [ + ")Ġ", + ">Ġ" + ], + [ + "occup", + "ied" + ], + [ + "cu", + "le" + ], + [ + ")", + "?" + ], + [ + "rough", + "t" + ], + [ + "har", + "der" + ], + [ + "av", + "ir" + ], + [ + "F", + "iction" + ], + [ + "G", + "all" + ], + [ + "D", + "er" + ], + [ + "re", + "cru" + ], + [ + "rup", + "tion" + ], + [ + "He", + "y" + ], + [ + "achieve", + "ment" + ], + [ + "Ma", + "jor" + ], + [ + "ë¥", + "¼" + ], + [ + "#Ġ", + "#Ġ" + ], + [ + "Mex", + "ican" + ], + [ + "dr", + "ama" + ], + [ + "ex", + "port" + ], + [ + "hosp", + "itals" + ], + [ + "}", + "\")" + ], + [ + "SQ", + "L" + ], + [ + "D", + "B" + ], + [ + "ex", + "haust" + ], + [ + "enter", + "pr" + ], + [ + "re", + "tri" + ], + [ + "con", + "ference" + ], + [ + "mark", + "er" + ], + [ + "out", + "puts" + ], + [ + "d", + "ated" + ], + [ + "e", + "ign" + ], + [ + "s", + "ch" + ], + [ + "m", + "ile" + ], + [ + "re", + "plied" + ], + [ + "Pro", + "vid" + ], + [ + "establish", + "ment" + ], + [ + "earli", + "est" + ], + [ + "feature", + "d" + ], + [ + ")", + "*" + ], + [ + "T", + "own" + ], + [ + "cap", + "s" + ], + [ + "se", + "asons" + ], + [ + "piz", + "za" + ], + [ + "dis", + "course" + ], + [ + "vis", + "ually" + ], + [ + "toler", + "ance" + ], + [ + "Face", + "book" + ], + [ + "basket", + "ball" + ], + [ + "master", + "ing" + ], + [ + "isol", + "ated" + ], + [ + "ser", + "t" + ], + [ + "squ", + "ares" + ], + [ + "R", + "est" + ], + [ + "ex", + "ceed" + ], + [ + "att", + "ended" + ], + [ + "ian", + "a" + ], + [ + "B", + "ot" + ], + [ + "Never", + "theless" + ], + [ + "w", + "elfare" + ], + [ + "en", + "forcement" + ], + [ + "clust", + "ers" + ], + [ + "Q", + "U" + ], + [ + "--", + "Ġ" + ], + [ + "re", + "ction" + ], + [ + "е", + "м" + ], + [ + "jur", + "is" + ], + [ + "quanti", + "ties" + ], + [ + "H", + "indu" + ], + [ + "vari", + "ation" + ], + [ + "guid", + "ed" + ], + [ + "mal", + "es" + ], + [ + "man", + "agers" + ], + [ + "mem", + "br" + ], + [ + "Stand", + "ard" + ], + [ + "Ama", + "zon" + ], + [ + "spher", + "ic" + ], + [ + "gam", + "ma" + ], + [ + "k", + "no" + ], + [ + "Tradi", + "tional" + ], + [ + "W", + "id" + ], + [ + "rough", + "ly" + ], + [ + "dipl", + "om" + ], + [ + "sp", + "ar" + ], + [ + "class", + "ified" + ], + [ + "he", + "al" + ], + [ + "Ac", + "ti" + ], + [ + "sever", + "ance" + ], + [ + "b", + "our" + ], + [ + "D", + "I" + ], + [ + "dis", + "plays" + ], + [ + "Be", + "havi" + ], + [ + "craf", + "ts" + ], + [ + "end", + "uring" + ], + [ + "s", + "ister" + ], + [ + "g", + "ases" + ], + [ + "S", + "ports" + ], + [ + "plan", + "ets" + ], + [ + "enti", + "ve" + ], + [ + "l", + "ake" + ], + [ + "AP", + "I" + ], + [ + "Ex", + "peri" + ], + [ + "bust", + "ling" + ], + [ + "Jam", + "ie" + ], + [ + "Prot", + "ection" + ], + [ + "p", + "us" + ], + [ + "parti", + "tion" + ], + [ + "h", + "ate" + ], + [ + "----------------", + "------------" + ], + [ + "hypo", + "thesis" + ], + [ + "gram", + "mar" + ], + [ + "as", + "sembly" + ], + [ + "per", + "or" + ], + [ + "vent", + "ure" + ], + [ + "æĺ", + "¯" + ], + [ + "ro", + "d" + ], + [ + "person", + "nel" + ], + [ + "miner", + "al" + ], + [ + "е", + "л" + ], + [ + "no", + "tion" + ], + [ + "ur", + "ches" + ], + [ + "celebr", + "ated" + ], + [ + "cl", + "ou" + ], + [ + "o", + "ven" + ], + [ + "Ġ", + "}Ġ" + ], + [ + "ip", + "edia" + ], + [ + "se", + "al" + ], + [ + "compl", + "iance" + ], + [ + "th", + "ma" + ], + [ + "perform", + "ances" + ], + [ + "inhabit", + "ants" + ], + [ + "wood", + "en" + ], + [ + "ste", + "am" + ], + [ + "F", + "arm" + ], + [ + "bi", + "ases" + ], + [ + "gal", + "ax" + ], + [ + "Col", + "on" + ], + [ + "re", + "act" + ], + [ + "be", + "es" + ], + [ + "are", + "st" + ], + [ + "Bost", + "on" + ], + [ + "F", + "OR" + ], + [ + "vari", + "ance" + ], + [ + "aw", + "s" + ], + [ + "fi", + "b" + ], + [ + "democr", + "atic" + ], + [ + "ste", + "in" + ], + [ + "reach", + "es" + ], + [ + "ff", + "le" + ], + [ + "infl", + "ammatory" + ], + [ + "b", + "aking" + ], + [ + "m", + "ud" + ], + [ + "geograph", + "ical" + ], + [ + "Pl", + "ot" + ], + [ + "init", + "ely" + ], + [ + "me", + "ter" + ], + [ + "cal", + "ories" + ], + [ + "address", + "ed" + ], + [ + "t", + "ast" + ], + [ + "cu", + "isine" + ], + [ + "Hear", + "t" + ], + [ + "fem", + "ales" + ], + [ + "nutri", + "ent" + ], + [ + "Ad", + "ap" + ], + [ + "gard", + "ens" + ], + [ + "W", + "is" + ], + [ + "por", + "tions" + ], + [ + "rang", + "es" + ], + [ + "ap", + "or" + ], + [ + "T", + "al" + ], + [ + "w", + "el" + ], + [ + "Parti", + "cip" + ], + [ + "termin", + "al" + ], + [ + "f", + "its" + ], + [ + "en", + "code" + ], + [ + "п", + "ÑĢ" + ], + [ + "H", + "an" + ], + [ + "end", + "less" + ], + [ + "align", + "ment" + ], + [ + "work", + "shops" + ], + [ + "Me", + "et" + ], + [ + "consum", + "ing" + ], + [ + "Ne", + "ed" + ], + [ + "Sc", + "en" + ], + [ + "distingu", + "ish" + ], + [ + "cm", + "d" + ], + [ + "bel", + "oved" + ], + [ + "n", + "ome" + ], + [ + "tr", + "acks" + ], + [ + "Administr", + "ation" + ], + [ + "'", + "):" + ], + [ + "Ã", + "ł" + ], + [ + "tour", + "ism" + ], + [ + "\"", + "\\" + ], + [ + "suppor", + "tive" + ], + [ + "lin", + "ing" + ], + [ + "r", + "aft" + ], + [ + "ê", + "¸" + ], + [ + "transp", + "arency" + ], + [ + "abs", + "ence" + ], + [ + "em", + "it" + ], + [ + "ussi", + "an" + ], + [ + "L", + "ength" + ], + [ + "epis", + "ode" + ], + [ + "tem", + "ple" + ], + [ + "relig", + "ions" + ], + [ + "Uk", + "rain" + ], + [ + "po", + "ster" + ], + [ + "br", + "ill" + ], + [ + "to", + "mat" + ], + [ + "g", + "ut" + ], + [ + "indic", + "ated" + ], + [ + "ir", + "rit" + ], + [ + "F", + "ac" + ], + [ + "Tr", + "ust" + ], + [ + "cir", + "cles" + ], + [ + "exam", + "ined" + ], + [ + "m", + "ice" + ], + [ + "ju", + "ice" + ], + [ + "H", + "ard" + ], + [ + "oper", + "ative" + ], + [ + "F", + "I" + ], + [ + "van", + "ia" + ], + [ + "gi", + "ene" + ], + [ + "defin", + "itions" + ], + [ + "dr", + "inks" + ], + [ + "Sh", + "ort" + ], + [ + "z", + "ones" + ], + [ + "prior", + "iti" + ], + [ + "com", + "ic" + ], + [ + "advoc", + "ate" + ], + [ + "work", + "place" + ], + [ + "inter", + "ior" + ], + [ + "settle", + "ment" + ], + [ + "pe", + "are" + ], + [ + "absor", + "b" + ], + [ + "dr", + "ag" + ], + [ + "Spr", + "ing" + ], + [ + "H", + "on" + ], + [ + "ende", + "mic" + ], + [ + "compan", + "ied" + ], + [ + "bo", + "hydr" + ], + [ + "craf", + "ting" + ], + [ + "v", + "ard" + ], + [ + "ific", + "ations" + ], + [ + "Ar", + "gu" + ], + [ + "gold", + "en" + ], + [ + "C", + "V" + ], + [ + "pray", + "er" + ], + [ + "E", + "s" + ], + [ + "op", + "ens" + ], + [ + "Pre", + "vention" + ], + [ + "c", + "art" + ], + [ + "Val", + "id" + ], + [ + "Remo", + "ve" + ], + [ + ":", + "." + ], + [ + "coun", + "ted" + ], + [ + "R", + "ail" + ], + [ + "care", + "ers" + ], + [ + ")", + ";" + ], + [ + "cre", + "w" + ], + [ + "point", + "ed" + ], + [ + "I", + "ter" + ], + [ + "p", + "ens" + ], + [ + "territ", + "ories" + ], + [ + "}", + "," + ], + [ + "[", + "Ġ" + ], + [ + "oun", + "der" + ], + [ + "Vide", + "o" + ], + [ + "çĶ", + "¨" + ], + [ + "G", + "E" + ], + [ + "}", + "{" + ], + [ + "home", + "work" + ], + [ + "R", + "i" + ], + [ + "P", + "ain" + ], + [ + "character", + "istic" + ], + [ + "instit", + "ution" + ], + [ + "compe", + "ting" + ], + [ + "Move", + "ment" + ], + [ + "Columb", + "ia" + ], + [ + "y", + "l" + ], + [ + "Prof", + "ession" + ], + [ + "Specific", + "ally" + ], + [ + "design", + "ated" + ], + [ + "tr", + "ading" + ], + [ + "sm", + "ell" + ], + [ + "hon", + "est" + ], + [ + "piv", + "ot" + ], + [ + "к", + "а" + ], + [ + "partic", + "le" + ], + [ + "spo", + "ke" + ], + [ + "ex", + "pressing" + ], + [ + "Ed", + "ward" + ], + [ + "invas", + "ive" + ], + [ + "mar", + "vel" + ], + [ + "Discus", + "sion" + ], + [ + "dram", + "atic" + ], + [ + "bor", + "ne" + ], + [ + "w", + "age" + ], + [ + "ame", + "ters" + ], + [ + "S", + "a" + ], + [ + "C", + "ro" + ], + [ + "rest", + "ore" + ], + [ + "she", + "ets" + ], + [ + "shel", + "ter" + ], + [ + "St", + "ation" + ], + [ + "s", + "ail" + ], + [ + "s", + "our" + ], + [ + "aw", + "n" + ], + [ + "o", + "ti" + ], + [ + "F", + "inal" + ], + [ + "s", + "ending" + ], + [ + "F", + "all" + ], + [ + "ac", + "companied" + ], + [ + "sh", + "ock" + ], + [ + "manufactur", + "ers" + ], + [ + "syn", + "thetic" + ], + [ + "crim", + "es" + ], + [ + "t", + "t" + ], + [ + "mem", + "o" + ], + [ + "ë", + "ł" + ], + [ + "ond", + "ers" + ], + [ + "A", + "th" + ], + [ + "h", + "n" + ], + [ + "un", + "like" + ], + [ + "expl", + "ores" + ], + [ + "Arch", + "it" + ], + [ + ":", + "ĠĠĠĠĠ" + ], + [ + "ac", + "counting" + ], + [ + "se", + "mi" + ], + [ + "w", + "ik" + ], + [ + "grant", + "ed" + ], + [ + "A", + "li" + ], + [ + "uni", + "versities" + ], + [ + "#", + "ĠĠĠĠ" + ], + [ + "quar", + "ters" + ], + [ + "о", + "ÑĤ" + ], + [ + "We", + "ek" + ], + [ + "discover", + "ing" + ], + [ + "mis", + "sed" + ], + [ + "S", + "core" + ], + [ + "u", + "ts" + ], + [ + "r", + "he" + ], + [ + "In", + "vest" + ], + [ + "valid", + "ate" + ], + [ + "reg", + "ation" + ], + [ + "b", + "ury" + ], + [ + "po", + "inter" + ], + [ + "bind", + "ing" + ], + [ + "Pal", + "est" + ], + [ + "vit", + "amins" + ], + [ + "Su", + "preme" + ], + [ + "K", + "n" + ], + [ + "lun", + "gs" + ], + [ + "st", + "o" + ], + [ + "de", + "code" + ], + [ + "tr", + "as" + ], + [ + "politici", + "ans" + ], + [ + "W", + "atch" + ], + [ + "Red", + "u" + ], + [ + "A", + "br" + ], + [ + "kid", + "ney" + ], + [ + "ul", + "ous" + ], + [ + "acqu", + "is" + ], + [ + ",", + "-" + ], + [ + "as", + "m" + ], + [ + "Dire", + "ct" + ], + [ + "de", + "pos" + ], + [ + "contri", + "bution" + ], + [ + "J", + "eff" + ], + [ + "R", + "en" + ], + [ + "sub", + "mit" + ], + [ + "argu", + "ed" + ], + [ + "pen", + "cil" + ], + [ + "A", + "gency" + ], + [ + "Mich", + "igan" + ], + [ + "E", + "P" + ], + [ + "l", + "ish" + ], + [ + "persist", + "ent" + ], + [ + "afford", + "able" + ], + [ + "]Ġ", + "+" + ], + [ + "tim", + "est" + ], + [ + "s", + "que" + ], + [ + "prom", + "ised" + ], + [ + "ser", + "vers" + ], + [ + "il", + "arities" + ], + [ + "Res", + "p" + ], + [ + "offic", + "er" + ], + [ + "c", + "af" + ], + [ + "hol", + "iday" + ], + [ + "He", + "bre" + ], + [ + "Ob", + "ject" + ], + [ + "ID", + "S" + ], + [ + "re", + "cover" + ], + [ + "rac", + "ism" + ], + [ + "*", + ":Ġ" + ], + [ + "cl", + "ip" + ], + [ + "p", + "our" + ], + [ + "Foc", + "us" + ], + [ + "valu", + "ed" + ], + [ + "exist", + "ed" + ], + [ + "os", + "aur" + ], + [ + "sl", + "ave" + ], + [ + "Ex", + "ec" + ], + [ + "schem", + "e" + ], + [ + "h", + "ence" + ], + [ + "indic", + "ating" + ], + [ + "reason", + "ing" + ], + [ + "y", + "n" + ], + [ + "este", + "em" + ], + [ + "Micro", + "soft" + ], + [ + "char", + "ges" + ], + [ + "Muslim", + "s" + ], + [ + "sur", + "gical" + ], + [ + "arrange", + "ments" + ], + [ + "account", + "ability" + ], + [ + "en", + "na" + ], + [ + "do", + "ctr" + ], + [ + "so", + "cket" + ], + [ + "br", + "ave" + ], + [ + "prof", + "its" + ], + [ + "fing", + "ers" + ], + [ + "sett", + "led" + ], + [ + "Coun", + "ter" + ], + [ + "brain", + "s" + ], + [ + "c", + "tively" + ], + [ + "In", + "cl" + ], + [ + "ir", + "ical" + ], + [ + "r", + "at" + ], + [ + "continu", + "ing" + ], + [ + "data", + "sets" + ], + [ + "separ", + "ation" + ], + [ + "assess", + "ments" + ], + [ + "D", + "re" + ], + [ + "concl", + "usions" + ], + [ + "distin", + "ctive" + ], + [ + "writ", + "es" + ], + [ + "d", + "enti" + ], + [ + "every", + "where" + ], + [ + "sens", + "ory" + ], + [ + "b", + "om" + ], + [ + "ou", + "red" + ], + [ + "myster", + "ious" + ], + [ + "sn", + "ake" + ], + [ + "r", + "type" + ], + [ + "mon", + "d" + ], + [ + "W", + "ould" + ], + [ + "ali", + "en" + ], + [ + "cre", + "di" + ], + [ + "view", + "ed" + ], + [ + "c", + "ue" + ], + [ + "cot", + "ton" + ], + [ + "H", + "un" + ], + [ + "reason", + "able" + ], + [ + "m", + "ari" + ], + [ + "far", + "ms" + ], + [ + "sub", + "scri" + ], + [ + "æ", + "ł" + ], + [ + "F", + "em" + ], + [ + "ef", + "s" + ], + [ + "B", + "ol" + ], + [ + "prot", + "agon" + ], + [ + "dispar", + "ities" + ], + [ + "introdu", + "cing" + ], + [ + "el", + "ig" + ], + [ + "mix", + "ing" + ], + [ + "g", + "ift" + ], + [ + "W", + "a" + ], + [ + "structure", + "d" + ], + [ + "independ", + "ently" + ], + [ + "accom", + "mod" + ], + [ + "Oh", + "io" + ], + [ + "Di", + "vide" + ], + [ + "f", + "ans" + ], + [ + "Tur", + "k" + ], + [ + "Schol", + "ar" + ], + [ + "plant", + "ed" + ], + [ + "utili", + "zing" + ], + [ + "influ", + "encing" + ], + [ + "f", + "ats" + ], + [ + "re", + "call" + ], + [ + "fr", + "act" + ], + [ + "clo", + "sure" + ], + [ + "M", + "ental" + ], + [ + "diagno", + "stic" + ], + [ + "vacc", + "ines" + ], + [ + "dist", + "ant" + ], + [ + "reve", + "aling" + ], + [ + "Des", + "cription" + ], + [ + "descri", + "ptions" + ], + [ + "immigr", + "ants" + ], + [ + "Georg", + "ia" + ], + [ + "suggest", + "ing" + ], + [ + "spec", + "tion" + ], + [ + "Sk", + "ills" + ], + [ + "ì", + "ľ" + ], + [ + "ad", + "ata" + ], + [ + "Ñ", + "İ" + ], + [ + "month", + "ly" + ], + [ + "gi", + "an" + ], + [ + "An", + "im" + ], + [ + "iden", + "tical" + ], + [ + "ì", + "ķ" + ], + [ + "ad", + "versity" + ], + [ + "be", + "e" + ], + [ + "BE", + "GIN" + ], + [ + "hor", + "mone" + ], + [ + "Pak", + "istan" + ], + [ + "Pri", + "v" + ], + [ + "b", + "ands" + ], + [ + "replace", + "ment" + ], + [ + "ask", + "a" + ], + [ + "Wor", + "king" + ], + [ + "cardi", + "ovascular" + ], + [ + "u", + "ter" + ], + [ + "pregn", + "ant" + ], + [ + "St", + "ack" + ], + [ + "Cent", + "re" + ], + [ + "contain", + "ers" + ], + [ + "fac", + "ial" + ], + [ + "S", + "D" + ], + [ + "modif", + "y" + ], + [ + "Sen", + "ate" + ], + [ + "asp", + "ir" + ], + [ + "Cre", + "ated" + ], + [ + "K", + "E" + ], + [ + "si", + "zed" + ], + [ + "Rec", + "ord" + ], + [ + "in", + "um" + ], + [ + "Ind", + "ones" + ], + [ + "I", + "ra" + ], + [ + "bl", + "end" + ], + [ + "G", + "ir" + ], + [ + "h", + "ide" + ], + [ + "el", + "ve" + ], + [ + "-", + ">" + ], + [ + "g", + "el" + ], + [ + "p", + "has" + ], + [ + "æ", + "ī" + ], + [ + "ecti", + "ous" + ], + [ + "Par", + "liament" + ], + [ + ":", + "]" + ], + [ + "re", + "ign" + ], + [ + "s", + "cor" + ], + [ + "H", + "R" + ], + [ + "Pro", + "p" + ], + [ + "li", + "ps" + ], + [ + "P", + "ict" + ], + [ + "AT", + "ION" + ], + [ + "R", + "ol" + ], + [ + "pi", + "pe" + ], + [ + "ut", + "ing" + ], + [ + "mob", + "ility" + ], + [ + "Indu", + "str" + ], + [ + "acc", + "idents" + ], + [ + "it", + "an" + ], + [ + "S", + "n" + ], + [ + "dev", + "ast" + ], + [ + "archit", + "ectural" + ], + [ + "re", + "productive" + ], + [ + "con", + "cat" + ], + [ + "b", + "ite" + ], + [ + "à", + "¥" + ], + [ + "De", + "ath" + ], + [ + "descri", + "bing" + ], + [ + ":", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "c", + "au" + ], + [ + "ver", + "age" + ], + [ + "relax", + "ation" + ], + [ + "nic", + "he" + ], + [ + "furn", + "iture" + ], + [ + "C", + "ry" + ], + [ + "old", + "est" + ], + [ + "the", + "tics" + ], + [ + "ecti", + "vity" + ], + [ + "Pre", + "par" + ], + [ + "neur", + "ons" + ], + [ + "In", + "valid" + ], + [ + "ic", + "ians" + ], + [ + "il", + "legal" + ], + [ + "ĠâĢ", + "¢Ġ" + ], + [ + "safe", + "guard" + ], + [ + "F", + "ast" + ], + [ + "Ne", + "uro" + ], + [ + "m", + "old" + ], + [ + "miti", + "g" + ], + [ + "is", + "ons" + ], + [ + "Multi", + "plication" + ], + [ + "mis", + "s" + ], + [ + "reg", + "im" + ], + [ + "fu", + "els" + ], + [ + "Calcul", + "ate" + ], + [ + "ach", + "u" + ], + [ + "system", + "ic" + ], + [ + "b", + "ins" + ], + [ + "de", + "ar" + ], + [ + "Th", + "ird" + ], + [ + "um", + "atic" + ], + [ + "ball", + "s" + ], + [ + "d", + "inner" + ], + [ + "config", + "uration" + ], + [ + "important", + "ly" + ], + [ + "overwhel", + "ming" + ], + [ + "D", + "at" + ], + [ + "Indi", + "ans" + ], + [ + "As", + "sembly" + ], + [ + "im", + "pression" + ], + [ + "ac", + "ute" + ], + [ + "op", + "posed" + ], + [ + "In", + "f" + ], + [ + "life", + "time" + ], + [ + "rol", + "led" + ], + [ + "constit", + "utes" + ], + [ + "Alex", + "ander" + ], + [ + "Penn", + "syl" + ], + [ + "Al", + "low" + ], + [ + "nit", + "rogen" + ], + [ + "Pro", + "duct" + ], + [ + "some", + "what" + ], + [ + "Hosp", + "ital" + ], + [ + "col", + "n" + ], + [ + "sun", + "ny" + ], + [ + "myster", + "ies" + ], + [ + "tapes", + "try" + ], + [ + "Mis", + "sing" + ], + [ + ":Ġ", + "{}" + ], + [ + "hear", + "ts" + ], + [ + "L", + "ew" + ], + [ + "Mar", + "ket" + ], + [ + "ì", + "ĭ" + ], + [ + "reflect", + "ed" + ], + [ + "re", + "tail" + ], + [ + "w", + "ars" + ], + [ + "log", + "ger" + ], + [ + "in", + "ator" + ], + [ + "Gra", + "de" + ], + [ + "pat", + "ri" + ], + [ + "ac", + "ion" + ], + [ + "c", + "ere" + ], + [ + "medi", + "ate" + ], + [ + "or", + "bit" + ], + [ + "u", + "a" + ], + [ + "bat", + "teries" + ], + [ + "ap", + "plies" + ], + [ + "Ch", + "ief" + ], + [ + "sim", + "ulation" + ], + [ + "god", + "s" + ], + [ + "sim", + "ilarities" + ], + [ + "im", + "pressive" + ], + [ + "represent", + "ative" + ], + [ + "A", + "h" + ], + [ + "co", + "sm" + ], + [ + "df", + "s" + ], + [ + "initi", + "ative" + ], + [ + "philosoph", + "ical" + ], + [ + "applic", + "able" + ], + [ + "ele", + "m" + ], + [ + ".", + "\"\"\"" + ], + [ + "J", + "ob" + ], + [ + "else", + "where" + ], + [ + "am", + "ps" + ], + [ + "roy", + "al" + ], + [ + "ground", + "s" + ], + [ + ".", + "'" + ], + [ + "A", + "sh" + ], + [ + "B", + "lock" + ], + [ + "moder", + "ate" + ], + [ + "def", + "initely" + ], + [ + "....", + "...." + ], + [ + "St", + "an" + ], + [ + "ill", + "ance" + ], + [ + "--------------------------------", + "--------------------------------" + ], + [ + "V", + "en" + ], + [ + "P", + "as" + ], + [ + "inter", + "views" + ], + [ + "resol", + "ve" + ], + [ + "restaur", + "ant" + ], + [ + "AC", + "T" + ], + [ + "Fe", + "el" + ], + [ + "seg", + "ments" + ], + [ + "coun", + "cil" + ], + [ + "First", + "ly" + ], + [ + "sampl", + "ing" + ], + [ + "me", + "ta" + ], + [ + "#", + "!" + ], + [ + "B", + "inary" + ], + [ + "phr", + "ases" + ], + [ + "embed", + "ded" + ], + [ + "sc", + "ales" + ], + [ + "mean", + "ings" + ], + [ + "n", + "asty" + ], + [ + "her", + "bs" + ], + [ + "Q", + "uality" + ], + [ + "plan", + "es" + ], + [ + "evol", + "ve" + ], + [ + "acade", + "m" + ], + [ + "agr", + "am" + ], + [ + "newsp", + "aper" + ], + [ + "gam", + "ing" + ], + [ + "speak", + "ers" + ], + [ + "ap", + "ing" + ], + [ + "ans", + "as" + ], + [ + "ingredi", + "ent" + ], + [ + "M", + "es" + ], + [ + "approach", + "ed" + ], + [ + "mo", + "des" + ], + [ + "c", + "ion" + ], + [ + "exem", + "pl" + ], + [ + "R", + "ena" + ], + [ + "é", + "ĩ" + ], + [ + "ch", + "ampion" + ], + [ + "S", + "ong" + ], + [ + "i", + "ams" + ], + [ + "ad", + "option" + ], + [ + "acknowled", + "ging" + ], + [ + "r", + "as" + ], + [ + "ele", + "g" + ], + [ + "im", + "migration" + ], + [ + "Test", + "ing" + ], + [ + "thri", + "tis" + ], + [ + "M", + "ix" + ], + [ + "mark", + "ers" + ], + [ + "sp", + "ac" + ], + [ + "Pro", + "g" + ], + [ + "W", + "i" + ], + [ + "enh", + "ances" + ], + [ + "Pennsyl", + "vania" + ], + [ + "L", + "A" + ], + [ + "ang", + "el" + ], + [ + "S", + "us" + ], + [ + "S", + "till" + ], + [ + "exp", + "on" + ], + [ + "se", + "ctors" + ], + [ + "ur", + "ance" + ], + [ + "or", + "i" + ], + [ + "indu", + "ced" + ], + [ + "__", + "\":" + ], + [ + "shif", + "ting" + ], + [ + "ter", + "rain" + ], + [ + "sw", + "ap" + ], + [ + "cultiv", + "ating" + ], + [ + "W", + "rit" + ], + [ + "Cam", + "bridge" + ], + [ + "it", + "ative" + ], + [ + "hy", + "brid" + ], + [ + "bur", + "ied" + ], + [ + "stand", + "ardi" + ], + [ + "cor", + "relation" + ], + [ + "HT", + "ML" + ], + [ + "ãĢ", + "Ĥ" + ], + [ + "-Ġ", + "**" + ], + [ + "ian", + "o" + ], + [ + ":", + "-" + ], + [ + "pursu", + "ing" + ], + [ + "re", + "med" + ], + [ + "B", + "an" + ], + [ + "com", + "ics" + ], + [ + "con", + "serv" + ], + [ + "b", + "un" + ], + [ + "on", + "ing" + ], + [ + "cep", + "tional" + ], + [ + "end", + "ers" + ], + [ + "ë", + "°" + ], + [ + "per", + "ceptions" + ], + [ + "N", + "avy" + ], + [ + "r", + "ush" + ], + [ + "]", + "+" + ], + [ + "н", + "Ñĭ" + ], + [ + "C", + "up" + ], + [ + "C", + "I" + ], + [ + "Ex", + "plan" + ], + [ + "al", + "ities" + ], + [ + "swim", + "ming" + ], + [ + "scre", + "ening" + ], + [ + "r", + "ane" + ], + [ + "In", + "gre" + ], + [ + "t", + "ape" + ], + [ + "sc", + "op" + ], + [ + "N", + "iger" + ], + [ + "bl", + "ank" + ], + [ + "after", + "noon" + ], + [ + "S", + "ex" + ], + [ + "Res", + "er" + ], + [ + "emphas", + "izes" + ], + [ + "rot", + "ate" + ], + [ + "electr", + "ons" + ], + [ + "D", + "am" + ], + [ + "Br", + "ain" + ], + [ + "shor", + "ter" + ], + [ + "vari", + "ed" + ], + [ + "bur", + "den" + ], + [ + "Ira", + "q" + ], + [ + "T", + "ay" + ], + [ + "ic", + "onic" + ], + [ + "Is", + "lands" + ], + [ + "di", + "ver" + ], + [ + "D", + "aniel" + ], + [ + "Exerc", + "ise" + ], + [ + "ro", + "b" + ], + [ + "thy", + "roid" + ], + [ + "stru", + "ck" + ], + [ + "trans", + "action" + ], + [ + "ag", + "en" + ], + [ + "ce", + "ment" + ], + [ + "an", + "x" + ], + [ + "set", + "ts" + ], + [ + "cr", + "ic" + ], + [ + "#", + "ĠĠ" + ], + [ + "ome", + "ter" + ], + [ + "Ġ\"", + "Ġ+Ġ" + ], + [ + "accept", + "able" + ], + [ + "bre", + "ed" + ], + [ + "magn", + "itude" + ], + [ + "']", + ",Ġ" + ], + [ + "O", + "K" + ], + [ + "acks", + "on" + ], + [ + "arri", + "val" + ], + [ + "Al", + "li" + ], + [ + "ann", + "i" + ], + [ + "Lin", + "coln" + ], + [ + "fif", + "th" + ], + [ + "al", + "t" + ], + [ + "Pres", + "ent" + ], + [ + "cr", + "ack" + ], + [ + "Cont", + "ent" + ], + [ + "comple", + "ting" + ], + [ + "S", + "cript" + ], + [ + "Eliza", + "beth" + ], + [ + "present", + "ing" + ], + [ + "clo", + "s" + ], + [ + "Ð", + "Ĵ" + ], + [ + "De", + "ep" + ], + [ + "ar", + "c" + ], + [ + "as", + "si" + ], + [ + "å", + "ľ" + ], + [ + "ari", + "b" + ], + [ + "gu", + "ides" + ], + [ + "them", + "atic" + ], + [ + "to", + "bac" + ], + [ + "loc", + "ate" + ], + [ + "Coun", + "try" + ], + [ + "B", + "all" + ], + [ + "regard", + "ed" + ], + [ + "prim", + "es" + ], + [ + "E", + "f" + ], + [ + "adver", + "tising" + ], + [ + "check", + "ed" + ], + [ + "recycl", + "ing" + ], + [ + "Po", + "si" + ], + [ + "arrang", + "ed" + ], + [ + "â", + "ĸ" + ], + [ + "ul", + "ates" + ], + [ + "therap", + "ies" + ], + [ + "got", + "ten" + ], + [ + "sl", + "aves" + ], + [ + "Rena", + "issance" + ], + [ + "g", + "ic" + ], + [ + "m", + "arch" + ], + [ + "rhyth", + "m" + ], + [ + "calcul", + "ations" + ], + [ + "Ma", + "themat" + ], + [ + "tac", + "tics" + ], + [ + "ac", + "ci" + ], + [ + "å", + "Ĭ" + ], + [ + "cir", + "cular" + ], + [ + "âĢĿ", + "." + ], + [ + "un", + "cover" + ], + [ + "ver", + "ify" + ], + [ + "ec", + "raft" + ], + [ + "AR", + "T" + ], + [ + "see", + "ks" + ], + [ + "ch", + "ains" + ], + [ + "Cor", + "por" + ], + [ + "sover", + "eign" + ], + [ + "Under", + "stand" + ], + [ + "batt", + "les" + ], + [ + "n", + "c" + ], + [ + "U", + "pon" + ], + [ + "resid", + "ential" + ], + [ + "l", + "augh" + ], + [ + "oil", + "s" + ], + [ + "un", + "necessary" + ], + [ + "adap", + "tive" + ], + [ + "robo", + "ts" + ], + [ + "among", + "st" + ], + [ + "fi", + "er" + ], + [ + "Will", + "iams" + ], + [ + "cl", + "ues" + ], + [ + "cop", + "ies" + ], + [ + "l", + "oud" + ], + [ + "ic", + "king" + ], + [ + "achu", + "setts" + ], + [ + "Haw", + "ai" + ], + [ + "S", + "on" + ], + [ + "consist", + "ing" + ], + [ + "PAR", + "SE" + ], + [ + "J", + "ul" + ], + [ + "atom", + "ic" + ], + [ + "reg", + "ulate" + ], + [ + "alter", + "ed" + ], + [ + "u", + "it" + ], + [ + "Mach", + "ine" + ], + [ + "e", + "q" + ], + [ + "C", + "M" + ], + [ + "poem", + "s" + ], + [ + "fol", + "ks" + ], + [ + "L", + "D" + ], + [ + "Che", + "m" + ], + [ + "Par", + "ameters" + ], + [ + "'", + "\\" + ], + [ + "tur", + "b" + ], + [ + "proto", + "cols" + ], + [ + "ul", + "timate" + ], + [ + "optim", + "ization" + ], + [ + "at", + "oes" + ], + [ + "#!", + "/" + ], + [ + "tr", + "ation" + ], + [ + "commit", + "tee" + ], + [ + "kill", + "ing" + ], + [ + "car", + "bohydr" + ], + [ + "Sol", + "ar" + ], + [ + "en", + "counters" + ], + [ + "sci", + "ences" + ], + [ + "ir", + "rig" + ], + [ + "I", + "ll" + ], + [ + "ro", + "py" + ], + [ + "ad", + "el" + ], + [ + "membr", + "ane" + ], + [ + "rare", + "ly" + ], + [ + "intr", + "ic" + ], + [ + "Line", + "ar" + ], + [ + "ab", + "c" + ], + [ + "bus", + "y" + ], + [ + "Sun", + "day" + ], + [ + "iter", + "ation" + ], + [ + "awa", + "it" + ], + [ + "M", + "un" + ], + [ + "mo", + "thers" + ], + [ + "prof", + "ic" + ], + [ + "Co", + "ok" + ], + [ + "fre", + "ely" + ], + [ + "ul", + "ative" + ], + [ + "pro", + "spec" + ], + [ + "sugges", + "tions" + ], + [ + "ce", + "ans" + ], + [ + "The", + "oretical" + ], + [ + "s", + "lip" + ], + [ + "Plan", + "ning" + ], + [ + "`", + ".Ġ" + ], + [ + "W", + "ales" + ], + [ + "A", + "ward" + ], + [ + "ap", + "pl" + ], + [ + "imp", + "air" + ], + [ + "en", + "crypt" + ], + [ + "V", + "ers" + ], + [ + "r", + "um" + ], + [ + "rane", + "an" + ], + [ + "veget", + "able" + ], + [ + "wor", + "st" + ], + [ + "n", + "b" + ], + [ + "est", + "ed" + ], + [ + "AL", + "L" + ], + [ + "y", + "r" + ], + [ + "int", + "u" + ], + [ + "precis", + "ely" + ], + [ + "un", + "ited" + ], + [ + "u", + "an" + ], + [ + "ed", + "iting" + ], + [ + "br", + "is" + ], + [ + ".", + "')" + ], + [ + "spec", + "im" + ], + [ + "d", + "ice" + ], + [ + "Not", + "es" + ], + [ + "Guid", + "elines" + ], + [ + "(", + "..." + ], + [ + "J", + "ane" + ], + [ + "Mass", + "achusetts" + ], + [ + "©", + "Ġ" + ], + [ + "__", + "Ġ==Ġ\"" + ], + [ + "er", + "up" + ], + [ + "ach", + "el" + ], + [ + "se", + "es" + ], + [ + "sl", + "ope" + ], + [ + "v", + "y" + ], + [ + "il", + "ly" + ], + [ + "ê", + "²" + ], + [ + "dom", + "ains" + ], + [ + "histor", + "ians" + ], + [ + "Tur", + "key" + ], + [ + "ay", + "a" + ], + [ + "pre", + "y" + ], + [ + "er", + "ies" + ], + [ + "imper", + "ial" + ], + [ + "pep", + "per" + ], + [ + "op", + "tical" + ], + [ + "des", + "k" + ], + [ + "iter", + "ations" + ], + [ + "ë", + "¦" + ], + [ + "mun", + "icip" + ], + [ + "Ref", + "lect" + ], + [ + "cat", + "aly" + ], + [ + "in", + "vention" + ], + [ + "W", + "ed" + ], + [ + "__Ġ==Ġ\"", + "__" + ], + [ + "od", + "a" + ], + [ + "survi", + "v" + ], + [ + "R", + "ange" + ], + [ + "m", + "ans" + ], + [ + "sl", + "ices" + ], + [ + "ì", + "Ĭ" + ], + [ + "wor", + "n" + ], + [ + "ab", + "olic" + ], + [ + "effic", + "acy" + ], + [ + "nutri", + "tional" + ], + [ + "el", + "ong" + ], + [ + "co", + "ords" + ], + [ + "y", + "an" + ], + [ + "Sim", + "ple" + ], + [ + "fat", + "igue" + ], + [ + "avir", + "us" + ], + [ + "dis", + "comfort" + ], + [ + "Que", + "ue" + ], + [ + "wonder", + "ing" + ], + [ + "ke", + "e" + ], + [ + "|", + "-" + ], + [ + "dis", + "k" + ], + [ + "install", + "ation" + ], + [ + "oper", + "ational" + ], + [ + "brid", + "ges" + ], + [ + "ref", + "ine" + ], + [ + "tum", + "or" + ], + [ + "policy", + "makers" + ], + [ + "]", + "Ġ*Ġ" + ], + [ + "cam", + "eras" + ], + [ + "ti", + "tem" + ], + [ + "hol", + "istic" + ], + [ + "appoint", + "ment" + ], + [ + "qu", + "ote" + ], + [ + "stre", + "ams" + ], + [ + "op", + "position" + ], + [ + "Y", + "e" + ], + [ + "match", + "ing" + ], + [ + "ag", + "ger" + ], + [ + "ar", + "tic" + ], + [ + "Th", + "ank" + ], + [ + "d", + "well" + ], + [ + "S", + "M" + ], + [ + "gr", + "an" + ], + [ + "threat", + "ened" + ], + [ + "Prin", + "ci" + ], + [ + "]Ġ+", + "=Ġ" + ], + [ + "deep", + "en" + ], + [ + "mer", + "ged" + ], + [ + "B", + "enny" + ], + [ + "f", + "ed" + ], + [ + "Care", + "er" + ], + [ + "pro", + "vision" + ], + [ + "neg", + "lect" + ], + [ + "R", + "ab" + ], + [ + "flu", + "ctu" + ], + [ + "p", + "tive" + ], + [ + "R", + "isk" + ], + [ + "haz", + "ards" + ], + [ + "purch", + "asing" + ], + [ + "Ñ", + "Ī" + ], + [ + "bro", + "ke" + ], + [ + "con", + "ve" + ], + [ + "s", + "ket" + ], + [ + "Squ", + "are" + ], + [ + "pre", + "cip" + ], + [ + "l", + "unch" + ], + [ + "contin", + "ent" + ], + [ + ")Ġ", + "#" + ], + [ + "T", + "an" + ], + [ + "Com", + "pan" + ], + [ + "br", + "on" + ], + [ + "house", + "holds" + ], + [ + "v", + "on" + ], + [ + "J", + "ackson" + ], + [ + "distur", + "b" + ], + [ + "m", + "end" + ], + [ + "n", + "as" + ], + [ + "A", + "k" + ], + [ + "pick", + "ed" + ], + [ + "Assess", + "ment" + ], + [ + "d", + "ough" + ], + [ + "N", + "ep" + ], + [ + "h", + "ed" + ], + [ + "pr", + "ide" + ], + [ + "physic", + "ian" + ], + [ + "as", + "set" + ], + [ + "B", + "it" + ], + [ + "vis", + "its" + ], + [ + "deli", + "ber" + ], + [ + "O", + "s" + ], + [ + "as", + "thma" + ], + [ + "M", + "ot" + ], + [ + "heim", + "er" + ], + [ + "å", + "¼" + ], + [ + "Int", + "ellig" + ], + [ + "consu", + "med" + ], + [ + "am", + "ic" + ], + [ + "J", + "im" + ], + [ + "ex", + "ceptional" + ], + [ + "the", + "ater" + ], + [ + "advoc", + "ating" + ], + [ + "cig", + "aret" + ], + [ + "il", + "itation" + ], + [ + "Francis", + "co" + ], + [ + "weap", + "on" + ], + [ + "trust", + "ed" + ], + [ + "enab", + "led" + ], + [ + "be", + "am" + ], + [ + "transl", + "ated" + ], + [ + "Comple", + "x" + ], + [ + "Tra", + "vel" + ], + [ + "ian", + "ces" + ], + [ + "F", + "air" + ], + [ + "Conn", + "ection" + ], + [ + "e", + "igh" + ], + [ + "bow", + "l" + ], + [ + "integr", + "ate" + ], + [ + "F", + "ull" + ], + [ + "%", + ")Ġ" + ], + [ + "memor", + "able" + ], + [ + "gu", + "ests" + ], + [ + "M", + "ir" + ], + [ + "fe", + "es" + ], + [ + "new", + "found" + ], + [ + "Explan", + "ation" + ], + [ + "concentr", + "ations" + ], + [ + "treat", + "s" + ], + [ + "cap", + "turing" + ], + [ + "b", + "ars" + ], + [ + "h", + "en" + ], + [ + "f", + "usion" + ], + [ + "cry", + "ption" + ], + [ + "fair", + "ness" + ], + [ + "con", + "g" + ], + [ + "celebr", + "ation" + ], + [ + "form", + "ats" + ], + [ + "F", + "a" + ], + [ + "F", + "low" + ], + [ + "loc", + "ally" + ], + [ + "S", + "ix" + ], + [ + "Respon", + "se" + ], + [ + "ĊĊ", + "ĠĠ" + ], + [ + "ER", + "E" + ], + [ + "T", + "ask" + ], + [ + "nur", + "sing" + ], + [ + "Democr", + "atic" + ], + [ + "agg", + "ressive" + ], + [ + "In", + "fo" + ], + [ + "In", + "vestig" + ], + [ + "nam", + "ent" + ], + [ + "des", + "ir" + ], + [ + "oper", + "ators" + ], + [ + "trans", + "late" + ], + [ + "th", + "ur" + ], + [ + "workshe", + "ets" + ], + [ + "at", + "tain" + ], + [ + "rest", + "oration" + ], + [ + "civil", + "ization" + ], + [ + "clos", + "est" + ], + [ + "Sy", + "mbol" + ], + [ + "pur", + "sue" + ], + [ + "V", + "R" + ], + [ + "analy", + "zed" + ], + [ + "club", + "s" + ], + [ + "be", + "ars" + ], + [ + "H", + "it" + ], + [ + "u", + "ity" + ], + [ + "utili", + "zed" + ], + [ + "pro", + "vince" + ], + [ + "collabor", + "ate" + ], + [ + "co", + "ach" + ], + [ + "M", + "ount" + ], + [ + "show", + "c" + ], + [ + "May", + "a" + ], + [ + "document", + "ed" + ], + [ + "be", + "aring" + ], + [ + "register", + "ed" + ], + [ + "threat", + "ening" + ], + [ + "nom", + "bre" + ], + [ + "cell", + "ular" + ], + [ + "he", + "ated" + ], + [ + "Con", + "st" + ], + [ + "maxim", + "ize" + ], + [ + "----", + "--" + ], + [ + "asp", + "iring" + ], + [ + "electron", + "ics" + ], + [ + "view", + "ers" + ], + [ + "Res", + "ult" + ], + [ + "V", + "ar" + ], + [ + "read", + "s" + ], + [ + "compe", + "tit" + ], + [ + "ch", + "urches" + ], + [ + "piv", + "otal" + ], + [ + "ic", + "ed" + ], + [ + "acqu", + "ire" + ], + [ + "di", + "vis" + ], + [ + "dim", + "in" + ], + [ + "organiz", + "ational" + ], + [ + "Per", + "iod" + ], + [ + "commer", + "ce" + ], + [ + "Z", + "E" + ], + [ + "circul", + "ation" + ], + [ + "act", + "ed" + ], + [ + "ER", + "S" + ], + [ + "carr", + "ies" + ], + [ + "D", + "ist" + ], + [ + "æ", + "į" + ], + [ + "om", + "ag" + ], + [ + ":", + "\\" + ], + [ + "cop", + "ing" + ], + [ + "Ġ+", + "Ġ(" + ], + [ + "shu", + "ffle" + ], + [ + "H", + "im" + ], + [ + "C", + "op" + ], + [ + "ca", + "ke" + ], + [ + "hy", + "giene" + ], + [ + "am", + "ination" + ], + [ + "vi", + "vid" + ], + [ + "program", + "me" + ], + [ + "mir", + "ror" + ], + [ + "Ur", + "ban" + ], + [ + "cre", + "ature" + ], + [ + "path", + "ways" + ], + [ + "guid", + "ing" + ], + [ + "Sup", + "pose" + ], + [ + "d", + "airy" + ], + [ + "be", + "ach" + ], + [ + "frequ", + "encies" + ], + [ + "om", + "al" + ], + [ + "cu", + "es" + ], + [ + "lu", + "x" + ], + [ + "manip", + "ulation" + ], + [ + "al", + "gebra" + ], + [ + "per", + "severance" + ], + [ + "Discus", + "s" + ], + [ + "æ", + "Ĺ" + ], + [ + "arrange", + "ment" + ], + [ + "pix", + "els" + ], + [ + "ment", + "ation" + ], + [ + "award", + "ed" + ], + [ + "D", + "ri" + ], + [ + "concl", + "uded" + ], + [ + "Conf", + "eder" + ], + [ + "amin", + "o" + ], + [ + "fil", + "i" + ], + [ + "jo", + "ints" + ], + [ + "k", + "ar" + ], + [ + "Answ", + "ers" + ], + [ + "w", + "onders" + ], + [ + "stop", + "s" + ], + [ + "teach", + "es" + ], + [ + "personal", + "ized" + ], + [ + "dis", + "asters" + ], + [ + "spr", + "ay" + ], + [ + "ad", + "m" + ], + [ + "preser", + "ved" + ], + [ + "fun", + "ded" + ], + [ + "contr", + "acts" + ], + [ + "Import", + "ant" + ], + [ + "t", + "led" + ], + [ + "incredi", + "bly" + ], + [ + "Ġ(", + "'" + ], + [ + "cri", + "tics" + ], + [ + "sing", + "ing" + ], + [ + "show", + "case" + ], + [ + "Le", + "gal" + ], + [ + "am", + "ine" + ], + [ + "enti", + "als" + ], + [ + "hes", + "it" + ], + [ + "qu", + "iz" + ], + [ + "cast", + "s" + ], + [ + "Il", + "lin" + ], + [ + "Obj", + "ective" + ], + [ + "Rel", + "ation" + ], + [ + "camp", + "us" + ], + [ + "ain", + "ts" + ], + [ + "Ad", + "am" + ], + [ + "ane", + "ous" + ], + [ + "Con", + "ference" + ], + [ + "Ber", + "lin" + ], + [ + "/", + "/Ġ" + ], + [ + "deliver", + "ing" + ], + [ + "âĪ", + "Ĵ" + ], + [ + "hormon", + "es" + ], + [ + "ti", + "ed" + ], + [ + "m", + "ort" + ], + [ + "d", + "ens" + ], + [ + "sub", + "set" + ], + [ + ".Ġ", + "...Ġ" + ], + [ + "En", + "cour" + ], + [ + "produc", + "ers" + ], + [ + "graph", + "s" + ], + [ + "econom", + "ies" + ], + [ + "ak", + "a" + ], + [ + "pro", + "long" + ], + [ + "end", + "ment" + ], + [ + "occasion", + "ally" + ], + [ + "pro", + "posal" + ], + [ + "gen", + "ome" + ], + [ + "compreh", + "end" + ], + [ + "we", + "ed" + ], + [ + "Illin", + "ois" + ], + [ + "F", + "act" + ], + [ + "Tr", + "an" + ], + [ + "H", + "ung" + ], + [ + "Ġ=Ġ", + "\"\"" + ], + [ + "л", + "и" + ], + [ + "highlight", + "ed" + ], + [ + "adop", + "ting" + ], + [ + "ĠĠ", + ":Ġ" + ], + [ + "out", + "lined" + ], + [ + "im", + "posed" + ], + [ + "fac", + "ulty" + ], + [ + "cr", + "ush" + ], + [ + "explicit", + "ly" + ], + [ + "Hebre", + "w" + ], + [ + "war", + "fare" + ], + [ + "T", + "ax" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "cal", + "endar" + ], + [ + "Ang", + "eles" + ], + [ + "N", + "N" + ], + [ + "n", + "ick" + ], + [ + "drop", + "ped" + ], + [ + "recei", + "ves" + ], + [ + "advoc", + "acy" + ], + [ + "veget", + "ation" + ], + [ + "Orig", + "in" + ], + [ + "absor", + "ption" + ], + [ + "Analy", + "zing" + ], + [ + "clo", + "sing" + ], + [ + "disput", + "es" + ], + [ + "reli", + "ability" + ], + [ + "load", + "ed" + ], + [ + "weakness", + "es" + ], + [ + ",", + "ĠĠ" + ], + [ + "w", + "ich" + ], + [ + "rel", + "ates" + ], + [ + "voc", + "al" + ], + [ + "factor", + "ial" + ], + [ + "at", + "titude" + ], + [ + "----", + "---" + ], + [ + "Int", + "rodu" + ], + [ + "ograph", + "ic" + ], + [ + "Ther", + "apy" + ], + [ + "C", + "lo" + ], + [ + "p", + "H" + ], + [ + "sp", + "ell" + ], + [ + "Sto", + "re" + ], + [ + "H", + "op" + ], + [ + "pro", + "vin" + ], + [ + "prof", + "iles" + ], + [ + "ne", + "ts" + ], + [ + "Def", + "ine" + ], + [ + "dri", + "ed" + ], + [ + "magaz", + "ine" + ], + [ + "wash", + "ing" + ], + [ + "[:", + ",Ġ" + ], + [ + "acknow", + "ledge" + ], + [ + "ain", + "e" + ], + [ + "F", + "actors" + ], + [ + "prog", + "ressive" + ], + [ + "bot", + "tle" + ], + [ + "C", + "ut" + ], + [ + "tobac", + "co" + ], + [ + "re", + "vol" + ], + [ + "can", + "n" + ], + [ + "t", + "in" + ], + [ + "week", + "ly" + ], + [ + "indic", + "ators" + ], + [ + "minor", + "ity" + ], + [ + "Mil", + "itary" + ], + [ + "ur", + "ated" + ], + [ + "to", + "ck" + ], + [ + "constit", + "utional" + ], + [ + "t", + "ender" + ], + [ + "clou", + "ds" + ], + [ + "D", + "em" + ], + [ + "ad", + "os" + ], + [ + "Ac", + "count" + ], + [ + "past", + "e" + ], + [ + "R", + "out" + ], + [ + "Dig", + "ite" + ], + [ + "B", + "es" + ], + [ + "A", + "z" + ], + [ + "Con", + "nec" + ], + [ + "Ð", + "¶" + ], + [ + "E", + "volution" + ], + [ + "ag", + "an" + ], + [ + "comp", + "ile" + ], + [ + "adapt", + "ability" + ], + [ + "H", + "old" + ], + [ + "Los", + "s" + ], + [ + "distr", + "icts" + ], + [ + "Be", + "yond" + ], + [ + "Em", + "ily" + ], + [ + "@", + "@" + ], + [ + "gain", + "s" + ], + [ + "s", + "v" + ], + [ + "Process", + "ing" + ], + [ + "incorpor", + "ated" + ], + [ + "speak", + "er" + ], + [ + "Num", + "Py" + ], + [ + "Re", + "present" + ], + [ + "com", + "post" + ], + [ + "st", + "en" + ], + [ + "prev", + "ents" + ], + [ + "so", + "dium" + ], + [ + "Add", + "ing" + ], + [ + "mechan", + "ics" + ], + [ + "se", + "cu" + ], + [ + "se", + "as" + ], + [ + "rit", + "uals" + ], + [ + "Her", + "itage" + ], + [ + "appe", + "aling" + ], + [ + "colon", + "ies" + ], + [ + "aut", + "onomy" + ], + [ + "du", + "ties" + ], + [ + "document", + "ation" + ], + [ + "Val", + "ues" + ], + [ + "enti", + "a" + ], + [ + "TO", + "DO" + ], + [ + "attr", + "active" + ], + [ + "Jac", + "ob" + ], + [ + "sever", + "ity" + ], + [ + "spe", + "eds" + ], + [ + "visual", + "ize" + ], + [ + "ĠâĢ", + "ĵ" + ], + [ + "roman", + "tic" + ], + [ + "class", + "mates" + ], + [ + "gu", + "itar" + ], + [ + "âĢĶ", + "Ġ" + ], + [ + "de", + "but" + ], + [ + "ly", + "mph" + ], + [ + "P", + "et" + ], + [ + "RO", + "M" + ], + [ + "glass", + "es" + ], + [ + "M", + "other" + ], + [ + "he", + "ter" + ], + [ + "Di", + "ag" + ], + [ + "f", + "ies" + ], + [ + "n", + "x" + ], + [ + "in", + "tim" + ], + [ + "Embr", + "acing" + ], + [ + "tut", + "orial" + ], + [ + "')", + "." + ], + [ + "ah", + "am" + ], + [ + "l", + "ift" + ], + [ + "exec", + "uted" + ], + [ + "rect", + "angle" + ], + [ + "Know", + "ledge" + ], + [ + "Clin", + "ical" + ], + [ + "mat", + "r" + ], + [ + "assu", + "med" + ], + [ + "Color", + "ado" + ], + [ + "celebr", + "ating" + ], + [ + "Ph", + "ilos" + ], + [ + "glob", + "ally" + ], + [ + "fat", + "ty" + ], + [ + "Des", + "cri" + ], + [ + "Ar", + "ctic" + ], + [ + "J", + "ones" + ], + [ + "arri", + "ve" + ], + [ + "L", + "S" + ], + [ + "â", + "Ĩ" + ], + [ + "public", + "ations" + ], + [ + "D", + "un" + ], + [ + "C", + "li" + ], + [ + "Egypti", + "an" + ], + [ + "Mal", + "ay" + ], + [ + "miti", + "gate" + ], + [ + "pre", + "jud" + ], + [ + "ci", + "ally" + ], + [ + "Loc", + "ation" + ], + [ + "he", + "a" + ], + [ + "prog", + "ression" + ], + [ + "pay", + "ments" + ], + [ + "fic", + "tional" + ], + [ + "sh", + "ots" + ], + [ + "antibio", + "tics" + ], + [ + "tic", + "ks" + ], + [ + "St", + "ories" + ], + [ + "clo", + "th" + ], + [ + "volunte", + "ers" + ], + [ + "*", + "(" + ], + [ + "Agric", + "ulture" + ], + [ + "si", + "a" + ], + [ + "T", + "urn" + ], + [ + "bl", + "ess" + ], + [ + "fear", + "s" + ], + [ + "develop", + "mental" + ], + [ + "label", + "ed" + ], + [ + "enjoy", + "able" + ], + [ + "am", + "big" + ], + [ + "Re", + "qu" + ], + [ + "ch", + "ip" + ], + [ + "respon", + "ds" + ], + [ + "shad", + "ow" + ], + [ + "am", + "an" + ], + [ + "conven", + "ient" + ], + [ + "mod", + "ules" + ], + [ + "gar", + "lic" + ], + [ + "ен", + "и" + ], + [ + "Min", + "istry" + ], + [ + "Budd", + "hist" + ], + [ + "Cent", + "ury" + ], + [ + "ac", + "res" + ], + [ + "enthusi", + "asts" + ], + [ + "car", + "ing" + ], + [ + "ä¸", + "º" + ], + [ + "H", + "i" + ], + [ + "K", + "im" + ], + [ + "us", + "s" + ], + [ + "in", + "th" + ], + [ + "L", + "en" + ], + [ + "adv", + "ancing" + ], + [ + "cur", + "y" + ], + [ + "IN", + "T" + ], + [ + "cast", + "le" + ], + [ + "season", + "al" + ], + [ + "pick", + "le" + ], + [ + "ĊĊ", + "ĊĠĠĠĠ" + ], + [ + "po", + "et" + ], + [ + "rul", + "ed" + ], + [ + "Med", + "iter" + ], + [ + "Co", + "ord" + ], + [ + "acquis", + "ition" + ], + [ + "qual", + "ified" + ], + [ + "system", + "atic" + ], + [ + "T", + "ip" + ], + [ + "ades", + "h" + ], + [ + "оÐ", + "¼" + ], + [ + "il", + "er" + ], + [ + "j", + "ug" + ], + [ + "medic", + "ines" + ], + [ + "C", + "red" + ], + [ + "Develop", + "ing" + ], + [ + "bel", + "ieves" + ], + [ + "under", + "ground" + ], + [ + "Ar", + "gs" + ], + [ + "wer", + "en" + ], + [ + "A", + "BC" + ], + [ + "intric", + "acies" + ], + [ + "W", + "ars" + ], + [ + "Navig", + "ating" + ], + [ + "We", + "ight" + ], + [ + "follow", + "ers" + ], + [ + "S", + "ave" + ], + [ + "en", + "orm" + ], + [ + "ud", + "ing" + ], + [ + "cl", + "er" + ], + [ + "M", + "as" + ], + [ + "dri", + "ves" + ], + [ + "ship", + "ping" + ], + [ + "aff", + "airs" + ], + [ + "g", + "um" + ], + [ + "N", + "ur" + ], + [ + "Ġ=Ġ", + "_" + ], + [ + "th", + "ood" + ], + [ + "e", + "en" + ], + [ + "R", + "ap" + ], + [ + "stum", + "bled" + ], + [ + "some", + "where" + ], + [ + "W", + "N" + ], + [ + "civil", + "izations" + ], + [ + "Scienti", + "fic" + ], + [ + "Je", + "an" + ], + [ + "Scot", + "tish" + ], + [ + "fi", + "bers" + ], + [ + "tra", + "ject" + ], + [ + "ish", + "es" + ], + [ + "Trans", + "port" + ], + [ + "o", + "on" + ], + [ + "bi", + "ograph" + ], + [ + "em", + "an" + ], + [ + "ren", + "s" + ], + [ + "trans", + "mitted" + ], + [ + "anti", + "oxid" + ], + [ + "']", + "," + ], + [ + ".", + ".Ġ" + ], + [ + "man", + "us" + ], + [ + "transfer", + "red" + ], + [ + "S", + "top" + ], + [ + "bit", + "r" + ], + [ + "proto", + "col" + ], + [ + "reg", + "i" + ], + [ + "stret", + "ch" + ], + [ + "Te", + "ch" + ], + [ + "sup", + "pl" + ], + [ + "Har", + "vard" + ], + [ + "author", + "ized" + ], + [ + "re", + "hab" + ], + [ + "restrict", + "ed" + ], + [ + "Copy", + "right" + ], + [ + "administr", + "ative" + ], + [ + "emp", + "ire" + ], + [ + "ar", + "thritis" + ], + [ + "counter", + "parts" + ], + [ + "ones", + "elf" + ], + [ + "Test", + "ament" + ], + [ + "con", + "front" + ], + [ + "ip", + "her" + ], + [ + "des", + "ert" + ], + [ + "mac", + "ro" + ], + [ + "Sy", + "mpto" + ], + [ + "conv", + "in" + ], + [ + "Identi", + "fying" + ], + [ + "Gr", + "ad" + ], + [ + "Mediter", + "ranean" + ], + [ + "enti", + "eth" + ], + [ + "fav", + "our" + ], + [ + "er", + "ed" + ], + [ + "pres", + "sures" + ], + [ + "W", + "S" + ], + [ + "ast", + "ics" + ], + [ + "Ñ", + "Ħ" + ], + [ + "st", + "an" + ], + [ + "Ap", + "plication" + ], + [ + "construct", + "ing" + ], + [ + "Al", + "z" + ], + [ + "revers", + "ed" + ], + [ + "intest", + "inal" + ], + [ + "st", + "ocks" + ], + [ + "ant", + "ine" + ], + [ + "R", + "ather" + ], + [ + "w", + "d" + ], + [ + "Tay", + "lor" + ], + [ + "tal", + "ent" + ], + [ + "tong", + "ue" + ], + [ + "um", + "ph" + ], + [ + "gif", + "ts" + ], + [ + "exc", + "el" + ], + [ + "P", + "P" + ], + [ + "F", + "it" + ], + [ + "J", + "r" + ], + [ + "organ", + "ism" + ], + [ + "Num", + "bers" + ], + [ + "te", + "es" + ], + [ + "neu", + "tr" + ], + [ + "Us", + "ers" + ], + [ + "C", + "arib" + ], + [ + "ë", + "³" + ], + [ + "lic", + "ens" + ], + [ + "watch", + "ed" + ], + [ + "Sha", + "kes" + ], + [ + "r", + "us" + ], + [ + "}", + "')" + ], + [ + "lim", + "iting" + ], + [ + "-", + "*" + ], + [ + "E", + "mo" + ], + [ + "b", + "omb" + ], + [ + "ph", + "on" + ], + [ + "ground", + "breaking" + ], + [ + "r", + "ors" + ], + [ + "data", + "frame" + ], + [ + "Fil", + "m" + ], + [ + "R", + "ot" + ], + [ + "acer", + "b" + ], + [ + "оÐ", + "º" + ], + [ + "oper", + "ated" + ], + [ + "transi", + "tions" + ], + [ + "ìŀ", + "IJ" + ], + [ + "represent", + "atives" + ], + [ + "K", + "ids" + ], + [ + "C", + "as" + ], + [ + "spir", + "its" + ], + [ + "attemp", + "ting" + ], + [ + "P", + "a" + ], + [ + "warr", + "ant" + ], + [ + "d", + "rought" + ], + [ + "ri", + "val" + ], + [ + "?", + "Ġ(" + ], + [ + "c", + "able" + ], + [ + "b", + "are" + ], + [ + "u", + "id" + ], + [ + "ro", + "g" + ], + [ + "ex", + "traction" + ], + [ + "wh", + "is" + ], + [ + "Tw", + "itter" + ], + [ + "controversi", + "al" + ], + [ + "sup", + "plements" + ], + [ + "reti", + "re" + ], + [ + "fir", + "ms" + ], + [ + "auti", + "sm" + ], + [ + "perpe", + "tu" + ], + [ + "p", + "ting" + ], + [ + "S", + "eas" + ], + [ + "Cont", + "act" + ], + [ + "arti", + "facts" + ], + [ + "(", + "*" + ], + [ + "des", + "cent" + ], + [ + "purch", + "ased" + ], + [ + "il", + "le" + ], + [ + "defic", + "iency" + ], + [ + "u", + "ments" + ], + [ + "H", + "ur" + ], + [ + "emer", + "gence" + ], + [ + "di", + "ets" + ], + [ + "flu", + "x" + ], + [ + "ë", + "ĵ" + ], + [ + "manip", + "ulate" + ], + [ + "d", + "ers" + ], + [ + "Ġ=Ġ", + "-Ġ" + ], + [ + "ver", + "te" + ], + [ + "f", + "ate" + ], + [ + "pack", + "ed" + ], + [ + "navig", + "ation" + ], + [ + "adjust", + "ments" + ], + [ + "associ", + "ate" + ], + [ + "thread", + "s" + ], + [ + "j", + "og" + ], + [ + "target", + "ing" + ], + [ + "Ġ)Ġ", + "*Ġ" + ], + [ + "ch", + "op" + ], + [ + "op", + "ol" + ], + [ + "Adv", + "anced" + ], + [ + "sett", + "lers" + ], + [ + "B", + "ern" + ], + [ + "reson", + "ate" + ], + [ + "H", + "as" + ], + [ + "assign", + "ments" + ], + [ + ")", + "ĠĠ#Ġ" + ], + [ + "bi", + "blical" + ], + [ + "Pol", + "ish" + ], + [ + "v", + "aries" + ], + [ + ":", + "\",Ġ" + ], + [ + "v", + "ice" + ], + [ + "Ġ", + ")Ġ+Ġ" + ], + [ + "thick", + "ness" + ], + [ + "om", + "er" + ], + [ + "dis", + "cre" + ], + [ + "scr", + "atch" + ], + [ + "end", + "anger" + ], + [ + "F", + "ive" + ], + [ + "te", + "or" + ], + [ + "T", + "am" + ], + [ + "N", + "Y" + ], + [ + "ex", + "acerb" + ], + [ + "ote", + "chn" + ], + [ + "inf", + "ectious" + ], + [ + "met", + "adata" + ], + [ + "ver", + "bo" + ], + [ + "T", + "aking" + ], + [ + "ê¸", + "°" + ], + [ + "M", + "ob" + ], + [ + "m", + "t" + ], + [ + "S", + "ound" + ], + [ + "Ġ!", + "/" + ], + [ + "o", + "ceans" + ], + [ + "ri", + "um" + ], + [ + "anal", + "og" + ], + [ + "x", + "ml" + ], + [ + "barri", + "er" + ], + [ + "Bab", + "y" + ], + [ + "coord", + "ination" + ], + [ + "di", + "am" + ], + [ + "co", + "at" + ], + [ + "b", + "ases" + ], + [ + "K", + "ent" + ], + [ + "understand", + "ings" + ], + [ + ".Ġ", + "*" + ], + [ + "jour", + "neys" + ], + [ + "se", + "ats" + ], + [ + "me", + "try" + ], + [ + "load", + "ing" + ], + [ + "ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠĠĠĠ" + ], + [ + "]", + "):" + ], + [ + "Profession", + "al" + ], + [ + "su", + "icide" + ], + [ + "Mon", + "th" + ], + [ + "found", + "ational" + ], + [ + "ero", + "sion" + ], + [ + "v", + "oting" + ], + [ + "Prep", + "are" + ], + [ + "pre", + "valence" + ], + [ + "B", + "orn" + ], + [ + "dec", + "od" + ], + [ + "Set", + "ting" + ], + [ + "an", + "not" + ], + [ + "length", + "s" + ], + [ + "c", + "kets" + ], + [ + "Vit", + "amin" + ], + [ + "ad", + "minister" + ], + [ + "ak", + "en" + ], + [ + "yi", + "elds" + ], + [ + "á", + "»" + ], + [ + "re", + "lying" + ], + [ + "inc", + "idence" + ], + [ + "align", + "ed" + ], + [ + "S", + "equ" + ], + [ + "T", + "en" + ], + [ + "copy", + "right" + ], + [ + "Î", + "±" + ], + [ + "ev", + "ident" + ], + [ + "as", + "ci" + ], + [ + "est", + "one" + ], + [ + "usal", + "em" + ], + [ + "M", + "atch" + ], + [ + "comple", + "tion" + ], + [ + "def", + "e" + ], + [ + "E", + "ver" + ], + [ + "S", + "anta" + ], + [ + "Ġ*", + "Ġ(" + ], + [ + "gener", + "ates" + ], + [ + "?", + "âĢĿĠ" + ], + [ + "Ġ", + ")Ġ-Ġ" + ], + [ + "A", + "IDS" + ], + [ + "To", + "ols" + ], + [ + "cha", + "os" + ], + [ + "Vol", + "ume" + ], + [ + "du", + "al" + ], + [ + "later", + "al" + ], + [ + "inj", + "ured" + ], + [ + "mole", + "cule" + ], + [ + ":", + "\")" + ], + [ + "ep", + "s" + ], + [ + "desc", + "end" + ], + [ + "assist", + "ant" + ], + [ + "P", + "hy" + ], + [ + "po", + "le" + ], + [ + "cr", + "ash" + ], + [ + "âĢĻ", + ".Ġ" + ], + [ + "Thom", + "pson" + ], + [ + "C", + "old" + ], + [ + "G", + "h" + ], + [ + "Alz", + "heimer" + ], + [ + "B", + "R" + ], + [ + "Shakes", + "peare" + ], + [ + "intellig", + "ent" + ], + [ + "amm", + "als" + ], + [ + "G", + "ender" + ], + [ + "un", + "familiar" + ], + [ + "cat", + "tle" + ], + [ + "ti", + "fy" + ], + [ + "t", + "ends" + ], + [ + "research", + "er" + ], + [ + "anim", + "ation" + ], + [ + "analy", + "tical" + ], + [ + "н", + "о" + ], + [ + "lo", + "re" + ], + [ + "Event", + "ually" + ], + [ + "abund", + "ant" + ], + [ + "sor", + "ts" + ], + [ + "continu", + "ously" + ], + [ + "manufactur", + "er" + ], + [ + "(", + "\"Ġ" + ], + [ + "degrad", + "ation" + ], + [ + "fac", + "eted" + ], + [ + "Method", + "s" + ], + [ + "evolution", + "ary" + ], + [ + "constit", + "u" + ], + [ + "b", + "ian" + ], + [ + "sp", + "inal" + ], + [ + "surve", + "ys" + ], + [ + "R", + "ect" + ], + [ + "stem", + "s" + ], + [ + "G", + "ulf" + ], + [ + "archit", + "ect" + ], + [ + "T", + "M" + ], + [ + "Al", + "ong" + ], + [ + "enem", + "ies" + ], + [ + "instit", + "utional" + ], + [ + "bal", + "ancing" + ], + [ + "pun", + "ishment" + ], + [ + "Back", + "ground" + ], + [ + "g", + "au" + ], + [ + "G", + "ive" + ], + [ + "b", + "ak" + ], + [ + "reci", + "pi" + ], + [ + "jew", + "el" + ], + [ + "Sur", + "vey" + ], + [ + "n", + "is" + ], + [ + "Electr", + "ic" + ], + [ + "H", + "arr" + ], + [ + "su", + "its" + ], + [ + "remin", + "der" + ], + [ + ".", + ").Ġ" + ], + [ + "pe", + "at" + ], + [ + "Br", + "ing" + ], + [ + "b", + "ills" + ], + [ + "Teach", + "ing" + ], + [ + "E", + "u" + ], + [ + "sn", + "ip" + ], + [ + "Jer", + "usalem" + ], + [ + "Blo", + "od" + ], + [ + "if", + "ice" + ], + [ + "desir", + "able" + ], + [ + "end", + "a" + ], + [ + "appro", + "val" + ], + [ + "fant", + "asy" + ], + [ + "\"", + "):" + ], + [ + "pr", + "inter" + ], + [ + "P", + "s" + ], + [ + "m", + "ate" + ], + [ + "inv", + "ited" + ], + [ + "Sum", + "mer" + ], + [ + "passion", + "ate" + ], + [ + "revolution", + "ary" + ], + [ + "Eng", + "aging" + ], + [ + "pre", + "m" + ], + [ + "cont", + "amination" + ], + [ + "ch", + "ips" + ], + [ + "wee", + "ts" + ], + [ + "surve", + "illance" + ], + [ + "и", + "м" + ], + [ + "Expl", + "ain" + ], + [ + "re", + "cess" + ], + [ + "bre", + "athe" + ], + [ + "School", + "s" + ], + [ + "iss", + "ors" + ], + [ + "ì§", + "Ģ" + ], + [ + "b", + "il" + ], + [ + "elder", + "ly" + ], + [ + "p", + "se" + ], + [ + "J", + "on" + ], + [ + "olog", + "ically" + ], + [ + "writ", + "ings" + ], + [ + "B", + "I" + ], + [ + "o", + "to" + ], + [ + "E", + "V" + ], + [ + "lo", + "ans" + ], + [ + "AD", + "HD" + ], + [ + "Sustain", + "able" + ], + [ + "M", + "and" + ], + [ + "CD", + "C" + ], + [ + "mes", + "h" + ], + [ + "p", + "ie" + ], + [ + "u", + "um" + ], + [ + "Carib", + "bean" + ], + [ + "Lew", + "is" + ], + [ + "]Ġ", + ">Ġ" + ], + [ + "alle", + "vi" + ], + [ + "employ", + "ers" + ], + [ + "Secret", + "ary" + ], + [ + "%", + ",Ġ" + ], + [ + "cr", + "ust" + ], + [ + "Me", + "chan" + ], + [ + "review", + "ed" + ], + [ + "å", + "¯" + ], + [ + "Pat", + "tern" + ], + [ + "ne", + "arest" + ], + [ + "B", + "ow" + ], + [ + "de", + "bris" + ], + [ + "sacr", + "ific" + ], + [ + "f", + "ounder" + ], + [ + "y", + "label" + ], + [ + "ed", + "u" + ], + [ + "el", + "le" + ], + [ + "Ot", + "to" + ], + [ + "è", + "¾" + ], + [ + "ul", + "us" + ], + [ + "sau", + "ce" + ], + [ + "pen", + "e" + ], + [ + "rout", + "ines" + ], + [ + "G", + "A" + ], + [ + "ex", + "hibition" + ], + [ + "char", + "ts" + ], + [ + "need", + "le" + ], + [ + "nur", + "turing" + ], + [ + "Doc", + "ument" + ], + [ + "stead", + "y" + ], + [ + "w", + "ake" + ], + [ + "m", + "am" + ], + [ + "ur", + "ine" + ], + [ + "\"\"", + ")" + ], + [ + "]Ġ", + "!=Ġ" + ], + [ + "o", + "e" + ], + [ + "ele", + "ph" + ], + [ + "D", + "aily" + ], + [ + "or", + "b" + ], + [ + "cor", + "ruption" + ], + [ + "pil", + "ot" + ], + [ + "T", + "ai" + ], + [ + "il", + "ation" + ], + [ + "es", + "h" + ], + [ + "pack", + "aging" + ], + [ + "Cre", + "ative" + ], + [ + "should", + "er" + ], + [ + "epis", + "odes" + ], + [ + "ari", + "ans" + ], + [ + "infl", + "ation" + ], + [ + "ol", + "ar" + ], + [ + "Ap", + "p" + ], + [ + ")", + "|" + ], + [ + "ë", + "§" + ], + [ + "S", + "cre" + ], + [ + "gre", + "et" + ], + [ + "ar", + "ith" + ], + [ + "occup", + "ation" + ], + [ + "Pol", + "and" + ], + [ + "CO", + "L" + ], + [ + "Gard", + "en" + ], + [ + "bo", + "ats" + ], + [ + "r", + "aces" + ], + [ + "Industr", + "ial" + ], + [ + "Ar", + "thur" + ], + [ + "metabol", + "ism" + ], + [ + "lic", + "ense" + ], + [ + "gro", + "cer" + ], + [ + "cat", + "alog" + ], + [ + "S", + "ab" + ], + [ + "ann", + "ually" + ], + [ + "Di", + "stri" + ], + [ + "compens", + "ation" + ], + [ + "F", + "ather" + ], + [ + "be", + "gun" + ], + [ + "d", + "it" + ], + [ + "C", + "ateg" + ], + [ + "оÐ", + "±" + ], + [ + "F", + "requ" + ], + [ + "gl", + "ac" + ], + [ + "vel", + "ength" + ], + [ + "im", + "a" + ], + [ + "æľ", + "ī" + ], + [ + "festi", + "val" + ], + [ + "el", + "abor" + ], + [ + "round", + "ed" + ], + [ + "ST", + "EM" + ], + [ + "Col", + "umn" + ], + [ + "ik", + "a" + ], + [ + "S", + "ounds" + ], + [ + "sp", + "ices" + ], + [ + "Sto", + "ck" + ], + [ + "W", + "as" + ], + [ + "impro", + "ves" + ], + [ + "R", + "ate" + ], + [ + "m", + "im" + ], + [ + "n", + "ut" + ], + [ + "Sympto", + "ms" + ], + [ + "f", + "ut" + ], + [ + "c", + "akes" + ], + [ + "hum", + "idity" + ], + [ + "require", + "ment" + ], + [ + "----", + "-" + ], + [ + "tic", + "ides" + ], + [ + "rid", + "ing" + ], + [ + "tim", + "er" + ], + [ + ",Ġ", + "**" + ], + [ + "flo", + "ating" + ], + [ + "dr", + "aft" + ], + [ + "travel", + "ed" + ], + [ + "b", + "ay" + ], + [ + "datab", + "ases" + ], + [ + "his", + "m" + ], + [ + "de", + "ce" + ], + [ + "j", + "ar" + ], + [ + "ag", + "s" + ], + [ + "in", + "fr" + ], + [ + "dro", + "ps" + ], + [ + "Mat", + "the" + ], + [ + "sub", + "sequently" + ], + [ + "pain", + "ted" + ], + [ + "explo", + "itation" + ], + [ + "sco", + "red" + ], + [ + "out", + "break" + ], + [ + "Mar", + "ine" + ], + [ + "Gold", + "en" + ], + [ + "olog", + "ic" + ], + [ + "heav", + "en" + ], + [ + "key", + "board" + ], + [ + "pro", + "hib" + ], + [ + "Draw", + "ing" + ], + [ + "transform", + "ing" + ], + [ + "Dec", + "ision" + ], + [ + "land", + "ing" + ], + [ + "conn", + "ects" + ], + [ + "transform", + "ative" + ], + [ + "reg", + "ime" + ], + [ + "D", + "istance" + ], + [ + "ro", + "pol" + ], + [ + "at", + "able" + ], + [ + "diges", + "tive" + ], + [ + "Fr", + "iday" + ], + [ + "gard", + "ening" + ], + [ + "Scot", + "t" + ], + [ + "st", + "abil" + ], + [ + "dre", + "w" + ], + [ + "S", + "V" + ], + [ + "rain", + "fall" + ], + [ + "excl", + "usive" + ], + [ + "fol", + "io" + ], + [ + "on", + "a" + ], + [ + "st", + "ir" + ], + [ + "p", + "ink" + ], + [ + "tw", + "elve" + ], + [ + "af", + "fili" + ], + [ + "imag", + "ined" + ], + [ + "ach", + "ed" + ], + [ + "wind", + "s" + ], + [ + "trig", + "gers" + ], + [ + "in", + "ery" + ], + [ + "pain", + "ful" + ], + [ + "tit", + "led" + ], + [ + "associ", + "ations" + ], + [ + "co", + "ck" + ], + [ + "par", + "amount" + ], + [ + "ge", + "ography" + ], + [ + "g", + "t" + ], + [ + "answer", + "ed" + ], + [ + "â", + "ģ" + ], + [ + "el", + "ly" + ], + [ + "agg", + "reg" + ], + [ + "ful", + "fill" + ], + [ + "ad", + "der" + ], + [ + "to", + "ps" + ], + [ + "net", + "working" + ], + [ + "st", + "oring" + ], + [ + "F", + "esti" + ], + [ + "al", + "ert" + ], + [ + "An", + "ton" + ], + [ + "invas", + "ion" + ], + [ + "sh", + "ield" + ], + [ + "ma", + "ze" + ], + [ + "U", + "C" + ], + [ + "Emp", + "ty" + ], + [ + "So", + "on" + ], + [ + "nine", + "teenth" + ], + [ + "Wild", + "life" + ], + [ + "R", + "h" + ], + [ + "sm", + "ile" + ], + [ + "Expl", + "ore" + ], + [ + "op", + "edia" + ], + [ + "T", + "enn" + ], + [ + "de", + "posit" + ], + [ + "Dis", + "play" + ], + [ + "per", + "mit" + ], + [ + "tain", + "s" + ], + [ + "un", + "likely" + ], + [ + "og", + "ens" + ], + [ + "gene", + "tics" + ], + [ + "sh", + "ine" + ], + [ + "Ad", + "ditional" + ], + [ + "ia", + "h" + ], + [ + "kil", + "ometers" + ], + [ + "id", + "o" + ], + [ + "bu", + "gs" + ], + [ + "verse", + "ly" + ], + [ + "Every", + "one" + ], + [ + "at", + "us" + ], + [ + "de", + "viation" + ], + [ + "\\", + "_" + ], + [ + "v", + "enti" + ], + [ + "sleep", + "ing" + ], + [ + "J", + "S" + ], + [ + "contr", + "ad" + ], + [ + "Av", + "ail" + ], + [ + "O", + "k" + ], + [ + "tim", + "ing" + ], + [ + "R", + "ay" + ], + [ + "##", + "#" + ], + [ + "reser", + "ved" + ], + [ + "emp", + "irical" + ], + [ + "Prim", + "ary" + ], + [ + "Find", + "ing" + ], + [ + "C", + "reek" + ], + [ + "enthusi", + "asm" + ], + [ + "Al", + "g" + ], + [ + "prom", + "ises" + ], + [ + "P", + "N" + ], + [ + "Le", + "aders" + ], + [ + "nom", + "ial" + ], + [ + "no", + "sis" + ], + [ + "ES", + "S" + ], + [ + "ol", + "ds" + ], + [ + "ri", + "z" + ], + [ + "be", + "er" + ], + [ + "so", + "y" + ], + [ + "ine", + "vit" + ], + [ + "ph", + "il" + ], + [ + "crow", + "d" + ], + [ + "{", + "Ġ" + ], + [ + "ran", + "ks" + ], + [ + "comput", + "ational" + ], + [ + "er", + "ation" + ], + [ + "Teach", + "ers" + ], + [ + "Appro", + "ach" + ], + [ + "fl", + "atten" + ], + [ + "socio", + "economic" + ], + [ + "ì", + "ĸ" + ], + [ + ":", + ":" + ], + [ + "train", + "s" + ], + [ + "Tem", + "ple" + ], + [ + "vol", + "umes" + ], + [ + "x", + "label" + ], + [ + "if", + "er" + ], + [ + "fl", + "ed" + ], + [ + "Mem", + "ory" + ], + [ + "Ø", + "§" + ], + [ + "in", + "correct" + ], + [ + "Dy", + "nam" + ], + [ + "For", + "mat" + ], + [ + "calcul", + "ation" + ], + [ + "ä¸", + "Ń" + ], + [ + "fro", + "zen" + ], + [ + "Address", + "ing" + ], + [ + "astr", + "onom" + ], + [ + "cl", + "arity" + ], + [ + "Nor", + "mal" + ], + [ + "Wil", + "son" + ], + [ + "birth", + "day" + ], + [ + "Ed", + "ge" + ], + [ + "offic", + "ially" + ], + [ + "sustain", + "ed" + ], + [ + "T", + "A" + ], + [ + "l", + "akes" + ], + [ + "n", + "l" + ], + [ + "transp", + "arent" + ], + [ + "un", + "wanted" + ], + [ + "practic", + "ed" + ], + [ + "bound", + "s" + ], + [ + "grat", + "ulations" + ], + [ + "eng", + "lish" + ], + [ + ":Ġ", + "\",Ġ" + ], + [ + "orient", + "ed" + ], + [ + "Reg", + "ard" + ], + [ + "timest", + "amp" + ], + [ + "vis", + "ibility" + ], + [ + "loy", + "alty" + ], + [ + "bu", + "cket" + ], + [ + "pre", + "valent" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "Ġ" + ], + [ + "M", + "om" + ], + [ + "tal", + "ents" + ], + [ + "physi", + "ological" + ], + [ + "il", + "ib" + ], + [ + "c", + "ad" + ], + [ + "âĢ", + "²" + ], + [ + "ment", + "ed" + ], + [ + "view", + "ing" + ], + [ + "run", + "ner" + ], + [ + "Ty", + "p" + ], + [ + "Ġ@", + "-" + ], + [ + "pe", + "as" + ], + [ + "B", + "ad" + ], + [ + "fo", + "o" + ], + [ + "virtu", + "ally" + ], + [ + "irrig", + "ation" + ], + [ + "Ġ@-", + "@Ġ" + ], + [ + "H", + "ab" + ], + [ + "so", + "ap" + ], + [ + "satis", + "fied" + ], + [ + "origin", + "ated" + ], + [ + "S", + "leep" + ], + [ + "fe", + "as" + ], + [ + "P", + "ast" + ], + [ + "liber", + "al" + ], + [ + "s", + "ulf" + ], + [ + "Sof", + "tware" + ], + [ + "guaran", + "tee" + ], + [ + "r", + "acing" + ], + [ + "con", + "jun" + ], + [ + "y", + "oga" + ], + [ + "Th", + "inking" + ], + [ + "head", + "ed" + ], + [ + "grat", + "itude" + ], + [ + "adel", + "ph" + ], + [ + "#", + "ĠĠĠ" + ], + [ + "ri", + "ble" + ], + [ + "rein", + "force" + ], + [ + "ic", + "i" + ], + [ + "ow", + "ing" + ], + [ + "le", + "et" + ], + [ + "ge", + "o" + ], + [ + "Intellig", + "ence" + ], + [ + "inter", + "n" + ], + [ + "oc", + "key" + ], + [ + "lab", + "our" + ], + [ + "Mess", + "age" + ], + [ + "au", + "st" + ], + [ + "w", + "ings" + ], + [ + "but", + "tons" + ], + [ + "loop", + "s" + ], + [ + "imp", + "ul" + ], + [ + "Pro", + "to" + ], + [ + "she", + "ep" + ], + [ + "k", + "ed" + ], + [ + "th", + "a" + ], + [ + "co", + "hes" + ], + [ + "reli", + "es" + ], + [ + "plic", + "ates" + ], + [ + "Andre", + "w" + ], + [ + "pot", + "atoes" + ], + [ + "Th", + "ings" + ], + [ + "ren", + "owned" + ], + [ + "L", + "ower" + ], + [ + "S", + "mo" + ], + [ + "ul", + "o" + ], + [ + "wa", + "velength" + ], + [ + "pack", + "ages" + ], + [ + "ann", + "ed" + ], + [ + "Ġâ", + "Ī" + ], + [ + "B", + "ell" + ], + [ + "Ac", + "tive" + ], + [ + "Identi", + "ty" + ], + [ + "E", + "PA" + ], + [ + "u", + "ation" + ], + [ + "tr", + "ips" + ], + [ + "()Ġ", + "==Ġ" + ], + [ + "he", + "m" + ], + [ + "tri", + "umph" + ], + [ + "inc", + "idents" + ], + [ + "Fore", + "ign" + ], + [ + "le", + "ague" + ], + [ + "A", + "y" + ], + [ + "educ", + "ated" + ], + [ + "Up", + "date" + ], + [ + "å", + "Ģ" + ], + [ + "En", + "try" + ], + [ + "ct", + "ure" + ], + [ + "let", + "on" + ], + [ + "âģ", + "Ħ" + ], + [ + "\"", + "]Ġ=Ġ" + ], + [ + "Lin", + "ux" + ], + [ + "char", + "s" + ], + [ + "main", + "stream" + ], + [ + "def", + "eat" + ], + [ + "height", + "ened" + ], + [ + "c", + "ough" + ], + [ + "diag", + "onal" + ], + [ + "S", + "W" + ], + [ + "ĠÂ", + "£" + ], + [ + "attribut", + "ed" + ], + [ + "def", + "ines" + ], + [ + "diag", + "ram" + ], + [ + "challeng", + "ed" + ], + [ + "hot", + "el" + ], + [ + "Ele", + "ments" + ], + [ + "suscepti", + "ble" + ], + [ + "quir", + "y" + ], + [ + "de", + "ter" + ], + [ + "compe", + "te" + ], + [ + "e", + "in" + ], + [ + "class", + "ifier" + ], + [ + "Arab", + "ic" + ], + [ + "zon", + "a" + ], + [ + ")Ġ", + "âĢĵĠ" + ], + [ + "Ġ=Ġ[", + "\"" + ], + [ + "facilit", + "ating" + ], + [ + "is", + "a" + ], + [ + "wal", + "ks" + ], + [ + "endanger", + "ed" + ], + [ + "h", + "inder" + ], + [ + "ho", + "sts" + ], + [ + "S", + "R" + ], + [ + "influ", + "en" + ], + [ + "aes", + "thetic" + ], + [ + "enzy", + "mes" + ], + [ + "wi", + "reless" + ], + [ + ",\"Ġ", + "\"" + ], + [ + "om", + "y" + ], + [ + "mon", + "t" + ], + [ + "ail", + "ed" + ], + [ + "Prac", + "tices" + ], + [ + "int", + "ro" + ], + [ + "od", + "ds" + ], + [ + "even", + "ly" + ], + [ + "Down", + "load" + ], + [ + "cryst", + "al" + ], + [ + "Î", + "¼" + ], + [ + "verte", + "br" + ], + [ + "id", + "ently" + ], + [ + "Ġ=Ġ", + "''" + ], + [ + "tw", + "entieth" + ], + [ + "entr", + "ance" + ], + [ + "St", + "one" + ], + [ + "Phil", + "adelph" + ], + [ + "}", + "\\" + ], + [ + "sign", + "ature" + ], + [ + "vill", + "ages" + ], + [ + "Type", + "Error" + ], + [ + "back", + "ward" + ], + [ + "ac", + "re" + ], + [ + "rele", + "ases" + ], + [ + "d", + "ign" + ], + [ + "head", + "ing" + ], + [ + "matr", + "ices" + ], + [ + "Com", + "bin" + ], + [ + "nur", + "ses" + ], + [ + "Sh", + "ar" + ], + [ + "V", + "E" + ], + [ + "Col", + "lection" + ], + [ + "Co", + "ol" + ], + [ + "cham", + "ber" + ], + [ + "hip", + "s" + ], + [ + "enorm", + "ous" + ], + [ + "lo", + "ving" + ], + [ + "Ne", + "ther" + ], + [ + "p", + "adding" + ], + [ + "Turk", + "ish" + ], + [ + "u", + "plo" + ], + [ + "motiv", + "ated" + ], + [ + "D", + "ia" + ], + [ + "D", + "D" + ], + [ + "elev", + "ated" + ], + [ + "loc", + "als" + ], + [ + "football", + "ers" + ], + [ + "m", + "ammals" + ], + [ + "serious", + "ly" + ], + [ + "di", + "visions" + ], + [ + "equ", + "als" + ], + [ + "constit", + "ution" + ], + [ + "neg", + "atively" + ], + [ + "Ġ=Ġ[", + "[" + ], + [ + "walk", + "ed" + ], + [ + "K", + "u" + ], + [ + "L", + "es" + ], + [ + "t", + "weet" + ], + [ + "pal", + "indrome" + ], + [ + "Miss", + "is" + ], + [ + "Ir", + "on" + ], + [ + "publ", + "ishing" + ], + [ + "ma", + "ker" + ], + [ + "d", + "angers" + ], + [ + "ig", + "en" + ], + [ + "par", + "liament" + ], + [ + "ing", + "e" + ], + [ + "plic", + "ity" + ], + [ + "bas", + "ically" + ], + [ + "prosper", + "ity" + ], + [ + "Pl", + "at" + ], + [ + "Foot", + "ball" + ], + [ + "mon", + "arch" + ], + [ + "thro", + "at" + ], + [ + "thri", + "ving" + ], + [ + "rating", + "s" + ], + [ + "refuge", + "es" + ], + [ + "N", + "ic" + ], + [ + "emotion", + "ally" + ], + [ + "H", + "z" + ], + [ + "modif", + "ications" + ], + [ + "N", + "ight" + ], + [ + "p", + "ir" + ], + [ + "ren", + "al" + ], + [ + "fit", + "ting" + ], + [ + "r", + "ick" + ], + [ + "dis", + "pers" + ], + [ + "Vir", + "tual" + ], + [ + "mo", + "squ" + ], + [ + "b", + "oun" + ], + [ + "rel", + "atives" + ], + [ + "k", + "u" + ], + [ + "bl", + "ings" + ], + [ + "flow", + "ing" + ], + [ + "ske", + "p" + ], + [ + "ost", + "e" + ], + [ + "d", + "ancing" + ], + [ + "verbo", + "se" + ], + [ + "ok", + "ed" + ], + [ + "should", + "n" + ], + [ + "Spe", + "ed" + ], + [ + "pro", + "s" + ], + [ + "In", + "stru" + ], + [ + "de", + "em" + ], + [ + "sip", + "pi" + ], + [ + "hol", + "y" + ], + [ + "prescri", + "bed" + ], + [ + "H", + "ence" + ], + [ + "lives", + "tock" + ], + [ + "enzy", + "me" + ], + [ + "S", + "ample" + ], + [ + "ent", + "ers" + ], + [ + "com", + "pression" + ], + [ + "gun", + "s" + ], + [ + "atmo", + "spheric" + ], + [ + "ath", + "le" + ], + [ + "psy", + "cho" + ], + [ + "te", + "ens" + ], + [ + "initial", + "ize" + ], + [ + "Mon", + "day" + ], + [ + "util", + "s" + ], + [ + "Perform", + "ance" + ], + [ + "ric", + "ane" + ], + [ + "ur", + "an" + ], + [ + "vers", + "es" + ], + [ + "En", + "h" + ], + [ + "alloc", + "ation" + ], + [ + "stor", + "ms" + ], + [ + "adap", + "ting" + ], + [ + "ve", + "t" + ], + [ + "su", + "g" + ], + [ + "åŃ", + "Ĺ" + ], + [ + "tim", + "ely" + ], + [ + "Pro", + "vide" + ], + [ + "employ", + "ing" + ], + [ + "ar", + "bitr" + ], + [ + "control", + "ler" + ], + [ + "vers", + "atile" + ], + [ + "Philadelph", + "ia" + ], + [ + "vulner", + "ability" + ], + [ + "qu", + "otes" + ], + [ + "Sm", + "art" + ], + [ + "magn", + "ific" + ], + [ + "i", + "op" + ], + [ + ")", + "||" + ], + [ + "ë", + "¬" + ], + [ + "Ar", + "gent" + ], + [ + "ord", + "an" + ], + [ + "Cor", + "n" + ], + [ + "O", + "P" + ], + [ + "tr", + "ap" + ], + [ + "Stat", + "istics" + ], + [ + "dom", + "inated" + ], + [ + "t", + "ure" + ], + [ + "M", + "ol" + ], + [ + "at", + "ri" + ], + [ + "list", + "ing" + ], + [ + "z", + "i" + ], + [ + "mor", + "ality" + ], + [ + "des", + "ires" + ], + [ + "O", + "ct" + ], + [ + "sh", + "ade" + ], + [ + "O", + "reg" + ], + [ + "rub", + "ber" + ], + [ + "id", + "ade" + ], + [ + "ir", + "t" + ], + [ + "D", + "or" + ], + [ + "re", + "vel" + ], + [ + "Republic", + "an" + ], + [ + "pro", + "ving" + ], + [ + "SI", + "ZE" + ], + [ + "]", + "Ġ==Ġ'" + ], + [ + "p", + "ale" + ], + [ + "In", + "stit" + ], + [ + "bl", + "ur" + ], + [ + ".,Ġ", + "&Ġ" + ], + [ + "re", + "y" + ], + [ + "Con", + "vention" + ], + [ + "Bel", + "ow" + ], + [ + "R", + "aj" + ], + [ + "sque", + "e" + ], + [ + "mind", + "ful" + ], + [ + "friend", + "ships" + ], + [ + "al", + "arm" + ], + [ + "cal", + "i" + ], + [ + "é", + "Ģ" + ], + [ + "prom", + "otion" + ], + [ + "sh", + "i" + ], + [ + "un", + "lock" + ], + [ + "hand", + "ler" + ], + [ + "ĊĠ", + "ĊĊ" + ], + [ + "determin", + "es" + ], + [ + "ent", + "ails" + ], + [ + "A", + "qu" + ], + [ + "aut", + "onom" + ], + [ + "ĠĠ", + "+Ġ" + ], + [ + "Mos", + "es" + ], + [ + "collap", + "se" + ], + [ + "ag", + "ic" + ], + [ + "WH", + "O" + ], + [ + "omag", + "netic" + ], + [ + "gh", + "an" + ], + [ + "end", + "or" + ], + [ + "phas", + "es" + ], + [ + "ri", + "an" + ], + [ + "open", + "ly" + ], + [ + "Labor", + "atory" + ], + [ + "pol", + "lin" + ], + [ + "grap", + "her" + ], + [ + "car", + "to" + ], + [ + "fon", + "ts" + ], + [ + "Radi", + "o" + ], + [ + "()", + "))" + ], + [ + "b", + "age" + ], + [ + "c", + "ave" + ], + [ + "j", + "et" + ], + [ + "Of", + "fic" + ], + [ + "bi", + "ography" + ], + [ + "multi", + "faceted" + ], + [ + "dist", + "or" + ], + [ + "sp", + "el" + ], + [ + "S", + "pl" + ], + [ + "Compan", + "ies" + ], + [ + "å", + "Ĩ" + ], + [ + "Sud", + "den" + ], + [ + "mist", + "ake" + ], + [ + "ab", + "road" + ], + [ + "sexual", + "ity" + ], + [ + "prior", + "ities" + ], + [ + "p", + "c" + ], + [ + "R", + "od" + ], + [ + "offic", + "es" + ], + [ + "im", + "um" + ], + [ + "M", + "uch" + ], + [ + "au", + "gment" + ], + [ + "ref", + "used" + ], + [ + "credi", + "bility" + ], + [ + "mor", + "row" + ], + [ + "by", + "te" + ], + [ + "Op", + "tim" + ], + [ + "ti", + "re" + ], + [ + "*", + "Ġ(" + ], + [ + "el", + "and" + ], + [ + "C", + "s" + ], + [ + "post", + "ed" + ], + [ + "illustr", + "ated" + ], + [ + "il", + "ient" + ], + [ + "p", + "ests" + ], + [ + ":", + "*Ġ" + ], + [ + "j", + "pg" + ], + [ + "found", + "ations" + ], + [ + "it", + "zer" + ], + [ + "P", + "ow" + ], + [ + "showc", + "asing" + ], + [ + "ak", + "i" + ], + [ + "cer", + "emon" + ], + [ + "inter", + "sect" + ], + [ + "Gr", + "id" + ], + [ + "{", + "\"" + ], + [ + ">", + ">Ġ" + ], + [ + "pur", + "suit" + ], + [ + "activ", + "ists" + ], + [ + "liter", + "ally" + ], + [ + "con", + "stitute" + ], + [ + "k", + "an" + ], + [ + "g", + "ay" + ], + [ + "t", + "ings" + ], + [ + "competit", + "ors" + ], + [ + "inf", + "ants" + ], + [ + "Gover", + "nor" + ], + [ + "Tu", + "be" + ], + [ + "illustr", + "ations" + ], + [ + "Ã", + "ª" + ], + [ + "lo", + "go" + ], + [ + "hand", + "y" + ], + [ + "l", + "is" + ], + [ + ")", + "[" + ], + [ + "G", + "reg" + ], + [ + "draw", + "ings" + ], + [ + "r", + "s" + ], + [ + "compati", + "ble" + ], + [ + "read", + "ily" + ], + [ + "kne", + "e" + ], + [ + "ac", + "company" + ], + [ + "D", + "im" + ], + [ + "t", + "ative" + ], + [ + "immun", + "ity" + ], + [ + "G", + "M" + ], + [ + "op", + "ponent" + ], + [ + "r", + "ings" + ], + [ + "B", + "ureau" + ], + [ + "treas", + "ures" + ], + [ + "mo", + "date" + ], + [ + "ak", + "h" + ], + [ + "s", + "ons" + ], + [ + "cre", + "ators" + ], + [ + "water", + "ing" + ], + [ + "Le", + "on" + ], + [ + "Chr", + "onic" + ], + [ + "adoles", + "cents" + ], + [ + "plas", + "ma" + ], + [ + "N", + "ation" + ], + [ + "C", + "and" + ], + [ + "Sty", + "le" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "light", + "en" + ], + [ + "Psych", + "ology" + ], + [ + "R", + "ain" + ], + [ + "nam", + "ely" + ], + [ + "passeng", + "ers" + ], + [ + "ä", + "¹" + ], + [ + "attempt", + "ed" + ], + [ + "ag", + "og" + ], + [ + "R", + "us" + ], + [ + "ham", + "mad" + ], + [ + "fra", + "ud" + ], + [ + "cul", + "tur" + ], + [ + "min", + "us" + ], + [ + "conf", + "used" + ], + [ + "Man", + "ager" + ], + [ + "S", + "her" + ], + [ + "Year", + "s" + ], + [ + "question", + "ing" + ], + [ + "ë", + "Ĥ" + ], + [ + "ilib", + "rium" + ], + [ + "-*", + "-Ġ" + ], + [ + "s", + "ne" + ], + [ + "un", + "ci" + ], + [ + "Sign", + "ific" + ], + [ + "j", + "ection" + ], + [ + "gu", + "est" + ], + [ + "c", + "ous" + ], + [ + "Di", + "et" + ], + [ + "co", + "ating" + ], + [ + "investig", + "ations" + ], + [ + "vig", + "il" + ], + [ + "Tar", + "get" + ], + [ + "un", + "comfortable" + ], + [ + "che", + "ap" + ], + [ + "min", + "es" + ], + [ + "re", + "tention" + ], + [ + "Produ", + "ction" + ], + [ + "ge", + "x" + ], + [ + "harmon", + "ious" + ], + [ + "read", + "ings" + ], + [ + "occur", + "rence" + ], + [ + "abandon", + "ed" + ], + [ + "pre", + "mi" + ], + [ + "aid", + "s" + ], + [ + "accom", + "modate" + ], + [ + "es", + "cal" + ], + [ + "respect", + "ful" + ], + [ + ",Ġ", + "âĢĺ" + ], + [ + "sed", + "iment" + ], + [ + "Missis", + "sippi" + ], + [ + "Rec", + "ords" + ], + [ + "symbol", + "ic" + ], + [ + "warm", + "th" + ], + [ + "all", + "ies" + ], + [ + "Im", + "mun" + ], + [ + "\"", + "{" + ], + [ + "conven", + "tions" + ], + [ + "re", + "ar" + ], + [ + "neighb", + "oring" + ], + [ + "ab", + "led" + ], + [ + "Dep", + "ending" + ], + [ + "Con", + "fl" + ], + [ + "Ċĉĉĉĉ", + "ĉ" + ], + [ + "unit", + "test" + ], + [ + "Oreg", + "on" + ], + [ + "Pro", + "b" + ], + [ + "S", + "ched" + ], + [ + "Abr", + "aham" + ], + [ + "ti", + "al" + ], + [ + "h", + "ou" + ], + [ + "íķ", + "ľ" + ], + [ + "str", + "aw" + ], + [ + "fle", + "et" + ], + [ + "visual", + "ization" + ], + [ + "mind", + "ed" + ], + [ + "h", + "ack" + ], + [ + "can", + "cers" + ], + [ + "Op", + "tional" + ], + [ + "Å", + "į" + ], + [ + "cam", + "ps" + ], + [ + "h", + "ub" + ], + [ + "reli", + "ance" + ], + [ + "e", + "g" + ], + [ + "cor", + "ners" + ], + [ + "c", + "enti" + ], + [ + "similar", + "ly" + ], + [ + "Ph", + "one" + ], + [ + "tr", + "aged" + ], + [ + "Y", + "ellow" + ], + [ + "thought", + "ful" + ], + [ + "ground", + "ed" + ], + [ + "d", + "les" + ], + [ + "sci", + "py" + ], + [ + "in", + "et" + ], + [ + "Sam", + "uel" + ], + [ + "C", + "lose" + ], + [ + "re", + "placing" + ], + [ + "Ari", + "zona" + ], + [ + "rel", + "ating" + ], + [ + "Com", + "mer" + ], + [ + "sh", + "allow" + ], + [ + "tra", + "umatic" + ], + [ + "M", + "ul" + ], + [ + "compan", + "ion" + ], + [ + "defe", + "ated" + ], + [ + "survi", + "ved" + ], + [ + "di", + "vers" + ], + [ + "Res", + "ource" + ], + [ + "%", + "." + ], + [ + "or", + "th" + ], + [ + "con", + "fin" + ], + [ + "int", + "ensive" + ], + [ + "ĊĠĠĠĠ", + "Ġ" + ], + [ + "uni", + "qu" + ], + [ + "ref", + "resh" + ], + [ + "peti", + "tion" + ], + [ + "dep", + "icted" + ], + [ + "un", + "ting" + ], + [ + "Mar", + "x" + ], + [ + "Is", + "a" + ], + [ + "ç", + "Ľ" + ], + [ + "оÐ", + "³" + ], + [ + "sat", + "urated" + ], + [ + "iter", + "ate" + ], + [ + "ob", + "ic" + ], + [ + "sens", + "es" + ], + [ + "po", + "ts" + ], + [ + "pr", + "one" + ], + [ + "fa", + "ult" + ], + [ + "id", + "ays" + ], + [ + "pleas", + "ure" + ], + [ + "co", + "her" + ], + [ + "\")", + "." + ], + [ + "Pers", + "pec" + ], + [ + "å", + "Į" + ], + [ + "id", + "i" + ], + [ + "Ġ", + "?" + ], + [ + "cu", + "be" + ], + [ + "invent", + "ed" + ], + [ + "bub", + "ble" + ], + [ + "dec", + "iding" + ], + [ + "brill", + "iant" + ], + [ + "L", + "as" + ], + [ + "att", + "or" + ], + [ + "ili", + "ation" + ], + [ + "H", + "ay" + ], + [ + "myth", + "ology" + ], + [ + "ot", + "on" + ], + [ + "Jer", + "sey" + ], + [ + "ent", + "e" + ], + [ + "ome", + "try" + ], + [ + "mosqu", + "ito" + ], + [ + "ge", + "titem" + ], + [ + "ta", + "h" + ], + [ + "appropri", + "ately" + ], + [ + "than", + "e" + ], + [ + "ti", + "red" + ], + [ + "ph", + "ic" + ], + [ + "Pe", + "ace" + ], + [ + "Tem", + "per" + ], + [ + "ĊĠĠĠĠ", + "ĠĠĠ" + ], + [ + "--------------------------------", + "------------" + ], + [ + "Assign", + "ing" + ], + [ + "å", + "¹" + ], + [ + "absor", + "bed" + ], + [ + "ker", + "as" + ], + [ + "to", + "morrow" + ], + [ + "wor", + "ms" + ], + [ + "em", + "ony" + ], + [ + "treas", + "ure" + ], + [ + "u", + "th" + ], + [ + "l", + "aughter" + ], + [ + "Wik", + "ipedia" + ], + [ + "V", + "II" + ], + [ + "qu", + "adr" + ], + [ + "ph", + "al" + ], + [ + "Mem", + "bers" + ], + [ + "f", + "ers" + ], + [ + "aw", + "es" + ], + [ + "sub", + "sid" + ], + [ + "p", + "ines" + ], + [ + "under", + "water" + ], + [ + "distin", + "ction" + ], + [ + "ble", + "eding" + ], + [ + "gr", + "ace" + ], + [ + "C", + "over" + ], + [ + "ben", + "ch" + ], + [ + "restaur", + "ants" + ], + [ + "b", + "ic" + ], + [ + "Matthe", + "w" + ], + [ + "Po", + "ints" + ], + [ + "Cl", + "oud" + ], + [ + "any", + "more" + ], + [ + "o", + "the" + ], + [ + "mer", + "o" + ], + [ + "Â", + "·Ġ" + ], + [ + "dil", + "ig" + ], + [ + "preced", + "ented" + ], + [ + "con", + "fron" + ], + [ + "rol", + "ls" + ], + [ + "soil", + "s" + ], + [ + "Indu", + "stry" + ], + [ + "random", + "ly" + ], + [ + "I", + "o" + ], + [ + "cann", + "ab" + ], + [ + ":Ġ", + "{}Ġ" + ], + [ + "pec", + "uli" + ], + [ + "An", + "ne" + ], + [ + "bl", + "ending" + ], + [ + "inse", + "ct" + ], + [ + "Â", + "®" + ], + [ + "similar", + "ity" + ], + [ + ":Ġ\"", + "Ġ+Ġ" + ], + [ + "Grow", + "th" + ], + [ + "N", + "R" + ], + [ + "st", + "ays" + ], + [ + "anx", + "ious" + ], + [ + "c", + "ti" + ], + [ + "ol", + "ive" + ], + [ + "com", + "promise" + ], + [ + "g", + "us" + ], + [ + "Struct", + "ure" + ], + [ + "Fre", + "edom" + ], + [ + "point", + "ing" + ], + [ + "L", + "ic" + ], + [ + "C", + "ould" + ], + [ + "resp", + "ected" + ], + [ + "tribut", + "e" + ], + [ + "colon", + "y" + ], + [ + "co", + "c" + ], + [ + "č", + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "t", + "eles" + ], + [ + "av", + "ity" + ], + [ + "cas", + "ual" + ], + [ + "mus", + "h" + ], + [ + "il", + "oc" + ], + [ + "produ", + "cer" + ], + [ + "re", + "v" + ], + [ + "pas", + "sive" + ], + [ + "åħ", + "¥" + ], + [ + "A", + "verage" + ], + [ + "be", + "ef" + ], + [ + "gr", + "a" + ], + [ + "Budd", + "hism" + ], + [ + "war", + "ri" + ], + [ + "aes", + "thetics" + ], + [ + "S", + "ac" + ], + [ + "H", + "ong" + ], + [ + "R", + "og" + ], + [ + "mach", + "inery" + ], + [ + "Chem", + "ical" + ], + [ + "--------", + "-" + ], + [ + "transform", + "ations" + ], + [ + "d", + "al" + ], + [ + "T", + "T" + ], + [ + "Linked", + "List" + ], + [ + "can", + "al" + ], + [ + "ap", + "ore" + ], + [ + "advoc", + "ates" + ], + [ + "int", + "on" + ], + [ + "Nutri", + "tion" + ], + [ + "develop", + "s" + ], + [ + "colon", + "ization" + ], + [ + "Reg", + "ression" + ], + [ + "ep", + "ic" + ], + [ + "care", + "gi" + ], + [ + "fo", + "x" + ], + [ + "prom", + "oted" + ], + [ + "`", + "." + ], + [ + "op", + "pression" + ], + [ + "Cor", + "ps" + ], + [ + "Nether", + "lands" + ], + [ + "å", + "¾" + ], + [ + "bal", + "ances" + ], + [ + "t", + "une" + ], + [ + "wor", + "m" + ], + [ + "pre", + "ference" + ], + [ + "strengthen", + "ing" + ], + [ + "respond", + "ed" + ], + [ + "neighb", + "our" + ], + [ + "exc", + "av" + ], + [ + "Lar", + "ge" + ], + [ + "V", + "ill" + ], + [ + "pred", + "ators" + ], + [ + "jewel", + "ry" + ], + [ + "D", + "ol" + ], + [ + "cor", + "ro" + ], + [ + "Cons", + "ult" + ], + [ + "exp", + "ense" + ], + [ + "cau", + "tion" + ], + [ + "C", + "le" + ], + [ + "ome", + "tric" + ], + [ + "met", + "abolic" + ], + [ + "U", + "sed" + ], + [ + "deal", + "er" + ], + [ + "Sum", + "mary" + ], + [ + "pup", + "ils" + ], + [ + "f", + "ancy" + ], + [ + "secu", + "tive" + ], + [ + "å", + "į" + ], + [ + "Bi", + "ology" + ], + [ + "con", + "quer" + ], + [ + "si", + "blings" + ], + [ + "mo", + "ck" + ], + [ + "adjust", + "ing" + ], + [ + "No", + "v" + ], + [ + "ab", + "o" + ], + [ + "inc", + "enti" + ], + [ + "Don", + "ald" + ], + [ + "ur", + "i" + ], + [ + "f", + "ake" + ], + [ + "d", + "ump" + ], + [ + "U", + "E" + ], + [ + "un", + "precedented" + ], + [ + "Cho", + "osing" + ], + [ + "N", + "ob" + ], + [ + "abund", + "ance" + ], + [ + "craf", + "ted" + ], + [ + "Dr", + "ug" + ], + [ + "Ġ**", + "Ġ" + ], + [ + "under", + "pin" + ], + [ + "V", + "AL" + ], + [ + "tic", + "ultural" + ], + [ + ":", + "%" + ], + [ + "čĊĠĠĠĠ", + "čĊĠĠĠĠ" + ], + [ + "J", + "un" + ], + [ + "histor", + "ically" + ], + [ + "liter", + "al" + ], + [ + "[", + "(" + ], + [ + "cep", + "ting" + ], + [ + "un", + "fold" + ], + [ + "tri", + "be" + ], + [ + ".Ġ", + ":" + ], + [ + "O", + "il" + ], + [ + "R", + "ad" + ], + [ + "]", + "*" + ], + [ + "chap", + "ters" + ], + [ + "Start", + "ing" + ], + [ + "D", + "M" + ], + [ + "æ", + "Ŀ" + ], + [ + "ow", + "a" + ], + [ + "prolong", + "ed" + ], + [ + "C", + "ape" + ], + [ + "fail", + "ures" + ], + [ + "G", + "S" + ], + [ + "b", + "ies" + ], + [ + "N", + "ap" + ], + [ + "adapt", + "ations" + ], + [ + "l", + "r" + ], + [ + "Cap", + "tain" + ], + [ + "cross", + "ing" + ], + [ + "gen", + "ic" + ], + [ + "F", + "DA" + ], + [ + "ur", + "t" + ], + [ + "Ob", + "ama" + ], + [ + "sc", + "opy" + ], + [ + "bur", + "gh" + ], + [ + "gr", + "ip" + ], + [ + "circu", + "its" + ], + [ + "++", + "++" + ], + [ + "#Ġ", + "-*-Ġ" + ], + [ + "do", + "ses" + ], + [ + "f", + "p" + ], + [ + "in", + "sufficient" + ], + [ + "ann", + "a" + ], + [ + "Indones", + "ia" + ], + [ + "a", + "ired" + ], + [ + "re", + "production" + ], + [ + "at", + "ility" + ], + [ + "aller", + "gies" + ], + [ + "Fe", + "atures" + ], + [ + "Health", + "y" + ], + [ + "as", + "i" + ], + [ + "Cap", + "ital" + ], + [ + "=[", + "]" + ], + [ + "ëł", + "¥" + ], + [ + "T", + "ro" + ], + [ + "å", + "½" + ], + [ + "in", + "door" + ], + [ + "inst", + "ant" + ], + [ + "element", + "ary" + ], + [ + "fl", + "ush" + ], + [ + "B", + "rand" + ], + [ + "fer", + "tile" + ], + [ + "Portu", + "gu" + ], + [ + "L", + "ady" + ], + [ + "draw", + "s" + ], + [ + "belong", + "s" + ], + [ + "magnific", + "ent" + ], + [ + "K", + "a" + ], + [ + "favor", + "able" + ], + [ + "sho", + "ot" + ], + [ + "A", + "bor" + ], + [ + "sp", + "elling" + ], + [ + "cri", + "tic" + ], + [ + ",Ġ", + "*" + ], + [ + "D", + "AT" + ], + [ + "mat", + "ched" + ], + [ + "wh", + "ites" + ], + [ + "thod", + "ox" + ], + [ + "Encour", + "aging" + ], + [ + "usi", + "vely" + ], + [ + "Eff", + "ects" + ], + [ + "g", + "ang" + ], + [ + "brief", + "ly" + ], + [ + "Tr", + "ump" + ], + [ + "whe", + "els" + ], + [ + "Vari", + "able" + ], + [ + "view", + "points" + ], + [ + "ent", + "ropy" + ], + [ + "assess", + "ing" + ], + [ + "br", + "ick" + ], + [ + "surviv", + "ors" + ], + [ + "Ð", + "Ł" + ], + [ + "access", + "ed" + ], + [ + "R", + "ES" + ], + [ + "it", + "t" + ], + [ + "be", + "y" + ], + [ + "earthqu", + "ake" + ], + [ + "ic", + "ion" + ], + [ + ".", + "*" + ], + [ + "v", + "oy" + ], + [ + "n", + "als" + ], + [ + "(...", + ")?" + ], + [ + "s", + "lide" + ], + [ + "te", + "ar" + ], + [ + "puzz", + "les" + ], + [ + "dram", + "atically" + ], + [ + "b", + "f" + ], + [ + "in", + "ely" + ], + [ + "thir", + "ty" + ], + [ + "su", + "ited" + ], + [ + "on", + "ds" + ], + [ + "boo", + "lean" + ], + [ + "Pro", + "test" + ], + [ + "Mod", + "ule" + ], + [ + "k", + "ick" + ], + [ + "br", + "ac" + ], + [ + "m", + "asks" + ], + [ + "H", + "arry" + ], + [ + "I", + "g" + ], + [ + "inher", + "it" + ], + [ + "res", + "ur" + ], + [ + "be", + "have" + ], + [ + "res", + "ilient" + ], + [ + "non", + "y" + ], + [ + "moment", + "um" + ], + [ + "base", + "ball" + ], + [ + "research", + "ing" + ], + [ + "corpor", + "ations" + ], + [ + "dem", + "entia" + ], + [ + "bro", + "thers" + ], + [ + "as", + "is" + ], + [ + "V", + "ER" + ], + [ + "over", + "l" + ], + [ + "LE", + "CT" + ], + [ + "pun", + "ctu" + ], + [ + "mo", + "s" + ], + [ + "fer", + "tility" + ], + [ + "interpre", + "ting" + ], + [ + "un", + "ks" + ], + [ + "gr", + "ants" + ], + [ + "flag", + "s" + ], + [ + "tempor", + "al" + ], + [ + "attach", + "ment" + ], + [ + "parad", + "ig" + ], + [ + "po", + "ets" + ], + [ + "constru", + "ctive" + ], + [ + "volunte", + "er" + ], + [ + "hop", + "es" + ], + [ + "refr", + "iger" + ], + [ + "team", + "work" + ], + [ + "L", + "ind" + ], + [ + "al", + "o" + ], + [ + "S", + "ide" + ], + [ + "to", + "l" + ], + [ + "i", + "est" + ], + [ + "special", + "ist" + ], + [ + "conven", + "ience" + ], + [ + "Lu", + "ther" + ], + [ + "T", + "ol" + ], + [ + "Acti", + "vities" + ], + [ + "tradition", + "ally" + ], + [ + "w", + "ages" + ], + [ + "distribut", + "e" + ], + [ + "V", + "oc" + ], + [ + "sp", + "ine" + ], + [ + "pharm", + "ac" + ], + [ + "è¡", + "Į" + ], + [ + "y", + "east" + ], + [ + "im", + "mer" + ], + [ + "di", + "lem" + ], + [ + "communic", + "ating" + ], + [ + "Op", + "portun" + ], + [ + "B", + "oy" + ], + [ + "cent", + "ric" + ], + [ + "stew", + "ard" + ], + [ + "br", + "ands" + ], + [ + "contamin", + "ated" + ], + [ + "recur", + "sive" + ], + [ + "Def", + "ining" + ], + [ + "An", + "na" + ], + [ + "renew", + "ed" + ], + [ + "ç", + "¬" + ], + [ + "plant", + "ation" + ], + [ + "Multi", + "ply" + ], + [ + "Br", + "idge" + ], + [ + "j", + "ac" + ], + [ + "negoti", + "ations" + ], + [ + "histor", + "ian" + ], + [ + "vi", + "an" + ], + [ + "authentic", + "ity" + ], + [ + "Sing", + "apore" + ], + [ + "og", + "ene" + ], + [ + "particip", + "ated" + ], + [ + "S", + "ay" + ], + [ + "com", + "positions" + ], + [ + "posit", + "ory" + ], + [ + "Meas", + "ure" + ], + [ + "spac", + "ecraft" + ], + [ + "divid", + "ing" + ], + [ + "Fri", + "end" + ], + [ + "Techn", + "ical" + ], + [ + "atom", + "y" + ], + [ + "oper", + "ates" + ], + [ + "ad", + "min" + ], + [ + "in", + "ject" + ], + [ + "demand", + "ing" + ], + [ + "y", + "ards" + ], + [ + "st", + "uck" + ], + [ + "Swed", + "en" + ], + [ + "sho", + "oting" + ], + [ + "bot", + "tles" + ], + [ + "te", + "as" + ], + [ + "aqu", + "atic" + ], + [ + "Exper", + "iment" + ], + [ + "co", + "zy" + ], + [ + "immers", + "ive" + ], + [ + "au", + "g" + ], + [ + "ë¦", + "¬" + ], + [ + "Dav", + "is" + ], + [ + "dis", + "charge" + ], + [ + "Ste", + "phen" + ], + [ + "ad", + "ul" + ], + [ + "gen", + "us" + ], + [ + "Tr", + "ack" + ], + [ + "schem", + "es" + ], + [ + "al", + "er" + ], + [ + "ac", + "cord" + ], + [ + "ou", + "ch" + ], + [ + "Al", + "aska" + ], + [ + "Fam", + "iliar" + ], + [ + "th", + "umb" + ], + [ + "poll", + "ut" + ], + [ + "syn", + "tax" + ], + [ + ",Ġ", + "`" + ], + [ + "tific", + "ation" + ], + [ + "Con", + "gratulations" + ], + [ + "AC", + "K" + ], + [ + "diagno", + "se" + ], + [ + "pip", + "eline" + ], + [ + "stress", + "ed" + ], + [ + "w", + "ick" + ], + [ + "resol", + "ved" + ], + [ + "P", + "ap" + ], + [ + "!", + ")Ġ" + ], + [ + "Af", + "ghan" + ], + [ + "S", + "ure" + ], + [ + "Comp", + "are" + ], + [ + "de", + "er" + ], + [ + "OR", + "D" + ], + [ + "rom", + "ance" + ], + [ + "am", + "y" + ], + [ + "f", + "name" + ], + [ + "tim", + "eless" + ], + [ + "pronoun", + "ced" + ], + [ + "E", + "col" + ], + [ + "Of", + "fer" + ], + [ + "real", + "ism" + ], + [ + "Portugu", + "ese" + ], + [ + "person", + "ally" + ], + [ + "vi", + "val" + ], + [ + ":", + "#" + ], + [ + "O", + "l" + ], + [ + "Pict", + "ure" + ], + [ + "B", + "road" + ], + [ + "W", + "inter" + ], + [ + "leg", + "ally" + ], + [ + "assi", + "um" + ], + [ + "Festi", + "val" + ], + [ + "Stat", + "us" + ], + [ + "physic", + "ians" + ], + [ + "pl", + "ural" + ], + [ + "bol", + "ster" + ], + [ + "pro", + "visions" + ], + [ + "im", + "plies" + ], + [ + "man", + "ship" + ], + [ + "firm", + "ly" + ], + [ + "spec", + "ify" + ], + [ + "G", + "ather" + ], + [ + "in", + "verse" + ], + [ + "ĉĉ", + "ĉĉ" + ], + [ + "T", + "alk" + ], + [ + "schedul", + "ed" + ], + [ + "our", + "i" + ], + [ + "Pers", + "ian" + ], + [ + "P", + "ack" + ], + [ + "C", + "os" + ], + [ + "broad", + "cast" + ], + [ + "il", + "st" + ], + [ + "up", + "coming" + ], + [ + "Paren", + "ts" + ], + [ + "nu", + "ances" + ], + [ + "div", + "or" + ], + [ + "wor", + "ried" + ], + [ + "build", + "s" + ], + [ + "flu", + "ids" + ], + [ + "A", + "ges" + ], + [ + "fr", + "aid" + ], + [ + "calcul", + "ating" + ], + [ + "æ", + "ŀ" + ], + [ + "g", + "art" + ], + [ + "hop", + "ing" + ], + [ + "g", + "b" + ], + [ + "fru", + "str" + ], + [ + "sim", + "ulations" + ], + [ + "inten", + "tional" + ], + [ + "G", + "DP" + ], + [ + "н", + "е" + ], + [ + "[:", + "," + ], + [ + "found", + "ing" + ], + [ + "æį", + "®" + ], + [ + "add", + "le" + ], + [ + "s", + "ar" + ], + [ + "stic", + "ks" + ], + [ + "in", + "os" + ], + [ + "ag", + "a" + ], + [ + "Naz", + "i" + ], + [ + "W", + "y" + ], + [ + "il", + "ton" + ], + [ + "analy", + "tics" + ], + [ + "respond", + "ing" + ], + [ + "De", + "termin" + ], + [ + "anti", + "bodies" + ], + [ + "Ä", + "ĩ" + ], + [ + "af", + "ts" + ], + [ + "Ñ", + "ī" + ], + [ + "h", + "its" + ], + [ + "pat", + "ent" + ], + [ + "tum", + "ors" + ], + [ + "classroom", + "s" + ], + [ + "autom", + "ated" + ], + [ + "as", + "sure" + ], + [ + "otechn", + "ology" + ], + [ + "stu", + "dio" + ], + [ + "tic", + "ket" + ], + [ + "ime", + "ter" + ], + [ + "sal", + "mon" + ], + [ + "d", + "ying" + ], + [ + "Min", + "nes" + ], + [ + "static", + "method" + ], + [ + "am", + "en" + ], + [ + "Multi", + "ple" + ], + [ + "I", + "ce" + ], + [ + "Comple", + "te" + ], + [ + "que", + "er" + ], + [ + "D", + "ark" + ], + [ + "Bes", + "ides" + ], + [ + "F", + "ROM" + ], + [ + "no", + "vation" + ], + [ + "On", + "t" + ], + [ + "sched", + "ules" + ], + [ + "ch", + "unk" + ], + [ + "M", + "B" + ], + [ + "under", + "go" + ], + [ + "Saf", + "e" + ], + [ + "sacr", + "ifice" + ], + [ + "an", + "gry" + ], + [ + "pleas", + "ant" + ], + [ + "investig", + "ating" + ], + [ + "incre", + "ment" + ], + [ + "l", + "ac" + ], + [ + "з", + "а" + ], + [ + "S", + "it" + ], + [ + "ven", + "ues" + ], + [ + "Ar", + "men" + ], + [ + "cons", + "ol" + ], + [ + "equ", + "ilibrium" + ], + [ + "parti", + "ally" + ], + [ + "ìĦ", + "ľ" + ], + [ + "л", + "а" + ], + [ + "sw", + "it" + ], + [ + "b", + "n" + ], + [ + "ever", + "s" + ], + [ + "squ", + "ared" + ], + [ + "scre", + "ens" + ], + [ + "W", + "A" + ], + [ + "uc", + "id" + ], + [ + "attack", + "ed" + ], + [ + "depos", + "its" + ], + [ + "super", + "natural" + ], + [ + "Mill", + "er" + ], + [ + "ë", + "©" + ], + [ + "Dat", + "ab" + ], + [ + "U", + "I" + ], + [ + "tr", + "aced" + ], + [ + "iz", + "z" + ], + [ + "Cir", + "cle" + ], + [ + "\"", + "])" + ], + [ + "email", + "s" + ], + [ + "shif", + "ted" + ], + [ + "D", + "ur" + ], + [ + "H", + "ero" + ], + [ + "ri", + "ad" + ], + [ + "w", + "y" + ], + [ + "stim", + "ulate" + ], + [ + "F", + "at" + ], + [ + "newsp", + "apers" + ], + [ + "depart", + "ments" + ], + [ + "op", + "ponents" + ], + [ + "fact", + "ories" + ], + [ + "dis", + "count" + ], + [ + "cons", + "ensus" + ], + [ + "workshe", + "et" + ], + [ + "In", + "s" + ], + [ + "t", + "z" + ], + [ + "effic", + "ients" + ], + [ + "Com", + "preh" + ], + [ + "Z", + "ero" + ], + [ + "Pres", + "er" + ], + [ + "Ġ-*", + "-Ġ" + ], + [ + "ti", + "a" + ], + [ + "prop", + "he" + ], + [ + "-", + "%" + ], + [ + "le", + "ak" + ], + [ + "En", + "cycl" + ], + [ + "entrepreneur", + "s" + ], + [ + "on", + "set" + ], + [ + "Ġ", + "~" + ], + [ + "therap", + "ist" + ], + [ + "explor", + "ers" + ], + [ + "J", + "ordan" + ], + [ + "j", + "aw" + ], + [ + "geograph", + "ic" + ], + [ + "doctr", + "ine" + ], + [ + "adher", + "ence" + ], + [ + "reward", + "ing" + ], + [ + "rele", + "asing" + ], + [ + "ç", + "ão" + ], + [ + "tor", + "n" + ], + [ + "Jo", + "e" + ], + [ + "Fo", + "ster" + ], + [ + "Num", + "er" + ], + [ + "St", + "ress" + ], + [ + "pur", + "ple" + ], + [ + "conver", + "ting" + ], + [ + "he", + "ights" + ], + [ + "G", + "PS" + ], + [ + "pr", + "icing" + ], + [ + "in", + "p" + ], + [ + "P", + "il" + ], + [ + "V", + "A" + ], + [ + "vis", + "e" + ], + [ + "F", + "ill" + ], + [ + "vers", + "ary" + ], + [ + "E", + "vid" + ], + [ + "Ch", + "i" + ], + [ + "asci", + "i" + ], + [ + "standardi", + "zed" + ], + [ + "]", + "])" + ], + [ + "inter", + "ference" + ], + [ + "p", + "ap" + ], + [ + "solid", + "arity" + ], + [ + "uni", + "or" + ], + [ + "process", + "or" + ], + [ + "absol", + "utely" + ], + [ + "dis", + "card" + ], + [ + "sp", + "on" + ], + [ + "G", + "as" + ], + [ + "prof", + "ess" + ], + [ + "import", + "ed" + ], + [ + "An", + "tar" + ], + [ + "moun", + "ted" + ], + [ + "predict", + "able" + ], + [ + "din", + "osaur" + ], + [ + "devast", + "ating" + ], + [ + "th", + "and" + ], + [ + "col", + "leges" + ], + [ + "Posi", + "tive" + ], + [ + "accompl", + "ished" + ], + [ + "L", + "P" + ], + [ + "geome", + "tric" + ], + [ + "str", + "ains" + ], + [ + "G", + "C" + ], + [ + "de", + "leg" + ], + [ + "bel", + "t" + ], + [ + "dir", + "t" + ], + [ + "ind", + "is" + ], + [ + "scholar", + "ship" + ], + [ + "Minnes", + "ota" + ], + [ + "col", + "i" + ], + [ + "Car", + "bon" + ], + [ + "g", + "ad" + ], + [ + "di", + "arr" + ], + [ + "dr", + "um" + ], + [ + "ass", + "ment" + ], + [ + "que", + "en" + ], + [ + "Ar", + "ound" + ], + [ + "si", + "e" + ], + [ + "appe", + "aring" + ], + [ + "auto", + "matic" + ], + [ + "(", + "'Ġ" + ], + [ + "o", + "ch" + ], + [ + "ome", + "ga" + ], + [ + "fail", + "s" + ], + [ + "vac", + "uum" + ], + [ + "imag", + "in" + ], + [ + "sil", + "ent" + ], + [ + "Expl", + "oration" + ], + [ + "ed", + "ited" + ], + [ + "mal", + "aria" + ], + [ + "aud", + "it" + ], + [ + "shor", + "test" + ], + [ + "ment", + "or" + ], + [ + "filter", + "ed" + ], + [ + "Spec", + "ies" + ], + [ + "al", + "ist" + ], + [ + "Ch", + "ann" + ], + [ + "Tur", + "tle" + ], + [ + "del", + "ving" + ], + [ + ".", + "âĢĻ" + ], + [ + "reser", + "vo" + ], + [ + "æ", + "³" + ], + [ + "borrow", + "ing" + ], + [ + "Ġ\"", + ")" + ], + [ + "encod", + "ed" + ], + [ + ":Ġ", + "#Ġ" + ], + [ + "Israel", + "i" + ], + [ + "Du", + "ke" + ], + [ + "sec", + "ution" + ], + [ + "tal", + "ented" + ], + [ + "real", + "izing" + ], + [ + "gen", + "s" + ], + [ + "alum", + "ni" + ], + [ + "ose", + "x" + ], + [ + "anch", + "or" + ], + [ + "Sat", + "ur" + ], + [ + "NA", + "ME" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĊĠĠĠĠ" + ], + [ + "fun", + "gi" + ], + [ + "Sh", + "aring" + ], + [ + "acc", + "used" + ], + [ + "Pl", + "ants" + ], + [ + "Hol", + "oc" + ], + [ + "F", + "u" + ], + [ + "is", + "ions" + ], + [ + "Con", + "cept" + ], + [ + "]", + "['" + ], + [ + "x", + "range" + ], + [ + "Per", + "u" + ], + [ + "Victor", + "ia" + ], + [ + "Em", + "peror" + ], + [ + "comm", + "em" + ], + [ + "ìĬ", + "¤" + ], + [ + "p", + "ause" + ], + [ + "Educ", + "ational" + ], + [ + "remember", + "ed" + ], + [ + "Rom", + "ans" + ], + [ + "f", + "ired" + ], + [ + "Ī", + "ëĭ¤" + ], + [ + "sw", + "elling" + ], + [ + "j", + "azz" + ], + [ + "dark", + "ness" + ], + [ + "tu", + "bes" + ], + [ + "B", + "and" + ], + [ + "á", + "n" + ], + [ + "Hy", + "per" + ], + [ + "N", + "C" + ], + [ + "se", + "iz" + ], + [ + "comp", + "act" + ], + [ + "Sudden", + "ly" + ], + [ + "\"", + "),Ġ" + ], + [ + "interact", + "ing" + ], + [ + "lo", + "ves" + ], + [ + "ag", + "u" + ], + [ + "Wh", + "it" + ], + [ + "W", + "el" + ], + [ + "Archit", + "ecture" + ], + [ + "Ġ$", + "$" + ], + [ + "in", + "ian" + ], + [ + "elig", + "ible" + ], + [ + "MA", + "X" + ], + [ + "counsel", + "ing" + ], + [ + "su", + "ms" + ], + [ + "A", + "F" + ], + [ + "Gener", + "ally" + ], + [ + "museum", + "s" + ], + [ + "block", + "chain" + ], + [ + "simpl", + "er" + ], + [ + "apparent", + "ly" + ], + [ + "De", + "pression" + ], + [ + "rail", + "way" + ], + [ + "u", + "pr" + ], + [ + ".", + "-" + ], + [ + "e", + "es" + ], + [ + "ver", + "sy" + ], + [ + "sp", + "i" + ], + [ + "Sk", + "ip" + ], + [ + "con", + "sequence" + ], + [ + "All", + "ah" + ], + [ + "b", + "ark" + ], + [ + "lemon", + "ade" + ], + [ + "x", + "s" + ], + [ + "od", + "or" + ], + [ + "educ", + "ate" + ], + [ + "Pri", + "ze" + ], + [ + "S", + "av" + ], + [ + "mo", + "tive" + ], + [ + "t", + "anks" + ], + [ + "ra", + "vel" + ], + [ + "Equ", + "ip" + ], + [ + "pre", + "dominant" + ], + [ + "Ingre", + "di" + ], + [ + "hydr", + "ation" + ], + [ + "e", + "ks" + ], + [ + "po", + "on" + ], + [ + "l", + "ighter" + ], + [ + "sm", + "iled" + ], + [ + "prom", + "o" + ], + [ + "in", + "als" + ], + [ + "F", + "eder" + ], + [ + "resp", + "ecting" + ], + [ + "S", + "ri" + ], + [ + "U", + "D" + ], + [ + "prioriti", + "ze" + ], + [ + ":Ġ", + "'))" + ], + [ + "b", + "icy" + ], + [ + "li", + "kes" + ], + [ + "lever", + "aging" + ], + [ + "Up", + "per" + ], + [ + "cer", + "emony" + ], + [ + "Ad", + "just" + ], + [ + "tox", + "ins" + ], + [ + "int", + "ent" + ], + [ + "inter", + "play" + ], + [ + "m", + "ant" + ], + [ + "attract", + "ed" + ], + [ + "flood", + "ing" + ], + [ + "Pop", + "ular" + ], + [ + "rul", + "ing" + ], + [ + "I", + "X" + ], + [ + "R", + "F" + ], + [ + "æĸ", + "ĩ" + ], + [ + "c", + "p" + ], + [ + "?", + "âĢĿ" + ], + [ + "f", + "is" + ], + [ + "dign", + "ity" + ], + [ + "ath", + "an" + ], + [ + "Ġ", + "``" + ], + [ + "uck", + "y" + ], + [ + "my", + "riad" + ], + [ + "A", + "wards" + ], + [ + "Ont", + "ario" + ], + [ + "b", + "ishop" + ], + [ + "snip", + "pet" + ], + [ + "Miss", + "ouri" + ], + [ + "ad", + "ays" + ], + [ + "Avail", + "able" + ], + [ + "en", + "cryption" + ], + [ + "K", + "ong" + ], + [ + "reg", + "ulated" + ], + [ + "activ", + "ated" + ], + [ + "cri", + "pts" + ], + [ + "inter", + "rup" + ], + [ + "åĩ", + "º" + ], + [ + "Champion", + "ship" + ], + [ + "over", + "lap" + ], + [ + "You", + "Tube" + ], + [ + "oblig", + "ations" + ], + [ + "ce", + "eds" + ], + [ + "pro", + "test" + ], + [ + "tend", + "ency" + ], + [ + "am", + "el" + ], + [ + "continu", + "ity" + ], + [ + "explan", + "ations" + ], + [ + "enti", + "tled" + ], + [ + "bur", + "ned" + ], + [ + "al", + "oud" + ], + [ + "cle", + "ver" + ], + [ + "Pop", + "ulation" + ], + [ + "ass", + "im" + ], + [ + "R", + "ose" + ], + [ + "b", + "od" + ], + [ + "introdu", + "ces" + ], + [ + "iv", + "a" + ], + [ + "scor", + "ing" + ], + [ + "%", + ".Ġ" + ], + [ + "cons", + "in" + ], + [ + "ogen", + "ic" + ], + [ + "Antar", + "ctic" + ], + [ + "key", + "words" + ], + [ + "ari", + "um" + ], + [ + "Let", + "ter" + ], + [ + "bul", + "let" + ], + [ + "N", + "ames" + ], + [ + "M", + "oney" + ], + [ + "inv", + "ite" + ], + [ + "T", + "un" + ], + [ + "]", + "Ġ<Ġ" + ], + [ + "S", + "ho" + ], + [ + "en", + "sively" + ], + [ + "Ab", + "sol" + ], + [ + "render", + "ing" + ], + [ + "rig", + "id" + ], + [ + "a", + "thetic" + ], + [ + "tri", + "ple" + ], + [ + "P", + "ope" + ], + [ + "Princi", + "ples" + ], + [ + "d", + "ash" + ], + [ + "Har", + "mon" + ], + [ + "Regular", + "ly" + ], + [ + "L", + "ev" + ], + [ + "sub", + "mitted" + ], + [ + "spec", + "ially" + ], + [ + "members", + "hip" + ], + [ + "con", + "secutive" + ], + [ + "De", + "termine" + ], + [ + "om", + "ed" + ], + [ + "dis", + "posal" + ], + [ + "dis", + "semin" + ], + [ + "mob", + "il" + ], + [ + "res", + "cue" + ], + [ + "ë", + "ı" + ], + [ + "Oper", + "ations" + ], + [ + "impact", + "ed" + ], + [ + "nur", + "se" + ], + [ + "prec", + "au" + ], + [ + "Alg", + "orith" + ], + [ + "ins", + "ula" + ], + [ + "Contin", + "ue" + ], + [ + "C", + "ogn" + ], + [ + "gr", + "ave" + ], + [ + "ok", + "es" + ], + [ + "pro", + "se" + ], + [ + "Con", + "fig" + ], + [ + "pos", + "session" + ], + [ + "decre", + "ases" + ], + [ + "ä¸Ģ", + "个" + ], + [ + "A", + "x" + ], + [ + "O", + "ri" + ], + [ + "tr", + "uck" + ], + [ + "reser", + "ve" + ], + [ + "el", + "ic" + ], + [ + "design", + "er" + ], + [ + "gl", + "ance" + ], + [ + "legisl", + "ative" + ], + [ + "where", + "in" + ], + [ + "gu", + "ards" + ], + [ + "regi", + "stration" + ], + [ + "ìĸ", + "´" + ], + [ + "encompass", + "es" + ], + [ + "rel", + "u" + ], + [ + "Stand", + "ards" + ], + [ + "S", + "ite" + ], + [ + "p", + "ound" + ], + [ + "dam", + "aging" + ], + [ + "inter", + "mediate" + ], + [ + "E", + "A" + ], + [ + "epoch", + "s" + ], + [ + "dis", + "placement" + ], + [ + "emis", + "sion" + ], + [ + "Scen", + "arios" + ], + [ + "ar", + "ising" + ], + [ + "a", + "fraid" + ], + [ + "He", + "at" + ], + [ + "l", + "ag" + ], + [ + "ì", + "ĥ" + ], + [ + "cycl", + "ing" + ], + [ + "elabor", + "ate" + ], + [ + "Pro", + "te" + ], + [ + "Swed", + "ish" + ], + [ + "exp", + "edition" + ], + [ + "pes", + "ticides" + ], + [ + "P", + "ear" + ], + [ + "retire", + "ment" + ], + [ + "K", + "al" + ], + [ + "P", + "ier" + ], + [ + "l", + "enses" + ], + [ + "politici", + "an" + ], + [ + "ti", + "te" + ], + [ + "pip", + "es" + ], + [ + "o", + "h" + ], + [ + "u", + "ce" + ], + [ + "c", + "ensus" + ], + [ + "Ph", + "D" + ], + [ + "nation", + "ally" + ], + [ + "Mary", + "land" + ], + [ + "Wis", + "consin" + ], + [ + "K", + "h" + ], + [ + "Al", + "bert" + ], + [ + "tang", + "ible" + ], + [ + "appreci", + "ating" + ], + [ + "p", + "iano" + ], + [ + "well", + "ness" + ], + [ + "gen", + "cies" + ], + [ + "tomat", + "oes" + ], + [ + "char", + "ging" + ], + [ + "push", + "ed" + ], + [ + "flu", + "or" + ], + [ + "precip", + "itation" + ], + [ + "recept", + "ors" + ], + [ + "decl", + "ar" + ], + [ + "vi", + "able" + ], + [ + "E", + "co" + ], + [ + "Ar", + "ist" + ], + [ + "gre", + "y" + ], + [ + "h", + "ills" + ], + [ + "čĊ", + "ĠĠ" + ], + [ + "st", + "al" + ], + [ + "conn", + "ectivity" + ], + [ + "åľ", + "¨" + ], + [ + "Ro", + "om" + ], + [ + "L", + "R" + ], + [ + "enn", + "ial" + ], + [ + "eng", + "er" + ], + [ + "perce", + "ive" + ], + [ + "re", + "ck" + ], + [ + "soci", + "ally" + ], + [ + "prison", + "ers" + ], + [ + "O", + "UT" + ], + [ + "end", + "ors" + ], + [ + "Im", + "per" + ], + [ + "tal", + "ks" + ], + [ + "emphas", + "ized" + ], + [ + "sh", + "elf" + ], + [ + "persu", + "as" + ], + [ + "public", + "ly" + ], + [ + "K", + "ir" + ], + [ + "val", + "ley" + ], + [ + "do", + "ts" + ], + [ + "\"Ġ", + "%Ġ" + ], + [ + "ch", + "ew" + ], + [ + "Inst", + "all" + ], + [ + "compassion", + "ate" + ], + [ + "vari", + "ant" + ], + [ + "carbohydr", + "ates" + ], + [ + "inf", + "ant" + ], + [ + "break", + "fast" + ], + [ + "delight", + "ful" + ], + [ + "Def", + "ense" + ], + [ + "p", + "ile" + ], + [ + "E", + "ating" + ], + [ + ")", + "(" + ], + [ + "Vari", + "ous" + ], + [ + "Cred", + "it" + ], + [ + "ze", + "ch" + ], + [ + "dispar", + "ate" + ], + [ + "talk", + "ed" + ], + [ + "R", + "ever" + ], + [ + "è¡", + "¨" + ], + [ + "Be", + "autiful" + ], + [ + "tot", + "ally" + ], + [ + "sn", + "acks" + ], + [ + "A", + "ust" + ], + [ + "part", + "ly" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠ" + ], + [ + "oty", + "pe" + ], + [ + "St", + "or" + ], + [ + "stick", + "y" + ], + [ + "ì", + "ĺ" + ], + [ + "ass", + "ault" + ], + [ + "ext", + "ending" + ], + [ + "spark", + "ed" + ], + [ + "sub", + "plot" + ], + [ + "az", + "y" + ], + [ + "Dis", + "order" + ], + [ + "lighten", + "ment" + ], + [ + "prot", + "ests" + ], + [ + "Ow", + "n" + ], + [ + "vacc", + "ination" + ], + [ + "T", + "a" + ], + [ + "ast", + "ing" + ], + [ + "Ex", + "act" + ], + [ + "s", + "ends" + ], + [ + "acti", + "vism" + ], + [ + "l", + "av" + ], + [ + "G", + "ot" + ], + [ + "sil", + "ence" + ], + [ + "citizen", + "ship" + ], + [ + "claim", + "ing" + ], + [ + "repeated", + "ly" + ], + [ + "nod", + "ded" + ], + [ + "ë", + "²" + ], + [ + "Ġ=Ġ{", + "'" + ], + [ + "poly", + "mer" + ], + [ + "Region", + "al" + ], + [ + "int", + "age" + ], + [ + "ver", + "bs" + ], + [ + "Olymp", + "ic" + ], + [ + "port", + "folio" + ], + [ + "utili", + "zation" + ], + [ + "inten", + "tions" + ], + [ + "Frank", + "lin" + ], + [ + "vi", + "o" + ], + [ + "Ser", + "ver" + ], + [ + "cou", + "pled" + ], + [ + "restr", + "ial" + ], + [ + "ap", + "ol" + ], + [ + "im", + "ents" + ], + [ + "°", + "Ġ" + ], + [ + "Philip", + "pines" + ], + [ + "ec", + "ology" + ], + [ + "P", + "ick" + ], + [ + "P", + "AT" + ], + [ + "m", + "ount" + ], + [ + "sing", + "er" + ], + [ + "Teach", + "er" + ], + [ + "K", + "er" + ], + [ + "patch", + "es" + ], + [ + "ä¸", + "į" + ], + [ + "St", + "age" + ], + [ + "eat", + "en" + ], + [ + "Ne", + "g" + ], + [ + "]", + "=" + ], + [ + "Bang", + "l" + ], + [ + "ma", + "j" + ], + [ + "inv", + "iting" + ], + [ + "P", + "ad" + ], + [ + "fore", + "cast" + ], + [ + "ste", + "ep" + ], + [ + "^", + "{" + ], + [ + "steward", + "ship" + ], + [ + "Str", + "ong" + ], + [ + "peculi", + "ar" + ], + [ + "w", + "ax" + ], + [ + "Con", + "struction" + ], + [ + "ri", + "p" + ], + [ + "necess", + "ity" + ], + [ + "u", + "z" + ], + [ + "global", + "ization" + ], + [ + "h", + "atch" + ], + [ + "Employ", + "ee" + ], + [ + "T", + "C" + ], + [ + "G", + "il" + ], + [ + "del", + "im" + ], + [ + "aw", + "ards" + ], + [ + "break", + "through" + ], + [ + "id", + "al" + ], + [ + "For", + "d" + ], + [ + "request", + "ed" + ], + [ + "K", + "i" + ], + [ + "K", + "ansas" + ], + [ + "ti", + "st" + ], + [ + "P", + "un" + ], + [ + "Common", + "s" + ], + [ + "ex", + "ceptions" + ], + [ + "b", + "ted" + ], + [ + "f", + "id" + ], + [ + "pe", + "ar" + ], + [ + "Re", + "quest" + ], + [ + "!", + "')" + ], + [ + "Chang", + "es" + ], + [ + "U", + "su" + ], + [ + "om", + "on" + ], + [ + "e", + "ti" + ], + [ + "sovereign", + "ty" + ], + [ + "ele", + "ctor" + ], + [ + "femin", + "ist" + ], + [ + "wealth", + "y" + ], + [ + "form", + "ations" + ], + [ + "Wind", + "ow" + ], + [ + "et", + "a" + ], + [ + "gi", + "e" + ], + [ + "co", + "efficients" + ], + [ + "L", + "ive" + ], + [ + "cl", + "ing" + ], + [ + "suf", + "fix" + ], + [ + "remind", + "ed" + ], + [ + "ac", + "ity" + ], + [ + "hob", + "by" + ], + [ + "scholar", + "ly" + ], + [ + "def", + "ects" + ], + [ + "ins", + "ist" + ], + [ + "C", + "ele" + ], + [ + "pot", + "ent" + ], + [ + "MR", + "I" + ], + [ + "Dou", + "ble" + ], + [ + "Hy", + "dro" + ], + [ + "Con", + "tr" + ], + [ + "festi", + "vals" + ], + [ + "ne", + "at" + ], + [ + "individ", + "ually" + ], + [ + "w", + "ires" + ], + [ + "profic", + "iency" + ], + [ + "m", + "und" + ], + [ + "Ass", + "ist" + ], + [ + "optim", + "izer" + ], + [ + "g", + "low" + ], + [ + "up", + "set" + ], + [ + "alum", + "inum" + ], + [ + "Im", + "ages" + ], + [ + "Men", + "u" + ], + [ + "cont", + "est" + ], + [ + "Ġ$", + "\\" + ], + [ + "strugg", + "led" + ], + [ + "ord", + "inal" + ], + [ + "senti", + "ment" + ], + [ + ")Ġ", + "<Ġ" + ], + [ + "fall", + "en" + ], + [ + "ÑĨ", + "и" + ], + [ + "E", + "stim" + ], + [ + "gener", + "ational" + ], + [ + "M", + "ia" + ], + [ + "ile", + "y" + ], + [ + ".", + "\\" + ], + [ + "pres", + "cription" + ], + [ + "bur", + "st" + ], + [ + "Analy", + "ze" + ], + [ + "std", + "out" + ], + [ + "scatter", + "ed" + ], + [ + "call", + "back" + ], + [ + "de", + "le" + ], + [ + "hand", + "ed" + ], + [ + "ner", + "ves" + ], + [ + "AS", + "D" + ], + [ + "deriv", + "ative" + ], + [ + "Phys", + "ics" + ], + [ + "bell", + "ion" + ], + [ + "con", + "ut" + ], + [ + "gover", + "nor" + ], + [ + "hid", + "ing" + ], + [ + "KE", + "Y" + ], + [ + "Sim", + "ply" + ], + [ + "advent", + "ur" + ], + [ + "transc", + "end" + ], + [ + "S", + "H" + ], + [ + "ar", + "ises" + ], + [ + ">", + "=Ġ" + ], + [ + "+", + "Ġ(" + ], + [ + "hazard", + "ous" + ], + [ + "hist", + "ogram" + ], + [ + "Ga", + "ussian" + ], + [ + "mat", + "riz" + ], + [ + "igh", + "ters" + ], + [ + "pro", + "xim" + ], + [ + "ĊĠĠĠĠ", + "Ċ" + ], + [ + "normal", + "ize" + ], + [ + "p", + "est" + ], + [ + "bul", + "k" + ], + [ + "Evid", + "ence" + ], + [ + "work", + "shop" + ], + [ + "aller", + "gic" + ], + [ + "plic", + "it" + ], + [ + "hun", + "ger" + ], + [ + "Abor", + "ig" + ], + [ + "ad", + "mitted" + ], + [ + "n", + "our" + ], + [ + "mar", + "king" + ], + [ + "ro", + "ts" + ], + [ + "finan", + "cing" + ], + [ + "ti", + "vation" + ], + [ + "conf", + "idently" + ], + [ + "pa", + "ired" + ], + [ + "ke", + "ters" + ], + [ + "Un", + "til" + ], + [ + "pass", + "ions" + ], + [ + "situ", + "ated" + ], + [ + "an", + "te" + ], + [ + "Ġ\"", + "\"\"" + ], + [ + "Argu", + "ment" + ], + [ + "de", + "que" + ], + [ + "Ukrain", + "e" + ], + [ + "b", + "ums" + ], + [ + "Col", + "lect" + ], + [ + "ON", + "E" + ], + [ + "B", + "os" + ], + [ + "N", + "UM" + ], + [ + "P", + "TS" + ], + [ + "round", + "s" + ], + [ + "c", + "auti" + ], + [ + "surpr", + "ised" + ], + [ + "ac", + "i" + ], + [ + "E", + "lect" + ], + [ + "un", + "employment" + ], + [ + "lo", + "gs" + ], + [ + "sn", + "ap" + ], + [ + "urs", + "day" + ], + [ + "Is", + "sues" + ], + [ + "P", + "H" + ], + [ + "ob", + "s" + ], + [ + "C", + "ab" + ], + [ + "G", + "ET" + ], + [ + "bed", + "s" + ], + [ + "ìŀ", + "ħ" + ], + [ + ".", + "),Ġ" + ], + [ + "z", + "ers" + ], + [ + "inter", + "pol" + ], + [ + "Mu", + "hammad" + ], + [ + "Eng", + "age" + ], + [ + "reti", + "red" + ], + [ + "coron", + "avirus" + ], + [ + "jud", + "ges" + ], + [ + "Arch", + "ae" + ], + [ + "treat", + "y" + ], + [ + "MM", + "MM" + ], + [ + "G", + "L" + ], + [ + "altern", + "ate" + ], + [ + "ly", + "rics" + ], + [ + "co", + "efficient" + ], + [ + "pl", + "um" + ], + [ + "lock", + "ed" + ], + [ + "åı", + "ĸ" + ], + [ + "commun", + "al" + ], + [ + "the", + "astern" + ], + [ + "archit", + "ects" + ], + [ + "avi", + "er" + ], + [ + "reject", + "ed" + ], + [ + "Re", + "ference" + ], + [ + "Mis", + "sion" + ], + [ + "_", + "Ġ=Ġ" + ], + [ + "t", + "asty" + ], + [ + "z", + "ens" + ], + [ + "or", + "ious" + ], + [ + "Bal", + "ance" + ], + [ + "sc", + "ape" + ], + [ + "autom", + "ation" + ], + [ + "clim", + "bing" + ], + [ + "B", + "ird" + ], + [ + "W", + "ow" + ], + [ + "str", + "and" + ], + [ + "c", + "rown" + ], + [ + "Second", + "ly" + ], + [ + "stop", + "ping" + ], + [ + "far", + "mer" + ], + [ + "st", + "ance" + ], + [ + "rit", + "ual" + ], + [ + "ear", + "ning" + ], + [ + "post", + "ure" + ], + [ + "pul", + "se" + ], + [ + "enterpr", + "ise" + ], + [ + "criti", + "ci" + ], + [ + "rehab", + "ilitation" + ], + [ + "æ", + "İ" + ], + [ + "em", + "powers" + ], + [ + "in", + "visible" + ], + [ + "administer", + "ed" + ], + [ + "Col", + "um" + ], + [ + "You", + "th" + ], + [ + "ac", + "cepting" + ], + [ + "bl", + "adder" + ], + [ + "dur", + "able" + ], + [ + "Con", + "versely" + ], + [ + "to", + "ile" + ], + [ + "d", + "or" + ], + [ + "os", + "a" + ], + [ + "Jud", + "a" + ], + [ + "extract", + "ed" + ], + [ + "v", + "om" + ], + [ + "Cho", + "ice" + ], + [ + "text", + "book" + ], + [ + "ìł", + "ķ" + ], + [ + "P", + "and" + ], + [ + "val", + "ve" + ], + [ + "ok", + "ay" + ], + [ + "f", + "c" + ], + [ + "special", + "ists" + ], + [ + "Jo", + "in" + ], + [ + "Vis", + "it" + ], + [ + "inter", + "personal" + ], + [ + "IC", + "E" + ], + [ + "Pati", + "ents" + ], + [ + "o", + "some" + ], + [ + "ul", + "er" + ], + [ + "re", + "forms" + ], + [ + "gr", + "ind" + ], + [ + "rel", + "atable" + ], + [ + "denti", + "st" + ], + [ + "us", + "able" + ], + [ + "Ne", + "igh" + ], + [ + "let", + "ting" + ], + [ + "Sk", + "y" + ], + [ + "im", + "s" + ], + [ + "C", + "K" + ], + [ + "c", + "itation" + ], + [ + "Leg", + "is" + ], + [ + "Rel", + "ated" + ], + [ + "h", + "p" + ], + [ + "á", + "¹" + ], + [ + "excl", + "usively" + ], + [ + "smart", + "phones" + ], + [ + "table", + "ts" + ], + [ + "on", + "ics" + ], + [ + "l", + "ith" + ], + [ + "less", + "er" + ], + [ + "tri", + "bal" + ], + [ + "h", + "s" + ], + [ + "Re", + "peat" + ], + [ + "dev", + "oted" + ], + [ + "gener", + "ative" + ], + [ + "inher", + "ited" + ], + [ + "ell", + "er" + ], + [ + "H", + "ash" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "Ġ" + ], + [ + "witness", + "ed" + ], + [ + "interpre", + "ted" + ], + [ + "exp", + "end" + ], + [ + "tour", + "ists" + ], + [ + "Eth", + "iop" + ], + [ + "s", + "age" + ], + [ + "foot", + "print" + ], + [ + "clean", + "ed" + ], + [ + "Rec", + "on" + ], + [ + "jour", + "nals" + ], + [ + "Ar", + "m" + ], + [ + "Gr", + "ant" + ], + [ + "h", + "ay" + ], + [ + "overwhel", + "med" + ], + [ + "em", + "e" + ], + [ + "в", + "Ñĭ" + ], + [ + "Bir", + "th" + ], + [ + "S", + "N" + ], + [ + "reser", + "ves" + ], + [ + "Satur", + "day" + ], + [ + "le", + "ap" + ], + [ + "****************", + "****************" + ], + [ + "Mon", + "itor" + ], + [ + "rein", + "forcing" + ], + [ + "T", + "ues" + ], + [ + "com", + "o" + ], + [ + "lo", + "b" + ], + [ + "bl", + "an" + ], + [ + "ret", + "ro" + ], + [ + "R", + "ule" + ], + [ + "ip", + "olar" + ], + [ + "cou", + "ples" + ], + [ + "master", + "y" + ], + [ + "pharm", + "ace" + ], + [ + "s", + "oma" + ], + [ + "comed", + "y" + ], + [ + "Ad", + "voc" + ], + [ + "sup", + "plied" + ], + [ + "drain", + "age" + ], + [ + "Otto", + "man" + ], + [ + "]", + "),Ġ" + ], + [ + "mer", + "ch" + ], + [ + "re", + "ply" + ], + [ + "List", + "en" + ], + [ + "Jour", + "ney" + ], + [ + "recycl", + "ed" + ], + [ + "ne", + "a" + ], + [ + "pul", + "led" + ], + [ + "adjust", + "ed" + ], + [ + "Dar", + "win" + ], + [ + "P", + "it" + ], + [ + "Niger", + "ia" + ], + [ + "ar", + "ter" + ], + [ + "V", + "in" + ], + [ + "S", + "even" + ], + [ + "C", + "zech" + ], + [ + "eng", + "u" + ], + [ + "unci", + "ation" + ], + [ + "nes", + "ium" + ], + [ + "os", + "es" + ], + [ + "aff", + "irm" + ], + [ + "Implement", + "ing" + ], + [ + "Sou", + "p" + ], + [ + "wo", + "ven" + ], + [ + "not", + "ing" + ], + [ + "succeed", + "ed" + ], + [ + "Regard", + "less" + ], + [ + "ardi", + "an" + ], + [ + "P", + "UT" + ], + [ + "path", + "ogens" + ], + [ + "v", + "apor" + ], + [ + "t", + "estim" + ], + [ + "SE", + "LECT" + ], + [ + "D", + "ele" + ], + [ + "dr", + "a" + ], + [ + "rel", + "s" + ], + [ + "Ste", + "ven" + ], + [ + "conserv", + "ative" + ], + [ + "Fre", + "der" + ], + [ + "argu", + "es" + ], + [ + "nes", + "day" + ], + [ + "Ac", + "cur" + ], + [ + "offer", + "ings" + ], + [ + "refer", + "ring" + ], + [ + "M", + "C" + ], + [ + "the", + "atre" + ], + [ + "seam", + "lessly" + ], + [ + "scop", + "ic" + ], + [ + "pass", + "ages" + ], + [ + "pal", + "m" + ], + [ + "bit", + "ter" + ], + [ + "alg", + "ae" + ], + [ + "Man", + "u" + ], + [ + "==", + "'" + ], + [ + "Vi", + "ol" + ], + [ + "com", + "bust" + ], + [ + "particip", + "ant" + ], + [ + "concept", + "ual" + ], + [ + "breath", + "taking" + ], + [ + "Holoc", + "aust" + ], + [ + "ë¬", + "¸" + ], + [ + "alleg", + "ed" + ], + [ + "electr", + "omagnetic" + ], + [ + "Ġ", + "||" + ], + [ + "Proper", + "ty" + ], + [ + "ac", + "ou" + ], + [ + "neighborhood", + "s" + ], + [ + "P", + "V" + ], + [ + "awes", + "ome" + ], + [ + "obtain", + "ing" + ], + [ + "Acade", + "mic" + ], + [ + "cor", + "pus" + ], + [ + "time", + "out" + ], + [ + "F", + "ox" + ], + [ + "c", + "king" + ], + [ + "sculpt", + "ure" + ], + [ + "moti", + "fs" + ], + [ + "In", + "flu" + ], + [ + "Program", + "s" + ], + [ + "document", + "ary" + ], + [ + "list", + "ened" + ], + [ + "Ch", + "am" + ], + [ + "cultur", + "ally" + ], + [ + "Current", + "ly" + ], + [ + "Hit", + "ler" + ], + [ + "fundam", + "ent" + ], + [ + "extin", + "ction" + ], + [ + "aspir", + "ations" + ], + [ + "ep", + "sil" + ], + [ + "vo", + "ters" + ], + [ + "sympto", + "m" + ], + [ + "rati", + "os" + ], + [ + "n", + "ish" + ], + [ + "ter", + "rible" + ], + [ + "Orig", + "ins" + ], + [ + "T", + "B" + ], + [ + "æķ°", + "æį®" + ], + [ + "y", + "ar" + ], + [ + "Jeff", + "erson" + ], + [ + "empower", + "ing" + ], + [ + "at", + "ics" + ], + [ + "disput", + "e" + ], + [ + "allevi", + "ate" + ], + [ + "iz", + "ers" + ], + [ + "pres", + "ses" + ], + [ + "le", + "f" + ], + [ + "..", + "/" + ], + [ + "N", + "uc" + ], + [ + "Ġ+Ġ", + "\"" + ], + [ + "En", + "sure" + ], + [ + "l", + "ang" + ], + [ + "ris", + "es" + ], + [ + "experiment", + "ation" + ], + [ + "ST", + "R" + ], + [ + "arch", + "i" + ], + [ + "refle", + "ctive" + ], + [ + "Bet", + "ter" + ], + [ + "pl", + "u" + ], + [ + "в", + "а" + ], + [ + "valid", + "ity" + ], + [ + "cal", + "or" + ], + [ + "is", + "ations" + ], + [ + "tk", + "inter" + ], + [ + "br", + "ut" + ], + [ + "':", + "'" + ], + [ + "N", + "arr" + ], + [ + "ì", + "¶" + ], + [ + "al", + "together" + ], + [ + "ist", + "ically" + ], + [ + "st", + "amp" + ], + [ + "Experi", + "ence" + ], + [ + "de", + "ple" + ], + [ + "prot", + "ects" + ], + [ + "numer", + "ic" + ], + [ + "%", + "%" + ], + [ + "w", + "art" + ], + [ + "R", + "ele" + ], + [ + "ban", + "king" + ], + [ + "bu", + "ff" + ], + [ + "clean", + "er" + ], + [ + "cor", + "al" + ], + [ + "Ch", + "ile" + ], + [ + "out", + "doors" + ], + [ + "present", + "ations" + ], + [ + "L", + "ie" + ], + [ + "gest", + "ures" + ], + [ + "t", + "ones" + ], + [ + "Sou", + "theast" + ], + [ + "__", + "_" + ], + [ + "Cer", + "tain" + ], + [ + "d", + "amp" + ], + [ + "adver", + "tise" + ], + [ + "st", + "iff" + ], + [ + "sub", + "stitute" + ], + [ + "Sy", + "ria" + ], + [ + "s", + "ink" + ], + [ + "hob", + "bies" + ], + [ + "He", + "ight" + ], + [ + "mass", + "es" + ], + [ + "P", + "ul" + ], + [ + "descri", + "ptive" + ], + [ + "per", + "ipher" + ], + [ + "tast", + "es" + ], + [ + "dam", + "ages" + ], + [ + "Sing", + "le" + ], + [ + "concentr", + "ated" + ], + [ + "pri", + "est" + ], + [ + "path", + "way" + ], + [ + "lat", + "itude" + ], + [ + "syn", + "chron" + ], + [ + "syn", + "thes" + ], + [ + "ad", + "hes" + ], + [ + "op", + "oli" + ], + [ + "St", + "reng" + ], + [ + "A", + "gree" + ], + [ + "Emo", + "tional" + ], + [ + "igno", + "red" + ], + [ + "c", + "ill" + ], + [ + "z", + "an" + ], + [ + "b", + "li" + ], + [ + "ph", + "ere" + ], + [ + "unders", + "core" + ], + [ + "cer", + "tified" + ], + [ + "demo", + "graphic" + ], + [ + "B", + "B" + ], + [ + "S", + "cr" + ], + [ + "sl", + "ot" + ], + [ + "Imper", + "ial" + ], + [ + "hol", + "idays" + ], + [ + "D", + "F" + ], + [ + "board", + "ing" + ], + [ + "can", + "on" + ], + [ + "ti", + "r" + ], + [ + "na", + "val" + ], + [ + "R", + "elev" + ], + [ + "consol", + "id" + ], + [ + "Keep", + "ing" + ], + [ + "bak", + "ery" + ], + [ + "amer", + "ican" + ], + [ + "per", + "t" + ], + [ + "specim", + "ens" + ], + [ + "un", + "ions" + ], + [ + "dis", + "c" + ], + [ + "conf", + "using" + ], + [ + "B", + "row" + ], + [ + "wo", + "ol" + ], + [ + "non", + "fiction" + ], + [ + "lawy", + "er" + ], + [ + "sh", + "rub" + ], + [ + "ele", + "vation" + ], + [ + "ped", + "iatric" + ], + [ + "legi", + "timate" + ], + [ + "ind", + "ent" + ], + [ + "ende", + "avors" + ], + [ + "Cent", + "ers" + ], + [ + "r", + "ust" + ], + [ + "sc", + "ary" + ], + [ + "distri", + "butions" + ], + [ + "Mountain", + "s" + ], + [ + "gr", + "ief" + ], + [ + "Co", + "oking" + ], + [ + "cont", + "acts" + ], + [ + "contro", + "versy" + ], + [ + "f", + "irs" + ], + [ + "pollut", + "ants" + ], + [ + "g", + "astro" + ], + [ + "concat", + "en" + ], + [ + "th", + "rown" + ], + [ + "spe", + "aks" + ], + [ + "Dom", + "in" + ], + [ + "bo", + "ot" + ], + [ + "Tradi", + "tion" + ], + [ + "lawy", + "ers" + ], + [ + "metaph", + "or" + ], + [ + "necessit", + "ates" + ], + [ + "E", + "ric" + ], + [ + "w", + "eld" + ], + [ + "mel", + "ting" + ], + [ + "G", + "am" + ], + [ + "Ch", + "ap" + ], + [ + "Ger", + "mans" + ], + [ + "ches", + "ter" + ], + [ + "strict", + "ly" + ], + [ + "In", + "side" + ], + [ + "colle", + "ctively" + ], + [ + "quanti", + "tative" + ], + [ + "trans", + "pose" + ], + [ + "Ingredi", + "ents" + ], + [ + "for", + "gotten" + ], + [ + "ãĢ", + "ģ" + ], + [ + "S", + "ah" + ], + [ + "Fr", + "ont" + ], + [ + "lif", + "elong" + ], + [ + "scr", + "ut" + ], + [ + "ins", + "ic" + ], + [ + "ne", + "o" + ], + [ + "li", + "a" + ], + [ + "]Ġ", + "[" + ], + [ + "Over", + "all" + ], + [ + "epsil", + "on" + ], + [ + "si", + "le" + ], + [ + "c", + "ust" + ], + [ + "Im", + "prove" + ], + [ + "tour", + "nament" + ], + [ + "A", + "str" + ], + [ + "d", + "an" + ], + [ + "re", + "gex" + ], + [ + "JS", + "ON" + ], + [ + "Cli", + "ent" + ], + [ + "ed", + "y" + ], + [ + "sec", + "ular" + ], + [ + "modif", + "ication" + ], + [ + "dialog", + "ues" + ], + [ + "To", + "o" + ], + [ + "com", + "pos" + ], + [ + "af", + "ting" + ], + [ + "j", + "ury" + ], + [ + "refin", + "ing" + ], + [ + "None", + "theless" + ], + [ + "Ñĩ", + "иÑģ" + ], + [ + "B", + "BC" + ], + [ + "fi", + "bon" + ], + [ + "bu", + "ck" + ], + [ + "br", + "ighter" + ], + [ + "the", + "dr" + ], + [ + "pot", + "assium" + ], + [ + "cred", + "ited" + ], + [ + "el", + "astic" + ], + [ + "Lo", + "op" + ], + [ + "Part", + "ners" + ], + [ + "recru", + "it" + ], + [ + "id", + "ae" + ], + [ + "ances", + "tral" + ], + [ + "con", + "form" + ], + [ + "compati", + "bility" + ], + [ + "S", + "el" + ], + [ + "j", + "ack" + ], + [ + "Datab", + "ase" + ], + [ + "competi", + "tions" + ], + [ + "a", + "us" + ], + [ + "li", + "er" + ], + [ + "host", + "ing" + ], + [ + "Cele", + "br" + ], + [ + "Å", + "Ĥ" + ], + [ + "pl", + "astics" + ], + [ + "pre", + "stig" + ], + [ + "en", + "chant" + ], + [ + "cr", + "ises" + ], + [ + "(", + "\\" + ], + [ + "čĊĉĉ", + "ĉ" + ], + [ + "cul", + "min" + ], + [ + "Gh", + "ana" + ], + [ + "span", + "ning" + ], + [ + "S", + "now" + ], + [ + "A", + "V" + ], + [ + "secur", + "ing" + ], + [ + "л", + "Ñı" + ], + [ + "pres", + "idential" + ], + [ + "compar", + "able" + ], + [ + "al", + "titude" + ], + [ + "Scre", + "en" + ], + [ + "instru", + "mental" + ], + [ + "F", + "ried" + ], + [ + "Histor", + "ic" + ], + [ + "si", + "us" + ], + [ + "tric", + "ks" + ], + [ + "er", + "to" + ], + [ + "Str", + "ate" + ], + [ + "R", + "ound" + ], + [ + "com", + "promising" + ], + [ + "Fil", + "ter" + ], + [ + "conc", + "ise" + ], + [ + "o", + "a" + ], + [ + "paralle", + "ls" + ], + [ + "m", + "ult" + ], + [ + "accum", + "ulation" + ], + [ + "satell", + "ites" + ], + [ + "D", + "ays" + ], + [ + "por", + "ter" + ], + [ + "rab", + "bit" + ], + [ + "Priv", + "ate" + ], + [ + "me", + "teor" + ], + [ + "con", + "ceptions" + ], + [ + ",Ġ", + "$" + ], + [ + "See", + "ing" + ], + [ + "Con", + "vert" + ], + [ + "tra", + "verse" + ], + [ + "g", + "ross" + ], + [ + "inform", + "al" + ], + [ + "config", + "ure" + ], + [ + "Poli", + "tics" + ], + [ + "'", + "{" + ], + [ + "inj", + "ection" + ], + [ + "Mon", + "itoring" + ], + [ + "indic", + "ator" + ], + [ + "H", + "ub" + ], + [ + "inter", + "disciplinary" + ], + [ + "Ù", + "Ħ" + ], + [ + "Que", + "ens" + ], + [ + "stri", + "kes" + ], + [ + "differ", + "ential" + ], + [ + "t", + "am" + ], + [ + "pse", + "ud" + ], + [ + ">", + "<" + ], + [ + "Plan", + "et" + ], + [ + "up", + "un" + ], + [ + "touch", + "ing" + ], + [ + "S", + "ally" + ], + [ + "m", + "d" + ], + [ + "curren", + "cies" + ], + [ + "At", + "t" + ], + [ + "colonial", + "ism" + ], + [ + "car", + "b" + ], + [ + "wed", + "ding" + ], + [ + "lo", + "v" + ], + [ + "S", + "ent" + ], + [ + "Th", + "ursday" + ], + [ + "super", + "hero" + ], + [ + "L", + "am" + ], + [ + "In", + "sur" + ], + [ + "Ro", + "ot" + ], + [ + "De", + "ad" + ], + [ + "conf", + "idential" + ], + [ + "BC", + "E" + ], + [ + "initi", + "ated" + ], + [ + "fric", + "tion" + ], + [ + "Mag", + "ic" + ], + [ + "unders", + "cores" + ], + [ + "sub", + "j" + ], + [ + "fin", + "ity" + ], + [ + "spiritual", + "ity" + ], + [ + "Pur", + "pose" + ], + [ + "v", + "or" + ], + [ + "ex", + "changes" + ], + [ + "dis", + "cer" + ], + [ + "P", + "ha" + ], + [ + "We", + "ather" + ], + [ + "n", + "m" + ], + [ + "ine", + "a" + ], + [ + "dis", + "abled" + ], + [ + "B", + "ed" + ], + [ + "environment", + "ally" + ], + [ + "G", + "y" + ], + [ + "gl", + "ue" + ], + [ + "sp", + "ont" + ], + [ + "therap", + "ists" + ], + [ + "ate", + "ur" + ], + [ + "per", + "me" + ], + [ + "appear", + "ances" + ], + [ + "--------", + "---" + ], + [ + "motiv", + "ations" + ], + [ + "think", + "ers" + ], + [ + "Oper", + "ation" + ], + [ + "refin", + "ed" + ], + [ + "des", + "truc" + ], + [ + "For", + "tun" + ], + [ + "Corpor", + "ation" + ], + [ + "T", + "ensor" + ], + [ + "maintain", + "s" + ], + [ + "sy", + "nony" + ], + [ + "v", + "ag" + ], + [ + "sc", + "issors" + ], + [ + "off", + "spring" + ], + [ + "may", + "or" + ], + [ + "grap", + "ple" + ], + [ + "le", + "ather" + ], + [ + "ìĭ", + "ľ" + ], + [ + "D", + "ry" + ], + [ + "fat", + "al" + ], + [ + "break", + "down" + ], + [ + "Lo", + "ad" + ], + [ + "?", + "?" + ], + [ + "mo", + "id" + ], + [ + "dec", + "ides" + ], + [ + "ë", + "¶" + ], + [ + "empower", + "ment" + ], + [ + "Am", + "endment" + ], + [ + "distingu", + "ished" + ], + [ + "Lay", + "er" + ], + [ + "B", + "eng" + ], + [ + "ul", + "ator" + ], + [ + "work", + "force" + ], + [ + "contr", + "ary" + ], + [ + "Tues", + "day" + ], + [ + "Sol", + "utions" + ], + [ + "hun", + "t" + ], + [ + "neuro", + "logical" + ], + [ + "ÃŃ", + "a" + ], + [ + "Strate", + "gy" + ], + [ + "decre", + "asing" + ], + [ + "poor", + "ly" + ], + [ + "Chall", + "enge" + ], + [ + "occas", + "ions" + ], + [ + "Exact", + "ly" + ], + [ + "v", + "ars" + ], + [ + "persist", + "ence" + ], + [ + "%", + "(" + ], + [ + "to", + "mb" + ], + [ + "S", + "ources" + ], + [ + "lin", + "king" + ], + [ + "stro", + "kes" + ], + [ + "ex", + "otic" + ], + [ + "E", + "dition" + ], + [ + "p", + "ent" + ], + [ + "is", + "o" + ], + [ + "forest", + "ation" + ], + [ + "Publ", + "ished" + ], + [ + "<", + "=" + ], + [ + "Cy", + "ber" + ], + [ + "Ad", + "ams" + ], + [ + "Fe", + "ature" + ], + [ + "fluctu", + "ations" + ], + [ + "separ", + "ately" + ], + [ + "P", + "ub" + ], + [ + "Nor", + "way" + ], + [ + "S", + "election" + ], + [ + "ic", + "tive" + ], + [ + "Al", + "pha" + ], + [ + ";", + "\"" + ], + [ + "in", + "di" + ], + [ + "onym", + "ous" + ], + [ + "ìĿ", + "Ģ" + ], + [ + "sign", + "aling" + ], + [ + "over", + "night" + ], + [ + "tun", + "nel" + ], + [ + "index", + "es" + ], + [ + "reli", + "ed" + ], + [ + "E", + "aster" + ], + [ + "weight", + "ed" + ], + [ + "r", + "ons" + ], + [ + "Lim", + "it" + ], + [ + "y", + "y" + ], + [ + "not", + "ably" + ], + [ + "hang", + "ing" + ], + [ + "op", + "posing" + ], + [ + "Del", + "ta" + ], + [ + "Dire", + "ctions" + ], + [ + "le", + "ge" + ], + [ + "Tenn", + "es" + ], + [ + "Health", + "care" + ], + [ + "zz", + "le" + ], + [ + "stret", + "ching" + ], + [ + "wood", + "s" + ], + [ + "rhe", + "tor" + ], + [ + "Arti", + "sts" + ], + [ + "New", + "ton" + ], + [ + "fe", + "ine" + ], + [ + "incenti", + "ves" + ], + [ + "central", + "ized" + ], + [ + "G", + "H" + ], + [ + "ci", + "ve" + ], + [ + "accident", + "ally" + ], + [ + "over", + "looked" + ], + [ + "Typ", + "ically" + ], + [ + "ned", + "y" + ], + [ + "Fun", + "ctions" + ], + [ + "Mathemat", + "ics" + ], + [ + "det", + "ective" + ], + [ + "archae", + "ological" + ], + [ + "ethnic", + "ity" + ], + [ + "con", + "vention" + ], + [ + "T", + "ow" + ], + [ + "ard", + "o" + ], + [ + "in", + "direct" + ], + [ + "Con", + "ver" + ], + [ + "met", + "all" + ], + [ + "ain", + "ed" + ], + [ + "str", + "at" + ], + [ + "ler", + "y" + ], + [ + "re", + "covered" + ], + [ + "H", + "ad" + ], + [ + "Z", + "o" + ], + [ + ":Ġ", + "#" + ], + [ + "ob", + "sc" + ], + [ + "back", + "up" + ], + [ + "dict", + "ate" + ], + [ + "method", + "ologies" + ], + [ + "ur", + "gent" + ], + [ + "R", + "N" + ], + [ + "rest", + "ored" + ], + [ + "ad", + "mir" + ], + [ + "Man", + "aging" + ], + [ + "o", + "dies" + ], + [ + "experiment", + "ing" + ], + [ + "seam", + "less" + ], + [ + "Ar", + "chi" + ], + [ + "In", + "dependence" + ], + [ + "concl", + "ude" + ], + [ + "liber", + "ty" + ], + [ + "E", + "ST" + ], + [ + "S", + "ig" + ], + [ + "u", + "tical" + ], + [ + "be", + "et" + ], + [ + "ful", + "filling" + ], + [ + "ens", + "is" + ], + [ + "deem", + "ed" + ], + [ + "fet", + "ch" + ], + [ + ".Ġ", + "&Ġ" + ], + [ + "b", + "ial" + ], + [ + "B", + "ush" + ], + [ + "am", + "ents" + ], + [ + "Mot", + "or" + ], + [ + "H", + "ans" + ], + [ + "Lo", + "oking" + ], + [ + "P", + "I" + ], + [ + "con", + "sole" + ], + [ + "sel", + "ine" + ], + [ + "coun", + "ties" + ], + [ + "esti", + "al" + ], + [ + "ro", + "cket" + ], + [ + "exhib", + "its" + ], + [ + "clin", + "ic" + ], + [ + "A", + "ch" + ], + [ + "govern", + "mental" + ], + [ + "==", + "\"" + ], + [ + "thin", + "ks" + ], + [ + "arrest", + "ed" + ], + [ + "D", + "ial" + ], + [ + "est", + "ones" + ], + [ + "protagon", + "ist" + ], + [ + "}", + "\"." + ], + [ + "frag", + "ments" + ], + [ + "gau", + "ge" + ], + [ + "cal", + "e" + ], + [ + "fron", + "tier" + ], + [ + "pen", + "al" + ], + [ + "no", + "ble" + ], + [ + "l", + "b" + ], + [ + "list", + "e" + ], + [ + "ç", + "İ" + ], + [ + "quer", + "ies" + ], + [ + "Io", + "T" + ], + [ + "inter", + "faces" + ], + [ + "B", + "each" + ], + [ + "I", + "owa" + ], + [ + "Relig", + "ion" + ], + [ + "ex", + "pose" + ], + [ + "sw", + "ing" + ], + [ + "R", + "IGHT" + ], + [ + "Louis", + "iana" + ], + [ + "ly", + "n" + ], + [ + ":ĠĠĠĠĠĠĠĠ", + "Ġ" + ], + [ + "decor", + "ative" + ], + [ + "Wed", + "nesday" + ], + [ + "Juda", + "ism" + ], + [ + "h", + "ire" + ], + [ + "And", + "erson" + ], + [ + "V", + "ery" + ], + [ + "pr", + "ies" + ], + [ + "grocer", + "y" + ], + [ + "l", + "ion" + ], + [ + "Test", + "Case" + ], + [ + "i", + "encies" + ], + [ + "Program", + "ming" + ], + [ + "volcan", + "ic" + ], + [ + "st", + "ur" + ], + [ + "complement", + "ary" + ], + [ + "ë", + "ª" + ], + [ + "um", + "i" + ], + [ + "M", + "IN" + ], + [ + "N", + "ich" + ], + [ + "W", + "ol" + ], + [ + "sol", + "o" + ], + [ + "Par", + "ser" + ], + [ + "Austr", + "ia" + ], + [ + "i", + "ors" + ], + [ + "cryst", + "als" + ], + [ + "ä", + "¼" + ], + [ + "hor", + "ror" + ], + [ + "consist", + "ed" + ], + [ + "tut", + "or" + ], + [ + "B", + "run" + ], + [ + "S", + "ER" + ], + [ + "your", + "s" + ], + [ + "Cast", + "le" + ], + [ + "ur", + "istic" + ], + [ + "sh", + "a" + ], + [ + "config", + "ur" + ], + [ + "fic", + "iency" + ], + [ + "responsib", + "ly" + ], + [ + "mone", + "tary" + ], + [ + "En", + "joy" + ], + [ + "Exec", + "utive" + ], + [ + "Q", + "ual" + ], + [ + "fl", + "av" + ], + [ + "sl", + "op" + ], + [ + "At", + "l" + ], + [ + "pan", + "cre" + ], + [ + "trans", + "it" + ], + [ + "shell", + "s" + ], + [ + "ul", + "as" + ], + [ + "di", + "p" + ], + [ + "ä»", + "¥" + ], + [ + "A", + "ut" + ], + [ + "mel", + "an" + ], + [ + "cl", + "f" + ], + [ + "diges", + "tion" + ], + [ + "cali", + "br" + ], + [ + "Tennes", + "see" + ], + [ + "achel", + "or" + ], + [ + "Anim", + "als" + ], + [ + "Al", + "len" + ], + [ + "autonom", + "ous" + ], + [ + "ho", + "ok" + ], + [ + "t", + "el" + ], + [ + "W", + "on" + ], + [ + "firs", + "thand" + ], + [ + "In", + "sert" + ], + [ + "Em", + "ma" + ], + [ + "poly", + "nomial" + ], + [ + "in", + "timate" + ], + [ + "Ar", + "tific" + ], + [ + "inst", + "antly" + ], + [ + "head", + "aches" + ], + [ + "opath", + "y" + ], + [ + "cross", + "ed" + ], + [ + "Class", + "ifier" + ], + [ + "inser", + "tion" + ], + [ + "c", + "ows" + ], + [ + "Bangl", + "adesh" + ], + [ + "perform", + "s" + ], + [ + "ten", + "se" + ], + [ + "ak", + "ers" + ], + [ + "Vers", + "ion" + ], + [ + "r", + "ats" + ], + [ + "ac", + "ular" + ], + [ + "compar", + "ative" + ], + [ + "Fri", + "ends" + ], + [ + "Ch", + "ris" + ], + [ + "char", + "ity" + ], + [ + "gl", + "uten" + ], + [ + "K", + "at" + ], + [ + "Al", + "ab" + ], + [ + "Behavi", + "or" + ], + [ + "Orig", + "inal" + ], + [ + "tele", + "phone" + ], + [ + "T", + "ell" + ], + [ + "her", + "b" + ], + [ + "S", + "hel" + ], + [ + "regul", + "ating" + ], + [ + "Clar", + "k" + ], + [ + "for", + "given" + ], + [ + "soldi", + "er" + ], + [ + "aven", + "ues" + ], + [ + "r", + "ams" + ], + [ + "s", + "ati" + ], + [ + "approach", + "ing" + ], + [ + "Philos", + "ophy" + ], + [ + "sculpt", + "ures" + ], + [ + "prevent", + "ed" + ], + [ + "susp", + "ected" + ], + [ + "åĢ", + "¼" + ], + [ + "ga", + "str" + ], + [ + "Reg", + "ister" + ], + [ + "sand", + "wich" + ], + [ + "Lu", + "cy" + ], + [ + "commem", + "or" + ], + [ + "Treat", + "y" + ], + [ + "-", + "Ġ(" + ], + [ + "Pol", + "ice" + ], + [ + "investig", + "ated" + ], + [ + "conver", + "ts" + ], + [ + "po", + "cket" + ], + [ + "method", + "ology" + ], + [ + "render", + "ed" + ], + [ + "so", + "red" + ], + [ + "els", + "on" + ], + [ + "z", + "inc" + ], + [ + "out", + "lines" + ], + [ + "licens", + "ed" + ], + [ + "sc", + "aling" + ], + [ + "short", + "ly" + ], + [ + "compe", + "t" + ], + [ + "Mob", + "ile" + ], + [ + "ul", + "tra" + ], + [ + "High", + "er" + ], + [ + "guess", + "ed" + ], + [ + "punctu", + "ation" + ], + [ + "e", + "ing" + ], + [ + "fol", + "i" + ], + [ + "res", + "idence" + ], + [ + "Chann", + "el" + ], + [ + "ag", + "le" + ], + [ + "six", + "th" + ], + [ + "Publ", + "ishing" + ], + [ + "cor", + "rection" + ], + [ + "Ä", + "«" + ], + [ + "galax", + "ies" + ], + [ + "Mar", + "g" + ], + [ + "G", + "round" + ], + [ + "in", + "quiry" + ], + [ + "sim", + "plicity" + ], + [ + "appreci", + "ated" + ], + [ + "em", + "plo" + ], + [ + "ep", + "i" + ], + [ + "Ham", + "ilton" + ], + [ + "ann", + "y" + ], + [ + "cap", + "ability" + ], + [ + "mid", + "st" + ], + [ + "um", + "ped" + ], + [ + "G", + "ro" + ], + [ + "To", + "ol" + ], + [ + "prob", + "abilities" + ], + [ + "S", + "U" + ], + [ + "co", + "aches" + ], + [ + "sing", + "ular" + ], + [ + "susp", + "ect" + ], + [ + "ne", + "um" + ], + [ + "I", + "B" + ], + [ + "rens", + "ic" + ], + [ + "tou", + "ched" + ], + [ + "Initial", + "ize" + ], + [ + "kn", + "ife" + ], + [ + "hom", + "eless" + ], + [ + "ar", + "ange" + ], + [ + "compar", + "isons" + ], + [ + "appl", + "iances" + ], + [ + "Y", + "u" + ], + [ + "g", + "land" + ], + [ + "in", + "hal" + ], + [ + "op", + "a" + ], + [ + "exam", + "s" + ], + [ + "Sw", + "iss" + ], + [ + "identi", + "fies" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ" + ], + [ + "Pre", + "vious" + ], + [ + "M", + "AT" + ], + [ + "philosoph", + "ers" + ], + [ + "recept", + "or" + ], + [ + ")Ġ", + "!=Ġ" + ], + [ + "re", + "cre" + ], + [ + "w", + "ilder" + ], + [ + "sp", + "ons" + ], + [ + "contem", + "pl" + ], + [ + "be", + "auti" + ], + [ + "intention", + "ally" + ], + [ + "Gen", + "esis" + ], + [ + "concentr", + "ate" + ], + [ + "Gall", + "ery" + ], + [ + "ab", + "sent" + ], + [ + "Ken", + "nedy" + ], + [ + "in", + "scri" + ], + [ + "r", + "amid" + ], + [ + "ust", + "er" + ], + [ + "Mo", + "le" + ], + [ + "Dec", + "lar" + ], + [ + "E", + "mail" + ], + [ + "my", + "ths" + ], + [ + "jud", + "icial" + ], + [ + "No", + "tice" + ], + [ + "dom", + "inal" + ], + [ + "Collabor", + "ation" + ], + [ + "prev", + "ailing" + ], + [ + "en", + "ic" + ], + [ + "an", + "as" + ], + [ + "dies", + "el" + ], + [ + "tru", + "ths" + ], + [ + "Scal", + "e" + ], + [ + "Â", + "·" + ], + [ + "period", + "ic" + ], + [ + "PTS", + "D" + ], + [ + "philos", + "opher" + ], + [ + "s", + "oda" + ], + [ + "Aff", + "airs" + ], + [ + "prejud", + "ice" + ], + [ + "Mar", + "keting" + ], + [ + "Ð", + "¡" + ], + [ + "tr", + "aces" + ], + [ + "Rec", + "om" + ], + [ + "Aborig", + "inal" + ], + [ + "hierarch", + "y" + ], + [ + "Play", + "ers" + ], + [ + "b", + "locking" + ], + [ + "le", + "tal" + ], + [ + "carri", + "er" + ], + [ + "cigaret", + "tes" + ], + [ + "Gu", + "ess" + ], + [ + "am", + "ation" + ], + [ + "ater", + "al" + ], + [ + "cur", + "ves" + ], + [ + "catch", + "ing" + ], + [ + "ĊĠĠĠĠĠĠĠĠ", + "ĠĠĠ" + ], + [ + "Sh", + "ip" + ], + [ + "ju", + "ana" + ], + [ + "bl", + "ast" + ], + [ + "()", + "[" + ], + [ + "Con", + "cer" + ], + [ + "dead", + "ly" + ], + [ + "organ", + "isation" + ], + [ + "recre", + "ational" + ], + [ + "ins", + "ulation" + ], + [ + "vent", + "ures" + ], + [ + "T", + "ag" + ], + [ + "Ġ", + "'Ġ" + ], + [ + "disrup", + "t" + ], + [ + "DO", + "WN" + ], + [ + "Mem", + "orial" + ], + [ + "kno", + "ck" + ], + [ + "Recogn", + "izing" + ], + [ + "withdraw", + "al" + ], + [ + "Br", + "ig" + ], + [ + "D", + "ir" + ], + [ + ")Ġ", + "||Ġ" + ], + [ + "å¯", + "¹" + ], + [ + "dis", + "advantages" + ], + [ + "Artific", + "ial" + ], + [ + "b", + "ass" + ], + [ + "sp", + "am" + ], + [ + "car", + "go" + ], + [ + "rul", + "er" + ], + [ + "pac", + "ket" + ], + [ + "ev", + "oke" + ], + [ + "s", + "lower" + ], + [ + "pen", + "alty" + ], + [ + "Ar", + "k" + ], + [ + "w", + "ounds" + ], + [ + "pro", + "lif" + ], + [ + "assist", + "ed" + ], + [ + "intim", + "id" + ], + [ + "du", + "plicate" + ], + [ + "Works", + "he" + ], + [ + "condition", + "ing" + ], + [ + "pro", + "d" + ], + [ + "AR", + "S" + ], + [ + "ar", + "om" + ], + [ + "clar", + "ify" + ], + [ + "g", + "olf" + ], + [ + "åĪ", + "Ĩ" + ], + [ + "fun", + "ny" + ], + [ + "nutri", + "tious" + ], + [ + "s", + "word" + ], + [ + "Car", + "l" + ], + [ + "Fe", + "b" + ], + [ + "tr", + "apped" + ], + [ + "col", + "oring" + ], + [ + "\"Ġ", + "%Ġ(" + ], + [ + "Conn", + "ect" + ], + [ + "k", + "el" + ], + [ + "imp", + "aired" + ], + [ + "Individ", + "uals" + ], + [ + "U", + "tah" + ], + [ + "Commun", + "ities" + ], + [ + "iz", + "able" + ], + [ + "ev", + "ac" + ], + [ + "nd", + "array" + ], + [ + "pic", + "king" + ], + [ + "ex", + "cer" + ], + [ + "dep", + "icting" + ], + [ + "PO", + "ST" + ], + [ + "T", + "Y" + ], + [ + "N", + "U" + ], + [ + "od", + "ing" + ], + [ + "pon", + "der" + ], + [ + "advance", + "ment" + ], + [ + "Ev", + "ents" + ], + [ + "'", + "),Ġ" + ], + [ + "Ar", + "med" + ], + [ + "be", + "half" + ], + [ + "ow", + "ed" + ], + [ + "calcul", + "ator" + ], + [ + "Pot", + "ential" + ], + [ + "bus", + "h" + ], + [ + "E", + "ye" + ], + [ + "K", + "ind" + ], + [ + "ch", + "en" + ], + [ + "super", + "vision" + ], + [ + "imag", + "inary" + ], + [ + "D", + "ak" + ], + [ + "re", + "bel" + ], + [ + "tre", + "mend" + ], + [ + "Ñģ", + "Ñı" + ], + [ + "cor", + "responds" + ], + [ + "~~~~", + "~~~~" + ], + [ + "val", + "ry" + ], + [ + "destruc", + "tive" + ], + [ + "Ph", + "arm" + ], + [ + "pene", + "tr" + ], + [ + "pay", + "load" + ], + [ + "stay", + "ed" + ], + [ + "che", + "aper" + ], + [ + "curren", + "ts" + ], + [ + "P", + "ER" + ], + [ + "elim", + "inating" + ], + [ + "me", + "ats" + ], + [ + "Sy", + "d" + ], + [ + "Guid", + "eline" + ], + [ + "#ĠĠĠĠĠĠĠĠ", + "ĠĠĠĠĠ" + ], + [ + "wik", + "i" + ], + [ + "de", + "terior" + ], + [ + "lect", + "ure" + ], + [ + "clim", + "b" + ], + [ + "calcul", + "ates" + ], + [ + "Proble", + "ms" + ], + [ + "B", + "ST" + ], + [ + "Alab", + "ama" + ], + [ + "Mos", + "cow" + ], + [ + "Tai", + "wan" + ], + [ + "Signific", + "ance" + ], + [ + "the", + "ore" + ], + [ + "certific", + "ation" + ], + [ + "sure", + "ly" + ], + [ + "иÑĤ", + "е" + ], + [ + "################################", + "################################" + ], + [ + "Adap", + "t" + ], + [ + "de", + "crypt" + ], + [ + "Bal", + "ancing" + ], + [ + "sur", + "name" + ], + [ + "wis", + "ely" + ], + [ + "juris", + "diction" + ], + [ + ":", + "||" + ], + [ + "influen", + "za" + ], + [ + "at", + "ories" + ], + [ + "inst", + "ein" + ], + [ + "C", + "F" + ], + [ + "So", + "il" + ], + [ + "astr", + "on" + ], + [ + "folk", + "lore" + ], + [ + "pursu", + "its" + ], + [ + "proj", + "ection" + ], + [ + "Fa", + "ith" + ], + [ + "d", + "as" + ], + [ + "rad", + "ar" + ], + [ + "du", + "p" + ], + [ + "assess", + "ed" + ], + [ + "es", + "ar" + ], + [ + "wrap", + "per" + ], + [ + "j", + "umping" + ], + [ + "def", + "ensive" + ], + [ + "Inte", + "ger" + ], + [ + "D", + "V" + ], + [ + "happ", + "ier" + ], + [ + ".", + "/" + ], + [ + "tr", + "ash" + ], + [ + "Spl", + "it" + ], + [ + "G", + "ree" + ], + [ + "ri", + "e" + ], + [ + "ol", + "ine" + ], + [ + "K", + "ur" + ], + [ + "sug", + "ars" + ], + [ + "pre", + "n" + ], + [ + "C", + "hair" + ], + [ + "ex", + "pr" + ], + [ + "}", + "Ġ{" + ], + [ + "Ġ>", + ">>Ġ" + ], + [ + "R", + "GB" + ], + [ + "mi", + "to" + ], + [ + "tem", + "ples" + ], + [ + "Integr", + "ation" + ], + [ + "dur", + "ability" + ], + [ + "Victor", + "ian" + ], + [ + "B", + "ap" + ], + [ + "Pat", + "rick" + ], + [ + "fol", + "ds" + ], + [ + "S", + "ad" + ], + [ + "st", + "ating" + ], + [ + "Char", + "acters" + ], + [ + "tempor", + "arily" + ], + [ + "upun", + "cture" + ], + [ + "Encycl", + "opedia" + ], + [ + "l", + "t" + ], + [ + "H", + "ou" + ], + [ + "J", + "ake" + ], + [ + "he", + "it" + ], + [ + "met", + "res" + ], + [ + "Prog", + "ress" + ], + [ + "manufact", + "ure" + ], + [ + "ide", + "ologies" + ], + [ + "ang", + "es" + ], + [ + "No", + "vel" + ], + [ + "il", + "ty" + ], + [ + "im", + "ply" + ], + [ + "n", + "ie" + ], + [ + "Gr", + "am" + ], + [ + "symbol", + "ism" + ], + [ + "ma", + "thematic" + ], + [ + "fibon", + "acci" + ], + [ + "in", + "finite" + ], + [ + "r", + "m" + ], + [ + "íķ", + "´" + ], + [ + "an", + "ic" + ], + [ + "pe", + "ek" + ], + [ + "v", + "ascular" + ], + [ + "out", + "standing" + ], + [ + "Th", + "read" + ], + [ + "F", + "ab" + ], + [ + "In", + "sp" + ], + [ + "est", + "a" + ], + [ + "un", + "healthy" + ], + [ + "ast", + "ical" + ], + [ + "fif", + "ty" + ], + [ + "um", + "ber" + ], + [ + "ac", + "on" + ], + [ + "Br", + "ad" + ], + [ + "se", + "mic" + ], + [ + "avoid", + "ed" + ], + [ + "consider", + "ably" + ], + [ + "respon", + "sive" + ], + [ + "u", + "be" + ], + [ + "Fl", + "u" + ], + [ + "pass", + "words" + ], + [ + "sl", + "ides" + ], + [ + "wr", + "apped" + ], + [ + "lif", + "es" + ], + [ + "f", + "ighters" + ], + [ + "comp", + "ul" + ], + [ + "access", + "ories" + ], + [ + "Reser", + "ve" + ], + [ + "former", + "ly" + ], + [ + "ĊĠ", + "ĊĠ" + ], + [ + "qu", + "ad" + ], + [ + "establish", + "ments" + ], + [ + "fru", + "stration" + ], + [ + "Hum", + "ans" + ], + [ + "Tor", + "onto" + ], + [ + "My", + "ster" + ], + [ + "ing", + "en" + ], + [ + "comfort", + "ably" + ], + [ + "suppl", + "iers" + ], + [ + "ch", + "ond" + ], + [ + "Consider", + "ations" + ], + [ + "k", + "h" + ], + [ + "ambi", + "tious" + ], + [ + "Go", + "als" + ], + [ + "B", + "ib" + ], + [ + "K", + "it" + ], + [ + "inst", + "ability" + ], + [ + "ense", + "m" + ], + [ + "Incre", + "ased" + ], + [ + "bo", + "died" + ], + [ + "cost", + "ly" + ], + [ + "xt", + "ures" + ], + [ + "grap", + "pling" + ], + [ + "lever", + "age" + ], + [ + "lin", + "s" + ], + [ + "M", + "ember" + ], + [ + "se", + "vent" + ], + [ + "am", + "os" + ], + [ + "inter", + "ven" + ], + [ + "ig", + "a" + ], + [ + "S", + "ax" + ], + [ + "go", + "ogle" + ], + [ + "text", + "ures" + ], + [ + "administr", + "ators" + ], + [ + "fr", + "anch" + ], + [ + "col", + "ours" + ], + [ + "gr", + "ate" + ], + [ + "em", + "bar" + ], + [ + "cosm", + "ic" + ], + [ + "C", + "iti" + ], + [ + "in", + "spection" + ], + [ + "P", + "in" + ], + [ + "assum", + "ing" + ], + [ + "off", + "s" + ], + [ + "l", + "ings" + ], + [ + "travel", + "ers" + ], + [ + "vac", + "ation" + ], + [ + "chrom", + "osome" + ], + [ + "w", + "ol" + ], + [ + "s", + "aves" + ], + [ + "P", + "ic" + ], + [ + "Cogn", + "itive" + ], + [ + "']", + "[" + ], + [ + "Lu", + "ke" + ], + [ + "recur", + "ring" + ], + [ + "Hawai", + "i" + ], + [ + "B", + "Y" + ], + [ + "compet", + "ence" + ], + [ + "m", + "ia" + ], + [ + "L", + "ank" + ], + [ + "galax", + "y" + ], + [ + "pra", + "ise" + ], + [ + "'", + "]Ġ" + ], + [ + "B", + "ear" + ], + [ + "ath", + "lete" + ], + [ + "Publ", + "ish" + ], + [ + "war", + "nings" + ], + [ + "B", + "ound" + ], + [ + "per", + "mitted" + ], + [ + "repe", + "ating" + ], + [ + "vi", + "al" + ], + [ + "r", + "b" + ], + [ + "D", + "a" + ], + [ + "Let", + "ters" + ], + [ + "epide", + "mic" + ], + [ + "stig", + "ma" + ], + [ + "DAT", + "A" + ], + [ + "ag", + "ar" + ], + [ + "ch", + "ess" + ], + [ + "sim", + "ulate" + ], + [ + "bi", + "of" + ], + [ + "r", + "ho" + ], + [ + "employ", + "er" + ], + [ + "CS", + "V" + ], + [ + "traged", + "y" + ], + [ + "vel", + "t" + ], + [ + "G", + "I" + ], + [ + "ev", + "able" + ], + [ + "cher", + "ished" + ], + [ + "è¾", + "ĵ" + ], + [ + "Relig", + "ious" + ], + [ + "H", + "ous" + ], + [ + "im", + "prison" + ], + [ + "ge", + "vity" + ], + [ + "Or", + "thodox" + ], + [ + "C", + "RE" + ], + [ + "Leaders", + "hip" + ], + [ + "mon", + "ster" + ], + [ + "gart", + "en" + ], + [ + "com", + "posite" + ], + [ + "pe", + "an" + ], + [ + "strength", + "ens" + ], + [ + "Sw", + "itzer" + ], + [ + "beli", + "eving" + ], + [ + "fit", + "ted" + ], + [ + "ad", + "di" + ], + [ + "con", + "ception" + ], + [ + "ap", + "o" + ], + [ + "asy", + "nc" + ], + [ + "R", + "ace" + ], + [ + "B", + "U" + ], + [ + "L", + "IN" + ], + [ + "æĪ", + "IJ" + ], + [ + "res", + "ume" + ], + [ + "adi", + "um" + ], + [ + "success", + "es" + ], + [ + "Br", + "on" + ], + [ + "Altern", + "atively" + ], + [ + "R", + "ac" + ], + [ + "dr", + "ying" + ], + [ + "(", + "['" + ], + [ + "O", + "liver" + ], + [ + "den", + "ied" + ], + [ + "Insur", + "ance" + ], + [ + "é", + "s" + ], + [ + "mi", + "stry" + ], + [ + "Ab", + "stract" + ], + [ + "accomplish", + "ments" + ], + [ + "sper", + "m" + ], + [ + "want", + "ing" + ], + [ + "ati", + "tis" + ], + [ + "mat", + "urity" + ], + [ + "Pu", + "erto" + ], + [ + "Syd", + "ney" + ], + [ + "compe", + "ten" + ], + [ + "w", + "olf" + ], + [ + "h", + "int" + ], + [ + "pt", + "on" + ], + [ + "aller", + "gy" + ], + [ + "Afghan", + "istan" + ], + [ + "teen", + "agers" + ], + [ + "pro", + "be" + ], + [ + "Ben", + "j" + ], + [ + "ä»", + "¶" + ], + [ + "cardi", + "ac" + ], + [ + "оÐ", + "¹" + ], + [ + "vari", + "ants" + ], + [ + "S", + "co" + ], + [ + "Ġ(", + "$" + ], + [ + "Individ", + "ual" + ], + [ + "proxim", + "ity" + ], + [ + "relax", + "ed" + ], + [ + "Ob", + "serv" + ], + [ + "([", + "[" + ], + [ + "=", + "['" + ], + [ + "en", + "si" + ], + [ + "res", + "ident" + ], + [ + "Mor", + "ris" + ], + [ + "ri", + "b" + ], + [ + "E", + "asy" + ], + [ + "N", + "an" + ], + [ + "ci", + "vic" + ], + [ + "in", + "hab" + ], + [ + "fin", + "ishing" + ], + [ + "make", + "up" + ], + [ + "acceler", + "ation" + ], + [ + "Mo", + "z" + ], + [ + "é", + "e" + ], + [ + "W", + "o" + ], + [ + "HT", + "TP" + ], + [ + "t", + "ended" + ], + [ + "G", + "oth" + ], + [ + "hop", + "ed" + ], + [ + "Ye", + "ah" + ], + [ + "pe", + "aks" + ], + [ + "cl", + "ause" + ], + [ + "åĪ", + "°" + ], + [ + "commission", + "ed" + ], + [ + "embr", + "aced" + ], + [ + "celebr", + "ations" + ], + [ + "Sil", + "ver" + ], + [ + "terror", + "ism" + ], + [ + "í", + "Ĭ" + ], + [ + "az", + "a" + ], + [ + "D", + "al" + ], + [ + "e", + "uro" + ], + [ + "cr", + "aw" + ], + [ + "S", + "oc" + ], + [ + "passeng", + "er" + ], + [ + "W", + "alter" + ], + [ + "Fortun", + "ately" + ], + [ + "ide", + "als" + ], + [ + "em", + "ade" + ], + [ + "cor", + "re" + ], + [ + "AC", + "E" + ], + [ + "Im", + "plications" + ], + [ + "Mater", + "ial" + ], + [ + "mer", + "cury" + ], + [ + "gu", + "ilt" + ], + [ + "off", + "ensive" + ], + [ + "Ti", + "bet" + ], + [ + "ad", + "mit" + ], + [ + "ext", + "ensively" + ], + [ + "Op", + "tions" + ], + [ + "Den", + "mark" + ], + [ + ")Ġ", + ":" + ], + [ + "Switzer", + "land" + ], + [ + "en", + "o" + ], + [ + "tail", + "s" + ], + [ + "caregi", + "vers" + ], + [ + "K", + "han" + ], + [ + "ail", + "and" + ], + [ + "Usu", + "ally" + ], + [ + "Ex", + "cel" + ], + [ + "god", + "dess" + ], + [ + "capital", + "ism" + ], + [ + "stim", + "ulation" + ], + [ + "ü", + "r" + ], + [ + "á", + "º" + ], + [ + "IT", + "Y" + ], + [ + "Pe", + "ters" + ], + [ + "Ste", + "ps" + ], + [ + "sol", + "u" + ], + [ + "S", + "low" + ], + [ + "r", + "if" + ], + [ + "åĪ", + "Ĺ" + ], + [ + "perm", + "its" + ], + [ + "////", + "////" + ], + [ + "n", + "els" + ], + [ + "Equip", + "ment" + ], + [ + "fr", + "actions" + ], + [ + "sw", + "ift" + ], + [ + "Sal", + "t" + ], + [ + "u", + "i" + ], + [ + "diarr", + "hea" + ], + [ + "G", + "ab" + ], + [ + "Econom", + "ics" + ], + [ + "Sched", + "ule" + ], + [ + "al", + "bums" + ], + [ + "igr", + "aph" + ], + [ + "cand", + "y" + ], + [ + "ol", + "as" + ], + [ + "e", + "igen" + ], + [ + "st", + "a" + ], + [ + "é", + "Ļ" + ], + [ + "em", + "body" + ], + [ + "Sh", + "ape" + ], + [ + "ban", + "ana" + ], + [ + "qu", + "ot" + ], + [ + "ace", + "ae" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ", + "Ġ" + ], + [ + "Uni", + "versal" + ], + [ + "Prepar", + "ation" + ], + [ + "thedr", + "al" + ], + [ + "step", + "ping" + ], + [ + "gene", + "tically" + ], + [ + "ol", + "ia" + ], + [ + "graph", + "ical" + ], + [ + "u", + "str" + ], + [ + "vel", + "i" + ], + [ + "F", + "if" + ], + [ + "í", + "ĺ" + ], + [ + "til", + "lery" + ], + [ + "sens", + "ing" + ], + [ + "En", + "tre" + ], + [ + "re", + "con" + ], + [ + "ed", + "itions" + ], + [ + "é", + "Ĺ" + ], + [ + "me", + "thane" + ], + [ + "learn", + "er" + ], + [ + "Histor", + "ically" + ], + [ + "co", + "conut" + ], + [ + "Pro", + "vince" + ], + [ + "trans", + "gender" + ], + [ + "on", + "i" + ], + [ + "`,Ġ", + "`" + ], + [ + "purch", + "ases" + ], + [ + "ìľ", + "¼" + ], + [ + "az", + "ine" + ], + [ + "Mi", + "ke" + ], + [ + "comp", + "iled" + ], + [ + "Brazil", + "ian" + ], + [ + "appe", + "tite" + ], + [ + "Ñģ", + "л" + ], + [ + "ad", + "as" + ], + [ + "Inter", + "action" + ], + [ + "V", + "O" + ], + [ + "sor", + "ting" + ], + [ + "Ve", + "hic" + ], + [ + "de", + "g" + ], + [ + "Categ", + "ory" + ], + [ + "el", + "ucid" + ], + [ + "sea", + "food" + ], + [ + "In", + "novation" + ], + [ + "antibio", + "tic" + ], + [ + "stream", + "ing" + ], + [ + "d", + "ining" + ], + [ + "Se", + "at" + ], + [ + "Ñ", + "ĸ" + ], + [ + "lower", + "case" + ], + [ + "Portu", + "gal" + ], + [ + "=", + "{" + ], + [ + "p", + "x" + ], + [ + "IS", + "O" + ], + [ + "Nep", + "al" + ], + [ + "ose", + "velt" + ], + [ + "safeguard", + "ing" + ], + [ + "Confl", + "ict" + ], + [ + "n", + "ights" + ], + [ + "block", + "ed" + ], + [ + "se", + "man" + ], + [ + "pr", + "ize" + ], + [ + "prom", + "in" + ], + [ + "switch", + "ing" + ], + [ + "')", + "," + ], + [ + "ph", + "an" + ], + [ + "E", + "ll" + ], + [ + "Qu", + "anti" + ], + [ + "f", + "ills" + ], + [ + "N", + "I" + ], + [ + "Th", + "ailand" + ], + [ + "d", + "op" + ], + [ + "b", + "ia" + ], + [ + "l", + "amp" + ], + [ + "horiz", + "ons" + ], + [ + "explo", + "sion" + ], + [ + "in", + "order" + ], + [ + "M", + "ade" + ], + [ + "earthqu", + "akes" + ], + [ + "t", + "ue" + ], + [ + "el", + "ite" + ], + [ + "Ro", + "ber" + ], + [ + "acqu", + "iring" + ], + [ + "stim", + "uli" + ], + [ + "pain", + "ter" + ], + [ + "Wa", + "it" + ], + [ + "contin", + "ually" + ], + [ + "delay", + "ed" + ], + [ + "in", + "car" + ], + [ + "Evalu", + "ation" + ], + [ + "war", + "mer" + ], + [ + "encour", + "agement" + ], + [ + "r", + "ated" + ], + [ + "ç", + "§" + ], + [ + "lin", + "der" + ], + [ + "M", + "igr" + ], + [ + "gl", + "as" + ], + [ + "fertili", + "zer" + ], + [ + "ather", + "ine" + ], + [ + "pot", + "ato" + ], + [ + "trou", + "bles" + ], + [ + "Distri", + "bution" + ], + [ + "Ġ+Ġ", + "'" + ], + [ + "B", + "ishop" + ], + [ + "i", + "vely" + ], + [ + "æ", + "¯" + ], + [ + "fortun", + "ate" + ], + [ + "ad", + "here" + ], + [ + "read", + "line" + ], + [ + "harness", + "ing" + ], + [ + "display", + "ing" + ], + [ + "sec", + "ured" + ], + [ + "sens", + "ation" + ], + [ + "ex", + "agger" + ], + [ + "toxic", + "ity" + ], + [ + "liqu", + "ids" + ], + [ + "comment", + "ary" + ], + [ + "r", + "ical" + ], + [ + "us", + "her" + ], + [ + "ì", + "Ĥ¬" + ], + [ + "Fe", + "ed" + ], + [ + "install", + "ing" + ], + [ + "Feel", + "ing" + ], + [ + "straight", + "forward" + ], + [ + "adul", + "thood" + ], + [ + "encrypt", + "ed" + ], + [ + "Dia", + "betes" + ], + [ + "con", + "ferences" + ], + [ + "L", + "ever" + ], + [ + "Ñ", + "į" + ], + [ + "ол", + "ÑĮ" + ], + [ + "D", + "ick" + ], + [ + "a", + "ults" + ], + [ + "ä", + "¿" + ], + [ + "è", + "¦" + ], + [ + "bi", + "e" + ], + [ + "sequ", + "ential" + ], + [ + "fl", + "ights" + ], + [ + "ex", + "er" + ], + [ + "invest", + "ed" + ], + [ + "S", + "L" + ], + [ + "p", + "ays" + ], + [ + "cel", + "estial" + ], + [ + "suppor", + "ters" + ], + [ + "l", + "ord" + ], + [ + "Sim", + "on" + ], + [ + "Ter", + "rit" + ], + [ + "precau", + "tions" + ], + [ + "tr", + "agic" + ], + [ + "mas", + "cul" + ], + [ + "hibi", + "tions" + ], + [ + "m", + "elt" + ], + [ + "T", + "I" + ], + [ + "not", + "ation" + ], + [ + "Temper", + "ature" + ], + [ + "FI", + "LE" + ], + [ + "custom", + "ized" + ], + [ + "ob", + "ia" + ], + [ + "Al", + "most" + ], + [ + "ran", + "king" + ], + [ + "assum", + "ption" + ], + [ + "tim", + "ber" + ], + [ + "hon", + "esty" + ], + [ + "mag", + "ne" + ], + [ + "gu", + "ilty" + ], + [ + "'", + "}" + ], + [ + "Ken", + "ya" + ], + [ + "rhyth", + "ms" + ], + [ + "kin", + "der" + ], + [ + "mo", + "dest" + ], + [ + "Manu", + "fac" + ], + [ + "Per", + "f" + ], + [ + "Ju", + "venile" + ], + [ + "face", + "ts" + ], + [ + "forget", + "table" + ], + [ + "c", + "avity" + ], + [ + "T", + "ests" + ], + [ + "sil", + "k" + ], + [ + "ce", + "il" + ], + [ + "Arist", + "ot" + ], + [ + "gather", + "ings" + ], + [ + "be", + "tic" + ], + [ + "sh", + "ake" + ], + [ + "week", + "end" + ], + [ + "project", + "ed" + ], + [ + "look", + "up" + ], + [ + "Ch", + "an" + ], + [ + "criti", + "que" + ], + [ + "Ed", + "itor" + ], + [ + "magaz", + "ines" + ], + [ + "exerc", + "ising" + ], + [ + "frag", + "ile" + ], + [ + "str", + "ips" + ], + [ + "prospec", + "ts" + ], + [ + "R", + "ules" + ], + [ + "f", + "d" + ], + [ + "ch", + "in" + ], + [ + "enjoy", + "ment" + ], + [ + "prompt", + "ly" + ], + [ + "cred", + "its" + ], + [ + "ir", + "regular" + ], + [ + "н", + "и" + ], + [ + ".", + ":Ġ" + ], + [ + "tr", + "ails" + ], + [ + "ad", + "dr" + ], + [ + "Dan", + "ish" + ], + [ + "iter", + "tools" + ], + [ + "survi", + "ving" + ], + [ + "eleg", + "ant" + ], + [ + "H", + "art" + ], + [ + "volun", + "tary" + ], + [ + "coll", + "ision" + ], + [ + "rich", + "ness" + ], + [ + "int", + "act" + ], + [ + "\"", + "+" + ], + [ + "pro", + "active" + ], + [ + "His", + "panic" + ], + [ + "L", + "uc" + ], + [ + "rid", + "ge" + ], + [ + "hop", + "eful" + ], + [ + "Benj", + "amin" + ], + [ + "M", + "ut" + ], + [ + "prom", + "pting" + ], + [ + "predominant", + "ly" + ], + [ + "gh", + "ost" + ], + [ + "ç", + "®" + ], + [ + "iff", + "s" + ], + [ + "b", + "ent" + ], + [ + "trigger", + "ed" + ], + [ + "id", + "ad" + ], + [ + "con", + "dem" + ], + [ + "port", + "able" + ], + [ + "illustr", + "ation" + ], + [ + "Dre", + "am" + ], + [ + "tim", + "eline" + ], + [ + "B", + "ag" + ], + [ + ")Ġ", + "%Ġ" + ], + [ + "fut", + "ures" + ], + [ + "pro", + "vo" + ], + [ + "hy", + "p" + ], + [ + "privi", + "lege" + ], + [ + "âĢ", + "¢" + ], + [ + "prot", + "ections" + ], + [ + "secure", + "ly" + ], + [ + "Budd", + "ha" + ], + [ + "st", + "ics" + ], + [ + "bo", + "ss" + ], + [ + "K", + "y" + ], + [ + "X", + "ML" + ], + [ + "chrom", + "os" + ], + [ + "venti", + "lation" + ], + [ + "fonts", + "ize" + ], + [ + "sub", + "stit" + ], + [ + "fro", + "st" + ], + [ + "OR", + "T" + ], + [ + "dest", + "ro" + ], + [ + "medi", + "ation" + ], + [ + "abo", + "ard" + ], + [ + "()", + "," + ], + [ + "ceremon", + "ies" + ], + [ + "pres", + "chool" + ], + [ + "G", + "un" + ], + [ + "BM", + "I" + ], + [ + "д", + "а" + ], + [ + "retri", + "eve" + ], + [ + "pol", + "len" + ], + [ + "mater", + "nal" + ], + [ + "æĹ", + "¶" + ], + [ + "to", + "ll" + ], + [ + "tu", + "ples" + ], + [ + "Ve", + "ter" + ], + [ + "ti", + "reless" + ], + [ + "vow", + "els" + ], + [ + "en", + "velop" + ], + [ + "mon", + "ary" + ], + [ + "don", + "or" + ], + [ + "pro", + "pri" + ], + [ + "de", + "pri" + ], + [ + "v", + "intage" + ], + [ + "Con", + "serv" + ], + [ + "P", + "od" + ], + [ + "recipi", + "ent" + ], + [ + "acknowled", + "ged" + ], + [ + "p", + "ond" + ], + [ + "Che", + "mistry" + ], + [ + "Ca", + "uses" + ], + [ + "B", + "un" + ], + [ + "CP", + "U" + ], + [ + "h", + "ockey" + ], + [ + "should", + "ers" + ], + [ + "C", + "ensus" + ], + [ + "ig", + "s" + ], + [ + "Ro", + "osevelt" + ], + [ + "Gree", + "ks" + ], + [ + "instruct", + "or" + ], + [ + "Rec", + "over" + ], + [ + "at", + "in" + ], + [ + "last", + "name" + ], + [ + "du", + "plicates" + ], + [ + "Cub", + "a" + ], + [ + "ag", + "enda" + ], + [ + "Ġ(", + "âĢľ" + ], + [ + "as", + "por" + ], + [ + "transport", + "ed" + ], + [ + "pul", + "ling" + ], + [ + "rul", + "ers" + ], + [ + "Dep", + "th" + ], + [ + "ment", + "ally" + ], + [ + "Pre", + "vent" + ], + [ + "My", + "th" + ], + [ + "remed", + "ies" + ], + [ + "sel", + "s" + ], + [ + "pray", + "ers" + ], + [ + "l", + "ush" + ], + [ + "en", + "force" + ], + [ + "leet", + "code" + ], + [ + "spar", + "se" + ], + [ + "cogn", + "ition" + ], + [ + "y", + "er" + ], + [ + "certific", + "ate" + ], + [ + "specific", + "ations" + ], + [ + "å", + "·" + ], + [ + "Emer", + "gency" + ], + [ + "Kent", + "ucky" + ], + [ + "to", + "e" + ], + [ + "ë", + "į" + ], + [ + "len", + "e" + ], + [ + "Cr", + "im" + ], + [ + "See", + "k" + ], + [ + "Ha", + "iti" + ], + [ + "re", + "q" + ], + [ + "n", + "r" + ], + [ + "fin", + "ances" + ], + [ + "concer", + "t" + ], + [ + "G", + "IS" + ], + [ + "need", + "ing" + ], + [ + "wh", + "ilst" + ], + [ + "gre", + "ens" + ], + [ + "command", + "er" + ], + [ + "V", + "acc" + ], + [ + "di", + "stract" + ], + [ + "go", + "to" + ], + [ + "traject", + "ory" + ], + [ + "beli", + "evers" + ], + [ + "Tok", + "yo" + ], + [ + "scal", + "ed" + ], + [ + "leg", + "ends" + ], + [ + "L", + "ith" + ], + [ + ",Ġ", + "&Ġ" + ], + [ + "Prop", + "het" + ], + [ + "Ter", + "m" + ], + [ + "ëĭ", + "Īëĭ¤" + ], + [ + "tight", + "ly" + ], + [ + "om", + "orph" + ], + [ + "Syn", + "drome" + ], + [ + "er", + "al" + ], + [ + "Con", + "struct" + ], + [ + "direct", + "ors" + ], + [ + "ili", + "ans" + ], + [ + "By", + "z" + ], + [ + "M", + "ong" + ], + [ + "put", + "y" + ], + [ + "Di", + "versity" + ], + [ + "inno", + "cent" + ], + [ + "Ex", + "change" + ], + [ + "radio", + "active" + ], + [ + "illustr", + "ates" + ], + [ + "pos", + "als" + ], + [ + "hand", + "led" + ], + [ + "Die", + "go" + ], + [ + "conce", + "ived" + ], + [ + "buy", + "ers" + ], + [ + "tim", + "edia" + ], + [ + "u", + "gg" + ], + [ + "ep", + "ing" + ], + [ + "te", + "ars" + ], + [ + "ĉĉ", + "ĉ" + ], + [ + "F", + "acts" + ], + [ + "spher", + "es" + ], + [ + "æ", + "Ń" + ], + [ + "bl", + "it" + ], + [ + "last", + "ed" + ], + [ + "Compreh", + "ensive" + ], + [ + "host", + "ed" + ], + [ + "!", + "=" + ], + [ + "inter", + "tw" + ], + [ + "att", + "an" + ], + [ + "harvest", + "ing" + ], + [ + "Opportun", + "ities" + ], + [ + "vom", + "iting" + ], + [ + "instruction", + "al" + ], + [ + "az", + "ed" + ], + [ + "optim", + "izing" + ], + [ + "dr", + "agon" + ], + [ + "manufact", + "ured" + ], + [ + "vari", + "ability" + ], + [ + "Tr", + "ail" + ], + [ + "å", + "Ĵ" + ], + [ + "Br", + "id" + ], + [ + "ge", + "tic" + ], + [ + "sup", + "pose" + ], + [ + "listen", + "ers" + ], + [ + "Produ", + "cts" + ], + [ + "configur", + "ations" + ], + [ + "beauti", + "fully" + ], + [ + "by", + "e" + ], + [ + "ten", + "nis" + ], + [ + "sever", + "ely" + ], + [ + "Law", + "rence" + ], + [ + "opoli", + "tical" + ], + [ + "ir", + "is" + ], + [ + "lun", + "ar" + ], + [ + "Co", + "al" + ], + [ + "ë", + "IJ" + ], + [ + "D", + "s" + ], + [ + "aut", + "umn" + ], + [ + "Comput", + "e" + ], + [ + "luck", + "y" + ], + [ + "air", + "port" + ], + [ + "Po", + "etry" + ], + [ + "Ù", + "İ" + ], + [ + "ch", + "ord" + ], + [ + "sc", + "ared" + ], + [ + "lit", + "ter" + ], + [ + "J", + "up" + ], + [ + "T", + "ER" + ], + [ + "us", + "u" + ], + [ + "non", + "profit" + ], + [ + "':Ġ", + "['" + ], + [ + "hard", + "ly" + ], + [ + "for", + "ty" + ], + [ + "hun", + "gry" + ], + [ + "H", + "ell" + ], + [ + "K", + "id" + ], + [ + "to", + "po" + ], + [ + "е", + "ÑģÑĤ" + ], + [ + "lif", + "ting" + ], + [ + "Gl", + "ass" + ], + [ + "cre", + "ator" + ], + [ + "ren", + "ces" + ], + [ + "over", + "head" + ], + [ + "Mo", + "ore" + ], + [ + "f", + "ere" + ], + [ + "r", + "of" + ], + [ + "l", + "ady" + ], + [ + "t", + "weets" + ], + [ + "mic", + "row" + ], + [ + "li", + "ability" + ], + [ + "Com", + "b" + ], + [ + "ba", + "seline" + ], + [ + "kn", + "it" + ], + [ + "ah", + "ren" + ], + [ + "std", + "in" + ], + [ + "E", + "at" + ], + [ + "Success", + "ful" + ], + [ + "ci", + "v" + ], + [ + "traffic", + "king" + ], + [ + "res", + "ign" + ], + [ + "loy", + "al" + ], + [ + "sig", + "moid" + ], + [ + "journal", + "ist" + ], + [ + "O", + "ak" + ], + [ + "note", + "book" + ], + [ + "E", + "ra" + ], + [ + "å®", + "ļ" + ], + [ + "M", + "I" + ], + [ + "c", + "iting" + ], + [ + "int", + "ens" + ], + [ + "Lim", + "ited" + ], + [ + "Gene", + "tic" + ], + [ + "anni", + "versary" + ], + [ + "bi", + "ome" + ], + [ + "fig", + "size" + ], + [ + "rank", + "ed" + ], + [ + "exam", + "ines" + ], + [ + "pre", + "mature" + ], + [ + "fl", + "esh" + ], + [ + "mar", + "sh" + ], + [ + "ger", + "ms" + ], + [ + "dig", + "est" + ], + [ + "Indi", + "ana" + ], + [ + "to", + "my" + ], + [ + "rest", + "ing" + ], + [ + "compr", + "ises" + ], + [ + "========", + "====" + ], + [ + "Ad", + "ult" + ], + [ + "Transport", + "ation" + ], + [ + "F", + "resh" + ], + [ + "lin", + "ess" + ], + [ + "comput", + "ed" + ], + [ + "W", + "ear" + ], + [ + "bas", + "in" + ], + [ + "u", + "to" + ], + [ + "vow", + "el" + ], + [ + "r", + "ag" + ], + [ + "mag", + "nesium" + ], + [ + "po", + "e" + ], + [ + "â", + "ķ" + ], + [ + "Ġ-", + "Ġ(" + ], + [ + "S", + "ales" + ], + [ + "first", + "name" + ], + [ + "f", + "red" + ], + [ + "ha", + "i" + ], + [ + "divor", + "ce" + ], + [ + "Other", + "wise" + ], + [ + "Dise", + "ases" + ], + [ + "nucle", + "us" + ], + [ + "conc", + "iliation" + ], + [ + "ele", + "men" + ], + [ + "fil", + "ed" + ], + [ + "T", + "k" + ], + [ + "un", + "c" + ], + [ + "por", + "trait" + ], + [ + "lim", + "e" + ], + [ + "answer", + "ing" + ], + [ + "W", + "right" + ], + [ + "v", + "ae" + ], + [ + "feas", + "ible" + ], + [ + "ist", + "a" + ], + [ + "pi", + "er" + ], + [ + "forgiven", + "ess" + ], + [ + "lon", + "gevity" + ], + [ + "ob", + "ed" + ], + [ + "ash", + "ed" + ], + [ + "bod", + "ily" + ], + [ + "Cur", + "ious" + ], + [ + "decl", + "ined" + ], + [ + "S", + "in" + ], + [ + "bi", + "bli" + ], + [ + "at", + "traction" + ], + [ + "man", + "ually" + ], + [ + "Qu", + "ick" + ], + [ + "B", + "h" + ], + [ + "n", + "ú" + ], + [ + "det", + "ecting" + ], + [ + "Do", + "ctor" + ], + [ + "br", + "al" + ], + [ + "fail", + "ing" + ], + [ + "nest", + "ed" + ], + [ + "Tre", + "as" + ], + [ + "S", + "ul" + ], + [ + "argu", + "ing" + ], + [ + "Col", + "omb" + ], + [ + "ol", + "ith" + ], + [ + "un", + "fair" + ], + [ + "åĴ", + "Į" + ], + [ + "A", + "le" + ], + [ + "de", + "vi" + ], + [ + "throw", + "ing" + ], + [ + "provin", + "ces" + ], + [ + "re", + "construction" + ], + [ + "Wid", + "th" + ], + [ + "Trans", + "fer" + ], + [ + "Main", + "tain" + ], + [ + "scal", + "ar" + ], + [ + "denom", + "inator" + ], + [ + "Rec", + "ently" + ], + [ + "]", + "(" + ], + [ + "proble", + "matic" + ], + [ + "aff", + "ection" + ], + [ + "schem", + "a" + ], + [ + "Tok", + "en" + ], + [ + "V", + "ene" + ], + [ + "æ", + "Ģ" + ], + [ + "tras", + "ound" + ], + [ + "ir", + "ts" + ], + [ + "Pha", + "se" + ], + [ + "u", + "pl" + ], + [ + "gradu", + "ated" + ], + [ + "fr", + "ied" + ], + [ + "Alli", + "ance" + ], + [ + ":Ġ", + "')" + ], + [ + "resid", + "ual" + ], + [ + "w", + "b" + ], + [ + "c", + "map" + ], + [ + "cor", + "r" + ], + [ + "Nap", + "ole" + ], + [ + "mind", + "set" + ], + [ + "understand", + "s" + ], + [ + "Hol", + "ly" + ], + [ + "agg", + "ression" + ], + [ + "ê³", + "ł" + ], + [ + "ot", + "t" + ], + [ + "Again", + "st" + ], + [ + "par", + "king" + ], + [ + "ent", + "a" + ], + [ + "Sk", + "in" + ], + [ + "te", + "ous" + ], + [ + "S", + "ession" + ], + [ + "wh", + "ales" + ], + [ + "less", + "ness" + ], + [ + "F", + "ellow" + ], + [ + "pens", + "able" + ], + [ + "chop", + "ped" + ], + [ + "ed", + "a" + ], + [ + "mitig", + "ating" + ], + [ + "ag", + "i" + ], + [ + "ÑĤ", + "о" + ], + [ + "cam", + "ar" + ], + [ + "åı", + "¯" + ], + [ + "truc", + "ks" + ], + [ + "paren", + "tal" + ], + [ + "smart", + "phone" + ], + [ + "ens", + "l" + ], + [ + "ch", + "unks" + ], + [ + "differ", + "ing" + ], + [ + "е", + "к" + ], + [ + "Confeder", + "ate" + ], + [ + "consult", + "ation" + ], + [ + "ader", + "ie" + ], + [ + "o", + "thing" + ], + [ + "negoti", + "ation" + ], + [ + "vio", + "let" + ], + [ + "sp", + "acing" + ], + [ + "pen", + "se" + ], + [ + "is", + "ure" + ], + [ + "Descri", + "be" + ], + [ + "ch", + "im" + ], + [ + "settle", + "ments" + ], + [ + "gi", + "um" + ], + [ + "re", + "per" + ], + [ + "for", + "um" + ], + [ + "ex", + "clusion" + ], + [ + "p", + "ave" + ], + [ + "descend", + "ants" + ], + [ + "Europe", + "ans" + ], + [ + "fab", + "rics" + ], + [ + "b", + "und" + ], + [ + "back", + "drop" + ], + [ + "st", + "arch" + ], + [ + "An", + "th" + ], + [ + "Legis", + "l" + ], + [ + "li", + "vely" + ], + [ + "ause", + "a" + ], + [ + "inform", + "ative" + ], + [ + "Ed", + "it" + ], + [ + "Bro", + "ok" + ], + [ + "persuas", + "ive" + ], + [ + "W", + "R" + ], + [ + "un", + "forgettable" + ], + [ + "dis", + "agreements" + ], + [ + "in", + "coming" + ], + [ + "bl", + "ame" + ], + [ + "distr", + "actions" + ], + [ + "d", + "ummy" + ], + [ + "le", + "ys" + ], + [ + "tic", + "kets" + ], + [ + "grav", + "it" + ], + [ + "N", + "ev" + ], + [ + "fasc", + "inated" + ], + [ + "sub", + "mission" + ], + [ + "p", + "ins" + ], + [ + "con", + "ditional" + ], + [ + "bul", + "bs" + ], + [ + "might", + "y" + ], + [ + "aim", + "ing" + ], + [ + "willing", + "ness" + ], + [ + "jud", + "g" + ], + [ + "b", + "ats" + ], + [ + "ac", + "tic" + ], + [ + "ĠĠĠĠĠĠĠĠ", + "ĠĠĠĠ" + ], + [ + "po", + "ser" + ], + [ + "sens", + "ations" + ], + [ + "In", + "dependent" + ], + [ + "anc", + "ers" + ], + [ + "spir", + "al" + ], + [ + "Al", + "ber" + ], + [ + "Feder", + "ation" + ], + [ + "cl", + "icking" + ], + [ + "ç", + "±" + ], + [ + "Ġ", + "°" + ], + [ + "class", + "ify" + ], + [ + "h", + "ref" + ], + [ + "alloc", + "ate" + ], + [ + "UL", + "T" + ], + [ + "ë©", + "´" + ], + [ + "ì", + "¤" + ], + [ + "ab", + "dominal" + ], + [ + "bio", + "tic" + ], + [ + "S", + "ens" + ], + [ + "Ve", + "get" + ], + [ + "Declar", + "ation" + ], + [ + "em", + "en" + ], + [ + "b", + "ureau" + ], + [ + "Stor", + "age" + ], + [ + "oc", + "king" + ], + [ + "glo", + "ves" + ], + [ + "thr", + "one" + ], + [ + "remin", + "is" + ], + [ + "gen", + "ital" + ], + [ + "arch", + "ive" + ], + [ + "prom", + "pts" + ], + [ + "foss", + "ils" + ], + [ + "no", + "body" + ], + [ + "æĸ", + "¹" + ], + [ + "poster", + "ior" + ], + [ + "veli", + "hood" + ], + [ + "fort", + "une" + ], + [ + "obvious", + "ly" + ], + [ + "Commun", + "ist" + ], + [ + "bted", + "ly" + ], + [ + "satis", + "fying" + ], + [ + "en", + "vision" + ], + [ + "har", + "assment" + ], + [ + "T", + "ut" + ], + [ + "W", + "E" + ], + [ + "territ", + "orial" + ], + [ + "Ac", + "cept" + ], + [ + "cot", + "t" + ], + [ + "Â", + "©Ġ" + ], + [ + "b", + "ap" + ], + [ + "®", + "Ġ" + ], + [ + "inevit", + "able" + ], + [ + "propag", + "ation" + ], + [ + "ground", + "water" + ], + [ + "F", + "ul" + ], + [ + "W", + "ang" + ], + [ + "bre", + "eds" + ], + [ + "camar", + "aderie" + ], + [ + "H", + "ip" + ], + [ + "micro", + "organisms" + ], + [ + "asc", + "ending" + ], + [ + "reput", + "able" + ], + [ + "Collabor", + "ative" + ], + [ + "occur", + "rences" + ], + [ + "Li", + "ves" + ], + [ + "inter", + "cept" + ], + [ + "п", + "о" + ], + [ + "M", + "ust" + ], + [ + ":", + "`" + ], + [ + "F", + "E" + ], + [ + "confin", + "ed" + ], + [ + "ab", + "str" + ], + [ + "to", + "do" + ], + [ + "sel", + "ls" + ], + [ + "Relation", + "ships" + ], + [ + "table", + "t" + ], + [ + "si", + "ties" + ], + [ + "n", + "ail" + ], + [ + "Harmon", + "y" + ], + [ + "ch", + "efs" + ], + [ + "file", + "path" + ], + [ + "Uni", + "que" + ], + [ + "g", + "lands" + ], + [ + "ew", + "ater" + ], + [ + "shad", + "ows" + ], + [ + "The", + "atre" + ], + [ + "deploy", + "ment" + ], + [ + "C", + "ul" + ], + [ + "Ġ(", + ")Ġ" + ], + [ + "cr", + "atic" + ], + [ + "hand", + "les" + ], + [ + "y", + "og" + ], + [ + "g", + "le" + ], + [ + "sn", + "ack" + ], + [ + "caf", + "feine" + ], + [ + "back", + "ed" + ], + [ + "rand", + "range" + ], + [ + "mort", + "g" + ], + [ + "Initi", + "ally" + ], + [ + "mon", + "o" + ], + [ + "T", + "el" + ], + [ + "re", + "vision" + ], + [ + "inter", + "fere" + ], + [ + "no", + "stic" + ], + [ + "success", + "or" + ], + [ + "bub", + "bles" + ], + [ + "fresh", + "water" + ], + [ + "om", + "et" + ], + [ + "scri", + "pts" + ], + [ + "Dis", + "orders" + ], + [ + "t", + "ours" + ], + [ + "ast", + "ed" + ], + [ + "ç", + "Ĥ" + ], + [ + "H", + "az" + ], + [ + "not", + "a" + ], + [ + "O", + "T" + ], + [ + "m", + "uc" + ], + [ + "arr", + "ing" + ], + [ + "Å", + "¡" + ], + [ + "lo", + "d" + ], + [ + "Jo", + "int" + ], + [ + "Ste", + "ve" + ], + [ + "l", + "ind" + ], + [ + "access", + "ing" + ], + [ + "å", + "ī" + ], + [ + "solu", + "ble" + ], + [ + "GP", + "IO" + ], + [ + "ist", + "le" + ], + [ + "manage", + "able" + ], + [ + "back", + "yard" + ], + [ + "uten", + "ant" + ], + [ + "R", + "S" + ], + [ + "ad", + "ic" + ], + [ + "Sy", + "m" + ], + [ + "hyper", + "tension" + ], + [ + "ropol", + "itan" + ], + [ + "combust", + "ion" + ], + [ + "ach", + "ment" + ], + [ + "t", + "ort" + ], + [ + "where", + "ver" + ], + [ + "gam", + "bling" + ], + [ + "recommend", + "ation" + ], + [ + "Author", + "ity" + ], + [ + "ê", + "µ" + ], + [ + "pre", + "lim" + ], + [ + "music", + "ian" + ], + [ + "Mo", + "de" + ], + [ + ">Ġ", + "<" + ], + [ + "...", + ".Ġ" + ], + [ + "pro", + "state" + ], + [ + "к", + "и" + ], + [ + "recomm", + "ends" + ], + [ + "hum", + "ble" + ], + [ + "Dis", + "covering" + ], + [ + "sp", + "y" + ], + [ + "p", + "tr" + ], + [ + "contin", + "ents" + ], + [ + "\"", + "]," + ], + [ + "Ð", + "Ŀ" + ], + [ + "int", + "end" + ], + [ + "ed", + "itors" + ], + [ + "mis", + "understandings" + ], + [ + "o", + "z" + ], + [ + "l", + "id" + ], + [ + "consult", + "ing" + ], + [ + "ê", + "·" + ], + [ + "ik", + "i" + ], + [ + "account", + "able" + ], + [ + "embr", + "y" + ], + [ + "bill", + "ions" + ], + [ + "fis", + "cal" + ], + [ + "blo", + "ss" + ], + [ + "paras", + "ites" + ], + [ + "de", + "let" + ], + [ + "stri", + "ving" + ], + [ + "rece", + "iver" + ], + [ + "excl", + "uded" + ], + [ + "P", + "ages" + ], + [ + "indis", + "pensable" + ], + [ + "mar", + "tial" + ], + [ + "emer", + "gencies" + ], + [ + "Interest", + "ingly" + ], + [ + "assum", + "es" + ], + [ + "Kn", + "own" + ], + [ + "pro", + "pose" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠĠ" + ], + [ + "if", + "ting" + ], + [ + "guess", + "es" + ], + [ + "Seas", + "on" + ], + [ + "com", + "ply" + ], + [ + "K", + "ings" + ], + [ + "Evalu", + "ate" + ], + [ + "Marg", + "aret" + ], + [ + "gr", + "i" + ], + [ + "convin", + "ced" + ], + [ + "remo", + "ves" + ], + [ + "Hu", + "gh" + ], + [ + "hom", + "emade" + ], + [ + "â", + "Ķ" + ], + [ + "at", + "ro" + ], + [ + "Liter", + "ary" + ], + [ + "lap", + "top" + ], + [ + "cool", + "er" + ], + [ + "IC", + "T" + ], + [ + "Argent", + "ina" + ], + [ + "h", + "iring" + ], + [ + "man", + "eu" + ], + [ + "St", + "aff" + ], + [ + "sele", + "ctive" + ], + [ + "the", + "ology" + ], + [ + "Th", + "or" + ], + [ + "For", + "ces" + ], + [ + "][", + "\"" + ], + [ + "qu", + "ity" + ], + [ + "apart", + "ment" + ], + [ + "D", + "rop" + ], + [ + "c", + "ite" + ], + [ + "iter", + "able" + ], + [ + "Psych", + "ological" + ], + [ + "pi", + "res" + ], + [ + "ON", + "T" + ], + [ + "]", + "Ġ==Ġ\"" + ], + [ + "syl", + "lab" + ], + [ + "arith", + "metic" + ], + [ + "b", + "anned" + ], + [ + "Fl", + "ag" + ], + [ + "h", + "il" + ], + [ + "mand", + "atory" + ], + [ + "anticip", + "ated" + ], + [ + "ge", + "m" + ], + [ + "CE", + "O" + ], + [ + "Ã", + "ī" + ], + [ + "os", + "ity" + ], + [ + "Cre", + "ation" + ], + [ + "sp", + "ider" + ], + [ + "bul", + "b" + ], + [ + "lik", + "ed" + ], + [ + "n", + "ano" + ], + [ + "ag", + "us" + ], + [ + "satis", + "fy" + ], + [ + "Engine", + "ers" + ], + [ + "wor", + "sen" + ], + [ + "ther", + "mo" + ], + [ + "Res", + "istance" + ], + [ + "personal", + "ities" + ], + [ + "divid", + "es" + ], + [ + "sub", + "s" + ], + [ + "lower", + "ing" + ], + [ + "ast", + "ically" + ], + [ + "squee", + "ze" + ], + [ + "set", + "backs" + ], + [ + "revel", + "ation" + ], + [ + "O", + "H" + ], + [ + "H", + "em" + ], + [ + "W", + "olf" + ], + [ + "cul", + "tivation" + ], + [ + "surge", + "on" + ], + [ + ":", + "',Ġ" + ], + [ + "),Ġ", + "\"" + ], + [ + "dilem", + "mas" + ], + [ + "position", + "ing" + ], + [ + "chem", + "otherapy" + ], + [ + "Cr", + "ime" + ], + [ + "ing", + "es" + ], + [ + "com", + "mod" + ], + [ + "develop", + "er" + ], + [ + "deser", + "ves" + ], + [ + "grad", + "ual" + ], + [ + "record", + "ings" + ], + [ + "Vis", + "ion" + ], + [ + "Bud", + "get" + ], + [ + "dy", + "nasty" + ], + [ + "res", + "or" + ], + [ + "Ju", + "an" + ], + [ + "re", + "vised" + ], + [ + "Con", + "su" + ], + [ + "bond", + "ing" + ], + [ + "Con", + "sum" + ], + [ + "lux", + "ury" + ], + [ + "activ", + "ate" + ], + [ + "in", + "place" + ], + [ + "mari", + "time" + ], + [ + "organ", + "isations" + ], + [ + "re", + "produce" + ], + [ + "cryst", + "all" + ], + [ + "Agric", + "ultural" + ], + [ + "F", + "ight" + ], + [ + "iz", + "ar" + ], + [ + "condu", + "cive" + ], + [ + "Oc", + "cup" + ], + [ + "qual", + "itative" + ], + [ + "com", + "pressed" + ], + [ + "ell", + "ar" + ], + [ + "ĠĠĠ", + "#Ġ" + ], + [ + "impair", + "ment" + ], + [ + "ico", + "de" + ], + [ + "N", + "T" + ], + [ + "do", + "cs" + ], + [ + "ĠÂ", + "·Ġ" + ], + [ + "clim", + "ates" + ], + [ + "C", + "ris" + ], + [ + "wash", + "ed" + ], + [ + "b", + "ai" + ], + [ + "re", + "conciliation" + ], + [ + "ìĿ", + "¸" + ], + [ + "Familiar", + "ize" + ], + [ + "f", + "athers" + ], + [ + "M", + "IT" + ], + [ + "e", + "ternal" + ], + [ + "sub", + "plots" + ], + [ + "dir", + "ty" + ], + [ + "bl", + "acks" + ], + [ + "rol", + "ler" + ], + [ + "assem", + "bled" + ], + [ + "e", + "ur" + ], + [ + "the", + "tical" + ], + [ + "PL", + "A" + ], + [ + "ne", + "ath" + ], + [ + "dis", + "proportion" + ], + [ + "susp", + "ended" + ], + [ + "b", + "oring" + ], + [ + "Provid", + "ing" + ], + [ + "F", + "ail" + ], + [ + "termin", + "ology" + ], + [ + ";", + "Ġ(" + ], + [ + "co", + "co" + ], + [ + "CB", + "D" + ], + [ + "ro", + "pe" + ], + [ + "light", + "weight" + ], + [ + "Exam", + "ining" + ], + [ + "i", + "tic" + ], + [ + "antioxid", + "ants" + ], + [ + "N", + "am" + ], + [ + "o", + "ak" + ], + [ + "rail", + "road" + ], + [ + "protagon", + "ists" + ], + [ + "ab", + "bre" + ], + [ + "stat", + "ue" + ], + [ + "occup", + "ational" + ], + [ + "And", + "roid" + ], + [ + "wilder", + "ness" + ], + [ + "\"", + ">" + ], + [ + "X", + "T" + ], + [ + "re", + "public" + ], + [ + "il", + "lo" + ], + [ + "R", + "ub" + ], + [ + "facilit", + "ates" + ], + [ + "o", + "ct" + ], + [ + "anim", + "ated" + ], + [ + "leg", + "acies" + ], + [ + "LE", + "FT" + ], + [ + "('", + "-" + ], + [ + "l", + "acking" + ], + [ + "res", + "ize" + ], + [ + "аÑĤ", + "ÑĮ" + ], + [ + "role", + "um" + ], + [ + "p", + "aced" + ], + [ + "æ", + "Ĭ" + ], + [ + "the", + "ft" + ], + [ + "predic", + "ting" + ], + [ + "Deb", + "ating" + ], + [ + "mem", + "orial" + ], + [ + "ball", + "oon" + ], + [ + "proceed", + "ings" + ], + [ + "kid", + "neys" + ], + [ + "ĠĠ", + "=Ġ" + ], + [ + "gr", + "aceful" + ], + [ + "ign", + "or" + ], + [ + "bo", + "ts" + ], + [ + "negoti", + "ate" + ], + [ + "p", + "neum" + ], + [ + "Run", + "ning" + ], + [ + "cons", + "iders" + ], + [ + "gg", + "ies" + ], + [ + "Adv", + "ant" + ], + [ + "biom", + "ass" + ], + [ + "COL", + "OR" + ], + [ + "C", + "reat" + ], + [ + "r", + "igh" + ], + [ + "manus", + "cript" + ], + [ + "gl", + "ory" + ], + [ + "Custom", + "er" + ], + [ + "F", + "iles" + ], + [ + "re", + "creation" + ], + [ + "wish", + "es" + ], + [ + "cre", + "atively" + ], + [ + "Christ", + "opher" + ], + [ + "pla", + "que" + ], + [ + "intu", + "itive" + ], + [ + "########", + "####" + ], + [ + "s", + "am" + ], + [ + "c", + "n" + ], + [ + "we", + "eds" + ], + [ + "lim", + "bs" + ], + [ + "Gener", + "ate" + ], + [ + "wound", + "ed" + ], + [ + "mil", + "estones" + ], + [ + "un", + "clear" + ], + [ + "sign", + "ing" + ], + [ + "activ", + "ist" + ], + [ + "phosp", + "hor" + ], + [ + "æ", + "Ķ" + ], + [ + "free", + "zing" + ], + [ + "gener", + "ic" + ], + [ + "ah", + "oma" + ], + [ + "insp", + "ect" + ], + [ + "Paren", + "t" + ], + [ + "sad", + "ness" + ], + [ + "accord", + "ance" + ], + [ + "op", + "ter" + ], + [ + "Less", + "ons" + ], + [ + "Item", + "s" + ], + [ + "fam", + "il" + ], + [ + "w", + "and" + ], + [ + "result", + "ado" + ], + [ + "mush", + "rooms" + ], + [ + "p", + "acking" + ], + [ + "explo", + "it" + ], + [ + "in", + "ventions" + ], + [ + "ill", + "er" + ], + [ + "simpl", + "ify" + ], + [ + "hum", + "ility" + ], + [ + "ti", + "veness" + ], + [ + "ha", + "w" + ], + [ + "seven", + "th" + ], + [ + "p", + "tic" + ], + [ + "cat", + "astro" + ], + [ + "ĠĠĠ", + "|" + ], + [ + "dest", + "inations" + ], + [ + "cum", + "ulative" + ], + [ + "pl", + "ug" + ], + [ + "cook", + "ie" + ], + [ + "W", + "ID" + ], + [ + "diction", + "aries" + ], + [ + "lect", + "ures" + ], + [ + "Cor", + "rect" + ], + [ + "ter", + "day" + ], + [ + "e", + "ches" + ], + [ + "================================", + "================================" + ], + [ + "be", + "ats" + ], + [ + "ele", + "ven" + ], + [ + "ear", + "nings" + ], + [ + "CT", + "ION" + ], + [ + "epide", + "mi" + ], + [ + "k", + "ine" + ], + [ + "B", + "aker" + ], + [ + "p", + "id" + ], + [ + "the", + "li" + ], + [ + "fo", + "cal" + ], + [ + "os", + "cill" + ], + [ + "overl", + "apping" + ], + [ + "IT", + "E" + ], + [ + "d", + "umps" + ], + [ + "A", + "ware" + ], + [ + "è", + "§" + ], + [ + "ve", + "ins" + ], + [ + "Con", + "duct" + ], + [ + "ig", + "o" + ], + [ + "contrast", + "ing" + ], + [ + "G", + "ur" + ], + [ + "ç", + "½" + ], + [ + "embed", + "ding" + ], + [ + "Ann", + "ual" + ], + [ + "extin", + "ct" + ], + [ + ">", + "=" + ], + [ + "it", + "ud" + ], + [ + "upd", + "ating" + ], + [ + "Beautiful", + "Soup" + ], + [ + "el", + "o" + ], + [ + "pres", + "um" + ], + [ + "bow", + "el" + ], + [ + "bo", + "iling" + ], + [ + "N", + "ear" + ], + [ + "attor", + "ney" + ], + [ + ")", + "])" + ], + [ + "hu", + "h" + ], + [ + "tic", + "ing" + ], + [ + "Dou", + "glas" + ], + [ + "pat", + "ron" + ], + [ + "Form", + "ation" + ], + [ + "cor", + "ti" + ], + [ + "decor", + "ated" + ], + [ + "л", + "ÑĮ" + ], + [ + "G", + "D" + ], + [ + "un", + "sure" + ], + [ + "lay", + "ing" + ], + [ + "ç±", + "»" + ], + [ + "sib", + "ility" + ], + [ + "up", + "ward" + ], + [ + "if", + "iers" + ], + [ + "reson", + "ance" + ], + [ + "inf", + "ect" + ], + [ + "Bit", + "coin" + ], + [ + ")Ġ+Ġ", + "\"Ġ" + ], + [ + "Eth", + "ics" + ], + [ + "Utili", + "zing" + ], + [ + "ach", + "er" + ], + [ + "flood", + "s" + ], + [ + "advis", + "ed" + ], + [ + "op", + "ed" + ], + [ + "Establ", + "ish" + ], + [ + "Insp", + "ired" + ], + [ + "?", + "!" + ], + [ + "un", + "o" + ], + [ + "ahren", + "heit" + ], + [ + "G", + "ate" + ], + [ + "Inter", + "section" + ], + [ + "ing", + "er" + ], + [ + "C", + "art" + ], + [ + "im", + "plicit" + ], + [ + "del", + "ays" + ], + [ + "AR", + "E" + ], + [ + "Integr", + "ating" + ], + [ + "n", + "ar" + ], + [ + "exhib", + "ited" + ], + [ + "tremend", + "ous" + ], + [ + "contin", + "ental" + ], + [ + "Set", + "tings" + ], + [ + "O", + "ption" + ], + [ + "ke", + "ley" + ], + [ + "normal", + "ized" + ], + [ + "ãģ", + "®" + ], + [ + "$", + "$Ġ" + ], + [ + "']", + "['" + ], + [ + "ex", + "terior" + ], + [ + "O", + "kl" + ], + [ + "E", + "instein" + ], + [ + "g", + "ates" + ], + [ + "repeti", + "tion" + ], + [ + "trick", + "y" + ], + [ + "produ", + "ctions" + ], + [ + "municip", + "al" + ], + [ + "augh", + "ters" + ], + [ + "í", + "Ļ" + ], + [ + "cultiv", + "ated" + ], + [ + "por", + "tional" + ], + [ + "inst", + "in" + ], + [ + "viol", + "ations" + ], + [ + "has", + "n" + ], + [ + "Trans", + "form" + ], + [ + "F", + "ib" + ], + [ + "ri", + "o" + ], + [ + "gu", + "y" + ], + [ + "Mag", + "azine" + ], + [ + "æ³", + "ķ" + ], + [ + "Stan", + "ford" + ], + [ + "L", + "aur" + ], + [ + "b", + "aked" + ], + [ + "Wor", + "kers" + ], + [ + "bron", + "ze" + ], + [ + "li", + "velihood" + ], + [ + "Nor", + "m" + ], + [ + "an", + "atomy" + ], + [ + "journal", + "ists" + ], + [ + "rein", + "forced" + ], + [ + "instruct", + "ors" + ], + [ + "fl", + "ora" + ], + [ + "und", + "ou" + ], + [ + "spin", + "ning" + ], + [ + "Nuc", + "lear" + ], + [ + "Î", + "¿" + ], + [ + "thon", + "y" + ], + [ + "L", + "ock" + ], + [ + "oul", + "try" + ], + [ + "Stud", + "ying" + ], + [ + "hit", + "ting" + ], + [ + "thir", + "ds" + ], + [ + "domin", + "ance" + ], + [ + "WH", + "ERE" + ], + [ + "cauti", + "ous" + ], + [ + "Freder", + "ick" + ], + [ + "occasion", + "al" + ], + [ + "Rail", + "way" + ], + [ + "Colon", + "ial" + ], + [ + "do", + "ck" + ], + [ + "diam", + "ond" + ], + [ + "is", + "en" + ], + [ + "astr", + "onomy" + ], + [ + "Proper", + "ties" + ], + [ + "lo", + "vely" + ], + [ + "des", + "per" + ], + [ + "tow", + "ers" + ], + [ + "paragraph", + "s" + ], + [ + "per", + "taining" + ], + [ + "co", + "operative" + ], + [ + "ch", + "airs" + ], + [ + "last", + "s" + ], + [ + "comput", + "ation" + ], + [ + "Invest", + "ment" + ], + [ + "athle", + "tic" + ], + [ + "t", + "at" + ], + [ + "sub", + "string" + ], + [ + "migr", + "ants" + ], + [ + "substanti", + "ally" + ], + [ + "('", + "/" + ], + [ + "in", + "ver" + ], + [ + "ke", + "en" + ], + [ + "J", + "uli" + ], + [ + "demand", + "ed" + ], + [ + "mir", + "rors" + ], + [ + "post", + "ers" + ], + [ + "b", + "end" + ], + [ + "perform", + "ers" + ], + [ + "d", + "ings" + ], + [ + "`", + ":Ġ" + ], + [ + "ç", + "ī" + ], + [ + "D", + "ance" + ], + [ + "H", + "ost" + ], + [ + "sh", + "iny" + ], + [ + "sket", + "ch" + ], + [ + "to", + "se" + ], + [ + "Rec", + "e" + ], + [ + "c", + "ables" + ], + [ + "Electr", + "onic" + ], + [ + "ow", + "l" + ], + [ + "r", + "im" + ], + [ + "O", + "D" + ], + [ + ")Ġ", + "+Ġ(" + ], + [ + "tur", + "tles" + ], + [ + "R", + "aw" + ], + [ + "Graph", + "ic" + ], + [ + "ĊĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ", + "ĠĠ" + ], + [ + "vulner", + "abilities" + ], + [ + "Rec", + "ur" + ], + [ + "ot", + "ine" + ], + [ + "ur", + "able" + ], + [ + "sn", + "akes" + ], + [ + "squ", + "ir" + ], + [ + "è", + "½" + ], + [ + "Be", + "hind" + ], + [ + "sequ", + "encing" + ], + [ + "car", + "cin" + ], + [ + "adoles", + "cent" + ], + [ + "pig", + "s" + ], + [ + "car", + "ved" + ], + [ + "Dak", + "ota" + ], + [ + "Tre", + "es" + ], + [ + "prelim", + "inary" + ], + [ + "g", + "ums" + ], + [ + "â", + "Ĥ¬" + ], + [ + "learn", + "s" + ] + ] + } +} \ No newline at end of file diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..3213aa4 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,27 @@ +{ + "backend": "tokenizers", + "bos_token": "<|bos|>", + "clean_up_tokenization_spaces": false, + "eos_token": "<|eos|>", + "extra_special_tokens": [ + "<|unk_text|>", + "<|sot|>", + "<|eot|>", + "<|system|>", + "<|user|>", + "<|assistant|>", + "<|math|>", + "<|expr|>", + "<|answer|>", + "<|code|>", + "<|think|>", + "<|end_of_think|>" + ], + "is_local": false, + "local_files_only": false, + "mask_token": "<|mask|>", + "model_max_length": 16384, + "pad_token": "<|pad|>", + "tokenizer_class": "TokenizersBackend", + "unk_token": "<|unk|>" +} diff --git a/train_log.jsonl b/train_log.jsonl new file mode 100644 index 0000000..32d4a16 --- /dev/null +++ b/train_log.jsonl @@ -0,0 +1,150 @@ +{"event": "run_start", "step": 8800, "max_steps": 11652, "model_params_M": 49.691, "eff_batch": 1024, "amp_dtype": "torch.bfloat16", "attn_backend": "chunked", "started_at": "2026-07-24T18:29:26.130247"} +{"step": 8820, "epoch": 0.757, "loss": 1.83717, "ppl": 6.279, "lr": 7.0758e-05, "lr_sched": "cosine", "grad_norm": 0.2893, "tokens": 9239408640, "tok_s": 267842.9, "elapsed_s": 131.4, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8840, "epoch": 0.759, "loss": 1.88987, "ppl": 6.619, "lr": 7.0215e-05, "lr_sched": "cosine", "grad_norm": 0.2819, "tokens": 9260359680, "tok_s": 269322.3, "elapsed_s": 209.1, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8860, "epoch": 0.76, "loss": 1.92752, "ppl": 6.872, "lr": 6.9675e-05, "lr_sched": "cosine", "grad_norm": 0.2926, "tokens": 9281310720, "tok_s": 269209.2, "elapsed_s": 286.8, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8880, "epoch": 0.762, "loss": 1.82917, "ppl": 6.229, "lr": 6.9138e-05, "lr_sched": "cosine", "grad_norm": 0.3123, "tokens": 9302261760, "tok_s": 269646.1, "elapsed_s": 364.5, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8900, "epoch": 0.764, "loss": 1.86472, "ppl": 6.454, "lr": 6.8604e-05, "lr_sched": "cosine", "grad_norm": 0.2714, "tokens": 9323212800, "tok_s": 268452.9, "elapsed_s": 442.3, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8920, "epoch": 0.766, "loss": 1.90822, "ppl": 6.741, "lr": 6.8073e-05, "lr_sched": "cosine", "grad_norm": 0.2723, "tokens": 9344163840, "tok_s": 268963.8, "elapsed_s": 520.1, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8940, "epoch": 0.767, "loss": 1.91169, "ppl": 6.765, "lr": 6.7545e-05, "lr_sched": "cosine", "grad_norm": 0.2922, "tokens": 9365114880, "tok_s": 268677.9, "elapsed_s": 598.0, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8960, "epoch": 0.769, "loss": 1.80572, "ppl": 6.084, "lr": 6.702e-05, "lr_sched": "cosine", "grad_norm": 0.2728, "tokens": 9386065920, "tok_s": 268837.0, "elapsed_s": 675.6, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 8980, "epoch": 0.771, "loss": 1.88449, "ppl": 6.583, "lr": 6.6499e-05, "lr_sched": "cosine", "grad_norm": 0.2686, "tokens": 9407016960, "tok_s": 270643.9, "elapsed_s": 753.3, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9000, "epoch": 0.772, "loss": 1.85663, "ppl": 6.402, "lr": 6.598e-05, "lr_sched": "cosine", "grad_norm": 0.3064, "tokens": 9427968000, "tok_s": 269440.4, "elapsed_s": 831.0, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9020, "epoch": 0.774, "loss": 1.86381, "ppl": 6.448, "lr": 6.5465e-05, "lr_sched": "cosine", "grad_norm": 0.2849, "tokens": 9448919040, "tok_s": 269911.5, "elapsed_s": 908.8, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9040, "epoch": 0.776, "loss": 1.84236, "ppl": 6.311, "lr": 6.4952e-05, "lr_sched": "cosine", "grad_norm": 0.2711, "tokens": 9469870080, "tok_s": 269519.0, "elapsed_s": 986.7, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9060, "epoch": 0.778, "loss": 1.90693, "ppl": 6.732, "lr": 6.4443e-05, "lr_sched": "cosine", "grad_norm": 0.3108, "tokens": 9490821120, "tok_s": 268620.4, "elapsed_s": 1064.6, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9080, "epoch": 0.779, "loss": 1.84251, "ppl": 6.312, "lr": 6.3937e-05, "lr_sched": "cosine", "grad_norm": 0.3007, "tokens": 9511772160, "tok_s": 268382.2, "elapsed_s": 1142.5, "vram_gb": 2.78, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9100, "epoch": 0.781, "loss": 1.86656, "ppl": 6.466, "lr": 6.3435e-05, "lr_sched": "cosine", "grad_norm": 0.2822, "tokens": 9532723200, "tok_s": 269944.3, "elapsed_s": 1220.5, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9120, "epoch": 0.783, "loss": 1.83974, "ppl": 6.295, "lr": 6.2935e-05, "lr_sched": "cosine", "grad_norm": 0.2854, "tokens": 9553674240, "tok_s": 269876.0, "elapsed_s": 1298.2, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9140, "epoch": 0.784, "loss": 1.83865, "ppl": 6.288, "lr": 6.2439e-05, "lr_sched": "cosine", "grad_norm": 0.2851, "tokens": 9574625280, "tok_s": 268713.0, "elapsed_s": 1376.0, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9160, "epoch": 0.786, "loss": 1.86074, "ppl": 6.428, "lr": 6.1946e-05, "lr_sched": "cosine", "grad_norm": 0.2714, "tokens": 9595576320, "tok_s": 269246.5, "elapsed_s": 1453.9, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9180, "epoch": 0.788, "loss": 1.82733, "ppl": 6.217, "lr": 6.1456e-05, "lr_sched": "cosine", "grad_norm": 0.2863, "tokens": 9616527360, "tok_s": 267633.3, "elapsed_s": 1531.7, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9200, "epoch": 0.79, "loss": 1.80697, "ppl": 6.092, "lr": 6.097e-05, "lr_sched": "cosine", "grad_norm": 0.2805, "tokens": 9637478400, "tok_s": 269846.8, "elapsed_s": 1609.5, "vram_gb": 4.92, "ram_pct": 4.0, "disk_free_gb": 9223371971.07, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9200, "epoch": 0.79, "val_loss": 1.91013, "val_ppl": 6.754, "best_val_ppl": 6.754, "is_best": true} +{"step": 9220, "epoch": 0.791, "loss": 1.84067, "ppl": 6.301, "lr": 6.0487e-05, "lr_sched": "cosine", "grad_norm": 0.2881, "tokens": 9658429440, "tok_s": 269275.0, "elapsed_s": 2040.7, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9240, "epoch": 0.793, "loss": 1.80503, "ppl": 6.08, "lr": 6.0007e-05, "lr_sched": "cosine", "grad_norm": 0.2881, "tokens": 9679380480, "tok_s": 269726.3, "elapsed_s": 2118.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9260, "epoch": 0.795, "loss": 1.85043, "ppl": 6.363, "lr": 5.9531e-05, "lr_sched": "cosine", "grad_norm": 0.3165, "tokens": 9700331520, "tok_s": 269143.4, "elapsed_s": 2196.2, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9280, "epoch": 0.796, "loss": 1.76735, "ppl": 5.855, "lr": 5.9058e-05, "lr_sched": "cosine", "grad_norm": 0.2952, "tokens": 9721282560, "tok_s": 270518.8, "elapsed_s": 2274.0, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9300, "epoch": 0.798, "loss": 1.84474, "ppl": 6.326, "lr": 5.8588e-05, "lr_sched": "cosine", "grad_norm": 0.2775, "tokens": 9742233600, "tok_s": 268534.3, "elapsed_s": 2351.8, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9320, "epoch": 0.8, "loss": 1.80603, "ppl": 6.086, "lr": 5.8121e-05, "lr_sched": "cosine", "grad_norm": 0.2781, "tokens": 9763184640, "tok_s": 269600.7, "elapsed_s": 2429.6, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9340, "epoch": 0.802, "loss": 1.88347, "ppl": 6.576, "lr": 5.7659e-05, "lr_sched": "cosine", "grad_norm": 0.2817, "tokens": 9784135680, "tok_s": 270046.1, "elapsed_s": 2507.3, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9360, "epoch": 0.803, "loss": 1.82086, "ppl": 6.177, "lr": 5.7199e-05, "lr_sched": "cosine", "grad_norm": 0.2807, "tokens": 9805086720, "tok_s": 268721.7, "elapsed_s": 2585.2, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9380, "epoch": 0.805, "loss": 1.82677, "ppl": 6.214, "lr": 5.6743e-05, "lr_sched": "cosine", "grad_norm": 0.2882, "tokens": 9826037760, "tok_s": 269369.6, "elapsed_s": 2662.9, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9400, "epoch": 0.807, "loss": 1.85959, "ppl": 6.421, "lr": 5.629e-05, "lr_sched": "cosine", "grad_norm": 0.333, "tokens": 9846988800, "tok_s": 270002.4, "elapsed_s": 2740.7, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9420, "epoch": 0.808, "loss": 1.785, "ppl": 5.96, "lr": 5.5841e-05, "lr_sched": "cosine", "grad_norm": 0.2814, "tokens": 9867939840, "tok_s": 268378.1, "elapsed_s": 2818.7, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9440, "epoch": 0.81, "loss": 1.84568, "ppl": 6.332, "lr": 5.5395e-05, "lr_sched": "cosine", "grad_norm": 0.2887, "tokens": 9888890880, "tok_s": 270474.4, "elapsed_s": 2896.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9460, "epoch": 0.812, "loss": 1.86376, "ppl": 6.448, "lr": 5.4953e-05, "lr_sched": "cosine", "grad_norm": 0.3094, "tokens": 9909841920, "tok_s": 269359.7, "elapsed_s": 2974.3, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9480, "epoch": 0.814, "loss": 1.8521, "ppl": 6.373, "lr": 5.4514e-05, "lr_sched": "cosine", "grad_norm": 0.2873, "tokens": 9930792960, "tok_s": 269679.7, "elapsed_s": 3052.1, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9500, "epoch": 0.815, "loss": 1.76625, "ppl": 5.849, "lr": 5.4079e-05, "lr_sched": "cosine", "grad_norm": 0.3056, "tokens": 9951744000, "tok_s": 268422.4, "elapsed_s": 3129.9, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9520, "epoch": 0.817, "loss": 1.89656, "ppl": 6.663, "lr": 5.3647e-05, "lr_sched": "cosine", "grad_norm": 0.3015, "tokens": 9972695040, "tok_s": 269291.3, "elapsed_s": 3207.7, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9540, "epoch": 0.819, "loss": 1.80714, "ppl": 6.093, "lr": 5.3219e-05, "lr_sched": "cosine", "grad_norm": 0.2886, "tokens": 9993646080, "tok_s": 269399.2, "elapsed_s": 3285.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9560, "epoch": 0.82, "loss": 1.83155, "ppl": 6.244, "lr": 5.2794e-05, "lr_sched": "cosine", "grad_norm": 0.2981, "tokens": 10014597120, "tok_s": 269282.1, "elapsed_s": 3363.4, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9580, "epoch": 0.822, "loss": 1.87333, "ppl": 6.51, "lr": 5.2373e-05, "lr_sched": "cosine", "grad_norm": 0.3048, "tokens": 10035548160, "tok_s": 269561.1, "elapsed_s": 3441.2, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9600, "epoch": 0.824, "loss": 1.83243, "ppl": 6.249, "lr": 5.1955e-05, "lr_sched": "cosine", "grad_norm": 0.2648, "tokens": 10056499200, "tok_s": 269895.9, "elapsed_s": 3519.0, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371969.45, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9600, "epoch": 0.824, "val_loss": 1.905, "val_ppl": 6.719, "best_val_ppl": 6.719, "is_best": true} +{"step": 9620, "epoch": 0.826, "loss": 1.85277, "ppl": 6.377, "lr": 5.1541e-05, "lr_sched": "cosine", "grad_norm": 0.3153, "tokens": 10077450240, "tok_s": 270132.4, "elapsed_s": 3915.2, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9640, "epoch": 0.827, "loss": 1.86648, "ppl": 6.466, "lr": 5.1131e-05, "lr_sched": "cosine", "grad_norm": 0.2929, "tokens": 10098401280, "tok_s": 269661.8, "elapsed_s": 3993.0, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9660, "epoch": 0.829, "loss": 1.85813, "ppl": 6.412, "lr": 5.0724e-05, "lr_sched": "cosine", "grad_norm": 0.2854, "tokens": 10119352320, "tok_s": 268408.3, "elapsed_s": 4070.8, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9680, "epoch": 0.831, "loss": 1.83478, "ppl": 6.264, "lr": 5.0321e-05, "lr_sched": "cosine", "grad_norm": 0.2679, "tokens": 10140303360, "tok_s": 270136.8, "elapsed_s": 4148.6, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9700, "epoch": 0.832, "loss": 1.91241, "ppl": 6.769, "lr": 4.9921e-05, "lr_sched": "cosine", "grad_norm": 0.3052, "tokens": 10161254400, "tok_s": 268227.7, "elapsed_s": 4226.4, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9720, "epoch": 0.834, "loss": 1.88976, "ppl": 6.618, "lr": 4.9526e-05, "lr_sched": "cosine", "grad_norm": 0.2979, "tokens": 10182205440, "tok_s": 270479.4, "elapsed_s": 4304.1, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9740, "epoch": 0.836, "loss": 1.85868, "ppl": 6.415, "lr": 4.9133e-05, "lr_sched": "cosine", "grad_norm": 0.2899, "tokens": 10203156480, "tok_s": 269697.5, "elapsed_s": 4381.9, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9760, "epoch": 0.838, "loss": 1.88569, "ppl": 6.591, "lr": 4.8745e-05, "lr_sched": "cosine", "grad_norm": 0.2767, "tokens": 10224107520, "tok_s": 269154.8, "elapsed_s": 4459.7, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9780, "epoch": 0.839, "loss": 1.83973, "ppl": 6.295, "lr": 4.836e-05, "lr_sched": "cosine", "grad_norm": 0.3132, "tokens": 10245058560, "tok_s": 268768.6, "elapsed_s": 4537.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9800, "epoch": 0.841, "loss": 1.84633, "ppl": 6.337, "lr": 4.7979e-05, "lr_sched": "cosine", "grad_norm": 0.2694, "tokens": 10266009600, "tok_s": 269045.9, "elapsed_s": 4615.3, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9820, "epoch": 0.843, "loss": 1.85392, "ppl": 6.385, "lr": 4.7602e-05, "lr_sched": "cosine", "grad_norm": 0.2859, "tokens": 10286960640, "tok_s": 269634.0, "elapsed_s": 4693.1, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9840, "epoch": 0.844, "loss": 1.83725, "ppl": 6.279, "lr": 4.7228e-05, "lr_sched": "cosine", "grad_norm": 0.2653, "tokens": 10307911680, "tok_s": 269518.0, "elapsed_s": 4770.8, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9860, "epoch": 0.846, "loss": 1.81998, "ppl": 6.172, "lr": 4.6858e-05, "lr_sched": "cosine", "grad_norm": 0.3287, "tokens": 10328862720, "tok_s": 268917.3, "elapsed_s": 4848.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9880, "epoch": 0.848, "loss": 1.83675, "ppl": 6.276, "lr": 4.6492e-05, "lr_sched": "cosine", "grad_norm": 0.2987, "tokens": 10349813760, "tok_s": 268454.0, "elapsed_s": 4926.3, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9900, "epoch": 0.85, "loss": 1.84696, "ppl": 6.34, "lr": 4.6129e-05, "lr_sched": "cosine", "grad_norm": 0.2693, "tokens": 10370764800, "tok_s": 268964.2, "elapsed_s": 5004.1, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9920, "epoch": 0.851, "loss": 1.86191, "ppl": 6.436, "lr": 4.5771e-05, "lr_sched": "cosine", "grad_norm": 0.2919, "tokens": 10391715840, "tok_s": 270257.6, "elapsed_s": 5081.8, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9940, "epoch": 0.853, "loss": 1.85315, "ppl": 6.38, "lr": 4.5416e-05, "lr_sched": "cosine", "grad_norm": 0.3028, "tokens": 10412666880, "tok_s": 270312.6, "elapsed_s": 5159.5, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9960, "epoch": 0.855, "loss": 1.8162, "ppl": 6.148, "lr": 4.5065e-05, "lr_sched": "cosine", "grad_norm": 0.2705, "tokens": 10433617920, "tok_s": 268821.7, "elapsed_s": 5237.9, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 9980, "epoch": 0.857, "loss": 1.85228, "ppl": 6.374, "lr": 4.4718e-05, "lr_sched": "cosine", "grad_norm": 0.302, "tokens": 10454568960, "tok_s": 268223.6, "elapsed_s": 5316.1, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10000, "epoch": 0.858, "loss": 1.90574, "ppl": 6.724, "lr": 4.4374e-05, "lr_sched": "cosine", "grad_norm": 0.2711, "tokens": 10475520000, "tok_s": 268494.0, "elapsed_s": 5394.3, "vram_gb": 2.78, "ram_pct": 4.1, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10000, "epoch": 0.858, "val_loss": 1.89983, "val_ppl": 6.685, "best_val_ppl": 6.685, "is_best": true} +{"step": 10020, "epoch": 0.86, "loss": 1.84914, "ppl": 6.354, "lr": 4.4035e-05, "lr_sched": "cosine", "grad_norm": 0.2677, "tokens": 10496471040, "tok_s": 268508.1, "elapsed_s": 5791.5, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10040, "epoch": 0.862, "loss": 1.84401, "ppl": 6.322, "lr": 4.3699e-05, "lr_sched": "cosine", "grad_norm": 0.2547, "tokens": 10517422080, "tok_s": 270180.0, "elapsed_s": 5869.2, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10060, "epoch": 0.863, "loss": 1.86883, "ppl": 6.481, "lr": 4.3367e-05, "lr_sched": "cosine", "grad_norm": 0.2798, "tokens": 10538373120, "tok_s": 270413.4, "elapsed_s": 5946.9, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10080, "epoch": 0.865, "loss": 1.84381, "ppl": 6.321, "lr": 4.3039e-05, "lr_sched": "cosine", "grad_norm": 0.3107, "tokens": 10559324160, "tok_s": 268577.4, "elapsed_s": 6024.7, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10100, "epoch": 0.867, "loss": 1.99061, "ppl": 7.32, "lr": 4.2715e-05, "lr_sched": "cosine", "grad_norm": 0.3802, "tokens": 10580275200, "tok_s": 269402.6, "elapsed_s": 6102.6, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10120, "epoch": 0.869, "loss": 1.75485, "ppl": 5.783, "lr": 4.2394e-05, "lr_sched": "cosine", "grad_norm": 0.2806, "tokens": 10601226240, "tok_s": 267510.9, "elapsed_s": 6180.5, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10140, "epoch": 0.87, "loss": 1.99572, "ppl": 7.357, "lr": 4.2078e-05, "lr_sched": "cosine", "grad_norm": 0.8364, "tokens": 10622177280, "tok_s": 268305.2, "elapsed_s": 6258.7, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10160, "epoch": 0.872, "loss": 1.86967, "ppl": 6.486, "lr": 4.1765e-05, "lr_sched": "cosine", "grad_norm": 0.3092, "tokens": 10643128320, "tok_s": 268552.8, "elapsed_s": 6336.6, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10180, "epoch": 0.874, "loss": 1.83294, "ppl": 6.252, "lr": 4.1457e-05, "lr_sched": "cosine", "grad_norm": 0.2595, "tokens": 10664079360, "tok_s": 269278.4, "elapsed_s": 6414.5, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10200, "epoch": 0.875, "loss": 1.85806, "ppl": 6.411, "lr": 4.1152e-05, "lr_sched": "cosine", "grad_norm": 0.3023, "tokens": 10685030400, "tok_s": 267794.3, "elapsed_s": 6492.5, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10220, "epoch": 0.877, "loss": 1.80467, "ppl": 6.078, "lr": 4.0851e-05, "lr_sched": "cosine", "grad_norm": 0.293, "tokens": 10705981440, "tok_s": 266895.5, "elapsed_s": 6570.5, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10240, "epoch": 0.879, "loss": 1.78058, "ppl": 5.933, "lr": 4.0555e-05, "lr_sched": "cosine", "grad_norm": 0.2668, "tokens": 10726932480, "tok_s": 266388.7, "elapsed_s": 6648.8, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10260, "epoch": 0.881, "loss": 1.79627, "ppl": 6.027, "lr": 4.0262e-05, "lr_sched": "cosine", "grad_norm": 0.2867, "tokens": 10747883520, "tok_s": 267577.8, "elapsed_s": 6727.3, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10280, "epoch": 0.882, "loss": 1.8656, "ppl": 6.46, "lr": 3.9973e-05, "lr_sched": "cosine", "grad_norm": 0.3036, "tokens": 10768834560, "tok_s": 267173.3, "elapsed_s": 6805.6, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10300, "epoch": 0.884, "loss": 1.78567, "ppl": 5.964, "lr": 3.9688e-05, "lr_sched": "cosine", "grad_norm": 0.29, "tokens": 10789785600, "tok_s": 269065.3, "elapsed_s": 6883.9, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10320, "epoch": 0.886, "loss": 1.80172, "ppl": 6.06, "lr": 3.9407e-05, "lr_sched": "cosine", "grad_norm": 0.2759, "tokens": 10810736640, "tok_s": 268775.9, "elapsed_s": 6961.9, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10340, "epoch": 0.887, "loss": 1.89481, "ppl": 6.651, "lr": 3.913e-05, "lr_sched": "cosine", "grad_norm": 0.2805, "tokens": 10831687680, "tok_s": 269707.8, "elapsed_s": 7039.9, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10360, "epoch": 0.889, "loss": 1.86798, "ppl": 6.475, "lr": 3.8857e-05, "lr_sched": "cosine", "grad_norm": 0.2885, "tokens": 10852638720, "tok_s": 266906.9, "elapsed_s": 7117.9, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10380, "epoch": 0.891, "loss": 1.80931, "ppl": 6.106, "lr": 3.8588e-05, "lr_sched": "cosine", "grad_norm": 0.2764, "tokens": 10873589760, "tok_s": 268031.8, "elapsed_s": 7195.8, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10400, "epoch": 0.893, "loss": 1.86338, "ppl": 6.446, "lr": 3.8323e-05, "lr_sched": "cosine", "grad_norm": 0.2763, "tokens": 10894540800, "tok_s": 269515.4, "elapsed_s": 7273.6, "vram_gb": 2.78, "ram_pct": 4.2, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10400, "epoch": 0.893, "val_loss": 1.896, "val_ppl": 6.659, "best_val_ppl": 6.659, "is_best": true} +{"step": 10420, "epoch": 0.894, "loss": 1.83668, "ppl": 6.276, "lr": 3.8062e-05, "lr_sched": "cosine", "grad_norm": 0.2941, "tokens": 10915491840, "tok_s": 269255.4, "elapsed_s": 7673.1, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10440, "epoch": 0.896, "loss": 1.87926, "ppl": 6.549, "lr": 3.7805e-05, "lr_sched": "cosine", "grad_norm": 0.2699, "tokens": 10936442880, "tok_s": 268953.8, "elapsed_s": 7751.2, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10460, "epoch": 0.898, "loss": 1.83896, "ppl": 6.29, "lr": 3.7552e-05, "lr_sched": "cosine", "grad_norm": 0.2742, "tokens": 10957393920, "tok_s": 267855.8, "elapsed_s": 7829.3, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10480, "epoch": 0.899, "loss": 1.87086, "ppl": 6.494, "lr": 3.7304e-05, "lr_sched": "cosine", "grad_norm": 0.2886, "tokens": 10978344960, "tok_s": 268423.4, "elapsed_s": 7907.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10500, "epoch": 0.901, "loss": 1.8841, "ppl": 6.58, "lr": 3.7059e-05, "lr_sched": "cosine", "grad_norm": 0.2775, "tokens": 10999296000, "tok_s": 266778.4, "elapsed_s": 7985.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10520, "epoch": 0.903, "loss": 1.9385, "ppl": 6.948, "lr": 3.6818e-05, "lr_sched": "cosine", "grad_norm": 0.4248, "tokens": 11020247040, "tok_s": 268818.6, "elapsed_s": 8063.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10540, "epoch": 0.905, "loss": 1.82055, "ppl": 6.175, "lr": 3.6582e-05, "lr_sched": "cosine", "grad_norm": 0.3095, "tokens": 11041198080, "tok_s": 266669.7, "elapsed_s": 8141.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10560, "epoch": 0.906, "loss": 1.87304, "ppl": 6.508, "lr": 3.6349e-05, "lr_sched": "cosine", "grad_norm": 0.3212, "tokens": 11062149120, "tok_s": 268009.9, "elapsed_s": 8219.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10580, "epoch": 0.908, "loss": 1.8236, "ppl": 6.194, "lr": 3.6121e-05, "lr_sched": "cosine", "grad_norm": 0.3018, "tokens": 11083100160, "tok_s": 269219.3, "elapsed_s": 8297.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10600, "epoch": 0.91, "loss": 1.74339, "ppl": 5.717, "lr": 3.5896e-05, "lr_sched": "cosine", "grad_norm": 0.3303, "tokens": 11104051200, "tok_s": 269249.3, "elapsed_s": 8375.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10620, "epoch": 0.911, "loss": 1.84348, "ppl": 6.318, "lr": 3.5676e-05, "lr_sched": "cosine", "grad_norm": 0.3023, "tokens": 11125002240, "tok_s": 268201.1, "elapsed_s": 8453.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10640, "epoch": 0.913, "loss": 1.83174, "ppl": 6.245, "lr": 3.546e-05, "lr_sched": "cosine", "grad_norm": 0.3136, "tokens": 11145953280, "tok_s": 268062.0, "elapsed_s": 8531.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10660, "epoch": 0.915, "loss": 1.86049, "ppl": 6.427, "lr": 3.5248e-05, "lr_sched": "cosine", "grad_norm": 0.2733, "tokens": 11166904320, "tok_s": 267553.6, "elapsed_s": 8609.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10680, "epoch": 0.917, "loss": 1.81944, "ppl": 6.168, "lr": 3.504e-05, "lr_sched": "cosine", "grad_norm": 0.3243, "tokens": 11187855360, "tok_s": 269257.8, "elapsed_s": 8687.8, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10700, "epoch": 0.918, "loss": 1.84637, "ppl": 6.337, "lr": 3.4836e-05, "lr_sched": "cosine", "grad_norm": 0.3338, "tokens": 11208806400, "tok_s": 268388.6, "elapsed_s": 8765.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10720, "epoch": 0.92, "loss": 1.82114, "ppl": 6.179, "lr": 3.4636e-05, "lr_sched": "cosine", "grad_norm": 0.3199, "tokens": 11229757440, "tok_s": 268854.1, "elapsed_s": 8844.0, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10740, "epoch": 0.922, "loss": 1.78886, "ppl": 5.983, "lr": 3.4441e-05, "lr_sched": "cosine", "grad_norm": 0.3535, "tokens": 11250708480, "tok_s": 269901.7, "elapsed_s": 8921.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10760, "epoch": 0.923, "loss": 1.86321, "ppl": 6.444, "lr": 3.4249e-05, "lr_sched": "cosine", "grad_norm": 0.2679, "tokens": 11271659520, "tok_s": 269196.4, "elapsed_s": 8999.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10780, "epoch": 0.925, "loss": 1.92557, "ppl": 6.859, "lr": 3.4062e-05, "lr_sched": "cosine", "grad_norm": 0.2609, "tokens": 11292610560, "tok_s": 268816.8, "elapsed_s": 9077.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10800, "epoch": 0.927, "loss": 1.88716, "ppl": 6.601, "lr": 3.3879e-05, "lr_sched": "cosine", "grad_norm": 0.2489, "tokens": 11313561600, "tok_s": 268131.0, "elapsed_s": 9155.8, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.85, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10800, "epoch": 0.927, "val_loss": 1.89445, "val_ppl": 6.649, "best_val_ppl": 6.649, "is_best": true} +{"step": 10820, "epoch": 0.929, "loss": 1.8496, "ppl": 6.357, "lr": 3.37e-05, "lr_sched": "cosine", "grad_norm": 0.2849, "tokens": 11334512640, "tok_s": 269642.8, "elapsed_s": 9554.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10840, "epoch": 0.93, "loss": 1.90154, "ppl": 6.696, "lr": 3.3525e-05, "lr_sched": "cosine", "grad_norm": 0.2654, "tokens": 11355463680, "tok_s": 267937.2, "elapsed_s": 9632.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10860, "epoch": 0.932, "loss": 1.84298, "ppl": 6.315, "lr": 3.3355e-05, "lr_sched": "cosine", "grad_norm": 0.2703, "tokens": 11376414720, "tok_s": 268045.3, "elapsed_s": 9710.3, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10880, "epoch": 0.934, "loss": 1.88474, "ppl": 6.585, "lr": 3.3188e-05, "lr_sched": "cosine", "grad_norm": 0.2822, "tokens": 11397365760, "tok_s": 268891.2, "elapsed_s": 9788.0, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10900, "epoch": 0.935, "loss": 1.86963, "ppl": 6.486, "lr": 3.3026e-05, "lr_sched": "cosine", "grad_norm": 0.2737, "tokens": 11418316800, "tok_s": 269174.0, "elapsed_s": 9865.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10920, "epoch": 0.937, "loss": 1.86235, "ppl": 6.439, "lr": 3.2868e-05, "lr_sched": "cosine", "grad_norm": 0.2685, "tokens": 11439267840, "tok_s": 268914.4, "elapsed_s": 9943.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10940, "epoch": 0.939, "loss": 1.82836, "ppl": 6.224, "lr": 3.2714e-05, "lr_sched": "cosine", "grad_norm": 0.2662, "tokens": 11460218880, "tok_s": 268764.1, "elapsed_s": 10021.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10960, "epoch": 0.941, "loss": 1.82516, "ppl": 6.204, "lr": 3.2564e-05, "lr_sched": "cosine", "grad_norm": 0.2566, "tokens": 11481169920, "tok_s": 269449.4, "elapsed_s": 10099.3, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 10980, "epoch": 0.942, "loss": 1.78976, "ppl": 5.988, "lr": 3.2419e-05, "lr_sched": "cosine", "grad_norm": 0.2703, "tokens": 11502120960, "tok_s": 269021.7, "elapsed_s": 10177.1, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11000, "epoch": 0.944, "loss": 1.87938, "ppl": 6.549, "lr": 3.2278e-05, "lr_sched": "cosine", "grad_norm": 0.2862, "tokens": 11523072000, "tok_s": 269527.7, "elapsed_s": 10254.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11020, "epoch": 0.946, "loss": 1.86884, "ppl": 6.481, "lr": 3.2141e-05, "lr_sched": "cosine", "grad_norm": 0.2893, "tokens": 11544023040, "tok_s": 269423.7, "elapsed_s": 10332.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11040, "epoch": 0.947, "loss": 1.77045, "ppl": 5.874, "lr": 3.2008e-05, "lr_sched": "cosine", "grad_norm": 0.2762, "tokens": 11564974080, "tok_s": 268932.0, "elapsed_s": 10410.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11060, "epoch": 0.949, "loss": 1.8436, "ppl": 6.319, "lr": 3.1879e-05, "lr_sched": "cosine", "grad_norm": 0.2839, "tokens": 11585925120, "tok_s": 268462.4, "elapsed_s": 10488.3, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11080, "epoch": 0.951, "loss": 1.83254, "ppl": 6.25, "lr": 3.1755e-05, "lr_sched": "cosine", "grad_norm": 0.2593, "tokens": 11606876160, "tok_s": 269721.7, "elapsed_s": 10566.1, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11100, "epoch": 0.953, "loss": 1.81423, "ppl": 6.136, "lr": 3.1635e-05, "lr_sched": "cosine", "grad_norm": 0.2913, "tokens": 11627827200, "tok_s": 268992.3, "elapsed_s": 10643.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11120, "epoch": 0.954, "loss": 1.83394, "ppl": 6.259, "lr": 3.1519e-05, "lr_sched": "cosine", "grad_norm": 0.2901, "tokens": 11648778240, "tok_s": 269165.8, "elapsed_s": 10721.8, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11140, "epoch": 0.956, "loss": 1.84829, "ppl": 6.349, "lr": 3.1407e-05, "lr_sched": "cosine", "grad_norm": 0.2954, "tokens": 11669729280, "tok_s": 268702.6, "elapsed_s": 10799.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11160, "epoch": 0.958, "loss": 1.88456, "ppl": 6.583, "lr": 3.13e-05, "lr_sched": "cosine", "grad_norm": 0.2636, "tokens": 11690680320, "tok_s": 268959.7, "elapsed_s": 10877.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11180, "epoch": 0.959, "loss": 1.87637, "ppl": 6.53, "lr": 3.1197e-05, "lr_sched": "cosine", "grad_norm": 0.2698, "tokens": 11711631360, "tok_s": 269320.6, "elapsed_s": 10955.4, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11200, "epoch": 0.961, "loss": 1.88903, "ppl": 6.613, "lr": 3.1098e-05, "lr_sched": "cosine", "grad_norm": 0.263, "tokens": 11732582400, "tok_s": 269877.5, "elapsed_s": 11033.2, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11200, "epoch": 0.961, "val_loss": 1.89248, "val_ppl": 6.636, "best_val_ppl": 6.636, "is_best": true} +{"step": 11220, "epoch": 0.963, "loss": 1.92929, "ppl": 6.885, "lr": 3.1003e-05, "lr_sched": "cosine", "grad_norm": 0.2958, "tokens": 11753533440, "tok_s": 268538.6, "elapsed_s": 11428.5, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11240, "epoch": 0.965, "loss": 1.89082, "ppl": 6.625, "lr": 3.0913e-05, "lr_sched": "cosine", "grad_norm": 0.2614, "tokens": 11774484480, "tok_s": 269335.0, "elapsed_s": 11506.2, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11260, "epoch": 0.966, "loss": 1.85848, "ppl": 6.414, "lr": 3.0826e-05, "lr_sched": "cosine", "grad_norm": 0.2983, "tokens": 11795435520, "tok_s": 268240.1, "elapsed_s": 11584.0, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11280, "epoch": 0.968, "loss": 1.84137, "ppl": 6.305, "lr": 3.0745e-05, "lr_sched": "cosine", "grad_norm": 0.2807, "tokens": 11816386560, "tok_s": 268500.9, "elapsed_s": 11661.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11300, "epoch": 0.97, "loss": 1.71302, "ppl": 5.546, "lr": 3.0667e-05, "lr_sched": "cosine", "grad_norm": 0.3021, "tokens": 11837337600, "tok_s": 268683.8, "elapsed_s": 11739.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11320, "epoch": 0.972, "loss": 1.84834, "ppl": 6.349, "lr": 3.0594e-05, "lr_sched": "cosine", "grad_norm": 0.3048, "tokens": 11858288640, "tok_s": 270240.1, "elapsed_s": 11817.3, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11340, "epoch": 0.973, "loss": 1.85074, "ppl": 6.365, "lr": 3.0524e-05, "lr_sched": "cosine", "grad_norm": 0.2703, "tokens": 11879239680, "tok_s": 269813.0, "elapsed_s": 11895.0, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11360, "epoch": 0.975, "loss": 1.39704, "ppl": 4.043, "lr": 3.046e-05, "lr_sched": "cosine", "grad_norm": 0.3029, "tokens": 11900190720, "tok_s": 268804.5, "elapsed_s": 11972.8, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11380, "epoch": 0.977, "loss": 1.87909, "ppl": 6.548, "lr": 3.0399e-05, "lr_sched": "cosine", "grad_norm": 0.3174, "tokens": 11921141760, "tok_s": 270384.7, "elapsed_s": 12050.4, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11400, "epoch": 0.978, "loss": 1.8049, "ppl": 6.079, "lr": 3.0343e-05, "lr_sched": "cosine", "grad_norm": 0.2804, "tokens": 11942092800, "tok_s": 270251.3, "elapsed_s": 12128.2, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11420, "epoch": 0.98, "loss": 1.78632, "ppl": 5.967, "lr": 3.0291e-05, "lr_sched": "cosine", "grad_norm": 0.2868, "tokens": 11963043840, "tok_s": 269264.0, "elapsed_s": 12205.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11440, "epoch": 0.982, "loss": 1.81081, "ppl": 6.115, "lr": 3.0243e-05, "lr_sched": "cosine", "grad_norm": 0.2888, "tokens": 11983994880, "tok_s": 269880.8, "elapsed_s": 12283.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11460, "epoch": 0.984, "loss": 1.86827, "ppl": 6.477, "lr": 3.0199e-05, "lr_sched": "cosine", "grad_norm": 0.3069, "tokens": 12004945920, "tok_s": 268846.8, "elapsed_s": 12361.4, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11480, "epoch": 0.985, "loss": 1.81303, "ppl": 6.129, "lr": 3.016e-05, "lr_sched": "cosine", "grad_norm": 0.3257, "tokens": 12025896960, "tok_s": 268923.7, "elapsed_s": 12439.2, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11500, "epoch": 0.987, "loss": 1.87356, "ppl": 6.511, "lr": 3.0125e-05, "lr_sched": "cosine", "grad_norm": 0.2923, "tokens": 12046848000, "tok_s": 269397.7, "elapsed_s": 12516.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11520, "epoch": 0.989, "loss": 1.81918, "ppl": 6.167, "lr": 3.0095e-05, "lr_sched": "cosine", "grad_norm": 0.2609, "tokens": 12067799040, "tok_s": 269716.9, "elapsed_s": 12594.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11540, "epoch": 0.99, "loss": 1.83873, "ppl": 6.289, "lr": 3.0068e-05, "lr_sched": "cosine", "grad_norm": 0.2673, "tokens": 12088750080, "tok_s": 268892.8, "elapsed_s": 12672.4, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11560, "epoch": 0.992, "loss": 1.8156, "ppl": 6.145, "lr": 3.0046e-05, "lr_sched": "cosine", "grad_norm": 0.3319, "tokens": 12109701120, "tok_s": 269900.1, "elapsed_s": 12750.1, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11580, "epoch": 0.994, "loss": 1.8363, "ppl": 6.273, "lr": 3.0029e-05, "lr_sched": "cosine", "grad_norm": 0.2887, "tokens": 12130652160, "tok_s": 269548.5, "elapsed_s": 12827.9, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11600, "epoch": 0.996, "loss": 1.82102, "ppl": 6.178, "lr": 3.0015e-05, "lr_sched": "cosine", "grad_norm": 0.2774, "tokens": 12151603200, "tok_s": 270289.1, "elapsed_s": 12905.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11600, "epoch": 0.996, "val_loss": 1.89176, "val_ppl": 6.631, "best_val_ppl": 6.631, "is_best": true} +{"step": 11620, "epoch": 0.997, "loss": 1.84643, "ppl": 6.337, "lr": 3.0006e-05, "lr_sched": "cosine", "grad_norm": 0.3379, "tokens": 12172554240, "tok_s": 270729.8, "elapsed_s": 13300.7, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} +{"step": 11640, "epoch": 0.999, "loss": 1.79849, "ppl": 6.041, "lr": 3.0001e-05, "lr_sched": "cosine", "grad_norm": 0.3078, "tokens": 12193505280, "tok_s": 268458.1, "elapsed_s": 13378.6, "vram_gb": 2.78, "ram_pct": 4.4, "disk_free_gb": 9223371968.84, "attn_backend": "chunked", "amp_dtype": "torch.bfloat16"} diff --git a/train_log.log b/train_log.log new file mode 100644 index 0000000..f4059ed --- /dev/null +++ b/train_log.log @@ -0,0 +1,276 @@ +2026-07-24 18:24:24,991 | HTTP Request: GET https://huggingface.co/api/agent-harnesses "HTTP/1.1 200 OK" +2026-07-24 18:24:25,017 | HTTP Request: GET https://huggingface.co/api/whoami-v2 "HTTP/1.1 200 OK" +2026-07-24 18:24:25,069 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/config.json "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,099 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/config.json "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,130 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/tokenizer_config.json "HTTP/1.1 307 Temporary Redirect" +2026-07-24 18:24:25,141 | HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/tokenizer_config.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,153 | HTTP Request: GET https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/tokenizer_config.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,184 | HTTP Request: GET https://huggingface.co/api/models/GODELEV/TOK-16K/tree/main/additional_chat_templates?recursive=false&expand=false "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,214 | HTTP Request: GET https://huggingface.co/api/models/GODELEV/TOK-16K/tree/main?recursive=true&expand=false "HTTP/1.1 200 OK" +2026-07-24 18:24:25,241 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/tokenizer.json "HTTP/1.1 307 Temporary Redirect" +2026-07-24 18:24:25,252 | HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/tokenizer.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,263 | HTTP Request: GET https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/tokenizer.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,309 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/tokenizer.model "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,339 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/added_tokens.json "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,371 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/special_tokens_map.json "HTTP/1.1 307 Temporary Redirect" +2026-07-24 18:24:25,382 | HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/special_tokens_map.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,393 | HTTP Request: GET https://huggingface.co/api/resolve-cache/models/GODELEV/TOK-16K/75fdb3c4114e2b79cac5e43fc8c4a8d5e48acbb3/special_tokens_map.json "HTTP/1.1 200 OK" +2026-07-24 18:24:25,422 | HTTP Request: HEAD https://huggingface.co/GODELEV/TOK-16K/resolve/main/chat_template.jinja "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,534 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/main/README.md "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,566 | HTTP Request: GET https://huggingface.co/api/datasets/CyanMonkey/Dataset-1-16-1024 "HTTP/1.1 200 OK" +2026-07-24 18:24:25,596 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/Dataset-1-16-1024.py "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,653 | HTTP Request: HEAD https://s3.amazonaws.com/datasets.huggingface.co/datasets/datasets/CyanMonkey/Dataset-1-16-1024/CyanMonkey/Dataset-1-16-1024.py "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,681 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/README.md "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,710 | HTTP Request: GET https://huggingface.co/api/datasets/CyanMonkey/Dataset-1-16-1024/revision/0c91017612a0ade103e68623e6db22637984be88 "HTTP/1.1 200 OK" +2026-07-24 18:24:25,736 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/.huggingface.yaml "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,822 | HTTP Request: GET https://datasets-server.huggingface.co/info?dataset=CyanMonkey/Dataset-1-16-1024 "HTTP/1.1 200 OK" +2026-07-24 18:24:25,851 | HTTP Request: GET https://huggingface.co/api/datasets/CyanMonkey/Dataset-1-16-1024/tree/0c91017612a0ade103e68623e6db22637984be88/data?recursive=true&expand=false "HTTP/1.1 200 OK" +2026-07-24 18:24:25,897 | HTTP Request: GET https://huggingface.co/api/datasets/CyanMonkey/Dataset-1-16-1024/tree/0c91017612a0ade103e68623e6db22637984be88?recursive=false&expand=false "HTTP/1.1 200 OK" +2026-07-24 18:24:25,931 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/dataset_infos.json "HTTP/1.1 404 Not Found" +2026-07-24 18:24:25,986 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00000-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:24:32,406 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00001-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:24:37,972 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00002-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:24:44,092 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00003-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:24:49,763 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00004-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:24:55,377 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00005-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:00,890 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00006-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:07,243 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00007-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:13,626 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00008-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:19,362 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00009-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:25,777 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00010-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:30,212 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00011-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:36,531 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00012-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:41,152 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00013-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:47,711 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00014-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:53,464 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00015-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:25:58,166 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00016-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:04,941 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00017-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:10,935 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00018-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:15,083 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00019-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:20,897 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00020-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:25,774 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00021-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:32,577 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00022-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:39,394 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00023-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:45,748 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00024-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:51,669 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00025-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:26:57,901 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00026-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:27:05,186 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00027-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:27:11,699 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00028-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:27:19,442 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/train-00029-of-00030.arrow "HTTP/1.1 302 Found" +2026-07-24 18:27:26,293 | HTTP Request: HEAD https://huggingface.co/datasets/CyanMonkey/Dataset-1-16-1024/resolve/0c91017612a0ade103e68623e6db22637984be88/data/val-00000-of-00001.arrow "HTTP/1.1 302 Found" +2026-07-24 18:29:17,865 | Data loaded train=11,931,626 val=200,000 steps_per_epoch=11,652 total_epochs=1.00 +2026-07-24 18:29:19,261 | Model 49.691M params | float32 | amp=torch.bfloat16 | compiled=True | attn=chunked +2026-07-24 18:29:19,338 | HTTP Request: HEAD https://huggingface.co/CyanMonkey/Petal-50M/resolve/main/resume/latest_step.txt "HTTP/1.1 307 Temporary Redirect" +2026-07-24 18:29:19,350 | HTTP Request: HEAD https://huggingface.co/api/resolve-cache/models/CyanMonkey/Petal-50M/320b1e3e83ff8663c444de50aff846230650e989/resume%2Flatest_step.txt "HTTP/1.1 200 OK" +2026-07-24 18:29:19,363 | HTTP Request: GET https://huggingface.co/api/resolve-cache/models/CyanMonkey/Petal-50M/320b1e3e83ff8663c444de50aff846230650e989/resume%2Flatest_step.txt "HTTP/1.1 200 OK" +2026-07-24 18:29:19,408 | HTTP Request: HEAD https://huggingface.co/CyanMonkey/Petal-50M/resolve/main/resume/ckpt.pt "HTTP/1.1 302 Found" +2026-07-24 18:29:26,123 | Resumed step=8800 tokens=9218457600 samples=9011200 +2026-07-24 18:31:37,533 | step= 8820 | epoch=0.76 | loss=1.8372 | ppl=6.28 | lr=7.08e-05 | grad=0.289 | tok/s=267,843 | ETA=3:04:36 | VRAM=2.8GB | RAM=4% +2026-07-24 18:32:55,278 | step= 8840 | epoch=0.76 | loss=1.8899 | ppl=6.62 | lr=7.02e-05 | grad=0.282 | tok/s=269,322 | ETA=3:02:17 | VRAM=2.8GB | RAM=4% +2026-07-24 18:34:12,977 | step= 8860 | epoch=0.76 | loss=1.9275 | ppl=6.87 | lr=6.97e-05 | grad=0.293 | tok/s=269,209 | ETA=3:01:04 | VRAM=2.8GB | RAM=4% +2026-07-24 18:35:30,680 | step= 8880 | epoch=0.76 | loss=1.8292 | ppl=6.23 | lr=6.91e-05 | grad=0.312 | tok/s=269,646 | ETA=2:59:28 | VRAM=2.8GB | RAM=4% +2026-07-24 18:36:48,478 | step= 8900 | epoch=0.76 | loss=1.8647 | ppl=6.45 | lr=6.86e-05 | grad=0.271 | tok/s=268,453 | ETA=2:58:58 | VRAM=2.8GB | RAM=4% +2026-07-24 18:38:06,220 | step= 8920 | epoch=0.77 | loss=1.9082 | ppl=6.74 | lr=6.81e-05 | grad=0.272 | tok/s=268,964 | ETA=2:57:20 | VRAM=2.8GB | RAM=4% +2026-07-24 18:39:24,098 | step= 8940 | epoch=0.77 | loss=1.9117 | ppl=6.76 | lr=6.75e-05 | grad=0.292 | tok/s=268,678 | ETA=2:56:13 | VRAM=2.8GB | RAM=4% +2026-07-24 18:40:41,778 | step= 8960 | epoch=0.77 | loss=1.8057 | ppl=6.08 | lr=6.70e-05 | grad=0.273 | tok/s=268,837 | ETA=2:54:49 | VRAM=2.8GB | RAM=4% +2026-07-24 18:41:59,465 | step= 8980 | epoch=0.77 | loss=1.8845 | ppl=6.58 | lr=6.65e-05 | grad=0.269 | tok/s=270,644 | ETA=2:52:22 | VRAM=2.8GB | RAM=4% +2026-07-24 18:43:17,141 | step= 9000 | epoch=0.77 | loss=1.8566 | ppl=6.40 | lr=6.60e-05 | grad=0.306 | tok/s=269,440 | ETA=2:51:50 | VRAM=2.8GB | RAM=4% +2026-07-24 18:44:34,952 | step= 9020 | epoch=0.77 | loss=1.8638 | ppl=6.45 | lr=6.55e-05 | grad=0.285 | tok/s=269,912 | ETA=2:50:15 | VRAM=2.8GB | RAM=4% +2026-07-24 18:45:52,810 | step= 9040 | epoch=0.78 | loss=1.8424 | ppl=6.31 | lr=6.50e-05 | grad=0.271 | tok/s=269,519 | ETA=2:49:12 | VRAM=2.8GB | RAM=4% +2026-07-24 18:47:10,732 | step= 9060 | epoch=0.78 | loss=1.9069 | ppl=6.73 | lr=6.44e-05 | grad=0.311 | tok/s=268,620 | ETA=2:48:28 | VRAM=2.8GB | RAM=4% +2026-07-24 18:48:28,650 | step= 9080 | epoch=0.78 | loss=1.8425 | ppl=6.31 | lr=6.39e-05 | grad=0.301 | tok/s=268,382 | ETA=2:47:19 | VRAM=2.8GB | RAM=4% +2026-07-24 18:49:46,630 | step= 9100 | epoch=0.78 | loss=1.8666 | ppl=6.47 | lr=6.34e-05 | grad=0.282 | tok/s=269,944 | ETA=2:45:03 | VRAM=4.9GB | RAM=4% +2026-07-24 18:51:04,352 | step= 9120 | epoch=0.78 | loss=1.8397 | ppl=6.29 | lr=6.29e-05 | grad=0.285 | tok/s=269,876 | ETA=2:43:48 | VRAM=4.9GB | RAM=4% +2026-07-24 18:52:22,151 | step= 9140 | epoch=0.78 | loss=1.8387 | ppl=6.29 | lr=6.24e-05 | grad=0.285 | tok/s=268,713 | ETA=2:43:12 | VRAM=4.9GB | RAM=4% +2026-07-24 18:53:40,059 | step= 9160 | epoch=0.79 | loss=1.8607 | ppl=6.43 | lr=6.19e-05 | grad=0.271 | tok/s=269,246 | ETA=2:41:35 | VRAM=4.9GB | RAM=4% +2026-07-24 18:54:57,843 | step= 9180 | epoch=0.79 | loss=1.8273 | ppl=6.22 | lr=6.15e-05 | grad=0.286 | tok/s=267,633 | ETA=2:41:15 | VRAM=4.9GB | RAM=4% +2026-07-24 18:56:15,662 | step= 9200 | epoch=0.79 | loss=1.8070 | ppl=6.09 | lr=6.10e-05 | grad=0.280 | tok/s=269,847 | ETA=2:38:38 | VRAM=4.9GB | RAM=4% +2026-07-24 19:01:59,447 | VAL step=9200 epoch=0.79 loss=1.9101 ppl=6.75 ★ BEST +2026-07-24 19:02:00,045 | Checkpoint saved: step 9200 +2026-07-24 19:02:00,465 | Saved safetensors: 128 tensors +2026-07-24 19:02:01,368 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 19:02:01,389 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 19:02:01,451 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 19:02:08,889 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 19:02:08,896 | Hub push step=9200 +2026-07-24 19:03:26,784 | step= 9220 | epoch=0.79 | loss=1.8407 | ppl=6.30 | lr=6.05e-05 | grad=0.288 | tok/s=269,275 | ETA=2:37:41 | VRAM=2.8GB | RAM=4% +2026-07-24 19:04:44,616 | step= 9240 | epoch=0.79 | loss=1.8050 | ppl=6.08 | lr=6.00e-05 | grad=0.288 | tok/s=269,726 | ETA=2:36:07 | VRAM=2.8GB | RAM=4% +2026-07-24 19:06:02,318 | step= 9260 | epoch=0.79 | loss=1.8504 | ppl=6.36 | lr=5.95e-05 | grad=0.316 | tok/s=269,143 | ETA=2:35:10 | VRAM=2.8GB | RAM=4% +2026-07-24 19:07:20,116 | step= 9280 | epoch=0.80 | loss=1.7673 | ppl=5.86 | lr=5.91e-05 | grad=0.295 | tok/s=270,519 | ETA=2:33:05 | VRAM=2.8GB | RAM=4% +2026-07-24 19:08:37,936 | step= 9300 | epoch=0.80 | loss=1.8447 | ppl=6.33 | lr=5.86e-05 | grad=0.277 | tok/s=268,534 | ETA=2:32:55 | VRAM=2.8GB | RAM=4% +2026-07-24 19:09:55,697 | step= 9320 | epoch=0.80 | loss=1.8060 | ppl=6.09 | lr=5.81e-05 | grad=0.278 | tok/s=269,601 | ETA=2:31:01 | VRAM=2.8GB | RAM=4% +2026-07-24 19:11:13,391 | step= 9340 | epoch=0.80 | loss=1.8835 | ppl=6.58 | lr=5.77e-05 | grad=0.282 | tok/s=270,046 | ETA=2:29:28 | VRAM=2.8GB | RAM=4% +2026-07-24 19:12:31,286 | step= 9360 | epoch=0.80 | loss=1.8209 | ppl=6.18 | lr=5.72e-05 | grad=0.281 | tok/s=268,722 | ETA=2:28:54 | VRAM=2.8GB | RAM=4% +2026-07-24 19:13:49,046 | step= 9380 | epoch=0.81 | loss=1.8268 | ppl=6.21 | lr=5.67e-05 | grad=0.288 | tok/s=269,370 | ETA=2:27:15 | VRAM=2.8GB | RAM=4% +2026-07-24 19:15:06,849 | step= 9400 | epoch=0.81 | loss=1.8596 | ppl=6.42 | lr=5.63e-05 | grad=0.333 | tok/s=270,002 | ETA=2:25:37 | VRAM=2.8GB | RAM=4% +2026-07-24 19:16:24,874 | step= 9420 | epoch=0.81 | loss=1.7850 | ppl=5.96 | lr=5.58e-05 | grad=0.281 | tok/s=268,378 | ETA=2:25:12 | VRAM=2.8GB | RAM=4% +2026-07-24 19:17:42,627 | step= 9440 | epoch=0.81 | loss=1.8457 | ppl=6.33 | lr=5.54e-05 | grad=0.289 | tok/s=270,474 | ETA=2:22:47 | VRAM=2.8GB | RAM=4% +2026-07-24 19:19:00,456 | step= 9460 | epoch=0.81 | loss=1.8638 | ppl=6.45 | lr=5.50e-05 | grad=0.309 | tok/s=269,360 | ETA=2:22:04 | VRAM=2.8GB | RAM=4% +2026-07-24 19:20:18,261 | step= 9480 | epoch=0.81 | loss=1.8521 | ppl=6.37 | lr=5.45e-05 | grad=0.287 | tok/s=269,680 | ETA=2:20:36 | VRAM=2.8GB | RAM=4% +2026-07-24 19:21:36,039 | step= 9500 | epoch=0.82 | loss=1.7662 | ppl=5.85 | lr=5.41e-05 | grad=0.306 | tok/s=268,422 | ETA=2:19:58 | VRAM=2.8GB | RAM=4% +2026-07-24 19:22:53,884 | step= 9520 | epoch=0.82 | loss=1.8966 | ppl=6.66 | lr=5.36e-05 | grad=0.301 | tok/s=269,291 | ETA=2:18:13 | VRAM=2.8GB | RAM=4% +2026-07-24 19:24:11,644 | step= 9540 | epoch=0.82 | loss=1.8071 | ppl=6.09 | lr=5.32e-05 | grad=0.289 | tok/s=269,399 | ETA=2:16:52 | VRAM=2.8GB | RAM=4% +2026-07-24 19:25:29,522 | step= 9560 | epoch=0.82 | loss=1.8315 | ppl=6.24 | lr=5.28e-05 | grad=0.298 | tok/s=269,282 | ETA=2:15:38 | VRAM=2.8GB | RAM=4% +2026-07-24 19:26:47,285 | step= 9580 | epoch=0.82 | loss=1.8733 | ppl=6.51 | lr=5.24e-05 | grad=0.305 | tok/s=269,561 | ETA=2:14:12 | VRAM=2.8GB | RAM=4% +2026-07-24 19:28:05,156 | step= 9600 | epoch=0.82 | loss=1.8324 | ppl=6.25 | lr=5.20e-05 | grad=0.265 | tok/s=269,896 | ETA=2:12:44 | VRAM=2.8GB | RAM=4% +2026-07-24 19:33:14,735 | VAL step=9600 epoch=0.82 loss=1.9050 ppl=6.72 ★ BEST +2026-07-24 19:33:15,318 | Checkpoint saved: step 9600 +2026-07-24 19:33:15,735 | Saved safetensors: 128 tensors +2026-07-24 19:33:16,442 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 19:33:16,464 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 19:33:16,530 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 19:33:23,519 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 19:33:23,525 | Hub push step=9600 +2026-07-24 19:34:41,374 | step= 9620 | epoch=0.83 | loss=1.8528 | ppl=6.38 | lr=5.15e-05 | grad=0.315 | tok/s=270,132 | ETA=2:11:19 | VRAM=2.8GB | RAM=4% +2026-07-24 19:35:59,102 | step= 9640 | epoch=0.83 | loss=1.8665 | ppl=6.47 | lr=5.11e-05 | grad=0.293 | tok/s=269,662 | ETA=2:10:15 | VRAM=2.8GB | RAM=4% +2026-07-24 19:37:16,910 | step= 9660 | epoch=0.83 | loss=1.8581 | ppl=6.41 | lr=5.07e-05 | grad=0.285 | tok/s=268,408 | ETA=2:09:34 | VRAM=2.8GB | RAM=4% +2026-07-24 19:38:34,714 | step= 9680 | epoch=0.83 | loss=1.8348 | ppl=6.26 | lr=5.03e-05 | grad=0.268 | tok/s=270,137 | ETA=2:07:27 | VRAM=2.8GB | RAM=4% +2026-07-24 19:39:52,534 | step= 9700 | epoch=0.83 | loss=1.9124 | ppl=6.77 | lr=4.99e-05 | grad=0.305 | tok/s=268,228 | ETA=2:07:03 | VRAM=2.8GB | RAM=4% +2026-07-24 19:41:10,225 | step= 9720 | epoch=0.83 | loss=1.8898 | ppl=6.62 | lr=4.95e-05 | grad=0.298 | tok/s=270,479 | ETA=2:04:42 | VRAM=2.8GB | RAM=4% +2026-07-24 19:42:28,011 | step= 9740 | epoch=0.84 | loss=1.8587 | ppl=6.42 | lr=4.91e-05 | grad=0.290 | tok/s=269,697 | ETA=2:03:46 | VRAM=2.8GB | RAM=4% +2026-07-24 19:43:45,826 | step= 9760 | epoch=0.84 | loss=1.8857 | ppl=6.59 | lr=4.87e-05 | grad=0.277 | tok/s=269,155 | ETA=2:02:43 | VRAM=2.8GB | RAM=4% +2026-07-24 19:45:03,615 | step= 9780 | epoch=0.84 | loss=1.8397 | ppl=6.29 | lr=4.84e-05 | grad=0.313 | tok/s=268,769 | ETA=2:01:36 | VRAM=2.8GB | RAM=4% +2026-07-24 19:46:21,397 | step= 9800 | epoch=0.84 | loss=1.8463 | ppl=6.34 | lr=4.80e-05 | grad=0.269 | tok/s=269,046 | ETA=2:00:10 | VRAM=2.8GB | RAM=4% +2026-07-24 19:47:39,200 | step= 9820 | epoch=0.84 | loss=1.8539 | ppl=6.38 | lr=4.76e-05 | grad=0.286 | tok/s=269,634 | ETA=1:58:37 | VRAM=2.8GB | RAM=4% +2026-07-24 19:48:56,937 | step= 9840 | epoch=0.84 | loss=1.8372 | ppl=6.28 | lr=4.72e-05 | grad=0.265 | tok/s=269,518 | ETA=1:57:22 | VRAM=2.8GB | RAM=4% +2026-07-24 19:50:14,645 | step= 9860 | epoch=0.85 | loss=1.8200 | ppl=6.17 | lr=4.69e-05 | grad=0.329 | tok/s=268,917 | ETA=1:56:20 | VRAM=2.8GB | RAM=4% +2026-07-24 19:51:32,400 | step= 9880 | epoch=0.85 | loss=1.8367 | ppl=6.28 | lr=4.65e-05 | grad=0.299 | tok/s=268,454 | ETA=1:55:14 | VRAM=2.8GB | RAM=4% +2026-07-24 19:52:50,183 | step= 9900 | epoch=0.85 | loss=1.8470 | ppl=6.34 | lr=4.61e-05 | grad=0.269 | tok/s=268,964 | ETA=1:53:43 | VRAM=2.8GB | RAM=4% +2026-07-24 19:54:07,889 | step= 9920 | epoch=0.85 | loss=1.8619 | ppl=6.44 | lr=4.58e-05 | grad=0.292 | tok/s=270,258 | ETA=1:51:53 | VRAM=2.8GB | RAM=4% +2026-07-24 19:55:25,661 | step= 9940 | epoch=0.85 | loss=1.8531 | ppl=6.38 | lr=4.54e-05 | grad=0.303 | tok/s=270,313 | ETA=1:50:34 | VRAM=2.8GB | RAM=4% +2026-07-24 19:56:44,022 | step= 9960 | epoch=0.85 | loss=1.8162 | ppl=6.15 | lr=4.51e-05 | grad=0.271 | tok/s=268,822 | ETA=1:49:53 | VRAM=2.8GB | RAM=4% +2026-07-24 19:58:02,274 | step= 9980 | epoch=0.86 | loss=1.8523 | ppl=6.37 | lr=4.47e-05 | grad=0.302 | tok/s=268,224 | ETA=1:48:50 | VRAM=2.8GB | RAM=4% +2026-07-24 19:59:20,467 | step= 10000 | epoch=0.86 | loss=1.9057 | ppl=6.72 | lr=4.44e-05 | grad=0.271 | tok/s=268,494 | ETA=1:47:25 | VRAM=2.8GB | RAM=4% +2026-07-24 20:04:31,980 | VAL step=10000 epoch=0.86 loss=1.8998 ppl=6.68 ★ BEST +2026-07-24 20:04:32,558 | Checkpoint saved: step 10000 +2026-07-24 20:04:32,780 | Saved safetensors: 128 tensors +2026-07-24 20:04:33,454 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 20:04:33,476 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 20:04:33,629 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 20:04:39,458 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 20:04:39,463 | Hub push step=10000 +2026-07-24 20:05:57,622 | step= 10020 | epoch=0.86 | loss=1.8491 | ppl=6.35 | lr=4.40e-05 | grad=0.268 | tok/s=268,508 | ETA=1:46:07 | VRAM=2.8GB | RAM=4% +2026-07-24 20:07:15,369 | step= 10040 | epoch=0.86 | loss=1.8440 | ppl=6.32 | lr=4.37e-05 | grad=0.255 | tok/s=270,180 | ETA=1:44:10 | VRAM=2.8GB | RAM=4% +2026-07-24 20:08:32,997 | step= 10060 | epoch=0.86 | loss=1.8688 | ppl=6.48 | lr=4.34e-05 | grad=0.280 | tok/s=270,413 | ETA=1:42:47 | VRAM=2.8GB | RAM=4% +2026-07-24 20:09:50,873 | step= 10080 | epoch=0.87 | loss=1.8438 | ppl=6.32 | lr=4.30e-05 | grad=0.311 | tok/s=268,577 | ETA=1:42:11 | VRAM=2.8GB | RAM=4% +2026-07-24 20:11:08,709 | step= 10100 | epoch=0.87 | loss=1.9906 | ppl=7.32 | lr=4.27e-05 | grad=0.380 | tok/s=269,403 | ETA=1:40:34 | VRAM=2.8GB | RAM=4% +2026-07-24 20:12:26,669 | step= 10120 | epoch=0.87 | loss=1.7548 | ppl=5.78 | lr=4.24e-05 | grad=0.281 | tok/s=267,511 | ETA=1:39:59 | VRAM=2.8GB | RAM=4% +2026-07-24 20:13:44,797 | step= 10140 | epoch=0.87 | loss=1.9957 | ppl=7.36 | lr=4.21e-05 | grad=0.836 | tok/s=268,305 | ETA=1:38:23 | VRAM=2.8GB | RAM=4% +2026-07-24 20:15:02,766 | step= 10160 | epoch=0.87 | loss=1.8697 | ppl=6.49 | lr=4.18e-05 | grad=0.309 | tok/s=268,553 | ETA=1:36:59 | VRAM=2.8GB | RAM=4% +2026-07-24 20:16:20,661 | step= 10180 | epoch=0.87 | loss=1.8329 | ppl=6.25 | lr=4.15e-05 | grad=0.259 | tok/s=269,278 | ETA=1:35:26 | VRAM=2.8GB | RAM=4% +2026-07-24 20:17:38,607 | step= 10200 | epoch=0.88 | loss=1.8581 | ppl=6.41 | lr=4.12e-05 | grad=0.302 | tok/s=267,794 | ETA=1:34:39 | VRAM=2.8GB | RAM=4% +2026-07-24 20:18:56,652 | step= 10220 | epoch=0.88 | loss=1.8047 | ppl=6.08 | lr=4.09e-05 | grad=0.293 | tok/s=266,895 | ETA=1:33:40 | VRAM=2.8GB | RAM=4% +2026-07-24 20:20:14,962 | step= 10240 | epoch=0.88 | loss=1.7806 | ppl=5.93 | lr=4.06e-05 | grad=0.267 | tok/s=266,389 | ETA=1:32:32 | VRAM=2.8GB | RAM=4% +2026-07-24 20:21:33,422 | step= 10260 | epoch=0.88 | loss=1.7963 | ppl=6.03 | lr=4.03e-05 | grad=0.287 | tok/s=267,578 | ETA=1:30:49 | VRAM=2.8GB | RAM=4% +2026-07-24 20:22:51,726 | step= 10280 | epoch=0.88 | loss=1.8656 | ppl=6.46 | lr=4.00e-05 | grad=0.304 | tok/s=267,173 | ETA=1:29:39 | VRAM=2.8GB | RAM=4% +2026-07-24 20:24:10,009 | step= 10300 | epoch=0.88 | loss=1.7857 | ppl=5.96 | lr=3.97e-05 | grad=0.290 | tok/s=269,065 | ETA=1:27:43 | VRAM=2.8GB | RAM=4% +2026-07-24 20:25:28,035 | step= 10320 | epoch=0.89 | loss=1.8017 | ppl=6.06 | lr=3.94e-05 | grad=0.276 | tok/s=268,776 | ETA=1:26:31 | VRAM=2.8GB | RAM=4% +2026-07-24 20:26:46,084 | step= 10340 | epoch=0.89 | loss=1.8948 | ppl=6.65 | lr=3.91e-05 | grad=0.281 | tok/s=269,708 | ETA=1:24:55 | VRAM=2.8GB | RAM=4% +2026-07-24 20:28:04,051 | step= 10360 | epoch=0.89 | loss=1.8680 | ppl=6.48 | lr=3.89e-05 | grad=0.289 | tok/s=266,907 | ETA=1:24:30 | VRAM=2.8GB | RAM=4% +2026-07-24 20:29:21,966 | step= 10380 | epoch=0.89 | loss=1.8093 | ppl=6.11 | lr=3.86e-05 | grad=0.276 | tok/s=268,032 | ETA=1:22:51 | VRAM=2.8GB | RAM=4% +2026-07-24 20:30:39,764 | step= 10400 | epoch=0.89 | loss=1.8634 | ppl=6.45 | lr=3.83e-05 | grad=0.276 | tok/s=269,515 | ETA=1:21:06 | VRAM=2.8GB | RAM=4% +2026-07-24 20:35:51,744 | VAL step=10400 epoch=0.89 loss=1.8960 ppl=6.66 ★ BEST +2026-07-24 20:35:52,391 | Checkpoint saved: step 10400 +2026-07-24 20:35:52,629 | Saved safetensors: 128 tensors +2026-07-24 20:35:53,596 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 20:35:53,619 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 20:35:53,673 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 20:36:01,183 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 20:36:01,190 | Hub push step=10400 +2026-07-24 20:37:19,185 | step= 10420 | epoch=0.89 | loss=1.8367 | ppl=6.28 | lr=3.81e-05 | grad=0.294 | tok/s=269,255 | ETA=1:19:53 | VRAM=2.8GB | RAM=4% +2026-07-24 20:38:37,284 | step= 10440 | epoch=0.90 | loss=1.8793 | ppl=6.55 | lr=3.78e-05 | grad=0.270 | tok/s=268,954 | ETA=1:18:40 | VRAM=2.8GB | RAM=4% +2026-07-24 20:39:55,459 | step= 10460 | epoch=0.90 | loss=1.8390 | ppl=6.29 | lr=3.76e-05 | grad=0.274 | tok/s=267,856 | ETA=1:17:41 | VRAM=2.8GB | RAM=4% +2026-07-24 20:41:13,643 | step= 10480 | epoch=0.90 | loss=1.8709 | ppl=6.49 | lr=3.73e-05 | grad=0.289 | tok/s=268,423 | ETA=1:16:13 | VRAM=2.8GB | RAM=4% +2026-07-24 20:42:31,742 | step= 10500 | epoch=0.90 | loss=1.8841 | ppl=6.58 | lr=3.71e-05 | grad=0.278 | tok/s=266,778 | ETA=1:15:23 | VRAM=2.8GB | RAM=4% +2026-07-24 20:43:49,784 | step= 10520 | epoch=0.90 | loss=1.9385 | ppl=6.95 | lr=3.68e-05 | grad=0.425 | tok/s=268,819 | ETA=1:13:31 | VRAM=2.8GB | RAM=4% +2026-07-24 20:45:07,701 | step= 10540 | epoch=0.90 | loss=1.8205 | ppl=6.18 | lr=3.66e-05 | grad=0.310 | tok/s=266,670 | ETA=1:12:48 | VRAM=2.8GB | RAM=4% +2026-07-24 20:46:25,767 | step= 10560 | epoch=0.91 | loss=1.8730 | ppl=6.51 | lr=3.63e-05 | grad=0.321 | tok/s=268,010 | ETA=1:11:08 | VRAM=2.8GB | RAM=4% +2026-07-24 20:47:43,699 | step= 10580 | epoch=0.91 | loss=1.8236 | ppl=6.19 | lr=3.61e-05 | grad=0.302 | tok/s=269,219 | ETA=1:09:31 | VRAM=2.8GB | RAM=4% +2026-07-24 20:49:01,598 | step= 10600 | epoch=0.91 | loss=1.7434 | ppl=5.72 | lr=3.59e-05 | grad=0.330 | tok/s=269,249 | ETA=1:08:12 | VRAM=2.8GB | RAM=4% +2026-07-24 20:50:19,813 | step= 10620 | epoch=0.91 | loss=1.8435 | ppl=6.32 | lr=3.57e-05 | grad=0.302 | tok/s=268,201 | ETA=1:07:10 | VRAM=2.8GB | RAM=4% +2026-07-24 20:51:37,783 | step= 10640 | epoch=0.91 | loss=1.8317 | ppl=6.24 | lr=3.55e-05 | grad=0.314 | tok/s=268,062 | ETA=1:05:54 | VRAM=2.8GB | RAM=4% +2026-07-24 20:52:55,840 | step= 10660 | epoch=0.91 | loss=1.8605 | ppl=6.43 | lr=3.52e-05 | grad=0.273 | tok/s=267,554 | ETA=1:04:43 | VRAM=2.8GB | RAM=4% +2026-07-24 20:54:13,923 | step= 10680 | epoch=0.92 | loss=1.8194 | ppl=6.17 | lr=3.50e-05 | grad=0.324 | tok/s=269,258 | ETA=1:03:01 | VRAM=2.8GB | RAM=4% +2026-07-24 20:55:32,049 | step= 10700 | epoch=0.92 | loss=1.8464 | ppl=6.34 | lr=3.48e-05 | grad=0.334 | tok/s=268,389 | ETA=1:01:55 | VRAM=2.8GB | RAM=4% +2026-07-24 20:56:50,129 | step= 10720 | epoch=0.92 | loss=1.8211 | ppl=6.18 | lr=3.46e-05 | grad=0.320 | tok/s=268,854 | ETA=1:00:31 | VRAM=2.8GB | RAM=4% +2026-07-24 20:58:07,995 | step= 10740 | epoch=0.92 | loss=1.7889 | ppl=5.98 | lr=3.44e-05 | grad=0.353 | tok/s=269,902 | ETA=0:58:59 | VRAM=2.8GB | RAM=4% +2026-07-24 20:59:26,042 | step= 10760 | epoch=0.92 | loss=1.8632 | ppl=6.44 | lr=3.42e-05 | grad=0.268 | tok/s=269,196 | ETA=0:57:51 | VRAM=2.8GB | RAM=4% +2026-07-24 21:00:43,992 | step= 10780 | epoch=0.93 | loss=1.9256 | ppl=6.86 | lr=3.41e-05 | grad=0.261 | tok/s=268,817 | ETA=0:56:38 | VRAM=2.8GB | RAM=4% +2026-07-24 21:02:01,953 | step= 10800 | epoch=0.93 | loss=1.8872 | ppl=6.60 | lr=3.39e-05 | grad=0.249 | tok/s=268,131 | ETA=0:55:28 | VRAM=2.8GB | RAM=4% +2026-07-24 21:07:14,893 | VAL step=10800 epoch=0.93 loss=1.8945 ppl=6.65 ★ BEST +2026-07-24 21:07:15,503 | Checkpoint saved: step 10800 +2026-07-24 21:07:16,115 | Saved safetensors: 128 tensors +2026-07-24 21:07:16,834 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 21:07:16,862 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 21:07:16,910 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 21:07:22,969 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 21:07:22,977 | Hub push step=10800 +2026-07-24 21:08:40,856 | step= 10820 | epoch=0.93 | loss=1.8496 | ppl=6.36 | lr=3.37e-05 | grad=0.285 | tok/s=269,643 | ETA=0:53:52 | VRAM=2.8GB | RAM=4% +2026-07-24 21:09:58,650 | step= 10840 | epoch=0.93 | loss=1.9015 | ppl=6.70 | lr=3.35e-05 | grad=0.265 | tok/s=267,937 | ETA=0:52:54 | VRAM=2.8GB | RAM=4% +2026-07-24 21:11:16,399 | step= 10860 | epoch=0.93 | loss=1.8430 | ppl=6.32 | lr=3.34e-05 | grad=0.270 | tok/s=268,045 | ETA=0:51:35 | VRAM=2.8GB | RAM=4% +2026-07-24 21:12:34,169 | step= 10880 | epoch=0.93 | loss=1.8847 | ppl=6.58 | lr=3.32e-05 | grad=0.282 | tok/s=268,891 | ETA=0:50:07 | VRAM=2.8GB | RAM=4% +2026-07-24 21:13:51,867 | step= 10900 | epoch=0.94 | loss=1.8696 | ppl=6.49 | lr=3.30e-05 | grad=0.274 | tok/s=269,174 | ETA=0:48:46 | VRAM=2.8GB | RAM=4% +2026-07-24 21:15:09,741 | step= 10920 | epoch=0.94 | loss=1.8623 | ppl=6.44 | lr=3.29e-05 | grad=0.269 | tok/s=268,914 | ETA=0:47:31 | VRAM=2.8GB | RAM=4% +2026-07-24 21:16:27,635 | step= 10940 | epoch=0.94 | loss=1.8284 | ppl=6.22 | lr=3.27e-05 | grad=0.266 | tok/s=268,764 | ETA=0:46:15 | VRAM=2.8GB | RAM=4% +2026-07-24 21:17:45,480 | step= 10960 | epoch=0.94 | loss=1.8252 | ppl=6.20 | lr=3.26e-05 | grad=0.257 | tok/s=269,449 | ETA=0:44:50 | VRAM=2.8GB | RAM=4% +2026-07-24 21:19:03,274 | step= 10980 | epoch=0.94 | loss=1.7898 | ppl=5.99 | lr=3.24e-05 | grad=0.270 | tok/s=269,022 | ETA=0:43:36 | VRAM=2.8GB | RAM=4% +2026-07-24 21:20:21,024 | step= 11000 | epoch=0.94 | loss=1.8794 | ppl=6.55 | lr=3.23e-05 | grad=0.286 | tok/s=269,528 | ETA=0:42:14 | VRAM=2.8GB | RAM=4% +2026-07-24 21:21:38,871 | step= 11020 | epoch=0.95 | loss=1.8688 | ppl=6.48 | lr=3.21e-05 | grad=0.289 | tok/s=269,424 | ETA=0:40:57 | VRAM=2.8GB | RAM=4% +2026-07-24 21:22:56,606 | step= 11040 | epoch=0.95 | loss=1.7705 | ppl=5.87 | lr=3.20e-05 | grad=0.276 | tok/s=268,932 | ETA=0:39:43 | VRAM=2.8GB | RAM=4% +2026-07-24 21:24:14,422 | step= 11060 | epoch=0.95 | loss=1.8436 | ppl=6.32 | lr=3.19e-05 | grad=0.284 | tok/s=268,462 | ETA=0:38:30 | VRAM=2.8GB | RAM=4% +2026-07-24 21:25:32,216 | step= 11080 | epoch=0.95 | loss=1.8325 | ppl=6.25 | lr=3.18e-05 | grad=0.259 | tok/s=269,722 | ETA=0:37:01 | VRAM=2.8GB | RAM=4% +2026-07-24 21:26:49,993 | step= 11100 | epoch=0.95 | loss=1.8142 | ppl=6.14 | lr=3.16e-05 | grad=0.291 | tok/s=268,992 | ETA=0:35:49 | VRAM=2.8GB | RAM=4% +2026-07-24 21:28:07,960 | step= 11120 | epoch=0.95 | loss=1.8339 | ppl=6.26 | lr=3.15e-05 | grad=0.290 | tok/s=269,166 | ETA=0:34:30 | VRAM=2.8GB | RAM=4% +2026-07-24 21:29:25,829 | step= 11140 | epoch=0.96 | loss=1.8483 | ppl=6.35 | lr=3.14e-05 | grad=0.295 | tok/s=268,703 | ETA=0:33:16 | VRAM=2.8GB | RAM=4% +2026-07-24 21:30:43,692 | step= 11160 | epoch=0.96 | loss=1.8846 | ppl=6.58 | lr=3.13e-05 | grad=0.264 | tok/s=268,960 | ETA=0:31:56 | VRAM=2.8GB | RAM=4% +2026-07-24 21:32:01,532 | step= 11180 | epoch=0.96 | loss=1.8764 | ppl=6.53 | lr=3.12e-05 | grad=0.270 | tok/s=269,321 | ETA=0:30:35 | VRAM=2.8GB | RAM=4% +2026-07-24 21:33:19,313 | step= 11200 | epoch=0.96 | loss=1.8890 | ppl=6.61 | lr=3.11e-05 | grad=0.263 | tok/s=269,877 | ETA=0:29:14 | VRAM=2.8GB | RAM=4% +2026-07-24 21:38:29,020 | VAL step=11200 epoch=0.96 loss=1.8925 ppl=6.64 ★ BEST +2026-07-24 21:38:29,613 | Checkpoint saved: step 11200 +2026-07-24 21:38:29,843 | Saved safetensors: 128 tensors +2026-07-24 21:38:30,707 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 21:38:30,728 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 21:38:30,788 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 21:38:36,796 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 21:38:36,800 | Hub push step=11200 +2026-07-24 21:39:54,582 | step= 11220 | epoch=0.96 | loss=1.9293 | ppl=6.88 | lr=3.10e-05 | grad=0.296 | tok/s=268,539 | ETA=0:28:05 | VRAM=2.8GB | RAM=4% +2026-07-24 21:41:12,308 | step= 11240 | epoch=0.96 | loss=1.8908 | ppl=6.62 | lr=3.09e-05 | grad=0.261 | tok/s=269,335 | ETA=0:26:42 | VRAM=2.8GB | RAM=4% +2026-07-24 21:42:30,095 | step= 11260 | epoch=0.97 | loss=1.8585 | ppl=6.41 | lr=3.08e-05 | grad=0.298 | tok/s=268,240 | ETA=0:25:30 | VRAM=2.8GB | RAM=4% +2026-07-24 21:43:48,027 | step= 11280 | epoch=0.97 | loss=1.8414 | ppl=6.31 | lr=3.07e-05 | grad=0.281 | tok/s=268,501 | ETA=0:24:11 | VRAM=2.8GB | RAM=4% +2026-07-24 21:45:05,718 | step= 11300 | epoch=0.97 | loss=1.7130 | ppl=5.55 | lr=3.07e-05 | grad=0.302 | tok/s=268,684 | ETA=0:22:52 | VRAM=2.8GB | RAM=4% +2026-07-24 21:46:23,463 | step= 11320 | epoch=0.97 | loss=1.8483 | ppl=6.35 | lr=3.06e-05 | grad=0.305 | tok/s=270,240 | ETA=0:21:26 | VRAM=2.8GB | RAM=4% +2026-07-24 21:47:41,116 | step= 11340 | epoch=0.97 | loss=1.8507 | ppl=6.36 | lr=3.05e-05 | grad=0.270 | tok/s=269,813 | ETA=0:20:11 | VRAM=2.8GB | RAM=4% +2026-07-24 21:48:58,882 | step= 11360 | epoch=0.97 | loss=1.3970 | ppl=4.04 | lr=3.05e-05 | grad=0.303 | tok/s=268,805 | ETA=0:18:57 | VRAM=2.8GB | RAM=4% +2026-07-24 21:50:16,555 | step= 11380 | epoch=0.98 | loss=1.8791 | ppl=6.55 | lr=3.04e-05 | grad=0.317 | tok/s=270,385 | ETA=0:17:33 | VRAM=2.8GB | RAM=4% +2026-07-24 21:51:34,284 | step= 11400 | epoch=0.98 | loss=1.8049 | ppl=6.08 | lr=3.03e-05 | grad=0.280 | tok/s=270,251 | ETA=0:16:16 | VRAM=2.8GB | RAM=4% +2026-07-24 21:52:52,038 | step= 11420 | epoch=0.98 | loss=1.7863 | ppl=5.97 | lr=3.03e-05 | grad=0.287 | tok/s=269,264 | ETA=0:15:02 | VRAM=2.8GB | RAM=4% +2026-07-24 21:54:09,804 | step= 11440 | epoch=0.98 | loss=1.8108 | ppl=6.12 | lr=3.02e-05 | grad=0.289 | tok/s=269,881 | ETA=0:13:42 | VRAM=2.8GB | RAM=4% +2026-07-24 21:55:27,546 | step= 11460 | epoch=0.98 | loss=1.8683 | ppl=6.48 | lr=3.02e-05 | grad=0.307 | tok/s=268,847 | ETA=0:12:28 | VRAM=2.8GB | RAM=4% +2026-07-24 21:56:45,352 | step= 11480 | epoch=0.99 | loss=1.8130 | ppl=6.13 | lr=3.02e-05 | grad=0.326 | tok/s=268,924 | ETA=0:11:10 | VRAM=2.8GB | RAM=4% +2026-07-24 21:58:03,085 | step= 11500 | epoch=0.99 | loss=1.8736 | ppl=6.51 | lr=3.01e-05 | grad=0.292 | tok/s=269,398 | ETA=0:09:51 | VRAM=2.8GB | RAM=4% +2026-07-24 21:59:20,833 | step= 11520 | epoch=0.99 | loss=1.8192 | ppl=6.17 | lr=3.01e-05 | grad=0.261 | tok/s=269,717 | ETA=0:08:32 | VRAM=2.8GB | RAM=4% +2026-07-24 22:00:38,584 | step= 11540 | epoch=0.99 | loss=1.8387 | ppl=6.29 | lr=3.01e-05 | grad=0.267 | tok/s=268,893 | ETA=0:07:16 | VRAM=2.8GB | RAM=4% +2026-07-24 22:01:56,269 | step= 11560 | epoch=0.99 | loss=1.8156 | ppl=6.14 | lr=3.00e-05 | grad=0.332 | tok/s=269,900 | ETA=0:05:57 | VRAM=2.8GB | RAM=4% +2026-07-24 22:03:14,054 | step= 11580 | epoch=0.99 | loss=1.8363 | ppl=6.27 | lr=3.00e-05 | grad=0.289 | tok/s=269,549 | ETA=0:04:39 | VRAM=2.8GB | RAM=4% +2026-07-24 22:04:31,811 | step= 11600 | epoch=1.00 | loss=1.8210 | ppl=6.18 | lr=3.00e-05 | grad=0.277 | tok/s=270,289 | ETA=0:03:21 | VRAM=2.8GB | RAM=4% +2026-07-24 22:09:41,429 | VAL step=11600 epoch=1.00 loss=1.8918 ppl=6.63 ★ BEST +2026-07-24 22:09:42,057 | Checkpoint saved: step 11600 +2026-07-24 22:09:42,263 | Saved safetensors: 128 tensors +2026-07-24 22:09:43,244 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 22:09:43,263 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 22:09:43,499 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 22:09:49,177 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 22:09:49,182 | Hub push step=11600 +2026-07-24 22:11:06,855 | step= 11620 | epoch=1.00 | loss=1.8464 | ppl=6.34 | lr=3.00e-05 | grad=0.338 | tok/s=270,730 | ETA=0:02:03 | VRAM=2.8GB | RAM=4% +2026-07-24 22:12:24,685 | step= 11640 | epoch=1.00 | loss=1.7985 | ppl=6.04 | lr=3.00e-05 | grad=0.308 | tok/s=268,458 | ETA=0:00:46 | VRAM=2.8GB | RAM=4% +2026-07-24 22:18:20,682 | Final eval loss=1.8920 ppl=6.63 +2026-07-24 22:18:21,294 | Checkpoint saved: step 11652 +2026-07-24 22:18:21,523 | Saved safetensors: 128 tensors +2026-07-24 22:18:22,225 | HTTP Request: POST https://huggingface.co/api/repos/create "HTTP/1.1 409 Conflict" +2026-07-24 22:18:22,244 | HTTP Request: POST https://huggingface.co/api/validate-yaml "HTTP/1.1 200 OK" +2026-07-24 22:18:22,572 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 22:18:28,765 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 22:18:28,770 | Hub push step=11652 +2026-07-24 22:18:28,849 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" +2026-07-24 22:18:29,829 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/commit/main "HTTP/1.1 200 OK" +2026-07-24 22:18:29,892 | HTTP Request: POST https://huggingface.co/api/models/CyanMonkey/Petal-50M/preupload/main "HTTP/1.1 200 OK" diff --git a/training_meta.json b/training_meta.json new file mode 100644 index 0000000..8c69a56 --- /dev/null +++ b/training_meta.json @@ -0,0 +1,8 @@ +{ + "step": 11652, + "val_loss": 1.892010307149887, + "val_ppl": 6.632689029740431, + "params_M": 49.691, + "pushed_at": "2026-07-24T22:18:21.538933", + "tokens_seen": 12206075904 +} \ No newline at end of file