Instructions to use FilipT/ltgbert-ase with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FilipT/ltgbert-ase with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="FilipT/ltgbert-ase", trust_remote_code=True)# Load model directly from transformers import AutoModelForMaskedLM model = AutoModelForMaskedLM.from_pretrained("FilipT/ltgbert-ase", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "version": "1.0", | |
| "truncation": null, | |
| "padding": null, | |
| "added_tokens": [ | |
| { | |
| "id": 0, | |
| "content": "[UNK]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 1, | |
| "content": "[CLS]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 2, | |
| "content": "[SEP]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 3, | |
| "content": "[PAD]", | |
| "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": "[PAR]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 6, | |
| "content": "[TAB]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 16384, | |
| "content": "[BOS]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| }, | |
| { | |
| "id": 16385, | |
| "content": "[EOS]", | |
| "single_word": false, | |
| "lstrip": false, | |
| "rstrip": false, | |
| "normalized": false, | |
| "special": true | |
| } | |
| ], | |
| "normalizer": null, | |
| "pre_tokenizer": { | |
| "type": "Sequence", | |
| "pretokenizers": [ | |
| { | |
| "type": "ByteLevel", | |
| "add_prefix_space": true, | |
| "trim_offsets": true, | |
| "use_regex": true | |
| }, | |
| { | |
| "type": "Digits", | |
| "individual_digits": true | |
| } | |
| ] | |
| }, | |
| "post_processor": { | |
| "type": "TemplateProcessing", | |
| "single": [ | |
| { | |
| "SpecialToken": { | |
| "id": "[CLS]", | |
| "type_id": 0 | |
| } | |
| }, | |
| { | |
| "Sequence": { | |
| "id": "A", | |
| "type_id": 0 | |
| } | |
| }, | |
| { | |
| "SpecialToken": { | |
| "id": "[SEP]", | |
| "type_id": 0 | |
| } | |
| } | |
| ], | |
| "pair": [ | |
| { | |
| "SpecialToken": { | |
| "id": "[CLS]", | |
| "type_id": 0 | |
| } | |
| }, | |
| { | |
| "Sequence": { | |
| "id": "A", | |
| "type_id": 0 | |
| } | |
| }, | |
| { | |
| "SpecialToken": { | |
| "id": "[SEP]", | |
| "type_id": 0 | |
| } | |
| }, | |
| { | |
| "Sequence": { | |
| "id": "B", | |
| "type_id": 1 | |
| } | |
| }, | |
| { | |
| "SpecialToken": { | |
| "id": "[SEP]", | |
| "type_id": 1 | |
| } | |
| } | |
| ], | |
| "special_tokens": { | |
| "[CLS]": { | |
| "id": "[CLS]", | |
| "ids": [ | |
| 1 | |
| ], | |
| "tokens": [ | |
| "[CLS]" | |
| ] | |
| }, | |
| "[SEP]": { | |
| "id": "[SEP]", | |
| "ids": [ | |
| 2 | |
| ], | |
| "tokens": [ | |
| "[SEP]" | |
| ] | |
| } | |
| } | |
| }, | |
| "decoder": { | |
| "type": "ByteLevel", | |
| "add_prefix_space": true, | |
| "trim_offsets": true, | |
| "use_regex": true | |
| }, | |
| "model": { | |
| "type": "WordPiece", | |
| "unk_token": "[UNK]", | |
| "continuing_subword_prefix": "", | |
| "max_input_chars_per_word": 100, | |
| "vocab": { | |
| "[UNK]": 0, | |
| "[CLS]": 1, | |
| "[SEP]": 2, | |
| "[PAD]": 3, | |
| "[MASK]": 4, | |
| "[PAR]": 5, | |
| "[TAB]": 6, | |
| "!": 7, | |
| "\"": 8, | |
| "#": 9, | |
| "$": 10, | |
| "%": 11, | |
| "&": 12, | |
| "'": 13, | |
| "(": 14, | |
| ")": 15, | |
| "*": 16, | |
| "+": 17, | |
| ",": 18, | |
| "-": 19, | |
| ".": 20, | |
| "/": 21, | |
| "0": 22, | |
| "1": 23, | |
| "2": 24, | |
| "3": 25, | |
| "4": 26, | |
| "5": 27, | |
| "6": 28, | |
| "7": 29, | |
| "8": 30, | |
| "9": 31, | |
| ":": 32, | |
| ";": 33, | |
| "<": 34, | |
| "=": 35, | |
| ">": 36, | |
| "?": 37, | |
| "@": 38, | |
| "A": 39, | |
| "B": 40, | |
| "C": 41, | |
| "D": 42, | |
| "E": 43, | |
| "F": 44, | |
| "G": 45, | |
| "H": 46, | |
| "I": 47, | |
| "J": 48, | |
| "K": 49, | |
| "L": 50, | |
| "M": 51, | |
| "N": 52, | |
| "O": 53, | |
| "P": 54, | |
| "Q": 55, | |
| "R": 56, | |
| "S": 57, | |
| "T": 58, | |
| "U": 59, | |
| "V": 60, | |
| "W": 61, | |
| "X": 62, | |
| "Y": 63, | |
| "Z": 64, | |
| "[": 65, | |
| "\\": 66, | |
| "]": 67, | |
| "^": 68, | |
| "_": 69, | |
| "`": 70, | |
| "a": 71, | |
| "b": 72, | |
| "c": 73, | |
| "d": 74, | |
| "e": 75, | |
| "f": 76, | |
| "g": 77, | |
| "h": 78, | |
| "i": 79, | |
| "j": 80, | |
| "k": 81, | |
| "l": 82, | |
| "m": 83, | |
| "n": 84, | |
| "o": 85, | |
| "p": 86, | |
| "q": 87, | |
| "r": 88, | |
| "s": 89, | |
| "t": 90, | |
| "u": 91, | |
| "v": 92, | |
| "w": 93, | |
| "x": 94, | |
| "y": 95, | |
| "z": 96, | |
| "{": 97, | |
| "|": 98, | |
| "}": 99, | |
| "~": 100, | |
| "¡": 101, | |
| "¢": 102, | |
| "£": 103, | |
| "¤": 104, | |
| "¥": 105, | |
| "¦": 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, | |
| "IJ": 195, | |
| "ij": 196, | |
| "Ĵ": 197, | |
| "ĵ": 198, | |
| "Ķ": 199, | |
| "ķ": 200, | |
| "ĸ": 201, | |
| "Ĺ": 202, | |
| "ĺ": 203, | |
| "Ļ": 204, | |
| "ļ": 205, | |
| "Ľ": 206, | |
| "ľ": 207, | |
| "Ŀ": 208, | |
| "ŀ": 209, | |
| "Ł": 210, | |
| "ł": 211, | |
| "Ń": 212, | |
| "Ġt": 213, | |
| "he": 214, | |
| "Ġ\"": 215, | |
| "Ġa": 216, | |
| "in": 217, | |
| "Ġthe": 218, | |
| "re": 219, | |
| ".\"": 220, | |
| "Ġw": 221, | |
| "ou": 222, | |
| "Ġs": 223, | |
| "on": 224, | |
| "er": 225, | |
| "ha": 226, | |
| "nd": 227, | |
| "is": 228, | |
| "it": 229, | |
| "Ġb": 230, | |
| "Ġo": 231, | |
| "Ġc": 232, | |
| "Ġm": 233, | |
| "Ġf": 234, | |
| "ing": 235, | |
| "or": 236, | |
| "ed": 237, | |
| "ll": 238, | |
| "Ġd": 239, | |
| "an": 240, | |
| "en": 241, | |
| "Ġto": 242, | |
| "es": 243, | |
| "Ġp": 244, | |
| "Ġy": 245, | |
| "Ġof": 246, | |
| "ar": 247, | |
| "Ġin": 248, | |
| "at": 249, | |
| "Ġyou": 250, | |
| "Ġand": 251, | |
| "Ġl": 252, | |
| "hat": 253, | |
| "as": 254, | |
| "Ġg": 255, | |
| "om": 256, | |
| "Ġn": 257, | |
| "ĠI": 258, | |
| "?\"": 259, | |
| "ic": 260, | |
| "ow": 261, | |
| "ve": 262, | |
| "le": 263, | |
| "ot": 264, | |
| "Ġh": 265, | |
| "Ġhe": 266, | |
| "al": 267, | |
| "'s": 268, | |
| "et": 269, | |
| "Ġha": 270, | |
| "us": 271, | |
| "Ġth": 272, | |
| "ay": 273, | |
| "Ġit": 274, | |
| "Ġbe": 275, | |
| "Ġthat": 276, | |
| "Ġis": 277, | |
| "Ġon": 278, | |
| "ion": 279, | |
| "id": 280, | |
| "Ġe": 281, | |
| "gh": 282, | |
| "ld": 283, | |
| "Ġre": 284, | |
| "Ġwas": 285, | |
| "ut": 286, | |
| "ent": 287, | |
| "im": 288, | |
| "ĠT": 289, | |
| "ac": 290, | |
| "Ġwe": 291, | |
| "ver": 292, | |
| "ĠS": 293, | |
| "Ġfor": 294, | |
| "am": 295, | |
| "ly": 296, | |
| "ĠA": 297, | |
| "ri": 298, | |
| "ro": 299, | |
| "st": 300, | |
| "ad": 301, | |
| "ir": 302, | |
| "se": 303, | |
| "ke": 304, | |
| "Ġst": 305, | |
| "'t": 306, | |
| "oo": 307, | |
| "ght": 308, | |
| "ĠC": 309, | |
| "ĠM": 310, | |
| "out": 311, | |
| "ith": 312, | |
| "Ġme": 313, | |
| "Ġk": 314, | |
| "Ġu": 315, | |
| "!\"": 316, | |
| "Ġan": 317, | |
| "all": 318, | |
| "Ġwith": 319, | |
| "ur": 320, | |
| "Ġas": 321, | |
| "Ġdo": 322, | |
| "ec": 323, | |
| "her": 324, | |
| "..": 325, | |
| "ĠB": 326, | |
| "ĠH": 327, | |
| "ill": 328, | |
| "ter": 329, | |
| "if": 330, | |
| "Ġwh": 331, | |
| "ome": 332, | |
| "ch": 333, | |
| "ce": 334, | |
| "Ġare": 335, | |
| "You": 336, | |
| "Ġhave": 337, | |
| "il": 338, | |
| "Ġnot": 339, | |
| "Ġat": 340, | |
| "ĠThe": 341, | |
| "Ġthis": 342, | |
| "ould": 343, | |
| "ust": 344, | |
| "ĠP": 345, | |
| "Ġse": 346, | |
| "ra": 347, | |
| "Ġgo": 348, | |
| "ant": 349, | |
| "Ġli": 350, | |
| "ation": 351, | |
| "Ġkn": 352, | |
| "op": 353, | |
| "ea": 354, | |
| "un": 355, | |
| "The": 356, | |
| "ge": 357, | |
| "ol": 358, | |
| "Ġhis": 359, | |
| "ĠD": 360, | |
| "and": 361, | |
| "ell": 362, | |
| "ul": 363, | |
| "rom": 364, | |
| "Ġknow": 365, | |
| "ore": 366, | |
| "Ġj": 367, | |
| "Ġne": 368, | |
| "ĠW": 369, | |
| "ĠG": 370, | |
| "th": 371, | |
| "pp": 372, | |
| "ct": 373, | |
| "Ġcan": 374, | |
| "ain": 375, | |
| "our": 376, | |
| "el": 377, | |
| "ĠR": 378, | |
| "um": 379, | |
| "ĠL": 380, | |
| "Ġso": 381, | |
| "ist": 382, | |
| "ĠF": 383, | |
| "Ġall": 384, | |
| "Ġthey": 385, | |
| "Ġyour": 386, | |
| "em": 387, | |
| "Ġmy": 388, | |
| "Ġal": 389, | |
| "est": 390, | |
| "Ġab": 391, | |
| "ers": 392, | |
| "Ġfrom": 393, | |
| "Ġby": 394, | |
| "art": 395, | |
| "ess": 396, | |
| "Ġr": 397, | |
| "ĠJ": 398, | |
| "Ġwhat": 399, | |
| "Ġ(": 400, | |
| "Ġsh": 401, | |
| "Ġher": 402, | |
| "os": 403, | |
| "Ġor": 404, | |
| "ĠN": 405, | |
| "Ġcon": 406, | |
| "Ġone": 407, | |
| "Ġwhe": 408, | |
| "nt": 409, | |
| "ight": 410, | |
| "Ġup": 411, | |
| "ie": 412, | |
| "ig": 413, | |
| "Ġthere": 414, | |
| "'re": 415, | |
| "Ġhad": 416, | |
| "Ġsu": 417, | |
| "Ġdon": 418, | |
| "red": 419, | |
| "han": 420, | |
| "ally": 421, | |
| "qu": 422, | |
| "ry": 423, | |
| "Ġcom": 424, | |
| "ab": 425, | |
| "Ġout": 426, | |
| "Ġbut": 427, | |
| "Ġhim": 428, | |
| "ack": 429, | |
| "Ġwor": 430, | |
| "ĠE": 431, | |
| "Ġpl": 432, | |
| "ook": 433, | |
| "ood": 434, | |
| "ate": 435, | |
| "very": 436, | |
| "What": 437, | |
| "res": 438, | |
| "Ġlike": 439, | |
| "Ġus": 440, | |
| "'m": 441, | |
| "ive": 442, | |
| "Ġde": 443, | |
| "Ġshe": 444, | |
| "ake": 445, | |
| "It": 446, | |
| "od": 447, | |
| "ame": 448, | |
| "ong": 449, | |
| "Ġsa": 450, | |
| "Ġpro": 451, | |
| "ink": 452, | |
| "Ġex": 453, | |
| "ĠO": 454, | |
| "Ġv": 455, | |
| "Ġabout": 456, | |
| "Ġget": 457, | |
| "And": 458, | |
| "Ġwere": 459, | |
| "ind": 460, | |
| "ast": 461, | |
| "ort": 462, | |
| "ard": 463, | |
| "one": 464, | |
| "rou": 465, | |
| "ck": 466, | |
| "Ġjust": 467, | |
| "Ġsp": 468, | |
| "ity": 469, | |
| "ber": 470, | |
| "He": 471, | |
| "right": 472, | |
| "ear": 473, | |
| "ich": 474, | |
| "ies": 475, | |
| "...\"": 476, | |
| "Ġdid": 477, | |
| "ect": 478, | |
| "Ġwho": 479, | |
| "'ll": 480, | |
| "Ġhere": 481, | |
| "Ġno": 482, | |
| "ak": 483, | |
| "ep": 484, | |
| ",\"": 485, | |
| "Ġthem": 486, | |
| "ime": 487, | |
| "ine": 488, | |
| "eah": 489, | |
| "Ġwant": 490, | |
| "Ġman": 491, | |
| "ĠK": 492, | |
| "Ġwould": 493, | |
| "Ġif": 494, | |
| "Ġthink": 495, | |
| "ud": 496, | |
| "ap": 497, | |
| "ven": 498, | |
| "Ġwill": 499, | |
| "Ġsome": 500, | |
| "ĠHe": 501, | |
| "ous": 502, | |
| "Ġint": 503, | |
| "hing": 504, | |
| "ost": 505, | |
| "own": 506, | |
| "ice": 507, | |
| "itt": 508, | |
| "Ġany": 509, | |
| "Ġright": 510, | |
| "ide": 511, | |
| "Ġhas": 512, | |
| "ag": 513, | |
| "Oh": 514, | |
| "ment": 515, | |
| "Ġgot": 516, | |
| "We": 517, | |
| "ther": 518, | |
| "hi": 519, | |
| "No": 520, | |
| "use": 521, | |
| "Ġsee": 522, | |
| "Ġwhich": 523, | |
| "Ġwhen": 524, | |
| "ure": 525, | |
| "Ġag": 526, | |
| "Ġsay": 527, | |
| "Ġtw": 528, | |
| "Yeah": 529, | |
| "Ġbeen": 530, | |
| "end": 531, | |
| "'ve": 532, | |
| "Ġsaid": 533, | |
| "iv": 534, | |
| "That": 535, | |
| "Ġtime": 536, | |
| "ian": 537, | |
| "ĠIt": 538, | |
| "way": 539, | |
| "ace": 540, | |
| "ound": 541, | |
| "Ġbec": 542, | |
| "...": 543, | |
| "Ġpe": 544, | |
| "ĠIn": 545, | |
| "ove": 546, | |
| "ia": 547, | |
| "ff": 548, | |
| "Ġnow": 549, | |
| "ick": 550, | |
| "--": 551, | |
| "ĠU": 552, | |
| "Ġcl": 553, | |
| "are": 554, | |
| "ose": 555, | |
| "Ġlook": 556, | |
| "ause": 557, | |
| "lf": 558, | |
| "Ġle": 559, | |
| "ople": 560, | |
| "ish": 561, | |
| "Ġtheir": 562, | |
| "na": 563, | |
| "Ġmore": 564, | |
| "reat": 565, | |
| "so": 566, | |
| "Ġgoing": 567, | |
| "ary": 568, | |
| "So": 569, | |
| "Ġthen": 570, | |
| "ran": 571, | |
| "Ġcould": 572, | |
| "ree": 573, | |
| "other": 574, | |
| "Ġother": 575, | |
| "Ġover": 576, | |
| "Ġoff": 577, | |
| "ue": 578, | |
| "Ġback": 579, | |
| "ĠSt": 580, | |
| "irst": 581, | |
| "ite": 582, | |
| "his": 583, | |
| "ond": 584, | |
| "Ġqu": 585, | |
| "ble": 586, | |
| "age": 587, | |
| "Ġpeople": 588, | |
| "Ġro": 589, | |
| "act": 590, | |
| "Ġfe": 591, | |
| "Ġthing": 592, | |
| "orn": 593, | |
| "Ġwork": 594, | |
| "ass": 595, | |
| "Ġvery": 596, | |
| "Ġtwo": 597, | |
| "But": 598, | |
| "fter": 599, | |
| "pt": 600, | |
| "Wh": 601, | |
| "per": 602, | |
| "Ġgood": 603, | |
| "Ġtoo": 604, | |
| "ount": 605, | |
| "ord": 606, | |
| "Ġen": 607, | |
| "Ġcomp": 608, | |
| "og": 609, | |
| "omet": 610, | |
| "ci": 611, | |
| "Ġfirst": 612, | |
| "ub": 613, | |
| "Ġinto": 614, | |
| "ittle": 615, | |
| "Ġar": 616, | |
| "ase": 617, | |
| "mer": 618, | |
| "ated": 619, | |
| "Well": 620, | |
| "ere": 621, | |
| "ov": 622, | |
| "ire": 623, | |
| "ions": 624, | |
| "kay": 625, | |
| "hed": 626, | |
| "Ġdown": 627, | |
| "Ġhow": 628, | |
| "Ġun": 629, | |
| "alk": 630, | |
| "oll": 631, | |
| "Ġthan": 632, | |
| "oy": 633, | |
| "erm": 634, | |
| "ade": 635, | |
| "Ġyear": 636, | |
| "Ġpart": 637, | |
| "Ġway": 638, | |
| "ĠV": 639, | |
| "Ġour": 640, | |
| "Ġam": 641, | |
| "ru": 642, | |
| "Ġlittle": 643, | |
| "Ġcall": 644, | |
| "pl": 645, | |
| "iz": 646, | |
| "Ġim": 647, | |
| "Ġbl": 648, | |
| "Ġcome": 649, | |
| "Ġonly": 650, | |
| "Ġplay": 651, | |
| "Ġalso": 652, | |
| "Ġmean": 653, | |
| "Ġpr": 654, | |
| "cc": 655, | |
| "ater": 656, | |
| "Ġwhere": 657, | |
| "nder": 658, | |
| "Ġagain": 659, | |
| "Ġevery": 660, | |
| "ough": 661, | |
| "Yes": 662, | |
| "ach": 663, | |
| "Ġad": 664, | |
| "ife": 665, | |
| "ne": 666, | |
| "ng": 667, | |
| "urn": 668, | |
| "Ġsomet": 669, | |
| "Ġbet": 670, | |
| "Ġday": 671, | |
| "oc": 672, | |
| "Ġneed": 673, | |
| "har": 674, | |
| "wn": 675, | |
| "we": 676, | |
| "ty": 677, | |
| "ress": 678, | |
| "Ġact": 679, | |
| "uch": 680, | |
| "iss": 681, | |
| "Ġmake": 682, | |
| "Ġwell": 683, | |
| "Ġtr": 684, | |
| "Ġafter": 685, | |
| "Ġtake": 686, | |
| "fore": 687, | |
| "ew": 688, | |
| "ence": 689, | |
| "Ġgu": 690, | |
| "Ġ'": 691, | |
| "Ġcont": 692, | |
| "self": 693, | |
| "av": 694, | |
| "ory": 695, | |
| "Ġbecause": 696, | |
| "Ġdis": 697, | |
| "Ġsc": 698, | |
| "ark": 699, | |
| "able": 700, | |
| "Ġte": 701, | |
| "ical": 702, | |
| "ign": 703, | |
| "Ġshould": 704, | |
| "Ġlet": 705, | |
| "thing": 706, | |
| "au": 707, | |
| "Ġpre": 708, | |
| "Ġreally": 709, | |
| "ip": 710, | |
| "Ġtell": 711, | |
| "ought": 712, | |
| "int": 713, | |
| "ool": 714, | |
| "Ġhapp": 715, | |
| "orm": 716, | |
| "ict": 717, | |
| "Ġfl": 718, | |
| "here": 719, | |
| "Ġwr": 720, | |
| "Ġapp": 721, | |
| "ather": 722, | |
| "ob": 723, | |
| "Ġunder": 724, | |
| "Ġbu": 725, | |
| "onna": 726, | |
| "Ġthese": 727, | |
| "ens": 728, | |
| "Ġbr": 729, | |
| "ied": 730, | |
| "ft": 731, | |
| "Ġmuch": 732, | |
| "ial": 733, | |
| "Ġdoes": 734, | |
| "old": 735, | |
| "les": 736, | |
| "Ġsomething": 737, | |
| "This": 738, | |
| "hen": 739, | |
| "Ġres": 740, | |
| "They": 741, | |
| "ult": 742, | |
| "Ġ[": 743, | |
| "'d": 744, | |
| "Ġnew": 745, | |
| "Ġper": 746, | |
| "ile": 747, | |
| "Ġpo": 748, | |
| "Ġput": 749, | |
| "ody": 750, | |
| "Ġmade": 751, | |
| "Ġgonna": 752, | |
| "round": 753, | |
| "ĠY": 754, | |
| "ang": 755, | |
| "Ġlong": 756, | |
| "ance": 757, | |
| "cl": 758, | |
| "iff": 759, | |
| "ons": 760, | |
| "ving": 761, | |
| "Ġser": 762, | |
| "ĠCh": 763, | |
| "ved": 764, | |
| "uck": 765, | |
| "Ġch": 766, | |
| "row": 767, | |
| "Ġnever": 768, | |
| "Ġtalk": 769, | |
| "ull": 770, | |
| "ps": 771, | |
| "Ġbefore": 772, | |
| "Ġdidn": 773, | |
| "ations": 774, | |
| "ĠUn": 775, | |
| "There": 776, | |
| "âĢ": 777, | |
| "How": 778, | |
| "Ġeven": 779, | |
| "Ġer": 780, | |
| "land": 781, | |
| "Okay": 782, | |
| "Ġmay": 783, | |
| "ting": 784, | |
| "Ġits": 785, | |
| "ks": 786, | |
| "du": 787, | |
| "ily": 788, | |
| "ock": 789, | |
| "rough": 790, | |
| "ath": 791, | |
| "Ġcar": 792, | |
| "Do": 793, | |
| "te": 794, | |
| "Ġrem": 795, | |
| "ouse": 796, | |
| "Ġsm": 797, | |
| "Ġke": 798, | |
| "Ġyears": 799, | |
| "ady": 800, | |
| "port": 801, | |
| "be": 802, | |
| "vers": 803, | |
| "She": 804, | |
| "Ġhand": 805, | |
| "ition": 806, | |
| "ious": 807, | |
| "ward": 808, | |
| "ren": 809, | |
| "ember": 810, | |
| "ors": 811, | |
| "Ġrec": 812, | |
| "ates": 813, | |
| "ually": 814, | |
| "ix": 815, | |
| "Ġthrough": 816, | |
| "ise": 817, | |
| "Ġmany": 818, | |
| "Ġhel": 819, | |
| "vel": 820, | |
| "If": 821, | |
| "Ġsec": 822, | |
| "Ġold": 823, | |
| "ried": 824, | |
| "Ġcomm": 825, | |
| "ĠShe": 826, | |
| "ful": 827, | |
| "Ġmost": 828, | |
| "Ġgreat": 829, | |
| "Ġchan": 830, | |
| "Ġdiff": 831, | |
| "Ġstart": 832, | |
| "Ġthree": 833, | |
| "ee": 834, | |
| "igh": 835, | |
| "Ġlife": 836, | |
| "ited": 837, | |
| "get": 838, | |
| "ail": 839, | |
| "Ġthought": 840, | |
| "ince": 841, | |
| "day": 842, | |
| "Ġthings": 843, | |
| "aw": 844, | |
| "ple": 845, | |
| "ave": 846, | |
| "ican": 847, | |
| "pe": 848, | |
| "Ġthose": 849, | |
| "Ġbel": 850, | |
| "oot": 851, | |
| "Why": 852, | |
| "Ġsha": 853, | |
| "Ġstill": 854, | |
| "Ġdes": 855, | |
| "Ġaway": 856, | |
| "ves": 857, | |
| "oss": 858, | |
| "Ġfind": 859, | |
| "Ġused": 860, | |
| "Ġask": 861, | |
| "ings": 862, | |
| "Ġmust": 863, | |
| "tain": 864, | |
| "Let": 865, | |
| "Ġhome": 866, | |
| "Ġlast": 867, | |
| "Ġlove": 868, | |
| "Ġfound": 869, | |
| "ever": 870, | |
| "hes": 871, | |
| "Ġco": 872, | |
| "ys": 873, | |
| "Ġhelp": 874, | |
| "riend": 875, | |
| "Ġdoing": 876, | |
| "Ġi": 877, | |
| "Ġra": 878, | |
| "Ġown": 879, | |
| "imes": 880, | |
| "hild": 881, | |
| "Ġshow": 882, | |
| "ents": 883, | |
| "Ġlea": 884, | |
| "Ġwon": 885, | |
| "ĠMr": 886, | |
| "Ġwent": 887, | |
| "Ġcame": 888, | |
| "Ġgive": 889, | |
| "Ġmin": 890, | |
| "Ġatt": 891, | |
| "Now": 892, | |
| "Ġend": 893, | |
| "ational": 894, | |
| "Ġbeing": 895, | |
| "âĻ": 896, | |
| "ph": 897, | |
| "irl": 898, | |
| "xt": 899, | |
| "oney": 900, | |
| "ened": 901, | |
| "gan": 902, | |
| "Ġname": 903, | |
| "lease": 904, | |
| "oh": 905, | |
| "ĠMar": 906, | |
| "Ġcalled": 907, | |
| "Ġcount": 908, | |
| "ction": 909, | |
| "tern": 910, | |
| "gin": 911, | |
| "Ġear": 912, | |
| "ced": 913, | |
| "oth": 914, | |
| "chool": 915, | |
| "Ġmov": 916, | |
| "Don": 917, | |
| "ny": 918, | |
| "Ġfam": 919, | |
| "Is": 920, | |
| "ait": 921, | |
| "Ġdec": 922, | |
| "Ġchild": 923, | |
| "Ġsame": 924, | |
| "atch": 925, | |
| "Ġsuch": 926, | |
| "als": 927, | |
| "âĢĵ": 928, | |
| "Ġcare": 929, | |
| "body": 930, | |
| "up": 931, | |
| "ways": 932, | |
| "Ġcour": 933, | |
| "Come": 934, | |
| "rit": 935, | |
| "âĻª": 936, | |
| "ces": 937, | |
| "Ġkind": 938, | |
| "ning": 939, | |
| "Ġfeel": 940, | |
| "ĠAmer": 941, | |
| "IN": 942, | |
| "man": 943, | |
| "Ġtry": 944, | |
| "ident": 945, | |
| "Ġbig": 946, | |
| "Ġtra": 947, | |
| "ĠAnd": 948, | |
| "Ġhead": 949, | |
| "my": 950, | |
| "\".": 951, | |
| "ug": 952, | |
| "Ġlot": 953, | |
| "Ġnight": 954, | |
| "Ġworld": 955, | |
| "Ġsupp": 956, | |
| "Ġsl": 957, | |
| "Ġplace": 958, | |
| "ont": 959, | |
| "aking": 960, | |
| "Ġpol": 961, | |
| "Ġwhy": 962, | |
| "air": 963, | |
| "Ġdiffere": 964, | |
| "erson": 965, | |
| "Ġwom": 966, | |
| "ham": 967, | |
| "ild": 968, | |
| "Ġfin": 969, | |
| "Ġfriend": 970, | |
| "Ġaround": 971, | |
| "Ġhar": 972, | |
| "ER": 973, | |
| "Ġind": 974, | |
| "Ġmar": 975, | |
| "form": 976, | |
| "Ġnum": 977, | |
| "Ġacc": 978, | |
| "side": 979, | |
| "Where": 980, | |
| "ute": 981, | |
| "Ġkill": 982, | |
| "Hey": 983, | |
| "Ġuse": 984, | |
| "ating": 985, | |
| "uring": 986, | |
| "Ġmight": 987, | |
| "Ġgr": 988, | |
| "ased": 989, | |
| "Than": 990, | |
| "Ġop": 991, | |
| "any": 992, | |
| "ubl": 993, | |
| "Ġrel": 994, | |
| "Ġanother": 995, | |
| "ss": 996, | |
| "ĠAl": 997, | |
| "In": 998, | |
| "ower": 999, | |
| ").": 1000, | |
| "ans": 1001, | |
| "Ġturn": 1002, | |
| "Ġset": 1003, | |
| "und": 1004, | |
| "outh": 1005, | |
| "Ġche": 1006, | |
| "\",": 1007, | |
| "Ġele": 1008, | |
| "Ġalways": 1009, | |
| "Ġhouse": 1010, | |
| "All": 1011, | |
| "pect": 1012, | |
| "Ġph": 1013, | |
| "ween": 1014, | |
| "ener": 1015, | |
| "Ġac": 1016, | |
| "ics": 1017, | |
| "orry": 1018, | |
| "ĠThey": 1019, | |
| "Ġfour": 1020, | |
| "ĠAr": 1021, | |
| "Ġanything": 1022, | |
| "Ġleft": 1023, | |
| "Ġgirl": 1024, | |
| "Ġreg": 1025, | |
| "Ġpres": 1026, | |
| "clud": 1027, | |
| "),": 1028, | |
| "ts": 1029, | |
| "Ġbetter": 1030, | |
| "ible": 1031, | |
| "ĠThis": 1032, | |
| "mb": 1033, | |
| "Ġdone": 1034, | |
| "Ġsur": 1035, | |
| "ah": 1036, | |
| "Ġbit": 1037, | |
| "Ġsure": 1038, | |
| "My": 1039, | |
| "Who": 1040, | |
| "vent": 1041, | |
| "gg": 1042, | |
| "led": 1043, | |
| "ason": 1044, | |
| "ĠAn": 1045, | |
| "Ġsy": 1046, | |
| "Ġkeep": 1047, | |
| "Ġform": 1048, | |
| "ular": 1049, | |
| "ness": 1050, | |
| "Ġel": 1051, | |
| "Ġboy": 1052, | |
| "ier": 1053, | |
| "Ġrun": 1054, | |
| "ib": 1055, | |
| "der": 1056, | |
| "Ġmon": 1057, | |
| "Ġreal": 1058, | |
| "Ġbetween": 1059, | |
| "az": 1060, | |
| "ĠAs": 1061, | |
| "aught": 1062, | |
| "ual": 1063, | |
| "ins": 1064, | |
| "Ġbelie": 1065, | |
| "Not": 1066, | |
| "io": 1067, | |
| "||": 1068, | |
| "Ġtold": 1069, | |
| "Ġsecond": 1070, | |
| "Ġknown": 1071, | |
| "ram": 1072, | |
| "ollow": 1073, | |
| "ott": 1074, | |
| "Ġchar": 1075, | |
| "Ġunt": 1076, | |
| "ished": 1077, | |
| "ird": 1078, | |
| "ered": 1079, | |
| "Ġschool": 1080, | |
| "ters": 1081, | |
| "Ġgl": 1082, | |
| "Ġent": 1083, | |
| "Ġob": 1084, | |
| "Ġword": 1085, | |
| "ĠNew": 1086, | |
| "Ġstud": 1087, | |
| "uh": 1088, | |
| "ike": 1089, | |
| "Ġdist": 1090, | |
| "Ġmoney": 1091, | |
| "ars": 1092, | |
| "Ġever": 1093, | |
| "Ġret": 1094, | |
| "ĠBut": 1095, | |
| "Ġdifferent": 1096, | |
| "ale": 1097, | |
| "Ġwhile": 1098, | |
| "ject": 1099, | |
| "Look": 1100, | |
| "ĠTH": 1101, | |
| "Ġmat": 1102, | |
| "Ġey": 1103, | |
| "Ġmom": 1104, | |
| "hip": 1105, | |
| "ner": 1106, | |
| "Ġperson": 1107, | |
| "St": 1108, | |
| "Ġbo": 1109, | |
| "Ġbus": 1110, | |
| "ĠAmerican": 1111, | |
| "oun": 1112, | |
| "Ġsub": 1113, | |
| "Ġcons": 1114, | |
| "Ġpoint": 1115, | |
| "ret": 1116, | |
| "Ġcr": 1117, | |
| "ork": 1118, | |
| "Ġinclud": 1119, | |
| "Are": 1120, | |
| "akes": 1121, | |
| "Ġcourse": 1122, | |
| "Ġspec": 1123, | |
| "Ġmus": 1124, | |
| "Ġass": 1125, | |
| "Ġuntil": 1126, | |
| "Ġinv": 1127, | |
| "eg": 1128, | |
| "Ġerm": 1129, | |
| "Ġokay": 1130, | |
| "Ġbook": 1131, | |
| "Ġmet": 1132, | |
| "Ġmen": 1133, | |
| "Ġinst": 1134, | |
| "OU": 1135, | |
| "olog": 1136, | |
| "Ġtook": 1137, | |
| "ative": 1138, | |
| "Ġsw": 1139, | |
| "Ġseem": 1140, | |
| "Ġuh": 1141, | |
| "Ġnext": 1142, | |
| "Ġwar": 1143, | |
| "cy": 1144, | |
| "Ġstop": 1145, | |
| "Ġbest": 1146, | |
| "Just": 1147, | |
| "AN": 1148, | |
| "Ġboth": 1149, | |
| "Ġnothing": 1150, | |
| "ling": 1151, | |
| "Ġcent": 1152, | |
| "Ġfar": 1153, | |
| "Ġeach": 1154, | |
| "Ġsing": 1155, | |
| "Ġfun": 1156, | |
| "ision": 1157, | |
| "ok": 1158, | |
| "Ġcle": 1159, | |
| "Ġdef": 1160, | |
| "Ġwee": 1161, | |
| "Can": 1162, | |
| "orth": 1163, | |
| "Ġcha": 1164, | |
| "Ġbre": 1165, | |
| "Ġpass": 1166, | |
| "Ġwater": 1167, | |
| "ger": 1168, | |
| "stand": 1169, | |
| "Ġfollow": 1170, | |
| "ton": 1171, | |
| "aj": 1172, | |
| "ged": 1173, | |
| "vern": 1174, | |
| "Ġnumber": 1175, | |
| "rans": 1176, | |
| "Ġfather": 1177, | |
| "Ġdoesn": 1178, | |
| "Ġsaw": 1179, | |
| "ired": 1180, | |
| "cept": 1181, | |
| "its": 1182, | |
| "ures": 1183, | |
| "ĠGod": 1184, | |
| "ope": 1185, | |
| "ities": 1186, | |
| "Ġmother": 1187, | |
| "rib": 1188, | |
| "Ġlater": 1189, | |
| "ames": 1190, | |
| "ohn": 1191, | |
| "ivers": 1192, | |
| "Right": 1193, | |
| "ĠYou": 1194, | |
| "Ġfamily": 1195, | |
| "rand": 1196, | |
| "ms": 1197, | |
| "Ġlist": 1198, | |
| "ĠOn": 1199, | |
| "the": 1200, | |
| "Ġprodu": 1201, | |
| "Ġlar": 1202, | |
| "Ġinc": 1203, | |
| "Ġteam": 1204, | |
| "ax": 1205, | |
| "rew": 1206, | |
| "cer": 1207, | |
| "ream": 1208, | |
| "eak": 1209, | |
| "Did": 1210, | |
| "ĠUnited": 1211, | |
| "ank": 1212, | |
| "Ġenough": 1213, | |
| "ross": 1214, | |
| "osed": 1215, | |
| "Ġagainst": 1216, | |
| "Thank": 1217, | |
| "Ġactually": 1218, | |
| "iness": 1219, | |
| "Ġyeah": 1220, | |
| "Ġelse": 1221, | |
| "ING": 1222, | |
| "Ġimp": 1223, | |
| "ister": 1224, | |
| "rist": 1225, | |
| "Good": 1226, | |
| "Ġsmall": 1227, | |
| "Ġcap": 1228, | |
| "ĠEng": 1229, | |
| "ote": 1230, | |
| "Ġseen": 1231, | |
| "Ġhard": 1232, | |
| "Ġwait": 1233, | |
| "mber": 1234, | |
| "Ġdied": 1235, | |
| "Ġyoung": 1236, | |
| "Mm": 1237, | |
| "ctor": 1238, | |
| "Ġtoget": 1239, | |
| "Ġhigh": 1240, | |
| "Ġwithout": 1241, | |
| "Ġtogether": 1242, | |
| "Ġproble": 1243, | |
| "ines": 1244, | |
| "Ġdep": 1245, | |
| "less": 1246, | |
| "une": 1247, | |
| "ĠSp": 1248, | |
| "Ġdire": 1249, | |
| "uth": 1250, | |
| "ined": 1251, | |
| "eb": 1252, | |
| "Ġref": 1253, | |
| "ĠCom": 1254, | |
| "iet": 1255, | |
| "Ġfact": 1256, | |
| "Ġadd": 1257, | |
| "Ġpop": 1258, | |
| "ĠFran": 1259, | |
| "ung": 1260, | |
| "Ġrep": 1261, | |
| "ĠTh": 1262, | |
| "Ġfew": 1263, | |
| "Ġplan": 1264, | |
| "Ġwanted": 1265, | |
| "Ġbecame": 1266, | |
| "ific": 1267, | |
| "Ġfive": 1268, | |
| "Ġroom": 1269, | |
| "Uh": 1270, | |
| "Ġem": 1271, | |
| "Ġid": 1272, | |
| "ably": 1273, | |
| "Ġhear": 1274, | |
| "Ġyes": 1275, | |
| "ĠThere": 1276, | |
| "Ġmind": 1277, | |
| "Ġrest": 1278, | |
| "Ġsorry": 1279, | |
| "ash": 1280, | |
| "Ġeverything": 1281, | |
| "ral": 1282, | |
| "Ġonce": 1283, | |
| "ĠCl": 1284, | |
| "Ġpubl": 1285, | |
| "by": 1286, | |
| "Ġstr": 1287, | |
| "Here": 1288, | |
| "Ġcoming": 1289, | |
| "When": 1290, | |
| "Ġ-": 1291, | |
| "Ġsince": 1292, | |
| "ric": 1293, | |
| "ution": 1294, | |
| "Ġsix": 1295, | |
| "Ġloc": 1296, | |
| "Ġbad": 1297, | |
| "ĠAt": 1298, | |
| "Ġstand": 1299, | |
| "att": 1300, | |
| "Ġunderstand": 1301, | |
| "Ġlight": 1302, | |
| "Ġsim": 1303, | |
| "Ġsign": 1304, | |
| "amp": 1305, | |
| "Ġsk": 1306, | |
| "Ġread": 1307, | |
| "Ġ--": 1308, | |
| "ĠInd": 1309, | |
| "ina": 1310, | |
| "Ġsays": 1311, | |
| "é": 1312, | |
| "Ġstay": 1313, | |
| "Ġleave": 1314, | |
| "Ġlive": 1315, | |
| "Ġmeet": 1316, | |
| "Ġborn": 1317, | |
| "Ġcoll": 1318, | |
| "uss": 1319, | |
| "ĠJohn": 1320, | |
| "ield": 1321, | |
| "Ġcity": 1322, | |
| "ury": 1323, | |
| "Ġside": 1324, | |
| "Ġev": 1325, | |
| "Ġdisc": 1326, | |
| "uc": 1327, | |
| "Ġduring": 1328, | |
| "Ġtimes": 1329, | |
| "Ġbelieve": 1330, | |
| "Ġchildren": 1331, | |
| "uff": 1332, | |
| "Ġlooking": 1333, | |
| "ense": 1334, | |
| "erest": 1335, | |
| "Ġheart": 1336, | |
| "Ġquite": 1337, | |
| "oon": 1338, | |
| "Ġimport": 1339, | |
| "ted": 1340, | |
| "AT": 1341, | |
| "Ġpret": 1342, | |
| "Ġexp": 1343, | |
| "Ġinter": 1344, | |
| "Ġhum": 1345, | |
| "Ġdr": 1346, | |
| "ball": 1347, | |
| "Ġquest": 1348, | |
| "stem": 1349, | |
| "Ġson": 1350, | |
| "ned": 1351, | |
| "Ġisn": 1352, | |
| "Ġtrans": 1353, | |
| "Ġsit": 1354, | |
| "Ġtoday": 1355, | |
| "ten": 1356, | |
| "Ġfr": 1357, | |
| "Ġdays": 1358, | |
| "ecause": 1359, | |
| "orning": 1360, | |
| "Ġconf": 1361, | |
| "Ġopen": 1362, | |
| "Ġkid": 1363, | |
| "Ġlead": 1364, | |
| "ared": 1365, | |
| "Ġhappened": 1366, | |
| "ets": 1367, | |
| "Ġgener": 1368, | |
| "ĠZ": 1369, | |
| "Ġface": 1370, | |
| "ON": 1371, | |
| "Ġmove": 1372, | |
| "ised": 1373, | |
| "Ġeyes": 1374, | |
| "anna": 1375, | |
| "Ġnear": 1376, | |
| "Ġgrou": 1377, | |
| "ital": 1378, | |
| "Ġext": 1379, | |
| "Ġplease": 1380, | |
| "Ġthough": 1381, | |
| "ery": 1382, | |
| "Ġgetting": 1383, | |
| "ik": 1384, | |
| "ey": 1385, | |
| "ertain": 1386, | |
| "ries": 1387, | |
| "Ġart": 1388, | |
| "Ġnice": 1389, | |
| "Ġposs": 1390, | |
| "Ġwhole": 1391, | |
| "iew": 1392, | |
| "Ġcol": 1393, | |
| "aut": 1394, | |
| "ĠStates": 1395, | |
| "Ġed": 1396, | |
| "Ġdra": 1397, | |
| "Ġmusic": 1398, | |
| "Ġhour": 1399, | |
| "Ġ\"âĻª": 1400, | |
| "Ġsort": 1401, | |
| "Go": 1402, | |
| "ither": 1403, | |
| "ments": 1404, | |
| "Ġbro": 1405, | |
| "Ġinterest": 1406, | |
| "Ġland": 1407, | |
| "Ġwoman": 1408, | |
| "ĠPr": 1409, | |
| "Ġdri": 1410, | |
| "aby": 1411, | |
| "Th": 1412, | |
| "ists": 1413, | |
| "leep": 1414, | |
| "dy": 1415, | |
| "Ġheard": 1416, | |
| "Ġhimself": 1417, | |
| "ants": 1418, | |
| "Ġeas": 1419, | |
| "br": 1420, | |
| "Ġbuild": 1421, | |
| "cted": 1422, | |
| "Ġyet": 1423, | |
| "ober": 1424, | |
| "Ġhalf": 1425, | |
| "me": 1426, | |
| "Then": 1427, | |
| "sel": 1428, | |
| "aster": 1429, | |
| "ready": 1430, | |
| "Ġair": 1431, | |
| "Ġplayed": 1432, | |
| "rop": 1433, | |
| "Ġfoot": 1434, | |
| "ex": 1435, | |
| "iam": 1436, | |
| "Ġjob": 1437, | |
| "Ġremember": 1438, | |
| "ĠJan": 1439, | |
| "ĠIs": 1440, | |
| "Ġmorning": 1441, | |
| "ech": 1442, | |
| "Ġstarted": 1443, | |
| "Ġfil": 1444, | |
| "Ġknew": 1445, | |
| "Your": 1446, | |
| "Ġmed": 1447, | |
| "Ġwalk": 1448, | |
| "ows": 1449, | |
| "dd": 1450, | |
| "ene": 1451, | |
| "Ġhaving": 1452, | |
| "ize": 1453, | |
| "Ġtown": 1454, | |
| "son": 1455, | |
| "ĠQ": 1456, | |
| "ues": 1457, | |
| "Ġasked": 1458, | |
| "ched": 1459, | |
| "Get": 1460, | |
| "Ġrecord": 1461, | |
| "Ġsystem": 1462, | |
| "Ġmain": 1463, | |
| "Ġhold": 1464, | |
| "ism": 1465, | |
| "Ġtalking": 1466, | |
| "Ġmod": 1467, | |
| "iversity": 1468, | |
| "reen": 1469, | |
| "Er": 1470, | |
| "ized": 1471, | |
| "Ġcur": 1472, | |
| "Ġdeath": 1473, | |
| "Ġalready": 1474, | |
| "ĠâĢĵ": 1475, | |
| "AR": 1476, | |
| "ĠSo": 1477, | |
| "ives": 1478, | |
| "For": 1479, | |
| "ta": 1480, | |
| "Ġimportant": 1481, | |
| "Ġpay": 1482, | |
| "Ġstate": 1483, | |
| "Ġsir": 1484, | |
| "Ġsoon": 1485, | |
| "Ġmil": 1486, | |
| "Ġupon": 1487, | |
| "Ġreturn": 1488, | |
| "Ġalong": 1489, | |
| "Ġeat": 1490, | |
| "Ġwrong": 1491, | |
| "Ġgi": 1492, | |
| "ison": 1493, | |
| "Ġans": 1494, | |
| "Ġsong": 1495, | |
| "Ġpower": 1496, | |
| "Ġexam": 1497, | |
| "app": 1498, | |
| "nce": 1499, | |
| "Ġsaying": 1500, | |
| "Ġidea": 1501, | |
| "iver": 1502, | |
| "Ġdoor": 1503, | |
| "Ġcountry": 1504, | |
| "ped": 1505, | |
| "Ġmonth": 1506, | |
| "Al": 1507, | |
| "Ġgave": 1508, | |
| "aid": 1509, | |
| "May": 1510, | |
| "Ġmiss": 1511, | |
| "ole": 1512, | |
| "Ġbrother": 1513, | |
| "Ġdead": 1514, | |
| "Ġri": 1515, | |
| "ided": 1516, | |
| "Ġeff": 1517, | |
| "ĠTHE": 1518, | |
| "ĠChrist": 1519, | |
| "most": 1520, | |
| "velop": 1521, | |
| "ead": 1522, | |
| "Ġprom": 1523, | |
| "Ġprob": 1524, | |
| "Ġfull": 1525, | |
| "Ġgovern": 1526, | |
| "Ġcase": 1527, | |
| "Sh": 1528, | |
| "Ġmeans": 1529, | |
| "Ġty": 1530, | |
| "Ġwin": 1531, | |
| "Ġcomple": 1532, | |
| "Ġhur": 1533, | |
| "Ġround": 1534, | |
| "oice": 1535, | |
| "ering": 1536, | |
| "ĠCar": 1537, | |
| "Ġtrying": 1538, | |
| "Ġinf": 1539, | |
| "Ġprov": 1540, | |
| "ev": 1541, | |
| "Ġgame": 1542, | |
| "ĠHis": 1543, | |
| "ility": 1544, | |
| "ats": 1545, | |
| "ature": 1546, | |
| "Ġins": 1547, | |
| "ages": 1548, | |
| "med": 1549, | |
| "Ġsound": 1550, | |
| "ĠKing": 1551, | |
| "ĠSc": 1552, | |
| "ĠMay": 1553, | |
| "wards": 1554, | |
| "Ġ`": 1555, | |
| "aughter": 1556, | |
| "Ġwife": 1557, | |
| "cial": 1558, | |
| "Ġjo": 1559, | |
| "idd": 1560, | |
| "ĠBr": 1561, | |
| "Ġbusiness": 1562, | |
| "Ġlaw": 1563, | |
| "Ġgone": 1564, | |
| "eter": 1565, | |
| "ically": 1566, | |
| "Ġexpl": 1567, | |
| "Ġdel": 1568, | |
| "ĠGerm": 1569, | |
| "Ġarea": 1570, | |
| "Ġmatter": 1571, | |
| "Ġbegan": 1572, | |
| "ĠFor": 1573, | |
| "ony": 1574, | |
| "OR": 1575, | |
| "LL": 1576, | |
| "Because": 1577, | |
| "ying": 1578, | |
| "Ġtri": 1579, | |
| "Ġbring": 1580, | |
| "Ġfore": 1581, | |
| "Ġhands": 1582, | |
| "lish": 1583, | |
| "cess": 1584, | |
| "Ġpretty": 1585, | |
| "Ġwind": 1586, | |
| "Ġlear": 1587, | |
| "Ġequ": 1588, | |
| "ately": 1589, | |
| "Ġtop": 1590, | |
| "Ġsent": 1591, | |
| "ĠWhen": 1592, | |
| "EN": 1593, | |
| "ĠBl": 1594, | |
| "Ġcontin": 1595, | |
| "Ġstory": 1596, | |
| "Ġmill": 1597, | |
| "Ġshall": 1598, | |
| "Ġcreat": 1599, | |
| "Ġserv": 1600, | |
| "ES": 1601, | |
| "Ġwasn": 1602, | |
| "Ġcertain": 1603, | |
| "leased": 1604, | |
| "eed": 1605, | |
| "Ġhappen": 1606, | |
| "enn": 1607, | |
| "Ġless": 1608, | |
| "Ġable": 1609, | |
| "Ġlost": 1610, | |
| "Ġguy": 1611, | |
| "ural": 1612, | |
| "uro": 1613, | |
| "Ġbeaut": 1614, | |
| "Ġoffic": 1615, | |
| "Ġmovie": 1616, | |
| "orrow": 1617, | |
| "born": 1618, | |
| "Ġfuck": 1619, | |
| "Ġpartic": 1620, | |
| "Ġpain": 1621, | |
| "ially": 1622, | |
| "Ġwond": 1623, | |
| "Ġpolit": 1624, | |
| "Ġ_": 1625, | |
| "Ġspeak": 1626, | |
| "Ġhist": 1627, | |
| "ĠâĻª": 1628, | |
| "TH": 1629, | |
| "Ġchange": 1630, | |
| "ured": 1631, | |
| "Ġpri": 1632, | |
| "Ġoften": 1633, | |
| "Ġfell": 1634, | |
| "amed": 1635, | |
| "ipp": 1636, | |
| "cle": 1637, | |
| "aken": 1638, | |
| "Ġclass": 1639, | |
| "Ġmaking": 1640, | |
| "ring": 1641, | |
| "ept": 1642, | |
| "Ġlooked": 1643, | |
| "ection": 1644, | |
| "Ġpar": 1645, | |
| "Ġmoment": 1646, | |
| "ĠBrit": 1647, | |
| "Ġproblem": 1648, | |
| "ica": 1649, | |
| "Ġfriends": 1650, | |
| "Ġbaby": 1651, | |
| "Ġleg": 1652, | |
| "rict": 1653, | |
| "gy": 1654, | |
| "Ġwouldn": 1655, | |
| "Ġgoes": 1656, | |
| "ional": 1657, | |
| "Ġbas": 1658, | |
| "to": 1659, | |
| "where": 1660, | |
| "Ġwatch": 1661, | |
| "raph": 1662, | |
| "Ġfight": 1663, | |
| "eth": 1664, | |
| "Ġsomeone": 1665, | |
| "ges": 1666, | |
| "sh": 1667, | |
| "Ġwanna": 1668, | |
| "ush": 1669, | |
| "undred": 1670, | |
| "Ġbody": 1671, | |
| "Ġexper": 1672, | |
| "Ġdevelop": 1673, | |
| "ator": 1674, | |
| "ĠAll": 1675, | |
| "orld": 1676, | |
| "Ġprog": 1677, | |
| "To": 1678, | |
| "Ġwomen": 1679, | |
| "ĠPro": 1680, | |
| "ides": 1681, | |
| "Ġyourself": 1682, | |
| "Ġfine": 1683, | |
| "ĠCon": 1684, | |
| "Ġpat": 1685, | |
| "Ġage": 1686, | |
| "ently": 1687, | |
| "ract": 1688, | |
| "ĠCount": 1689, | |
| "Ġhat": 1690, | |
| "Ġcomes": 1691, | |
| "arent": 1692, | |
| "Ġline": 1693, | |
| "Ġmark": 1694, | |
| "erv": 1695, | |
| "Ġpos": 1696, | |
| "Ġweek": 1697, | |
| "Ġvis": 1698, | |
| "ern": 1699, | |
| "One": 1700, | |
| "Ġlarge": 1701, | |
| "Ġshort": 1702, | |
| "Ġsleep": 1703, | |
| "Ġclose": 1704, | |
| "ello": 1705, | |
| "Ġguys": 1706, | |
| "Ġbed": 1707, | |
| "Ġprobably": 1708, | |
| "aces": 1709, | |
| "Ġsn": 1710, | |
| "Ġdet": 1711, | |
| "Ġprof": 1712, | |
| "used": 1713, | |
| "Ġgroup": 1714, | |
| "uary": 1715, | |
| "Ġorgan": 1716, | |
| "iec": 1717, | |
| "Ġago": 1718, | |
| "Ġgiven": 1719, | |
| "arch": 1720, | |
| "Ġprot": 1721, | |
| "Ġterm": 1722, | |
| "mp": 1723, | |
| "ron": 1724, | |
| "Ġes": 1725, | |
| "ĠGe": 1726, | |
| "ĠAfter": 1727, | |
| "Ġworking": 1728, | |
| "Ġbreak": 1729, | |
| "rigin": 1730, | |
| "As": 1731, | |
| "Ġfire": 1732, | |
| "Ġtrue": 1733, | |
| "Ġhundred": 1734, | |
| "ster": 1735, | |
| "Ġter": 1736, | |
| "ĠWe": 1737, | |
| "ention": 1738, | |
| "Ġbecome": 1739, | |
| "ices": 1740, | |
| "Ġorder": 1741, | |
| "Ġeight": 1742, | |
| "Ġhaven": 1743, | |
| "ump": 1744, | |
| "Ġcou": 1745, | |
| "gue": 1746, | |
| "utes": 1747, | |
| "enty": 1748, | |
| "Ġfall": 1749, | |
| "che": 1750, | |
| "Ġcut": 1751, | |
| "eal": 1752, | |
| "ley": 1753, | |
| "apan": 1754, | |
| "ai": 1755, | |
| "ef": 1756, | |
| "rought": 1757, | |
| "Please": 1758, | |
| "Ġearly": 1759, | |
| "Ġsol": 1760, | |
| "bum": 1761, | |
| "Ġdeal": 1762, | |
| "ety": 1763, | |
| "ĠHow": 1764, | |
| "Ġrece": 1765, | |
| "Ġpick": 1766, | |
| "Ġcor": 1767, | |
| "Ġalmost": 1768, | |
| "wer": 1769, | |
| "Ġstre": 1770, | |
| "Ġpur": 1771, | |
| "Ġhope": 1772, | |
| "Ġocc": 1773, | |
| "urch": 1774, | |
| "elt": 1775, | |
| "ĠUniversity": 1776, | |
| "ĠAp": 1777, | |
| "Ġaw": 1778, | |
| "Ġaff": 1779, | |
| "Ġdiv": 1780, | |
| "ĠMan": 1781, | |
| "els": 1782, | |
| "Ġquestion": 1783, | |
| "Ġbegin": 1784, | |
| "hind": 1785, | |
| "Ġleast": 1786, | |
| "ilt": 1787, | |
| "aper": 1788, | |
| "ĠPar": 1789, | |
| "ajor": 1790, | |
| "ches": 1791, | |
| "Ġadv": 1792, | |
| "Ġblack": 1793, | |
| "Ġten": 1794, | |
| "Ġwhite": 1795, | |
| "yl": 1796, | |
| "Ġmyself": 1797, | |
| "but": 1798, | |
| "oor": 1799, | |
| "ĠWorld": 1800, | |
| "ĠPh": 1801, | |
| "Ġconst": 1802, | |
| "ĠJu": 1803, | |
| "ians": 1804, | |
| "Ġpublic": 1805, | |
| "ulation": 1806, | |
| "Ġoper": 1807, | |
| "ox": 1808, | |
| "ining": 1809, | |
| "Ġcommun": 1810, | |
| "iful": 1811, | |
| "rol": 1812, | |
| "ief": 1813, | |
| "ĠYork": 1814, | |
| "ĠWh": 1815, | |
| "rest": 1816, | |
| "ril": 1817, | |
| "Ġsqu": 1818, | |
| "Ġopp": 1819, | |
| "ĠSh": 1820, | |
| "Ġran": 1821, | |
| "ĠJapan": 1822, | |
| "Ġhor": 1823, | |
| "Ġvar": 1824, | |
| "Ah": 1825, | |
| "Ġready": 1826, | |
| "Ġmarried": 1827, | |
| "oke": 1828, | |
| "ived": 1829, | |
| "Ġlate": 1830, | |
| "not": 1831, | |
| "Ġpresent": 1832, | |
| "hamp": 1833, | |
| "raz": 1834, | |
| "Ġreason": 1835, | |
| "ye": 1836, | |
| "ĠWar": 1837, | |
| "Ġfree": 1838, | |
| "Ġmaybe": 1839, | |
| "ĠCan": 1840, | |
| "ium": 1841, | |
| "Ġalone": 1842, | |
| "Ġswe": 1843, | |
| "pr": 1844, | |
| "Ġest": 1845, | |
| "Ġgovernment": 1846, | |
| "rent": 1847, | |
| "Ġdad": 1848, | |
| "alth": 1849, | |
| "ugust": 1850, | |
| "ma": 1851, | |
| "angu": 1852, | |
| "Ġcompany": 1853, | |
| "Ġred": 1854, | |
| "Ġca": 1855, | |
| "Ġguess": 1856, | |
| "Ġkilled": 1857, | |
| "osp": 1858, | |
| "Hello": 1859, | |
| "Ġbrought": 1860, | |
| "ĠJanuary": 1861, | |
| "Ġsat": 1862, | |
| "Ġblood": 1863, | |
| "umb": 1864, | |
| "Ġ|": 1865, | |
| "Maybe": 1866, | |
| "Ġbehind": 1867, | |
| "Ġcouldn": 1868, | |
| "ccess": 1869, | |
| "Ġsever": 1870, | |
| "Ġwords": 1871, | |
| "Ġtele": 1872, | |
| "Ġorigin": 1873, | |
| "Ġoh": 1874, | |
| "ese": 1875, | |
| "Ġhappy": 1876, | |
| "Every": 1877, | |
| "ĠAust": 1878, | |
| "of": 1879, | |
| "On": 1880, | |
| "Ġalbum": 1881, | |
| "ality": 1882, | |
| "Ġhon": 1883, | |
| "Ġreleased": 1884, | |
| "oe": 1885, | |
| "ĠEnglish": 1886, | |
| "ards": 1887, | |
| "ĠBe": 1888, | |
| "ert": 1889, | |
| "Ġtre": 1890, | |
| "selves": 1891, | |
| "vious": 1892, | |
| "Ġdrink": 1893, | |
| "Ġwrit": 1894, | |
| "ully": 1895, | |
| "Ġclear": 1896, | |
| "Ġgrow": 1897, | |
| "Ġtaken": 1898, | |
| "Ġbar": 1899, | |
| "Ġmakes": 1900, | |
| "Ġexc": 1901, | |
| "ains": 1902, | |
| "ney": 1903, | |
| "Ġhell": 1904, | |
| "ĠComm": 1905, | |
| "Ġseveral": 1906, | |
| "cent": 1907, | |
| "ology": 1908, | |
| "ĠEuro": 1909, | |
| "Ġdem": 1910, | |
| "ĠMrs": 1911, | |
| "ĠSouth": 1912, | |
| "head": 1913, | |
| "Ġ\"[": 1914, | |
| "Ġnews": 1915, | |
| "IS": 1916, | |
| "Ġfront": 1917, | |
| "ĠThen": 1918, | |
| "eng": 1919, | |
| "Ġseries": 1920, | |
| "Ġfood": 1921, | |
| "Ġmag": 1922, | |
| "Ġhuman": 1923, | |
| "ĠWill": 1924, | |
| "ĠAd": 1925, | |
| "bit": 1926, | |
| "ĠHar": 1927, | |
| "ĠMarch": 1928, | |
| "ient": 1929, | |
| "See": 1930, | |
| "haps": 1931, | |
| "Ġanim": 1932, | |
| "ĠPl": 1933, | |
| "hm": 1934, | |
| "Ġstat": 1935, | |
| "ones": 1936, | |
| "Ġdog": 1937, | |
| "augh": 1938, | |
| "rench": 1939, | |
| "bs": 1940, | |
| "ĠDec": 1941, | |
| "Ġpast": 1942, | |
| "Ġval": 1943, | |
| "Ġtaking": 1944, | |
| "Ġstrong": 1945, | |
| "ude": 1946, | |
| "Ġhot": 1947, | |
| "Have": 1948, | |
| "band": 1949, | |
| "ĠAugust": 1950, | |
| "men": 1951, | |
| "con": 1952, | |
| "Ġann": 1953, | |
| "Ġsupport": 1954, | |
| "ĠYOU": 1955, | |
| "aced": 1956, | |
| "RE": 1957, | |
| "ĠMin": 1958, | |
| "ĠPres": 1959, | |
| "Ġcharac": 1960, | |
| "Ġstuff": 1961, | |
| "ĠMiss": 1962, | |
| "ĠâĻª\"": 1963, | |
| "ĠCounty": 1964, | |
| "Ġpict": 1965, | |
| "eptember": 1966, | |
| "Ġeither": 1967, | |
| "Ġ$": 1968, | |
| "Ġseason": 1969, | |
| "Ġband": 1970, | |
| "ler": 1971, | |
| "ĠBar": 1972, | |
| "Ġadm": 1973, | |
| "Ġresp": 1974, | |
| "ctober": 1975, | |
| "Ġeng": 1976, | |
| "ior": 1977, | |
| "Ġsold": 1978, | |
| "ane": 1979, | |
| "ement": 1980, | |
| "Ġrather": 1981, | |
| "Re": 1982, | |
| "Ġball": 1983, | |
| "Ġfig": 1984, | |
| "ĠCol": 1985, | |
| "An": 1986, | |
| "Ġdaughter": 1987, | |
| "unt": 1988, | |
| "ĠBritish": 1989, | |
| "Ġ]": 1990, | |
| "Ġpiec": 1991, | |
| "co": 1992, | |
| "Ġattack": 1993, | |
| "Ġap": 1994, | |
| "ĠChar": 1995, | |
| "Ġthinking": 1996, | |
| "Ġexample": 1997, | |
| "Ġallow": 1998, | |
| "Ġstra": 1999, | |
| "Ġquick": 2000, | |
| "aim": 2001, | |
| "ots": 2002, | |
| "ĠJune": 2003, | |
| "Ġminutes": 2004, | |
| "Ġmillion": 2005, | |
| "Ġothers": 2006, | |
| "ider": 2007, | |
| "Or": 2008, | |
| "Ġwithin": 2009, | |
| "cha": 2010, | |
| "Ex": 2011, | |
| "Ġroad": 2012, | |
| "Ġinform": 2013, | |
| "Ġtou": 2014, | |
| "Ġtem": 2015, | |
| "Ġreport": 2016, | |
| "cient": 2017, | |
| "Ġsuccess": 2018, | |
| "Ġlooks": 2019, | |
| "Ġprogram": 2020, | |
| "Ġparty": 2021, | |
| "oint": 2022, | |
| "ĠEurope": 2023, | |
| "Ġheld": 2024, | |
| "Ġbeautiful": 2025, | |
| "ience": 2026, | |
| "com": 2027, | |
| "hern": 2028, | |
| "Ġdou": 2029, | |
| "Ġlisten": 2030, | |
| "âĢĶ": 2031, | |
| "Ġtrou": 2032, | |
| "Ġliving": 2033, | |
| "atic": 2034, | |
| "ĠHer": 2035, | |
| "Ġdesign": 2036, | |
| "let": 2037, | |
| "Ġnec": 2038, | |
| "Ġstru": 2039, | |
| "ming": 2040, | |
| "ze": 2041, | |
| "Mr": 2042, | |
| "Ġresult": 2043, | |
| "iving": 2044, | |
| "Ġnamed": 2045, | |
| "ĠSeptember": 2046, | |
| "Ġnational": 2047, | |
| "ĠNational": 2048, | |
| "ency": 2049, | |
| "Ġperform": 2050, | |
| "Ġ.": 2051, | |
| "artment": 2052, | |
| "Ġwants": 2053, | |
| "Ġbra": 2054, | |
| "fe": 2055, | |
| "Ġspecial": 2056, | |
| "Ġminute": 2057, | |
| "itting": 2058, | |
| "ĠX": 2059, | |
| "ĠOctober": 2060, | |
| "Ġinside": 2061, | |
| "itten": 2062, | |
| "Ġlangu": 2063, | |
| "Ġturned": 2064, | |
| "ained": 2065, | |
| "ories": 2066, | |
| "Ġrepl": 2067, | |
| "ele": 2068, | |
| "ored": 2069, | |
| "ode": 2070, | |
| "ĠNorth": 2071, | |
| "ĠApril": 2072, | |
| "Ġsum": 2073, | |
| "pped": 2074, | |
| "actly": 2075, | |
| "wo": 2076, | |
| "Ġsil": 2077, | |
| "Ġmember": 2078, | |
| "Ġwonder": 2079, | |
| "ĠJuly": 2080, | |
| "ald": 2081, | |
| "ege": 2082, | |
| "Ġve": 2083, | |
| "Some": 2084, | |
| "Ġmess": 2085, | |
| "Ġappear": 2086, | |
| "een": 2087, | |
| "ousand": 2088, | |
| "oman": 2089, | |
| "Ġsingle": 2090, | |
| "Ġformer": 2091, | |
| "Ġrock": 2092, | |
| "aul": 2093, | |
| "fully": 2094, | |
| "Ġstar": 2095, | |
| "oad": 2096, | |
| "range": 2097, | |
| "Ġdear": 2098, | |
| "Ġking": 2099, | |
| "Ġelect": 2100, | |
| "Ġexpect": 2101, | |
| "ĠSw": 2102, | |
| "Ġincluding": 2103, | |
| "ĠFl": 2104, | |
| "At": 2105, | |
| "Ġtest": 2106, | |
| "resent": 2107, | |
| "--\"": 2108, | |
| "AS": 2109, | |
| "par": 2110, | |
| "Ġthank": 2111, | |
| "Ġsun": 2112, | |
| "Ġdream": 2113, | |
| "ĠNo": 2114, | |
| "Ġship": 2115, | |
| "Ġfelt": 2116, | |
| "Any": 2117, | |
| "Ġcommon": 2118, | |
| "Ġdie": 2119, | |
| "Ġvoice": 2120, | |
| "Ġvill": 2121, | |
| "unch": 2122, | |
| "Ġfilm": 2123, | |
| "ĠNove": 2124, | |
| "usband": 2125, | |
| "ĠFrench": 2126, | |
| "Ġlived": 2127, | |
| "ruary": 2128, | |
| "ĠDecember": 2129, | |
| "ebruary": 2130, | |
| "Ġrev": 2131, | |
| "ued": 2132, | |
| "Ġacross": 2133, | |
| "ales": 2134, | |
| "key": 2135, | |
| "Ġplaying": 2136, | |
| "Ġthird": 2137, | |
| "fect": 2138, | |
| "Ġdark": 2139, | |
| "ape": 2140, | |
| "Ġoutside": 2141, | |
| "Ġmonths": 2142, | |
| "Ġsometimes": 2143, | |
| "Ġpossible": 2144, | |
| "Ġhit": 2145, | |
| "Ġusing": 2146, | |
| "ĠCha": 2147, | |
| "Ġamong": 2148, | |
| "ĠNovember": 2149, | |
| "Ġmemb": 2150, | |
| "idge": 2151, | |
| "Ġhours": 2152, | |
| "Ġeffect": 2153, | |
| "Ġgra": 2154, | |
| "Ġfootball": 2155, | |
| "II": 2156, | |
| "Ġthousand": 2157, | |
| "echn": 2158, | |
| "que": 2159, | |
| "fort": 2160, | |
| "ograph": 2161, | |
| "Ġworked": 2162, | |
| "ternational": 2163, | |
| "ended": 2164, | |
| "over": 2165, | |
| "Ġrequ": 2166, | |
| "Ġcheck": 2167, | |
| "Ġdest": 2168, | |
| "Ġz": 2169, | |
| "Hi": 2170, | |
| "ĠEd": 2171, | |
| "ĠIf": 2172, | |
| "Be": 2173, | |
| "Ġhair": 2174, | |
| "Ġill": 2175, | |
| "aur": 2176, | |
| "Ġ\"'": 2177, | |
| "Ġfre": 2178, | |
| "ĠOne": 2179, | |
| "Ġfif": 2180, | |
| "ached": 2181, | |
| "cil": 2182, | |
| "ĠAb": 2183, | |
| "Ġfollowing": 2184, | |
| "ĠDe": 2185, | |
| "Ġgun": 2186, | |
| "vision": 2187, | |
| "iddle": 2188, | |
| "ĠLe": 2189, | |
| "you": 2190, | |
| "Ġcop": 2191, | |
| "Ġhusband": 2192, | |
| "Ġmajor": 2193, | |
| "Ġpoor": 2194, | |
| "Ġcareer": 2195, | |
| "Ġforg": 2196, | |
| "Ġclub": 2197, | |
| "Ġappro": 2198, | |
| "Ġprofess": 2199, | |
| "Wait": 2200, | |
| "Of": 2201, | |
| "overed": 2202, | |
| "Ġ\"(": 2203, | |
| "ĠTO": 2204, | |
| "Ġdam": 2205, | |
| "read": 2206, | |
| "unk": 2207, | |
| "though": 2208, | |
| "Ġcir": 2209, | |
| "Ġtried": 2210, | |
| "ĠCal": 2211, | |
| "ĠGeor": 2212, | |
| "Ġground": 2213, | |
| "ĠGo": 2214, | |
| "Ġwish": 2215, | |
| "ata": 2216, | |
| "ĠFebruary": 2217, | |
| "Ġaf": 2218, | |
| "Ġfeet": 2219, | |
| "Ġtot": 2220, | |
| "irth": 2221, | |
| "Ġhistory": 2222, | |
| "Ġsend": 2223, | |
| "oul": 2224, | |
| "eared": 2225, | |
| "Ġparticular": 2226, | |
| "ĠEl": 2227, | |
| "Ġmoved": 2228, | |
| "ĠAf": 2229, | |
| "ĠThat": 2230, | |
| "cing": 2231, | |
| "Ġtom": 2232, | |
| "Ġlevel": 2233, | |
| "----": 2234, | |
| "ama": 2235, | |
| "sc": 2236, | |
| "Ġbuilt": 2237, | |
| "oved": 2238, | |
| "Ġseven": 2239, | |
| "itch": 2240, | |
| "Take": 2241, | |
| "Ġgrand": 2242, | |
| "Erm": 2243, | |
| "Ġbox": 2244, | |
| "Ġpolice": 2245, | |
| "Ġproper": 2246, | |
| "ĠCity": 2247, | |
| "Ġgotta": 2248, | |
| "airs": 2249, | |
| "Ġcamp": 2250, | |
| "Ġbuilding": 2251, | |
| "Ġnorth": 2252, | |
| "uthor": 2253, | |
| "Ġmembers": 2254, | |
| "ĠOr": 2255, | |
| "Ġfa": 2256, | |
| "attle": 2257, | |
| "Ġusually": 2258, | |
| "Ġcre": 2259, | |
| "Ġtill": 2260, | |
| "gest": 2261, | |
| "With": 2262, | |
| "ressed": 2263, | |
| "Ġlay": 2264, | |
| "Ġav": 2265, | |
| "rog": 2266, | |
| "huh": 2267, | |
| "Ġgets": 2268, | |
| "Ġcompet": 2269, | |
| "Ġparent": 2270, | |
| "ination": 2271, | |
| "pec": 2272, | |
| "Ġcost": 2273, | |
| "Ġoffice": 2274, | |
| "bo": 2275, | |
| "Ġtreat": 2276, | |
| "ĠRep": 2277, | |
| "Ġcond": 2278, | |
| "Ġmur": 2279, | |
| "Ġgold": 2280, | |
| "Ġcomplete": 2281, | |
| "Ġconcer": 2282, | |
| "Ġabs": 2283, | |
| "ging": 2284, | |
| "Ġtable": 2285, | |
| "Ġchance": 2286, | |
| "ĠFrance": 2287, | |
| "Ġanswer": 2288, | |
| "yn": 2289, | |
| "Ġpull": 2290, | |
| "come": 2291, | |
| "Ġworry": 2292, | |
| "Ġfield": 2293, | |
| "Ġwhether": 2294, | |
| "Ġanyone": 2295, | |
| "onight": 2296, | |
| "ĠGu": 2297, | |
| "ified": 2298, | |
| "hile": 2299, | |
| "rodu": 2300, | |
| "Ġcontrol": 2301, | |
| "ĠPresident": 2302, | |
| "Ġord": 2303, | |
| "raid": 2304, | |
| "ien": 2305, | |
| "Ġteac": 2306, | |
| "ĠEar": 2307, | |
| "Thanks": 2308, | |
| "ĠCent": 2309, | |
| "Ġworks": 2310, | |
| "Ġprop": 2311, | |
| "Ġsweet": 2312, | |
| "Ġstation": 2313, | |
| "ondon": 2314, | |
| "Ġbuy": 2315, | |
| "Ġknows": 2316, | |
| "room": 2317, | |
| "Ġste": 2318, | |
| "Ġrad": 2319, | |
| "Like": 2320, | |
| "Ġtwenty": 2321, | |
| "Ġcannot": 2322, | |
| "idence": 2323, | |
| "Ġdev": 2324, | |
| "Ġwall": 2325, | |
| "Ġdesc": 2326, | |
| "ases": 2327, | |
| "Ġbased": 2328, | |
| "ris": 2329, | |
| "iod": 2330, | |
| "Ġwritten": 2331, | |
| "uk": 2332, | |
| "Ġeasy": 2333, | |
| "Ġstep": 2334, | |
| "ray": 2335, | |
| "ED": 2336, | |
| "por": 2337, | |
| "Ġpract": 2338, | |
| "Ġplayer": 2339, | |
| "Ġfav": 2340, | |
| "ĠMic": 2341, | |
| "ana": 2342, | |
| "Ġsister": 2343, | |
| "Ġevent": 2344, | |
| "Ġlives": 2345, | |
| "ĠWest": 2346, | |
| "Ġview": 2347, | |
| "Ġgeneral": 2348, | |
| "ĠJack": 2349, | |
| "Ġseems": 2350, | |
| "aint": 2351, | |
| "Ġpopulation": 2352, | |
| "irty": 2353, | |
| "Ġlocal": 2354, | |
| "OM": 2355, | |
| "Ġseemed": 2356, | |
| "asure": 2357, | |
| "itions": 2358, | |
| "ĠAm": 2359, | |
| "ration": 2360, | |
| "ule": 2361, | |
| "Ġiss": 2362, | |
| "Ġmot": 2363, | |
| "Ġcentury": 2364, | |
| "Ġphone": 2365, | |
| "iding": 2366, | |
| "soci": 2367, | |
| "ding": 2368, | |
| "Ġdiffic": 2369, | |
| "Ġcouple": 2370, | |
| "ĠLondon": 2371, | |
| "Ġcurrent": 2372, | |
| "ances": 2373, | |
| "Ġpost": 2374, | |
| "Ġmine": 2375, | |
| "Ġprocess": 2376, | |
| "Ġlow": 2377, | |
| "ula": 2378, | |
| "Ġdeep": 2379, | |
| "Ġafraid": 2380, | |
| "Ġfast": 2381, | |
| "Ġeveryone": 2382, | |
| "Ġdraw": 2383, | |
| "sy": 2384, | |
| "Ġvide": 2385, | |
| "Ġsense": 2386, | |
| "Ġones": 2387, | |
| "oud": 2388, | |
| "Ġcold": 2389, | |
| "Ġnat": 2390, | |
| "Ġwrote": 2391, | |
| "Ġcal": 2392, | |
| "Ġbird": 2393, | |
| "Ġsuff": 2394, | |
| "illy": 2395, | |
| "Ġwear": 2396, | |
| "iron": 2397, | |
| "OW": 2398, | |
| "ounds": 2399, | |
| "Ġfair": 2400, | |
| "Ġinvol": 2401, | |
| "Ġcharacter": 2402, | |
| "Ġexactly": 2403, | |
| "ino": 2404, | |
| "ĠDav": 2405, | |
| "Ġsea": 2406, | |
| "Ġgirls": 2407, | |
| "Ġfur": 2408, | |
| "hampions": 2409, | |
| "Sorry": 2410, | |
| "Ġwrite": 2411, | |
| "Ġincre": 2412, | |
| "ument": 2413, | |
| "Ġcry": 2414, | |
| "Ġdi": 2415, | |
| "Ġlonger": 2416, | |
| "Ġboys": 2417, | |
| "LE": 2418, | |
| "ift": 2419, | |
| "ĠEngland": 2420, | |
| "Ġtomorrow": 2421, | |
| "ara": 2422, | |
| "ean": 2423, | |
| "Tell": 2424, | |
| "..\"": 2425, | |
| "ĠLea": 2426, | |
| "Ġdin": 2427, | |
| "iter": 2428, | |
| "dom": 2429, | |
| "Ch": 2430, | |
| "ourn": 2431, | |
| "Ġpaper": 2432, | |
| "ada": 2433, | |
| "ĠItal": 2434, | |
| "work": 2435, | |
| "urg": 2436, | |
| "Ġbirth": 2437, | |
| "ĠPeter": 2438, | |
| "itive": 2439, | |
| "Ġdirect": 2440, | |
| "Ġbott": 2441, | |
| "ĠDan": 2442, | |
| "Ġinformation": 2443, | |
| "ected": 2444, | |
| "oes": 2445, | |
| "ission": 2446, | |
| "ogn": 2447, | |
| "Ġchanged": 2448, | |
| "ĠAustral": 2449, | |
| "IT": 2450, | |
| "ĠWhat": 2451, | |
| "anger": 2452, | |
| "bers": 2453, | |
| "Ġsex": 2454, | |
| "OK": 2455, | |
| "ization": 2456, | |
| "Ġtruth": 2457, | |
| "Ġsouth": 2458, | |
| "Ġhuh": 2459, | |
| "uri": 2460, | |
| "Ġwood": 2461, | |
| "oose": 2462, | |
| "Ġrunning": 2463, | |
| "ĠGerman": 2464, | |
| "ĠTom": 2465, | |
| "Ġlik": 2466, | |
| "ording": 2467, | |
| "Ġkids": 2468, | |
| "lex": 2469, | |
| "ills": 2470, | |
| "Ġsupposed": 2471, | |
| "Ġservice": 2472, | |
| "Ġlab": 2473, | |
| "entle": 2474, | |
| "Ġsuper": 2475, | |
| "more": 2476, | |
| "Ġfail": 2477, | |
| "Ġeduc": 2478, | |
| "Ġpress": 2479, | |
| "ĠPe": 2480, | |
| "Ġcross": 2481, | |
| "for": 2482, | |
| "Ġperiod": 2483, | |
| "Ġmer": 2484, | |
| "Ġdro": 2485, | |
| "Ġcat": 2486, | |
| "irt": 2487, | |
| "ask": 2488, | |
| "ouncil": 2489, | |
| "Ġtrouble": 2490, | |
| "ĠSome": 2491, | |
| "Ġ...": 2492, | |
| "Ġsomebody": 2493, | |
| "Ġforget": 2494, | |
| "uation": 2495, | |
| "ĠLord": 2496, | |
| "ĠTr": 2497, | |
| "Ġshot": 2498, | |
| "Ġla": 2499, | |
| "hel": 2500, | |
| "Ġposition": 2501, | |
| "Ġauthor": 2502, | |
| "Ġhurt": 2503, | |
| "Ġreceived": 2504, | |
| "ising": 2505, | |
| "Ġple": 2506, | |
| "Ġtonight": 2507, | |
| "Ġhig": 2508, | |
| "Ġ*": 2509, | |
| "Ġneeds": 2510, | |
| "ĠAmerica": 2511, | |
| "ky": 2512, | |
| "Ġgen": 2513, | |
| "Ġthemselves": 2514, | |
| "Ġfut": 2515, | |
| "Ġclean": 2516, | |
| "aged": 2517, | |
| "Ġrepresent": 2518, | |
| "Ġtree": 2519, | |
| "Ġtype": 2520, | |
| "dden": 2521, | |
| "ĠHowever": 2522, | |
| "GH": 2523, | |
| "Ġblue": 2524, | |
| "ĠRuss": 2525, | |
| "urs": 2526, | |
| "Ġdistrict": 2527, | |
| "Ġtrad": 2528, | |
| "ĠThese": 2529, | |
| "Ġtelevision": 2530, | |
| "ops": 2531, | |
| "conom": 2532, | |
| "Ġsecret": 2533, | |
| "ĠSchool": 2534, | |
| "Ġmount": 2535, | |
| "itary": 2536, | |
| "Ġlady": 2537, | |
| "emy": 2538, | |
| "arr": 2539, | |
| "Ġentire": 2540, | |
| "ĠUS": 2541, | |
| "Ġkept": 2542, | |
| "Ġarri": 2543, | |
| "acy": 2544, | |
| "ford": 2545, | |
| "Ġtechn": 2546, | |
| "Ġluck": 2547, | |
| "ption": 2548, | |
| "Ġconn": 2549, | |
| "ospital": 2550, | |
| "like": 2551, | |
| "ĠMc": 2552, | |
| "Ġaccept": 2553, | |
| "Ġcreated": 2554, | |
| "ays": 2555, | |
| "owers": 2556, | |
| "Ġlanguage": 2557, | |
| "aff": 2558, | |
| "avy": 2559, | |
| "Ġserious": 2560, | |
| "Ġtouch": 2561, | |
| "ilar": 2562, | |
| "Ġtit": 2563, | |
| "Ġsudden": 2564, | |
| "inal": 2565, | |
| "Ġwaiting": 2566, | |
| "ping": 2567, | |
| "ĠPol": 2568, | |
| "ĠTo": 2569, | |
| "Ġcos": 2570, | |
| "gel": 2571, | |
| "ĠEm": 2572, | |
| "Ġ\"#": 2573, | |
| "de": 2574, | |
| "Ġeverybody": 2575, | |
| "arty": 2576, | |
| "Ġobject": 2577, | |
| "Ġwhatever": 2578, | |
| "Stop": 2579, | |
| "Ġsugg": 2580, | |
| "joy": 2581, | |
| "ror": 2582, | |
| "Ġsuggest": 2583, | |
| "Ġvers": 2584, | |
| "Ġsell": 2585, | |
| "Mhm": 2586, | |
| "ken": 2587, | |
| "Ġsurpr": 2588, | |
| "off": 2589, | |
| "eder": 2590, | |
| "Ġvisit": 2591, | |
| "Ġabove": 2592, | |
| "ĠState": 2593, | |
| "Ġhy": 2594, | |
| "Ġstraight": 2595, | |
| "IC": 2596, | |
| "Ġperhaps": 2597, | |
| "Ġhowever": 2598, | |
| "amb": 2599, | |
| "ae": 2600, | |
| "ploy": 2601, | |
| "ĠSha": 2602, | |
| "oph": 2603, | |
| "iol": 2604, | |
| "Ġmist": 2605, | |
| "Really": 2606, | |
| "ĠPhil": 2607, | |
| "Ġcook": 2608, | |
| "ĠEx": 2609, | |
| "Ġfucking": 2610, | |
| "lu": 2611, | |
| "ivil": 2612, | |
| "uz": 2613, | |
| "pes": 2614, | |
| "Ġgreen": 2615, | |
| "Ġspecies": 2616, | |
| "Ġparents": 2617, | |
| "Ġfly": 2618, | |
| "Give": 2619, | |
| "Ġrespect": 2620, | |
| "Ġpriv": 2621, | |
| "Ġlim": 2622, | |
| "Ġpot": 2623, | |
| "Ġrul": 2624, | |
| "Ġrese": 2625, | |
| "Ġitself": 2626, | |
| "Ġexist": 2627, | |
| "Ġfuture": 2628, | |
| "fer": 2629, | |
| "van": 2630, | |
| "ician": 2631, | |
| "Ġvol": 2632, | |
| "well": 2633, | |
| "ĠPer": 2634, | |
| "olution": 2635, | |
| "Ġherself": 2636, | |
| "omin": 2637, | |
| "ression": 2638, | |
| "Ġbooks": 2639, | |
| "ager": 2640, | |
| "ille": 2641, | |
| "ĠDr": 2642, | |
| "Ġfeeling": 2643, | |
| "ĠAN": 2644, | |
| "ĠBy": 2645, | |
| "Ġinstead": 2646, | |
| "Ġpicture": 2647, | |
| "estern": 2648, | |
| "Ġstri": 2649, | |
| "Ġdecided": 2650, | |
| "hard": 2651, | |
| "Ġcell": 2652, | |
| "ĠCap": 2653, | |
| "Ġcomput": 2654, | |
| "Ġcrit": 2655, | |
| "Ġvillage": 2656, | |
| "Ġcarry": 2657, | |
| "US": 2658, | |
| "ending": 2659, | |
| "Ġimag": 2660, | |
| "Ġtakes": 2661, | |
| "teen": 2662, | |
| "Ġproblems": 2663, | |
| "Ġperfect": 2664, | |
| "cience": 2665, | |
| "Ġport": 2666, | |
| "Ġain": 2667, | |
| "tle": 2668, | |
| "Ġinclude": 2669, | |
| "Ġled": 2670, | |
| "ĠWilliam": 2671, | |
| "Ġmouth": 2672, | |
| "Ġpiece": 2673, | |
| "Ġang": 2674, | |
| "now": 2675, | |
| "Ġinvest": 2676, | |
| "rap": 2677, | |
| "Ġshoot": 2678, | |
| "Ġfinished": 2679, | |
| "ĠJo": 2680, | |
| "Ġchair": 2681, | |
| "Ġcult": 2682, | |
| "Ġletter": 2683, | |
| "roy": 2684, | |
| "gr": 2685, | |
| "Ġlearn": 2686, | |
| "ĠPaul": 2687, | |
| "Ġprin": 2688, | |
| "Ġpopular": 2689, | |
| "stit": 2690, | |
| "Ġlaugh": 2691, | |
| "ĠOF": 2692, | |
| "Would": 2693, | |
| "Ġdoctor": 2694, | |
| "bed": 2695, | |
| "reet": 2696, | |
| "Hm": 2697, | |
| "Ġserved": 2698, | |
| "Ġchurch": 2699, | |
| "Ġdoll": 2700, | |
| "ĠHouse": 2701, | |
| "Ġaren": 2702, | |
| "lands": 2703, | |
| "Ġdifficult": 2704, | |
| "Does": 2705, | |
| "Ġpen": 2706, | |
| "Ġfix": 2707, | |
| "Ġdue": 2708, | |
| "Ġcirc": 2709, | |
| "val": 2710, | |
| "Ġearth": 2711, | |
| "Ġproject": 2712, | |
| "Ġworth": 2713, | |
| "ivid": 2714, | |
| "ĠRe": 2715, | |
| "ocr": 2716, | |
| "ĠWith": 2717, | |
| "razy": 2718, | |
| "Ġtrust": 2719, | |
| "Ġmem": 2720, | |
| "Ġhappens": 2721, | |
| "unic": 2722, | |
| "hael": 2723, | |
| "ĠColl": 2724, | |
| "Ġcover": 2725, | |
| "Ġspace": 2726, | |
| "isten": 2727, | |
| "Will": 2728, | |
| "go": 2729, | |
| "lic": 2730, | |
| "Ġactiv": 2731, | |
| "atter": 2732, | |
| "pecially": 2733, | |
| "alt": 2734, | |
| "Ġvideo": 2735, | |
| "Ġfinal": 2736, | |
| "Ġrecogn": 2737, | |
| "yle": 2738, | |
| "Ġprison": 2739, | |
| "Ġlad": 2740, | |
| "ental": 2741, | |
| "Ġbear": 2742, | |
| "Ġesc": 2743, | |
| "Ġhorse": 2744, | |
| "Ġslow": 2745, | |
| "Ġtrack": 2746, | |
| "bt": 2747, | |
| "Ġnorm": 2748, | |
| "ĠLeague": 2749, | |
| "eneral": 2750, | |
| "Ġtelling": 2751, | |
| "Ġgentle": 2752, | |
| "olute": 2753, | |
| "Ġhealth": 2754, | |
| "Ġsoft": 2755, | |
| "Ġarm": 2756, | |
| "Ġregion": 2757, | |
| "Ġspir": 2758, | |
| "Ġpassed": 2759, | |
| "ĠSec": 2760, | |
| "ĠSam": 2761, | |
| "viously": 2762, | |
| "Ġthrow": 2763, | |
| "Ġhang": 2764, | |
| "AY": 2765, | |
| "Ġrelations": 2766, | |
| "ciety": 2767, | |
| "Ġfear": 2768, | |
| "Ġanyway": 2769, | |
| "Ġsafe": 2770, | |
| "Ġnine": 2771, | |
| "Ġshit": 2772, | |
| "Ġsocial": 2773, | |
| "Ġcorn": 2774, | |
| "Ġpresident": 2775, | |
| "Ġweeks": 2776, | |
| "Ġsus": 2777, | |
| "Ġdanger": 2778, | |
| "pha": 2779, | |
| "ĠSe": 2780, | |
| "Ġcried": 2781, | |
| "Ġfigure": 2782, | |
| "Ġmiddle": 2783, | |
| "Ġriver": 2784, | |
| "Ġep": 2785, | |
| "rill": 2786, | |
| "rug": 2787, | |
| "Ġmeant": 2788, | |
| "Ġjud": 2789, | |
| "Ġphys": 2790, | |
| "Ġestab": 2791, | |
| "omb": 2792, | |
| ".'": 2793, | |
| "Ġphot": 2794, | |
| "ĠPark": 2795, | |
| "itted": 2796, | |
| "Ġfurther": 2797, | |
| "erence": 2798, | |
| "Ġengine": 2799, | |
| "Ġmis": 2800, | |
| "lect": 2801, | |
| "Ġsave": 2802, | |
| "Ġenjoy": 2803, | |
| "ĠDon": 2804, | |
| "Ġclot": 2805, | |
| "Ġant": 2806, | |
| "epend": 2807, | |
| "Ġcourt": 2808, | |
| "á": 2809, | |
| "ĠMy": 2810, | |
| "empt": 2811, | |
| "Ġevening": 2812, | |
| "Ġhop": 2813, | |
| "omes": 2814, | |
| "Ġcast": 2815, | |
| "Ġmeeting": 2816, | |
| "Ġexcept": 2817, | |
| "Ġ?\"": 2818, | |
| "Ġgames": 2819, | |
| "Ġvict": 2820, | |
| "ival": 2821, | |
| "nel": 2822, | |
| "Ġtrain": 2823, | |
| "TER": 2824, | |
| "Ġahead": 2825, | |
| "Ġfamous": 2826, | |
| "ius": 2827, | |
| "ĠQue": 2828, | |
| "ĠIndian": 2829, | |
| "Ġeconom": 2830, | |
| "Ġ(\"": 2831, | |
| "Which": 2832, | |
| "ĠSy": 2833, | |
| "Ġreturned": 2834, | |
| "Ġglad": 2835, | |
| "EA": 2836, | |
| "Ġself": 2837, | |
| "Ġfunny": 2838, | |
| "amer": 2839, | |
| "Ġopened": 2840, | |
| "Ġneg": 2841, | |
| "Nothing": 2842, | |
| "Ġide": 2843, | |
| "Ġstood": 2844, | |
| "ĠGeorge": 2845, | |
| "Ġdisapp": 2846, | |
| "ergy": 2847, | |
| "Ġmach": 2848, | |
| "roll": 2849, | |
| "Ġgod": 2850, | |
| "ĠSm": 2851, | |
| "Ġaut": 2852, | |
| "reg": 2853, | |
| "ashing": 2854, | |
| "Ġquiet": 2855, | |
| "ighb": 2856, | |
| "oly": 2857, | |
| "ander": 2858, | |
| "Ġfill": 2859, | |
| "uel": 2860, | |
| "riage": 2861, | |
| "Ġsick": 2862, | |
| "Ġfish": 2863, | |
| "These": 2864, | |
| "ishing": 2865, | |
| "Ġsubject": 2866, | |
| "ĠMus": 2867, | |
| "Ġda": 2868, | |
| "rible": 2869, | |
| "Ġum": 2870, | |
| "iers": 2871, | |
| "ĠIN": 2872, | |
| "Ġleaving": 2873, | |
| "Ġcounty": 2874, | |
| "Ġgrad": 2875, | |
| "Ġcrazy": 2876, | |
| "cher": 2877, | |
| "Ġbeginning": 2878, | |
| "mon": 2879, | |
| "Ġaccount": 2880, | |
| "ĠSu": 2881, | |
| "la": 2882, | |
| "ume": 2883, | |
| "ĠRed": 2884, | |
| "ceed": 2885, | |
| "line": 2886, | |
| "Ġseat": 2887, | |
| "Ġbreat": 2888, | |
| "Ġnin": 2889, | |
| "Ġnecess": 2890, | |
| "lin": 2891, | |
| "Ġcool": 2892, | |
| "Ġforce": 2893, | |
| "Ġdinner": 2894, | |
| "ĠNow": 2895, | |
| "Ġtru": 2896, | |
| "Ġrole": 2897, | |
| "Ġwhom": 2898, | |
| "Um": 2899, | |
| "Ġcapital": 2900, | |
| "Ġcatch": 2901, | |
| "Sure": 2902, | |
| "iforn": 2903, | |
| "ĠMary": 2904, | |
| "Ġmad": 2905, | |
| "ĠDo": 2906, | |
| "wh": 2907, | |
| "Ġring": 2908, | |
| "Ġannoun": 2909, | |
| "Ġpolitical": 2910, | |
| "Ġmult": 2911, | |
| "ĠEast": 2912, | |
| "Ġagre": 2913, | |
| "Ġfeat": 2914, | |
| "Ġsimilar": 2915, | |
| "hem": 2916, | |
| "Ġhospital": 2917, | |
| "Ġclaim": 2918, | |
| "Ġfloor": 2919, | |
| "Ġburn": 2920, | |
| "ĠRiver": 2921, | |
| "Very": 2922, | |
| "that": 2923, | |
| "erve": 2924, | |
| "Ġmass": 2925, | |
| "ĠHigh": 2926, | |
| "Ġforward": 2927, | |
| "cell": 2928, | |
| "ires": 2929, | |
| "Un": 2930, | |
| "VE": 2931, | |
| "Ġx": 2932, | |
| "Ġrespons": 2933, | |
| "\")": 2934, | |
| "Ġnon": 2935, | |
| "ifornia": 2936, | |
| "rel": 2937, | |
| "Ġsitting": 2938, | |
| "Ġintrodu": 2939, | |
| "Ġclos": 2940, | |
| "Ġreached": 2941, | |
| "Ġgiving": 2942, | |
| "Ġrelig": 2943, | |
| "AC": 2944, | |
| "Ġeye": 2945, | |
| "Ġparts": 2946, | |
| "Ġmention": 2947, | |
| "Ġviol": 2948, | |
| "Ġident": 2949, | |
| "Ġmater": 2950, | |
| "Put": 2951, | |
| "medi": 2952, | |
| "Ġcomb": 2953, | |
| "Ġinteresting": 2954, | |
| "ĠGr": 2955, | |
| "Ġindivid": 2956, | |
| "Ġcommunity": 2957, | |
| "Ġshut": 2958, | |
| "Ġoriginal": 2959, | |
| "Ġcause": 2960, | |
| "Listen": 2961, | |
| "ET": 2962, | |
| "ĠGl": 2963, | |
| "field": 2964, | |
| "rey": 2965, | |
| "ID": 2966, | |
| "ĠRoman": 2967, | |
| "OT": 2968, | |
| "Ġstick": 2969, | |
| "ĠDavid": 2970, | |
| "ples": 2971, | |
| "Ġquestions": 2972, | |
| "Ġdrive": 2973, | |
| "Ġfing": 2974, | |
| "Ġsepar": 2975, | |
| "ĠRepubl": 2976, | |
| "Ġcountries": 2977, | |
| "uge": 2978, | |
| "Ġtotal": 2979, | |
| "Ġstudents": 2980, | |
| "erry": 2981, | |
| "AM": 2982, | |
| "Ġbank": 2983, | |
| "Ġfem": 2984, | |
| "ĠCH": 2985, | |
| "ĠAg": 2986, | |
| "ĠGovern": 2987, | |
| "Ġbeat": 2988, | |
| "king": 2989, | |
| "Alright": 2990, | |
| "Ġplaces": 2991, | |
| "Ġkey": 2992, | |
| "reme": 2993, | |
| "ĠSan": 2994, | |
| "Ġquickly": 2995, | |
| "Ġbag": 2996, | |
| "ĠQu": 2997, | |
| "Ġappeared": 2998, | |
| "Ġwhose": 2999, | |
| "Somet": 3000, | |
| "Ġstage": 3001, | |
| "Ġproduct": 3002, | |
| "Ġ#": 3003, | |
| "Ġtowards": 3004, | |
| "ĠGermany": 3005, | |
| "ply": 3006, | |
| "rid": 3007, | |
| "Ġmatch": 3008, | |
| "Ġyours": 3009, | |
| "ĠJames": 3010, | |
| "ĠCor": 3011, | |
| "Ġamount": 3012, | |
| "Ġobs": 3013, | |
| "Ġinn": 3014, | |
| "Ġclim": 3015, | |
| "itor": 3016, | |
| "Ġneighb": 3017, | |
| "ĠLou": 3018, | |
| "Ġlose": 3019, | |
| "ĠMed": 3020, | |
| "Huh": 3021, | |
| "ĠCalifornia": 3022, | |
| "Ġstore": 3023, | |
| "hips": 3024, | |
| "Ġstudy": 3025, | |
| "Ġhost": 3026, | |
| "Ġconsider": 3027, | |
| "Ġbene": 3028, | |
| "Me": 3029, | |
| "Ġmarket": 3030, | |
| "ĠJapanese": 3031, | |
| "Ġsimple": 3032, | |
| "ocked": 3033, | |
| "Ġmid": 3034, | |
| "ĠDuring": 3035, | |
| "His": 3036, | |
| "Ġfollowed": 3037, | |
| "God": 3038, | |
| "ĠMart": 3039, | |
| "Ġhoney": 3040, | |
| "esus": 3041, | |
| "Ġwindow": 3042, | |
| "ellow": 3043, | |
| "raft": 3044, | |
| "Ġsuppose": 3045, | |
| "oming": 3046, | |
| "Ġkiss": 3047, | |
| "Ġtravel": 3048, | |
| "ĠIndia": 3049, | |
| "Ġpark": 3050, | |
| "Ġdeg": 3051, | |
| "Ġalive": 3052, | |
| "cious": 3053, | |
| "inite": 3054, | |
| "mas": 3055, | |
| "sp": 3056, | |
| "Ġnatural": 3057, | |
| "Ġroll": 3058, | |
| "Ġmoving": 3059, | |
| "Ġpal": 3060, | |
| "Ġenergy": 3061, | |
| "Ġ<": 3062, | |
| "hood": 3063, | |
| "Ġpublished": 3064, | |
| "Ġcaught": 3065, | |
| "Ġindust": 3066, | |
| "ĠMon": 3067, | |
| "time": 3068, | |
| "inist": 3069, | |
| "Ġlocated": 3070, | |
| "Ġpolic": 3071, | |
| "Ġwide": 3072, | |
| "ĠHist": 3073, | |
| "Ġexperience": 3074, | |
| "unicip": 3075, | |
| "ĠRic": 3076, | |
| "Ġcolor": 3077, | |
| "Ġris": 3078, | |
| "Ġbill": 3079, | |
| "ĠLa": 3080, | |
| "Ġbeha": 3081, | |
| "upid": 3082, | |
| "Ġanymore": 3083, | |
| "olly": 3084, | |
| "Ġbull": 3085, | |
| "uted": 3086, | |
| "Ġcertainly": 3087, | |
| "ruction": 3088, | |
| "Ġfamil": 3089, | |
| "ya": 3090, | |
| "het": 3091, | |
| "ĠII": 3092, | |
| "Ġbelong": 3093, | |
| "Two": 3094, | |
| "Ġperm": 3095, | |
| "arden": 3096, | |
| "Ġways": 3097, | |
| "oid": 3098, | |
| "ĠParty": 3099, | |
| "inary": 3100, | |
| "AL": 3101, | |
| "ades": 3102, | |
| "Ġneeded": 3103, | |
| "ĠRober": 3104, | |
| "Ġmiles": 3105, | |
| "Ġshar": 3106, | |
| "uty": 3107, | |
| "ĠBro": 3108, | |
| "ĠMad": 3109, | |
| "oyal": 3110, | |
| "iled": 3111, | |
| "nes": 3112, | |
| "Ġver": 3113, | |
| "Ġteacher": 3114, | |
| "ĠAir": 3115, | |
| "Ġrace": 3116, | |
| "rian": 3117, | |
| "chan": 3118, | |
| "rican": 3119, | |
| "Ġsituation": 3120, | |
| "Ġ\"...": 3121, | |
| "Ġdress": 3122, | |
| "Ġsad": 3123, | |
| "Ġlie": 3124, | |
| "aven": 3125, | |
| "iny": 3126, | |
| "orts": 3127, | |
| "Ġterms": 3128, | |
| "ÃŃ": 3129, | |
| "Ġ\"!\"": 3130, | |
| "rab": 3131, | |
| "Ġfinally": 3132, | |
| "wood": 3133, | |
| "ensive": 3134, | |
| "Ġ,": 3135, | |
| "Ġstrange": 3136, | |
| "Ġstopped": 3137, | |
| "Ġfac": 3138, | |
| "Ġdiscuss": 3139, | |
| "Ġallowed": 3140, | |
| "ka": 3141, | |
| "night": 3142, | |
| "Ġanybody": 3143, | |
| "light": 3144, | |
| "wered": 3145, | |
| "ĠDem": 3146, | |
| "ĠBen": 3147, | |
| "ĠMor": 3148, | |
| "Ġearl": 3149, | |
| "Aha": 3150, | |
| "Dad": 3151, | |
| "Ġstreet": 3152, | |
| "Ġalright": 3153, | |
| "Even": 3154, | |
| "uses": 3155, | |
| "Ġ)": 3156, | |
| "Ġinflu": 3157, | |
| "Ġprotect": 3158, | |
| "Ġemploy": 3159, | |
| "asons": 3160, | |
| "iment": 3161, | |
| "no": 3162, | |
| "Ġvarious": 3163, | |
| "Ġespecially": 3164, | |
| "Ġshop": 3165, | |
| "pper": 3166, | |
| "itz": 3167, | |
| "AP": 3168, | |
| "ĠSer": 3169, | |
| "ĠJim": 3170, | |
| "istic": 3171, | |
| "Ġfool": 3172, | |
| "Ġequal": 3173, | |
| "ext": 3174, | |
| "ears": 3175, | |
| "Ġquar": 3176, | |
| "ĠFrom": 3177, | |
| "ĠGreat": 3178, | |
| "Ġshows": 3179, | |
| "Ġmaterial": 3180, | |
| "irm": 3181, | |
| "ago": 3182, | |
| "Ġboard": 3183, | |
| "Ġconv": 3184, | |
| "Ġwriting": 3185, | |
| "Ġbroad": 3186, | |
| "ĠLu": 3187, | |
| "Ġemb": 3188, | |
| "Ġvalue": 3189, | |
| "Ġanimals": 3190, | |
| "bert": 3191, | |
| "Ġpeace": 3192, | |
| "ĠIT": 3193, | |
| "ö": 3194, | |
| "ĠInternational": 3195, | |
| "inc": 3196, | |
| "Ġanswered": 3197, | |
| "omen": 3198, | |
| "Ġmilitary": 3199, | |
| "itional": 3200, | |
| "CH": 3201, | |
| "Ġisland": 3202, | |
| "Ġsurv": 3203, | |
| "Ġmodern": 3204, | |
| "Ġice": 3205, | |
| "Ġwild": 3206, | |
| "Ġrid": 3207, | |
| "ĠCo": 3208, | |
| "Ġinvolved": 3209, | |
| "ship": 3210, | |
| "Ġdestroy": 3211, | |
| "urity": 3212, | |
| "Ġpaid": 3213, | |
| "inct": 3214, | |
| "gar": 3215, | |
| "ĠChurch": 3216, | |
| "orthern": 3217, | |
| "Ġspent": 3218, | |
| "ĠNot": 3219, | |
| "cuse": 3220, | |
| "Ġnet": 3221, | |
| "Ġdance": 3222, | |
| "ils": 3223, | |
| "Ġpack": 3224, | |
| "ĠChampions": 3225, | |
| ".,": 3226, | |
| "Ġwat": 3227, | |
| "Ġplays": 3228, | |
| "iling": 3229, | |
| "sych": 3230, | |
| "Ġalthough": 3231, | |
| "Ġaction": 3232, | |
| "Wow": 3233, | |
| "Ġremain": 3234, | |
| "ences": 3235, | |
| "ĠDist": 3236, | |
| "Ġbought": 3237, | |
| "Ġattempt": 3238, | |
| "ĠMa": 3239, | |
| "resh": 3240, | |
| "ĠGeneral": 3241, | |
| "Ġsoul": 3242, | |
| "ĠMe": 3243, | |
| "Ġjoined": 3244, | |
| "Ġdescrib": 3245, | |
| "Ġdepartment": 3246, | |
| "ners": 3247, | |
| "Ġproduced": 3248, | |
| "isc": 3249, | |
| "ĠGrand": 3250, | |
| "Bl": 3251, | |
| "Ġprofessional": 3252, | |
| "ki": 3253, | |
| "Ġtax": 3254, | |
| "Ġcivil": 3255, | |
| "ength": 3256, | |
| "iction": 3257, | |
| "omm": 3258, | |
| "ĠSte": 3259, | |
| "Ġimmedi": 3260, | |
| "Ġcand": 3261, | |
| "Ġegg": 3262, | |
| "Ġfort": 3263, | |
| "Ġasking": 3264, | |
| "ns": 3265, | |
| "ustom": 3266, | |
| "Ġenc": 3267, | |
| "ĠCup": 3268, | |
| "Ġseeing": 3269, | |
| "Ġconside": 3270, | |
| "Ġmix": 3271, | |
| "ortun": 3272, | |
| "Ġglass": 3273, | |
| "Ġfavor": 3274, | |
| "Ġconsidered": 3275, | |
| "Ġrefer": 3276, | |
| "ico": 3277, | |
| "Ġhung": 3278, | |
| "Ġdate": 3279, | |
| "Ġdrug": 3280, | |
| "Ġlargest": 3281, | |
| "Ġhate": 3282, | |
| "Ġofficial": 3283, | |
| "Ġbase": 3284, | |
| "ĠTV": 3285, | |
| "olutely": 3286, | |
| "Our": 3287, | |
| "ĠOh": 3288, | |
| "ero": 3289, | |
| "Ġsummer": 3290, | |
| "outhern": 3291, | |
| "ĠPal": 3292, | |
| "what": 3293, | |
| "eep": 3294, | |
| "iced": 3295, | |
| "Ġstanding": 3296, | |
| "lt": 3297, | |
| "udd": 3298, | |
| "Ġ&": 3299, | |
| "ĠHen": 3300, | |
| "face": 3301, | |
| "hod": 3302, | |
| "Ġgives": 3303, | |
| "Ġarms": 3304, | |
| "Ġdevelopment": 3305, | |
| "Ġpers": 3306, | |
| "rie": 3307, | |
| "Ġcoff": 3308, | |
| "ocks": 3309, | |
| "ĠEuropean": 3310, | |
| "cast": 3311, | |
| "Ġsomewhere": 3312, | |
| "Was": 3313, | |
| "Ġbroke": 3314, | |
| "Ġgrew": 3315, | |
| "Ġcompan": 3316, | |
| "Ġnature": 3317, | |
| "Ġban": 3318, | |
| "Ġloved": 3319, | |
| "ĠAnt": 3320, | |
| "Ġpurp": 3321, | |
| "Ġtend": 3322, | |
| "ffic": 3323, | |
| "ibility": 3324, | |
| "Excuse": 3325, | |
| "ĠBlack": 3326, | |
| "After": 3327, | |
| "Ġplant": 3328, | |
| "Ġsour": 3329, | |
| "llen": 3330, | |
| "Ġhous": 3331, | |
| "Ġpoints": 3332, | |
| "Ġenv": 3333, | |
| "ĠSim": 3334, | |
| "Ġsal": 3335, | |
| "Ġprim": 3336, | |
| "Ġcard": 3337, | |
| "Ġmaster": 3338, | |
| "Ġnumbers": 3339, | |
| "Ġtitle": 3340, | |
| "ĠBel": 3341, | |
| "ify": 3342, | |
| "ĠFrank": 3343, | |
| "Ġdata": 3344, | |
| "Ġpersonal": 3345, | |
| "reek": 3346, | |
| "ĠEn": 3347, | |
| "rif": 3348, | |
| "Ġsize": 3349, | |
| "ography": 3350, | |
| "Ġgas": 3351, | |
| "Ġareas": 3352, | |
| "Ġaud": 3353, | |
| "ĠMichael": 3354, | |
| "Ġpolitician": 3355, | |
| "UT": 3356, | |
| "ground": 3357, | |
| "elp": 3358, | |
| "itude": 3359, | |
| "hire": 3360, | |
| "ĠComp": 3361, | |
| "ett": 3362, | |
| "Ġstruct": 3363, | |
| "ĠPat": 3364, | |
| "Ġarmy": 3365, | |
| "ĠÂ": 3366, | |
| "Ġtired": 3367, | |
| "Ġdig": 3368, | |
| "ĠSch": 3369, | |
| "Ġclothes": 3370, | |
| "Cl": 3371, | |
| "ensus": 3372, | |
| "ises": 3373, | |
| "af": 3374, | |
| "ancy": 3375, | |
| "Ġadded": 3376, | |
| "Ġspirit": 3377, | |
| "ential": 3378, | |
| "Ġrob": 3379, | |
| "icle": 3380, | |
| "board": 3381, | |
| "Ġlo": 3382, | |
| "Ġfund": 3383, | |
| "Ġfunction": 3384, | |
| "Ġcommand": 3385, | |
| "Ġeducation": 3386, | |
| "Ġsight": 3387, | |
| "Ġheavy": 3388, | |
| "FF": 3389, | |
| "pen": 3390, | |
| "ique": 3391, | |
| "Ġincluded": 3392, | |
| "ators": 3393, | |
| "Ġimm": 3394, | |
| "Ġstars": 3395, | |
| "ĠAc": 3396, | |
| "ari": 3397, | |
| "Ġnearly": 3398, | |
| "Ġcomputer": 3399, | |
| "Ġindeed": 3400, | |
| "ament": 3401, | |
| "Ġbrain": 3402, | |
| "Ġthr": 3403, | |
| "Ġcollege": 3404, | |
| "Ġprivate": 3405, | |
| "Ġcompletely": 3406, | |
| "ĠCouncil": 3407, | |
| "terday": 3408, | |
| "ĠEarth": 3409, | |
| "Ġstupid": 3410, | |
| "Ġsimply": 3411, | |
| "wise": 3412, | |
| "ability": 3413, | |
| "Ġhun": 3414, | |
| "Ġaver": 3415, | |
| "asc": 3416, | |
| "Ġshare": 3417, | |
| "lymp": 3418, | |
| "Ġextra": 3419, | |
| "Ġboat": 3420, | |
| "Ġdoubt": 3421, | |
| "Ġtrees": 3422, | |
| "Ġresearch": 3423, | |
| "Qu": 3424, | |
| "Ġsearch": 3425, | |
| "Ġwest": 3426, | |
| "´": 3427, | |
| "Ġcontinued": 3428, | |
| "ĠJust": 3429, | |
| "Ġscient": 3430, | |
| "ĠParis": 3431, | |
| "rect": 3432, | |
| "how": 3433, | |
| "tered": 3434, | |
| "ĠMinister": 3435, | |
| "oring": 3436, | |
| "Ġdirected": 3437, | |
| "EL": 3438, | |
| "Ġsens": 3439, | |
| "Ġimpro": 3440, | |
| "Ġcaused": 3441, | |
| "action": 3442, | |
| "Ġdifference": 3443, | |
| "Ġcontract": 3444, | |
| "rica": 3445, | |
| "iber": 3446, | |
| "Ġevidence": 3447, | |
| "ĠSen": 3448, | |
| "Ġmommy": 3449, | |
| "Ġmodel": 3450, | |
| "ĠDep": 3451, | |
| "Ġprep": 3452, | |
| "Ġsuddenly": 3453, | |
| "Ġnames": 3454, | |
| "Ġexplain": 3455, | |
| "chen": 3456, | |
| "noon": 3457, | |
| "Ġtea": 3458, | |
| "ids": 3459, | |
| "ether": 3460, | |
| "Ġpray": 3461, | |
| "ĠMex": 3462, | |
| "Mom": 3463, | |
| "Ġthanks": 3464, | |
| "Ġshouldn": 3465, | |
| "ĠAustralia": 3466, | |
| "Ġrail": 3467, | |
| "Ġattention": 3468, | |
| "Ġelection": 3469, | |
| "ĠIts": 3470, | |
| "Ġtalked": 3471, | |
| "house": 3472, | |
| "Ġcomfort": 3473, | |
| "Ġavail": 3474, | |
| "Ġbroken": 3475, | |
| "olic": 3476, | |
| "Ġrain": 3477, | |
| "antic": 3478, | |
| "ĠOlymp": 3479, | |
| "Ġhistor": 3480, | |
| "Ġindepend": 3481, | |
| "Ġbur": 3482, | |
| "Ġbow": 3483, | |
| "uts": 3484, | |
| "ĠChristian": 3485, | |
| "Ġappoint": 3486, | |
| "ĠTur": 3487, | |
| "ĠAlex": 3488, | |
| "Ġaward": 3489, | |
| "ĠBer": 3490, | |
| "Ġwed": 3491, | |
| "Ġdaddy": 3492, | |
| "Ġtour": 3493, | |
| "Ġwatching": 3494, | |
| "ails": 3495, | |
| "ĠPort": 3496, | |
| "ological": 3497, | |
| "ena": 3498, | |
| "Sp": 3499, | |
| "Ġliter": 3500, | |
| "Ġtick": 3501, | |
| "Ġforest": 3502, | |
| "view": 3503, | |
| "hall": 3504, | |
| "Ġassoci": 3505, | |
| "Ġbattle": 3506, | |
| "Ġsounds": 3507, | |
| "ĠDad": 3508, | |
| "istics": 3509, | |
| "osing": 3510, | |
| "chie": 3511, | |
| "Ġwonderful": 3512, | |
| "astic": 3513, | |
| "ĠCour": 3514, | |
| "Ġgroups": 3515, | |
| "lie": 3516, | |
| "Ġnobody": 3517, | |
| "Ġpromise": 3518, | |
| "Ġeast": 3519, | |
| "Ġregular": 3520, | |
| "ively": 3521, | |
| "Ġwel": 3522, | |
| "Ġur": 3523, | |
| "Ġhelped": 3524, | |
| "ĠSir": 3525, | |
| "Ġdecl": 3526, | |
| "Ġcharge": 3527, | |
| "Ġfle": 3528, | |
| "Ġbud": 3529, | |
| "ĠReg": 3530, | |
| "Ġradio": 3531, | |
| "Ġpath": 3532, | |
| "ĠBo": 3533, | |
| "ruct": 3534, | |
| "ston": 3535, | |
| "ĠNor": 3536, | |
| "omas": 3537, | |
| "Ġmarry": 3538, | |
| "Ġarg": 3539, | |
| "Ġfoc": 3540, | |
| "ĠOld": 3541, | |
| "Ġarrest": 3542, | |
| "Ġthirty": 3543, | |
| "Ġestabl": 3544, | |
| "Ġmeaning": 3545, | |
| "Ġpercent": 3546, | |
| "ledge": 3547, | |
| "Ġwarm": 3548, | |
| "Ġinj": 3549, | |
| "ĠUnion": 3550, | |
| "Ġsand": 3551, | |
| "nie": 3552, | |
| "Ġshowed": 3553, | |
| "ĠMal": 3554, | |
| "ĠStreet": 3555, | |
| "ously": 3556, | |
| "Ġbottom": 3557, | |
| "kn": 3558, | |
| "Ġreach": 3559, | |
| "Ġinterested": 3560, | |
| "antly": 3561, | |
| "Ġversion": 3562, | |
| "ushed": 3563, | |
| "anc": 3564, | |
| "ĠPri": 3565, | |
| "Ġlength": 3566, | |
| "Ġspend": 3567, | |
| "useum": 3568, | |
| "inese": 3569, | |
| "By": 3570, | |
| "ĠMil": 3571, | |
| "Ġfifty": 3572, | |
| "Ġthreat": 3573, | |
| "Ġdefe": 3574, | |
| "ĠHall": 3575, | |
| "Ġblow": 3576, | |
| "irgin": 3577, | |
| "Ġarch": 3578, | |
| "Ġopportun": 3579, | |
| "ĠChina": 3580, | |
| "set": 3581, | |
| "Ġrich": 3582, | |
| "OS": 3583, | |
| "ĠMark": 3584, | |
| "azing": 3585, | |
| "ĠCollege": 3586, | |
| "ites": 3587, | |
| "Ġdoc": 3588, | |
| "Ġafternoon": 3589, | |
| "Ġrights": 3590, | |
| "Ġfit": 3591, | |
| "Ġlog": 3592, | |
| "ĠMany": 3593, | |
| "Ġnor": 3594, | |
| "ĠDistrict": 3595, | |
| "Ġfat": 3596, | |
| "Ġclosed": 3597, | |
| "illa": 3598, | |
| "Ġformed": 3599, | |
| "Ġannounced": 3600, | |
| "ashington": 3601, | |
| "Ġstreng": 3602, | |
| "Ġfinish": 3603, | |
| "ij": 3604, | |
| "icks": 3605, | |
| "Ġpounds": 3606, | |
| "bye": 3607, | |
| "Ġ...\"": 3608, | |
| "Ġredu": 3609, | |
| "Ġhappening": 3610, | |
| "hest": 3611, | |
| "ittee": 3612, | |
| "AND": 3613, | |
| "From": 3614, | |
| "burg": 3615, | |
| "Ġweap": 3616, | |
| "ords": 3617, | |
| "Ġbri": 3618, | |
| "Ġet": 3619, | |
| "ĠRichard": 3620, | |
| "Ġhigher": 3621, | |
| "Ġdise": 3622, | |
| "ests": 3623, | |
| "omp": 3624, | |
| "Ġweren": 3625, | |
| "ĠRobert": 3626, | |
| "Ġfounded": 3627, | |
| "Ġden": 3628, | |
| "iting": 3629, | |
| "Bye": 3630, | |
| "Ġbelow": 3631, | |
| "Ġspeed": 3632, | |
| "Ġchoice": 3633, | |
| "usion": 3634, | |
| "Ab": 3635, | |
| "lo": 3636, | |
| "ĠClub": 3637, | |
| "Ġmarriage": 3638, | |
| "Ġcalling": 3639, | |
| "Ġtraining": 3640, | |
| "cul": 3641, | |
| "ĠRec": 3642, | |
| "Ġinit": 3643, | |
| "Ġfellow": 3644, | |
| "raw": 3645, | |
| "ĠWell": 3646, | |
| "ERE": 3647, | |
| "Ġtemper": 3648, | |
| "Ġmethod": 3649, | |
| "Ġdeterm": 3650, | |
| "ironment": 3651, | |
| "Ġcarried": 3652, | |
| "Ġdirector": 3653, | |
| "Ġbright": 3654, | |
| "Ġnormal": 3655, | |
| "Ġnovel": 3656, | |
| "Pe": 3657, | |
| "Ġspoke": 3658, | |
| "anish": 3659, | |
| "Per": 3660, | |
| "ables": 3661, | |
| "Ġmunicip": 3662, | |
| "elve": 3663, | |
| "iar": 3664, | |
| "Ġmurder": 3665, | |
| "ria": 3666, | |
| "ĠJew": 3667, | |
| "ibly": 3668, | |
| "iel": 3669, | |
| "ĠPenn": 3670, | |
| "Ġactor": 3671, | |
| "Ġtast": 3672, | |
| "aker": 3673, | |
| "Ġstories": 3674, | |
| "IM": 3675, | |
| "ĠON": 3676, | |
| "-\"": 3677, | |
| "Ġscience": 3678, | |
| "Ġhall": 3679, | |
| "Ġdeveloped": 3680, | |
| "ĠHam": 3681, | |
| "oted": 3682, | |
| "ĠHistory": 3683, | |
| "Ġlower": 3684, | |
| "Ġstarting": 3685, | |
| "ses": 3686, | |
| "Ġregard": 3687, | |
| "hal": 3688, | |
| "ilities": 3689, | |
| "ville": 3690, | |
| "Ġbirthday": 3691, | |
| "Ġpsych": 3692, | |
| "ĠQueen": 3693, | |
| "play": 3694, | |
| "Ġwa": 3695, | |
| "rag": 3696, | |
| "Ġaccident": 3697, | |
| "ĠBE": 3698, | |
| "ript": 3699, | |
| "ĠCanada": 3700, | |
| "Ġmanage": 3701, | |
| "isf": 3702, | |
| "asion": 3703, | |
| "ification": 3704, | |
| "Ġworse": 3705, | |
| "Ġund": 3706, | |
| "fl": 3707, | |
| "Man": 3708, | |
| "Ġassist": 3709, | |
| "rage": 3710, | |
| "Ġended": 3711, | |
| "Ġlovely": 3712, | |
| "apers": 3713, | |
| "Ġsociety": 3714, | |
| "Ġchanges": 3715, | |
| "Ġbes": 3716, | |
| "Could": 3717, | |
| "arily": 3718, | |
| "Ġoffer": 3719, | |
| "Ġlif": 3720, | |
| "Ġcoffee": 3721, | |
| "Ġexec": 3722, | |
| "Ġ!\"": 3723, | |
| "atives": 3724, | |
| "Ġsite": 3725, | |
| "aves": 3726, | |
| "ĠGreen": 3727, | |
| "ĠRes": 3728, | |
| "ĠWashington": 3729, | |
| "Ġdram": 3730, | |
| "ĠWH": 3731, | |
| "Ġdemand": 3732, | |
| "za": 3733, | |
| "Ġavailable": 3734, | |
| "ĠChristmas": 3735, | |
| "amn": 3736, | |
| "Ġsnow": 3737, | |
| "Ġstates": 3738, | |
| "ĠFin": 3739, | |
| "Ġleader": 3740, | |
| "Ġpun": 3741, | |
| "Ġhuge": 3742, | |
| "Ġfeed": 3743, | |
| "ĠTe": 3744, | |
| "Ġcapt": 3745, | |
| "ĠRob": 3746, | |
| "LD": 3747, | |
| "Ġschools": 3748, | |
| "Ġdecision": 3749, | |
| "ĠArmy": 3750, | |
| "Got": 3751, | |
| "ĠWhite": 3752, | |
| "Ġputting": 3753, | |
| "WH": 3754, | |
| "Say": 3755, | |
| "ession": 3756, | |
| "Ġmachine": 3757, | |
| "Ġaverage": 3758, | |
| "Ġlines": 3759, | |
| "Ġ()": 3760, | |
| "Ġtext": 3761, | |
| "bon": 3762, | |
| "alley": 3763, | |
| "Ġearlier": 3764, | |
| "Ooh": 3765, | |
| "ida": 3766, | |
| "Ġmovement": 3767, | |
| "Ġmessage": 3768, | |
| "ĠAfrica": 3769, | |
| "Ġcustom": 3770, | |
| "Those": 3771, | |
| "Ġspread": 3772, | |
| "hold": 3773, | |
| "ĠCaptain": 3774, | |
| "Ġyesterday": 3775, | |
| "back": 3776, | |
| "ĠAND": 3777, | |
| "Pl": 3778, | |
| "Ġbusy": 3779, | |
| "Ġhol": 3780, | |
| "Ġmor": 3781, | |
| "aly": 3782, | |
| "Mar": 3783, | |
| "year": 3784, | |
| "str": 3785, | |
| "Ġrout": 3786, | |
| "Ar": 3787, | |
| "osition": 3788, | |
| "bl": 3789, | |
| "Ġbi": 3790, | |
| "sec": 3791, | |
| "Ġlearned": 3792, | |
| "ĠMont": 3793, | |
| "ĠPet": 3794, | |
| "berg": 3795, | |
| "sequ": 3796, | |
| "phone": 3797, | |
| "Ġepis": 3798, | |
| "Ġcases": 3799, | |
| "lor": 3800, | |
| "Ġoccur": 3801, | |
| "Ġagree": 3802, | |
| "ĠCharles": 3803, | |
| "Ġcondu": 3804, | |
| "Ġplus": 3805, | |
| "Ġestablished": 3806, | |
| "Ġmovies": 3807, | |
| "ĠLouis": 3808, | |
| "iest": 3809, | |
| "Ġmilk": 3810, | |
| "liam": 3811, | |
| "Ġsongs": 3812, | |
| "ĠAnne": 3813, | |
| "ees": 3814, | |
| "Ġride": 3815, | |
| "Ġcreate": 3816, | |
| "rank": 3817, | |
| "Ġnose": 3818, | |
| "Only": 3819, | |
| "ĠSat": 3820, | |
| "Ġgarden": 3821, | |
| "Ġhonest": 3822, | |
| "order": 3823, | |
| "Ġcele": 3824, | |
| "Ġsquare": 3825, | |
| "Ġpage": 3826, | |
| "Ġcareful": 3827, | |
| "Ġhero": 3828, | |
| "ĠDes": 3829, | |
| "Ġfaith": 3830, | |
| "Ġinternational": 3831, | |
| "Ġleaves": 3832, | |
| "Ġrelationship": 3833, | |
| "initely": 3834, | |
| "urb": 3835, | |
| "Ġprinci": 3836, | |
| "Ġsuit": 3837, | |
| "Ġyellow": 3838, | |
| "ĠST": 3839, | |
| "ann": 3840, | |
| "Rem": 3841, | |
| "aug": 3842, | |
| "Ġcompl": 3843, | |
| "ĠBill": 3844, | |
| "Ġrule": 3845, | |
| "Ġaccess": 3846, | |
| "Ġbath": 3847, | |
| "Ġcy": 3848, | |
| "Ġtherefore": 3849, | |
| "ylvan": 3850, | |
| "UN": 3851, | |
| "Ġstyle": 3852, | |
| "Ġgar": 3853, | |
| "ala": 3854, | |
| "olf": 3855, | |
| "Ġliked": 3856, | |
| "Ġterrible": 3857, | |
| "Ġ=": 3858, | |
| "Ġinvestig": 3859, | |
| "ĠCr": 3860, | |
| "Ġcorner": 3861, | |
| "oom": 3862, | |
| "Ġdan": 3863, | |
| "ĠAward": 3864, | |
| "liament": 3865, | |
| "Ġpred": 3866, | |
| "Ġlegs": 3867, | |
| "Ġbran": 3868, | |
| "Ġnone": 3869, | |
| "ummer": 3870, | |
| "Ġstone": 3871, | |
| "Ġought": 3872, | |
| "ĠArt": 3873, | |
| "Ġjoin": 3874, | |
| "ĠItalian": 3875, | |
| "Ġformula": 3876, | |
| "ĠChe": 3877, | |
| "Ġneck": 3878, | |
| "va": 3879, | |
| "Ġevents": 3880, | |
| "Ġcenter": 3881, | |
| "IGH": 3882, | |
| "Ġtro": 3883, | |
| "ĠChinese": 3884, | |
| "AD": 3885, | |
| "Ġproduction": 3886, | |
| "mar": 3887, | |
| "rat": 3888, | |
| "Sir": 3889, | |
| "Ġsinger": 3890, | |
| "ĠPeople": 3891, | |
| "ĠMag": 3892, | |
| "acing": 3893, | |
| "fast": 3894, | |
| "Ġkit": 3895, | |
| "ournal": 3896, | |
| "su": 3897, | |
| "Ġfault": 3898, | |
| "can": 3899, | |
| "ls": 3900, | |
| "oday": 3901, | |
| "Ġdistrib": 3902, | |
| "iation": 3903, | |
| "Ġcontact": 3904, | |
| "Ġanimal": 3905, | |
| "Ġdry": 3906, | |
| "ĠPrince": 3907, | |
| "Pro": 3908, | |
| "ĠKore": 3909, | |
| "ension": 3910, | |
| "iot": 3911, | |
| "Ġimmediately": 3912, | |
| "Ġsmell": 3913, | |
| "Ġideas": 3914, | |
| "ylvania": 3915, | |
| "Ġcoun": 3916, | |
| "Ġchem": 3917, | |
| "Ġnecessary": 3918, | |
| "Ġscared": 3919, | |
| "oves": 3920, | |
| "ĠJul": 3921, | |
| "Ġbound": 3922, | |
| "Ġcup": 3923, | |
| "ita": 3924, | |
| "Ġir": 3925, | |
| "iles": 3926, | |
| "Ġdistance": 3927, | |
| "Ġcrow": 3928, | |
| "Ġwit": 3929, | |
| "Ġeating": 3930, | |
| "roud": 3931, | |
| "Ġdrop": 3932, | |
| "pping": 3933, | |
| "ĠIsland": 3934, | |
| "ĠÃ": 3935, | |
| "Ġfol": 3936, | |
| "itar": 3937, | |
| "Ġflowers": 3938, | |
| "Ġacqu": 3939, | |
| "Hold": 3940, | |
| "Ġskin": 3941, | |
| "onel": 3942, | |
| "ights": 3943, | |
| "Ġlikely": 3944, | |
| "ĠME": 3945, | |
| "etic": 3946, | |
| "ication": 3947, | |
| "ĠRussian": 3948, | |
| "erc": 3949, | |
| "ederal": 3950, | |
| "aign": 3951, | |
| "ĠNe": 3952, | |
| "Ġtall": 3953, | |
| "Ġcred": 3954, | |
| "Ġraised": 3955, | |
| "rupt": 3956, | |
| "ĠMac": 3957, | |
| "ems": 3958, | |
| "Ġcow": 3959, | |
| "Ġbelieved": 3960, | |
| "ĠMost": 3961, | |
| "Ġdiscovered": 3962, | |
| "Ġbell": 3963, | |
| "Ġchief": 3964, | |
| "ini": 3965, | |
| "ĠMount": 3966, | |
| "Ġfarm": 3967, | |
| "asing": 3968, | |
| "yond": 3969, | |
| "Ġlying": 3970, | |
| "ossible": 3971, | |
| "ĠHenry": 3972, | |
| "ĠMat": 3973, | |
| "cean": 3974, | |
| "Ġtheory": 3975, | |
| "Ġconvers": 3976, | |
| "Ġpieces": 3977, | |
| "kes": 3978, | |
| "Ġut": 3979, | |
| "Ġolder": 3980, | |
| "ims": 3981, | |
| "Ġsigned": 3982, | |
| "Ġindividual": 3983, | |
| "sey": 3984, | |
| "Ġintell": 3985, | |
| "ols": 3986, | |
| "uzz": 3987, | |
| "ams": 3988, | |
| "sed": 3989, | |
| "ĠScott": 3990, | |
| "ĠFirst": 3991, | |
| "Ġmostly": 3992, | |
| "Ġwelcome": 3993, | |
| "ccording": 3994, | |
| "Ġbenef": 3995, | |
| "ĠSund": 3996, | |
| "Ġmm": 3997, | |
| "Ġsevent": 3998, | |
| "Ġrepe": 3999, | |
| "Ġsky": 4000, | |
| "Fuck": 4001, | |
| "itation": 4002, | |
| "icago": 4003, | |
| "Ġbeyond": 4004, | |
| "ĠSwed": 4005, | |
| "ĠFar": 4006, | |
| "Ġcoast": 4007, | |
| "otten": 4008, | |
| "Ġspecific": 4009, | |
| "imate": 4010, | |
| "Ġdepend": 4011, | |
| "Ġarrived": 4012, | |
| "Ġhey": 4013, | |
| "Ġfrog": 4014, | |
| "ux": 4015, | |
| "sylvania": 4016, | |
| "oses": 4017, | |
| "apt": 4018, | |
| "Ġkick": 4019, | |
| "Ġcamer": 4020, | |
| "ĠLaw": 4021, | |
| "Ġwalked": 4022, | |
| "Ġcontinue": 4023, | |
| "Ġservices": 4024, | |
| "ĠAct": 4025, | |
| "fess": 4026, | |
| "Am": 4027, | |
| "using": 4028, | |
| "Ġdisp": 4029, | |
| "Ġstorm": 4030, | |
| "Ġsuccessful": 4031, | |
| "Ġjump": 4032, | |
| "stairs": 4033, | |
| "Ġscene": 4034, | |
| "ELL": 4035, | |
| "istan": 4036, | |
| "Ġcovered": 4037, | |
| "Ġofficer": 4038, | |
| "Ġphil": 4039, | |
| "Keep": 4040, | |
| "erved": 4041, | |
| "asant": 4042, | |
| "Ġru": 4043, | |
| "Ġweak": 4044, | |
| "First": 4045, | |
| "ker": 4046, | |
| "Ġmountain": 4047, | |
| "Never": 4048, | |
| "ĠSal": 4049, | |
| "Ġcrime": 4050, | |
| "ĠCourt": 4051, | |
| "aries": 4052, | |
| "Ġcelebr": 4053, | |
| "Ġfighting": 4054, | |
| "razil": 4055, | |
| "Ġattract": 4056, | |
| "Ġelected": 4057, | |
| "Ġreplied": 4058, | |
| "Ġdouble": 4059, | |
| "Ġess": 4060, | |
| "Ġimagine": 4061, | |
| "Ġcab": 4062, | |
| "ipped": 4063, | |
| "Ġreve": 4064, | |
| "ĠBob": 4065, | |
| "ĠDemocr": 4066, | |
| "gu": 4067, | |
| "Ġspot": 4068, | |
| "ĠOther": 4069, | |
| "Ġtar": 4070, | |
| "Ġpractice": 4071, | |
| "Ġcollect": 4072, | |
| "Ġtruck": 4073, | |
| "Ġaged": 4074, | |
| "Ġreading": 4075, | |
| "vert": 4076, | |
| "ĠPennsylvania": 4077, | |
| "bles": 4078, | |
| "ĠChan": 4079, | |
| "ours": 4080, | |
| "Great": 4081, | |
| "Ġpurpose": 4082, | |
| "atory": 4083, | |
| "ĠTex": 4084, | |
| "Ġaddress": 4085, | |
| "known": 4086, | |
| "Ġmoon": 4087, | |
| "vey": 4088, | |
| "hy": 4089, | |
| "ware": 4090, | |
| "ĠCong": 4091, | |
| "hib": 4092, | |
| "Ġ.\"": 4093, | |
| "Ġprice": 4094, | |
| "Ġenvironment": 4095, | |
| "Ġreview": 4096, | |
| "ĠOK": 4097, | |
| "Ġholding": 4098, | |
| "Ġspeaking": 4099, | |
| "urt": 4100, | |
| "ket": 4101, | |
| "ĠGold": 4102, | |
| "yer": 4103, | |
| "utch": 4104, | |
| "Ġapart": 4105, | |
| "kin": 4106, | |
| "Ġble": 4107, | |
| "ĠPre": 4108, | |
| "Ġdescribed": 4109, | |
| "Ġgoal": 4110, | |
| "Ġtells": 4111, | |
| "Ġparticip": 4112, | |
| "ĠWin": 4113, | |
| "Ġspl": 4114, | |
| "Ġpan": 4115, | |
| "ĠBrown": 4116, | |
| "ĠIS": 4117, | |
| "ĠSpanish": 4118, | |
| "Ġpictures": 4119, | |
| "Ġprint": 4120, | |
| "gen": 4121, | |
| "Ġwalking": 4122, | |
| "Ġemer": 4123, | |
| "lam": 4124, | |
| "Che": 4125, | |
| "ores": 4126, | |
| "Ġenemy": 4127, | |
| "ĠKingdom": 4128, | |
| "ĠKen": 4129, | |
| "Ġwedding": 4130, | |
| "iant": 4131, | |
| "Ġdirection": 4132, | |
| "Sc": 4133, | |
| "Gu": 4134, | |
| "Ġstrength": 4135, | |
| "ĠSar": 4136, | |
| "Everything": 4137, | |
| "Ġslight": 4138, | |
| "Ġcensus": 4139, | |
| "uments": 4140, | |
| "Ġfourth": 4141, | |
| "Ġsatisf": 4142, | |
| "Ġrelease": 4143, | |
| "Ġknowledge": 4144, | |
| "Ġshown": 4145, | |
| "Ġfresh": 4146, | |
| "Ġpositive": 4147, | |
| "Ġfemale": 4148, | |
| "Ġsettle": 4149, | |
| "tt": 4150, | |
| "Ġtwice": 4151, | |
| "Ġissue": 4152, | |
| "ĠOf": 4153, | |
| "Ġswim": 4154, | |
| "Ġrules": 4155, | |
| "Ġangry": 4156, | |
| "Ġboss": 4157, | |
| "ateg": 4158, | |
| "ĠBrazil": 4159, | |
| "Ġaccording": 4160, | |
| "lear": 4161, | |
| "Ġhasn": 4162, | |
| "Ġrange": 4163, | |
| "Ġtail": 4164, | |
| "Ġmic": 4165, | |
| "Ġadminist": 4166, | |
| "Ġforces": 4167, | |
| "ĠDel": 4168, | |
| "Ġoil": 4169, | |
| "Ġpig": 4170, | |
| "ĠVirgin": 4171, | |
| "Ġsurface": 4172, | |
| "Lea": 4173, | |
| "isted": 4174, | |
| "Ġsoldiers": 4175, | |
| "itiz": 4176, | |
| "Ġdesp": 4177, | |
| "orks": 4178, | |
| "ients": 4179, | |
| "ulf": 4180, | |
| "Ġsle": 4181, | |
| "edy": 4182, | |
| "ĠJose": 4183, | |
| "Ġge": 4184, | |
| "Ġtrade": 4185, | |
| "Ġdangerous": 4186, | |
| "NA": 4187, | |
| "ora": 4188, | |
| "Ġeasily": 4189, | |
| "west": 4190, | |
| "YOU": 4191, | |
| "ĠJesus": 4192, | |
| "Ġreb": 4193, | |
| "People": 4194, | |
| "Ġachie": 4195, | |
| "Ġrate": 4196, | |
| "ĠFred": 4197, | |
| "Ġsele": 4198, | |
| "ĠCath": 4199, | |
| "ĠRoyal": 4200, | |
| "aching": 4201, | |
| "Ġletters": 4202, | |
| "ĠBet": 4203, | |
| "ĠEr": 4204, | |
| "gl": 4205, | |
| "Ġsac": 4206, | |
| "ca": 4207, | |
| "rely": 4208, | |
| "Ġlots": 4209, | |
| "ĠDay": 4210, | |
| "anda": 4211, | |
| "arling": 4212, | |
| "rial": 4213, | |
| "road": 4214, | |
| "Ġfrequ": 4215, | |
| "RO": 4216, | |
| "Ġmemory": 4217, | |
| "Ġchick": 4218, | |
| "under": 4219, | |
| "Ġloss": 4220, | |
| "Ġrose": 4221, | |
| "ĠSov": 4222, | |
| "Ġhide": 4223, | |
| "Ġproperty": 4224, | |
| "Ġlink": 4225, | |
| "atin": 4226, | |
| "Ġrub": 4227, | |
| "Ġspe": 4228, | |
| "HE": 4229, | |
| "Isn": 4230, | |
| "Ġyouth": 4231, | |
| "Ġancient": 4232, | |
| "ĠAcad": 4233, | |
| "ĠWil": 4234, | |
| "ĠTown": 4235, | |
| "ĠThomas": 4236, | |
| "Ġcru": 4237, | |
| "Ġnotice": 4238, | |
| "Ġcalls": 4239, | |
| "Ġwhis": 4240, | |
| "Ġpressure": 4241, | |
| "ĠChicago": 4242, | |
| "ĠSoviet": 4243, | |
| "Ġdebut": 4244, | |
| "Ġmir": 4245, | |
| "Ġplaced": 4246, | |
| "Ġempt": 4247, | |
| "Ġentered": 4248, | |
| "Ġnewsp": 4249, | |
| "Ġrecorded": 4250, | |
| "ictor": 4251, | |
| "Ġtwelve": 4252, | |
| "min": 4253, | |
| "IR": 4254, | |
| "Ġhors": 4255, | |
| "ashion": 4256, | |
| "ĠMo": 4257, | |
| "Ġstudent": 4258, | |
| "isters": 4259, | |
| "Ġmissing": 4260, | |
| "cis": 4261, | |
| "cket": 4262, | |
| "Ġpet": 4263, | |
| "izing": 4264, | |
| "Ġproud": 4265, | |
| "Ġdollars": 4266, | |
| "Ġload": 4267, | |
| "ste": 4268, | |
| "uf": 4269, | |
| "Ġextreme": 4270, | |
| "ĠItaly": 4271, | |
| "Her": 4272, | |
| "bing": 4273, | |
| "BC": 4274, | |
| "father": 4275, | |
| "ĠLittle": 4276, | |
| "Ġdropped": 4277, | |
| "KE": 4278, | |
| "Ġchoose": 4279, | |
| "Dr": 4280, | |
| "ä": 4281, | |
| "ĠDiv": 4282, | |
| "Ġsignific": 4283, | |
| "Ġspring": 4284, | |
| "Ġopin": 4285, | |
| "Ġbridge": 4286, | |
| "Ġcondition": 4287, | |
| "Ġthinks": 4288, | |
| "Ġcars": 4289, | |
| "Ġhonor": 4290, | |
| "iring": 4291, | |
| "Ġteams": 4292, | |
| "Ġder": 4293, | |
| "Ġcoach": 4294, | |
| "Ġanywhere": 4295, | |
| "oop": 4296, | |
| "Ġflat": 4297, | |
| "Ġdegree": 4298, | |
| "ulations": 4299, | |
| "isions": 4300, | |
| "Ġmistake": 4301, | |
| "Ġintern": 4302, | |
| "Something": 4303, | |
| "Ġkitchen": 4304, | |
| "Ġplayers": 4305, | |
| "uke": 4306, | |
| "icate": 4307, | |
| "ĠTHAT": 4308, | |
| "Ġcampaign": 4309, | |
| "Ġweight": 4310, | |
| "ĠDO": 4311, | |
| "Ġthroughout": 4312, | |
| "Ġcaptain": 4313, | |
| "ĠOl": 4314, | |
| "Nice": 4315, | |
| "Ġforgot": 4316, | |
| "Ġqual": 4317, | |
| "UR": 4318, | |
| "Ġbrown": 4319, | |
| "ĠCarol": 4320, | |
| "Ġdisease": 4321, | |
| "rs": 4322, | |
| "Ġleading": 4323, | |
| "Ġsecurity": 4324, | |
| "idden": 4325, | |
| "ĠSing": 4326, | |
| "Ġabsolutely": 4327, | |
| "mit": 4328, | |
| "Ġpainting": 4329, | |
| "ĠTexas": 4330, | |
| "Ġlunch": 4331, | |
| "eless": 4332, | |
| "ĠSmith": 4333, | |
| "ek": 4334, | |
| "Ġopportunity": 4335, | |
| "ĠRepublic": 4336, | |
| "rated": 4337, | |
| "iana": 4338, | |
| "Ġtaught": 4339, | |
| "Ġhouses": 4340, | |
| "ĠAssoci": 4341, | |
| "ĠApp": 4342, | |
| "ĠJoe": 4343, | |
| "Ġbirds": 4344, | |
| "orough": 4345, | |
| "Remember": 4346, | |
| "ĠSaint": 4347, | |
| "Ġunless": 4348, | |
| "oms": 4349, | |
| "zen": 4350, | |
| "enth": 4351, | |
| "Ġpolicy": 4352, | |
| "Ġbigger": 4353, | |
| "upp": 4354, | |
| "Ġincludes": 4355, | |
| "Ġsurround": 4356, | |
| "ette": 4357, | |
| "do": 4358, | |
| "adian": 4359, | |
| "ĠSant": 4360, | |
| "abor": 4361, | |
| "ENT": 4362, | |
| "Ġsurprise": 4363, | |
| "Ġfamilies": 4364, | |
| "vell": 4365, | |
| "Ġconstit": 4366, | |
| "Ġbab": 4367, | |
| "Ġguard": 4368, | |
| "ona": 4369, | |
| "semb": 4370, | |
| "Three": 4371, | |
| "Ġwriter": 4372, | |
| "gypt": 4373, | |
| "Ġsett": 4374, | |
| "Ġgradu": 4375, | |
| "ĠSl": 4376, | |
| "Ġsystems": 4377, | |
| "igned": 4378, | |
| "Ġcorrect": 4379, | |
| "Ġcentral": 4380, | |
| "Ġdamn": 4381, | |
| "itect": 4382, | |
| "ALL": 4383, | |
| "Ġcontrib": 4384, | |
| ")\"": 4385, | |
| ">>": 4386, | |
| "Ġrom": 4387, | |
| "Ġforty": 4388, | |
| "iety": 4389, | |
| "den": 4390, | |
| "Ġremained": 4391, | |
| "Ġmum": 4392, | |
| "Ġmagaz": 4393, | |
| "Ġeventually": 4394, | |
| "ĠWhile": 4395, | |
| "utions": 4396, | |
| "Ġstudied": 4397, | |
| "Ġmagn": 4398, | |
| "Ġoccup": 4399, | |
| "Ġnote": 4400, | |
| "ĠBay": 4401, | |
| "Ġblock": 4402, | |
| "rad": 4403, | |
| "Ġstaff": 4404, | |
| "Ġimpossible": 4405, | |
| "Ġslowly": 4406, | |
| "aled": 4407, | |
| "Ġgrowing": 4408, | |
| "Ġcities": 4409, | |
| "Ġvan": 4410, | |
| "Ġrisk": 4411, | |
| "stitute": 4412, | |
| "Ġbecomes": 4413, | |
| "VER": 4414, | |
| "Ġshoes": 4415, | |
| "Ġenter": 4416, | |
| "ipe": 4417, | |
| "Ġescape": 4418, | |
| "ĠBur": 4419, | |
| "ĠLee": 4420, | |
| "LA": 4421, | |
| "alled": 4422, | |
| "Ġprince": 4423, | |
| "sing": 4424, | |
| "Ġbeg": 4425, | |
| "Ġobviously": 4426, | |
| "Ġsmaller": 4427, | |
| "Should": 4428, | |
| "Ġpush": 4429, | |
| "Ġlaid": 4430, | |
| "iverse": 4431, | |
| "Ġmedical": 4432, | |
| "Ġworried": 4433, | |
| "ĠMet": 4434, | |
| "Car": 4435, | |
| "Ġexcl": 4436, | |
| "ĠScot": 4437, | |
| "Ġthou": 4438, | |
| "Ġdriving": 4439, | |
| "ĠMartin": 4440, | |
| "Ġforced": 4441, | |
| "Ġmurd": 4442, | |
| "Ġuses": 4443, | |
| "Ġtrip": 4444, | |
| "icious": 4445, | |
| "Ġresults": 4446, | |
| "Ġmentioned": 4447, | |
| "Ġthus": 4448, | |
| "ĠTwo": 4449, | |
| "Ġhighest": 4450, | |
| "Ġexpected": 4451, | |
| "roat": 4452, | |
| "eff": 4453, | |
| "Ġshout": 4454, | |
| "Ġteach": 4455, | |
| "Ġparticularly": 4456, | |
| "Ġappre": 4457, | |
| "Ġsmile": 4458, | |
| "Ġruns": 4459, | |
| "ato": 4460, | |
| "Ġprovide": 4461, | |
| "ĠJer": 4462, | |
| "Ġagreed": 4463, | |
| "Ġopening": 4464, | |
| "Ġbreath": 4465, | |
| "Ġnation": 4466, | |
| "ĠSince": 4467, | |
| "Ġcancer": 4468, | |
| "Ġmanager": 4469, | |
| "Ġcommune": 4470, | |
| "estival": 4471, | |
| "Ġgrass": 4472, | |
| "Ġpicked": 4473, | |
| "Ġscreen": 4474, | |
| "ange": 4475, | |
| "Ġtypes": 4476, | |
| "Ġstudio": 4477, | |
| "ĠYour": 4478, | |
| "Ġheaven": 4479, | |
| "Ġchallen": 4480, | |
| "OD": 4481, | |
| "Ġtoward": 4482, | |
| "Ġbrothers": 4483, | |
| "ĠPrin": 4484, | |
| "ĠCont": 4485, | |
| "Ġforth": 4486, | |
| "Ġmultip": 4487, | |
| "Ġma": 4488, | |
| "ĠCentral": 4489, | |
| "_,": 4490, | |
| "ĠIr": 4491, | |
| "Ġpleasure": 4492, | |
| "imin": 4493, | |
| "Ġkinds": 4494, | |
| "Ġinterview": 4495, | |
| "ube": 4496, | |
| "mm": 4497, | |
| "ruit": 4498, | |
| "cause": 4499, | |
| "ĠRock": 4500, | |
| "rain": 4501, | |
| "Ġamazing": 4502, | |
| "ĠSun": 4503, | |
| "Ġlucky": 4504, | |
| "esty": 4505, | |
| "just": 4506, | |
| "ĠEgypt": 4507, | |
| "Ġsaved": 4508, | |
| "Ġinvent": 4509, | |
| "Ġ\"*": 4510, | |
| "Ġcro": 4511, | |
| "gged": 4512, | |
| "EC": 4513, | |
| "ĠFil": 4514, | |
| "Ġplans": 4515, | |
| "Ġshad": 4516, | |
| "iqu": 4517, | |
| "Ġfirm": 4518, | |
| "ĠAfrican": 4519, | |
| "win": 4520, | |
| "otion": 4521, | |
| "Ġbread": 4522, | |
| "Ġartist": 4523, | |
| ",'": 4524, | |
| "Ġconcept": 4525, | |
| "Ġelectric": 4526, | |
| "Act": 4527, | |
| "Ġactress": 4528, | |
| "Ġvote": 4529, | |
| "Ġsusp": 4530, | |
| "Ġhill": 4531, | |
| "icles": 4532, | |
| "ashed": 4533, | |
| "gent": 4534, | |
| "Ġplanet": 4535, | |
| "Ġwearing": 4536, | |
| "Ġuniversity": 4537, | |
| "Ġheat": 4538, | |
| "Ġremark": 4539, | |
| "Ġgenerally": 4540, | |
| "Ġbreakfast": 4541, | |
| "Ġaddition": 4542, | |
| "Ġcurrently": 4543, | |
| "edom": 4544, | |
| "aches": 4545, | |
| "Ġlarger": 4546, | |
| "odes": 4547, | |
| "oken": 4548, | |
| "Ġperformance": 4549, | |
| "Ġhungry": 4550, | |
| "rael": 4551, | |
| "bered": 4552, | |
| "Ġmission": 4553, | |
| "Ġwinter": 4554, | |
| "kins": 4555, | |
| "Ġhole": 4556, | |
| "Ġleaders": 4557, | |
| "ota": 4558, | |
| "Ġmedic": 4559, | |
| "Ġcompetition": 4560, | |
| "ulous": 4561, | |
| "Ġuncle": 4562, | |
| "Ġpoet": 4563, | |
| "Ġcode": 4564, | |
| "tained": 4565, | |
| "Ġrough": 4566, | |
| "Ġprevent": 4567, | |
| "mark": 4568, | |
| "Ġblind": 4569, | |
| "Ġplane": 4570, | |
| "Ġstrugg": 4571, | |
| "Shut": 4572, | |
| "Ġweird": 4573, | |
| "look": 4574, | |
| "Ġindustry": 4575, | |
| "host": 4576, | |
| "ĠFather": 4577, | |
| "--------": 4578, | |
| "Ġshape": 4579, | |
| "asy": 4580, | |
| "Ġbrief": 4581, | |
| "istry": 4582, | |
| "Ġprovince": 4583, | |
| "Ġhadn": 4584, | |
| "ĠLet": 4585, | |
| "Ġdesigned": 4586, | |
| "yr": 4587, | |
| "Ġreported": 4588, | |
| "Ġfinger": 4589, | |
| "ĠTheir": 4590, | |
| "Ġminus": 4591, | |
| "Ġapplic": 4592, | |
| "gn": 4593, | |
| "ĠAtl": 4594, | |
| "ION": 4595, | |
| "Ġstructure": 4596, | |
| "Ġcitiz": 4597, | |
| "Ġweather": 4598, | |
| "Ġrelated": 4599, | |
| "Fine": 4600, | |
| "Ġfright": 4601, | |
| "osh": 4602, | |
| "Ġhurry": 4603, | |
| "Ġwound": 4604, | |
| "Ġgreatest": 4605, | |
| "Ġcompanies": 4606, | |
| "Cos": 4607, | |
| "rate": 4608, | |
| "isl": 4609, | |
| "Ġstarts": 4610, | |
| "Ġconditions": 4611, | |
| "roup": 4612, | |
| "Ġhorses": 4613, | |
| "vi": 4614, | |
| "Ġsides": 4615, | |
| "ĠBell": 4616, | |
| "mond": 4617, | |
| "arrow": 4618, | |
| "Ġ..": 4619, | |
| "Ġstuck": 4620, | |
| "Ġphilos": 4621, | |
| "Ġtransl": 4622, | |
| "Ġlikes": 4623, | |
| "icated": 4624, | |
| "Ġgreater": 4625, | |
| "Ġfeatures": 4626, | |
| "Ġsmart": 4627, | |
| "Whoa": 4628, | |
| "Ġforeign": 4629, | |
| "ĠRoad": 4630, | |
| "Ġlearning": 4631, | |
| "ĠSuper": 4632, | |
| "Ġthick": 4633, | |
| "aked": 4634, | |
| "ĠGreek": 4635, | |
| "Ġforms": 4636, | |
| "ĠAcademy": 4637, | |
| "Ġfinan": 4638, | |
| "Ġiron": 4639, | |
| "ĠHere": 4640, | |
| "Ġbal": 4641, | |
| "Ġhotel": 4642, | |
| "Ġcrowd": 4643, | |
| "Ġfilled": 4644, | |
| "Ġspeech": 4645, | |
| "umber": 4646, | |
| "ĠVictor": 4647, | |
| "Ġtape": 4648, | |
| "ban": 4649, | |
| "Ġdefinitely": 4650, | |
| "Ġpowerful": 4651, | |
| "En": 4652, | |
| "Ġsilver": 4653, | |
| "ĠBoy": 4654, | |
| "Ġperformed": 4655, | |
| "Ġsch": 4656, | |
| "astern": 4657, | |
| "ĠFore": 4658, | |
| "Ġchap": 4659, | |
| "Ġaware": 4660, | |
| "Ġculture": 4661, | |
| "ĠKar": 4662, | |
| "Ġpair": 4663, | |
| "ĠEmp": 4664, | |
| "Ġcentre": 4665, | |
| "ighs": 4666, | |
| "Ġrap": 4667, | |
| "Ġplants": 4668, | |
| "ĠProv": 4669, | |
| "Ġevil": 4670, | |
| "hand": 4671, | |
| "cend": 4672, | |
| "Ġsen": 4673, | |
| "Ġvac": 4674, | |
| "Ġcrew": 4675, | |
| "ST": 4676, | |
| "Ġduty": 4677, | |
| "Ġnegative": 4678, | |
| "Ġinstr": 4679, | |
| "Ġya": 4680, | |
| "Ġpatient": 4681, | |
| "Ġsection": 4682, | |
| "ĠWood": 4683, | |
| "Ġretired": 4684, | |
| "Ġdescri": 4685, | |
| "ĠNat": 4686, | |
| "ucky": 4687, | |
| "Ġorders": 4688, | |
| "ĠFrancis": 4689, | |
| "Ġissues": 4690, | |
| "Ġjudge": 4691, | |
| "Ġsource": 4692, | |
| "Ġquarter": 4693, | |
| "Ġharm": 4694, | |
| "ĠWestern": 4695, | |
| "ĠHill": 4696, | |
| "ishes": 4697, | |
| "Ġcomplex": 4698, | |
| "Ġbeauty": 4699, | |
| "\".\"": 4700, | |
| "ĠFox": 4701, | |
| "rick": 4702, | |
| "Ġlack": 4703, | |
| "Ġcalm": 4704, | |
| "ips": 4705, | |
| "ĠMexico": 4706, | |
| "Ġsinging": 4707, | |
| "Ġoffered": 4708, | |
| "ĠTor": 4709, | |
| "Ġempty": 4710, | |
| "ĠJud": 4711, | |
| "Make": 4712, | |
| "fessor": 4713, | |
| "Ġcrack": 4714, | |
| "ĠCongress": 4715, | |
| "hered": 4716, | |
| "Ġheads": 4717, | |
| "ĠSea": 4718, | |
| "Ġhandle": 4719, | |
| "Ġneither": 4720, | |
| "law": 4721, | |
| "Ġjour": 4722, | |
| "Ġ>>": 4723, | |
| "utive": 4724, | |
| "Ġturns": 4725, | |
| "Ġourselves": 4726, | |
| "Ġmut": 4727, | |
| "Ġappl": 4728, | |
| "put": 4729, | |
| "Ġrank": 4730, | |
| "Ġreasons": 4731, | |
| "ĠAccording": 4732, | |
| "Ġbasket": 4733, | |
| "ĠAustralian": 4734, | |
| "Ġwitness": 4735, | |
| "Ġbless": 4736, | |
| "Ġteeth": 4737, | |
| "Ġedge": 4738, | |
| "Want": 4739, | |
| "Ġserve": 4740, | |
| "yan": 4741, | |
| "uten": 4742, | |
| "zz": 4743, | |
| "Ġjoy": 4744, | |
| "ĠChampionship": 4745, | |
| "Ġhardly": 4746, | |
| "ĠWI": 4747, | |
| "Ġoriginally": 4748, | |
| "Ġrealize": 4749, | |
| "Se": 4750, | |
| "Ġbloody": 4751, | |
| "Ġincrease": 4752, | |
| "Ġstandard": 4753, | |
| "cks": 4754, | |
| "Ġsteal": 4755, | |
| "Ġcontain": 4756, | |
| "Ġbecoming": 4757, | |
| "ĠDa": 4758, | |
| "osite": 4759, | |
| "Ġspell": 4760, | |
| "ĠSunday": 4761, | |
| "Ġordered": 4762, | |
| "Ġmeasure": 4763, | |
| "ĠFlor": 4764, | |
| "ola": 4765, | |
| "Ġopt": 4766, | |
| "imately": 4767, | |
| "Ġign": 4768, | |
| "ĠStud": 4769, | |
| "Ġsymb": 4770, | |
| "Ġcharacters": 4771, | |
| "ĠSecret": 4772, | |
| "Ġsuspect": 4773, | |
| "ening": 4774, | |
| "Ġstran": 4775, | |
| "stood": 4776, | |
| "Ġgrown": 4777, | |
| "Ġdivided": 4778, | |
| "IGHT": 4779, | |
| "ĠRev": 4780, | |
| "Ġmale": 4781, | |
| "Ġbiggest": 4782, | |
| "Ġladies": 4783, | |
| "Ġsake": 4784, | |
| "ĠDis": 4785, | |
| "ĠMel": 4786, | |
| "Ġmissed": 4787, | |
| "Ġtyp": 4788, | |
| "Ġseparate": 4789, | |
| "ĠMother": 4790, | |
| "Amer": 4791, | |
| "Ġcere": 4792, | |
| "OME": 4793, | |
| "Ġresponsible": 4794, | |
| "Ha": 4795, | |
| "Br": 4796, | |
| "ĠCanadian": 4797, | |
| "ockey": 4798, | |
| "Ġbasically": 4799, | |
| "Ġtight": 4800, | |
| "arm": 4801, | |
| "Ġkm": 4802, | |
| "Ġtarget": 4803, | |
| "agn": 4804, | |
| "odies": 4805, | |
| "Ġtransfer": 4806, | |
| "clock": 4807, | |
| "ĠSpain": 4808, | |
| "Ġchampions": 4809, | |
| "ĠSand": 4810, | |
| "aps": 4811, | |
| "ros": 4812, | |
| "Ġmechan": 4813, | |
| "ĠRussia": 4814, | |
| "Ġcuri": 4815, | |
| "Ġcommer": 4816, | |
| "Ġmedia": 4817, | |
| "urday": 4818, | |
| "ĠRome": 4819, | |
| "Ġjournal": 4820, | |
| "iano": 4821, | |
| "Ġdelight": 4822, | |
| "Ġbitch": 4823, | |
| "ĠLos": 4824, | |
| "Ġdecide": 4825, | |
| "ĠConf": 4826, | |
| "ĠGovernment": 4827, | |
| "rance": 4828, | |
| "Ġreplaced": 4829, | |
| "peror": 4830, | |
| "Ġdirectly": 4831, | |
| ";\"": 4832, | |
| "è": 4833, | |
| "Ġdogs": 4834, | |
| "ĠMaster": 4835, | |
| "Ġkilling": 4836, | |
| "ĠAssociation": 4837, | |
| "oned": 4838, | |
| "Ġdare": 4839, | |
| "ĠMill": 4840, | |
| "ĠDen": 4841, | |
| "craft": 4842, | |
| "see": 4843, | |
| "Ġactive": 4844, | |
| "Ġeggs": 4845, | |
| "Ġremind": 4846, | |
| "fortun": 4847, | |
| "Ġprevious": 4848, | |
| "ĠGO": 4849, | |
| "ĠSa": 4850, | |
| "Ġphysical": 4851, | |
| "Ġstatistics": 4852, | |
| "Ġcritic": 4853, | |
| "itan": 4854, | |
| "ĠIre": 4855, | |
| "Ġadult": 4856, | |
| "Ġacting": 4857, | |
| "Ġturning": 4858, | |
| "ĠDick": 4859, | |
| "Ġvot": 4860, | |
| "da": 4861, | |
| "anced": 4862, | |
| "Ġnetwork": 4863, | |
| "ĠTra": 4864, | |
| "Ġamb": 4865, | |
| "Ġgentlemen": 4866, | |
| "Ġpromised": 4867, | |
| "Ġlegal": 4868, | |
| "Ġtotally": 4869, | |
| "Ġterrit": 4870, | |
| "Ġinfluence": 4871, | |
| "ĠCast": 4872, | |
| "Ġwilling": 4873, | |
| "Ġclearly": 4874, | |
| "Ġforever": 4875, | |
| "Tom": 4876, | |
| "Ġconnect": 4877, | |
| "Leave": 4878, | |
| "Ġgay": 4879, | |
| "Ġinstit": 4880, | |
| "ĠCatholic": 4881, | |
| "Ġreligious": 4882, | |
| "Ġju": 4883, | |
| "Ġdocument": 4884, | |
| "Ġox": 4885, | |
| "Ġcontent": 4886, | |
| "Ġnorthern": 4887, | |
| "vere": 4888, | |
| "Ġfailed": 4889, | |
| "Ġarchitect": 4890, | |
| "Ġorganization": 4891, | |
| "Ġwaste": 4892, | |
| "Ġwine": 4893, | |
| "Ġprove": 4894, | |
| "Ġcouncil": 4895, | |
| "ĠWal": 4896, | |
| "ĠMer": 4897, | |
| "Ġlies": 4898, | |
| "ĠLady": 4899, | |
| "Ġunit": 4900, | |
| "ĠBig": 4901, | |
| "Ġappreci": 4902, | |
| "Ġmunicipality": 4903, | |
| "Ġsaf": 4904, | |
| "ga": 4905, | |
| "eck": 4906, | |
| "Ġdom": 4907, | |
| "Ġcopy": 4908, | |
| "Ġseconds": 4909, | |
| "Ġsuc": 4910, | |
| "ĠIsrael": 4911, | |
| "ĠEvery": 4912, | |
| "umn": 4913, | |
| "eds": 4914, | |
| "Ġflight": 4915, | |
| "Didn": 4916, | |
| "CK": 4917, | |
| "aret": 4918, | |
| "ooth": 4919, | |
| "Ġnoise": 4920, | |
| "Ġresour": 4921, | |
| "ishop": 4922, | |
| "Ġlaug": 4923, | |
| "ĠAnge": 4924, | |
| "Ġmeat": 4925, | |
| "urry": 4926, | |
| "About": 4927, | |
| "Ġtransport": 4928, | |
| "Ġmotor": 4929, | |
| "Ġscream": 4930, | |
| "Ġscar": 4931, | |
| "Ġlawyer": 4932, | |
| "ĠRay": 4933, | |
| "Ġsurprised": 4934, | |
| "Think": 4935, | |
| "Ġlibr": 4936, | |
| "Ġintroduced": 4937, | |
| "Ġears": 4938, | |
| "Ġconcerned": 4939, | |
| "Ġappointed": 4940, | |
| "Ġsilly": 4941, | |
| "Ġtaste": 4942, | |
| "ĠBa": 4943, | |
| "Help": 4944, | |
| "Ġimage": 4945, | |
| "Ġwake": 4946, | |
| "Ġroof": 4947, | |
| "Try": 4948, | |
| "ĠLake": 4949, | |
| "Ġflying": 4950, | |
| "hia": 4951, | |
| "Ġcamera": 4952, | |
| "Ġpulled": 4953, | |
| "Ġproduce": 4954, | |
| "Ġzero": 4955, | |
| "ĠTim": 4956, | |
| "Watch": 4957, | |
| "ado": 4958, | |
| "rees": 4959, | |
| "Ġsucceed": 4960, | |
| "Ġeld": 4961, | |
| "Ġremem": 4962, | |
| "ĠAre": 4963, | |
| "ĠSil": 4964, | |
| "Ġkeeping": 4965, | |
| "Ġninet": 4966, | |
| "Ġopinion": 4967, | |
| "isher": 4968, | |
| "Ġcandid": 4969, | |
| "ĠGre": 4970, | |
| "Ġdivision": 4971, | |
| "Ġbother": 4972, | |
| "ĠGood": 4973, | |
| "ĠMaj": 4974, | |
| "ĠVirginia": 4975, | |
| "Ġonto": 4976, | |
| "Ġbuildings": 4977, | |
| "Ġprepared": 4978, | |
| "Ġtechnology": 4979, | |
| "Ġlaughed": 4980, | |
| "ĠBu": 4981, | |
| "Ġpattern": 4982, | |
| "Ġindependent": 4983, | |
| "iger": 4984, | |
| "Ġlock": 4985, | |
| "pir": 4986, | |
| "Ġdestroyed": 4987, | |
| "vis": 4988, | |
| "ault": 4989, | |
| "Ġloud": 4990, | |
| "iance": 4991, | |
| "Ok": 4992, | |
| "ias": 4993, | |
| "Ġadop": 4994, | |
| "Tr": 4995, | |
| "THE": 4996, | |
| "ĠCompany": 4997, | |
| "Ġdrunk": 4998, | |
| "Ġexperien": 4999, | |
| "Ġepisode": 5000, | |
| "Actually": 5001, | |
| "IF": 5002, | |
| "Ġwet": 5003, | |
| "Ġasleep": 5004, | |
| "Nobody": 5005, | |
| "Ġmeas": 5006, | |
| "ĠRos": 5007, | |
| "Yep": 5008, | |
| "Ġtrick": 5009, | |
| "Ġlanguages": 5010, | |
| "Ġeasier": 5011, | |
| "umped": 5012, | |
| "Ġdemon": 5013, | |
| "Ġsouthern": 5014, | |
| "ĠWomen": 5015, | |
| "Ġquality": 5016, | |
| "ima": 5017, | |
| "ĠCenter": 5018, | |
| "Ġjourney": 5019, | |
| "Ġpit": 5020, | |
| "arently": 5021, | |
| "war": 5022, | |
| "Ġrecently": 5023, | |
| "ĠCat": 5024, | |
| "oking": 5025, | |
| "Ġplat": 5026, | |
| "Ġactual": 5027, | |
| "Ġsam": 5028, | |
| "Ġcrying": 5029, | |
| "Ġpound": 5030, | |
| "ĠMom": 5031, | |
| "ĠTrans": 5032, | |
| "ctions": 5033, | |
| "Ġpalace": 5034, | |
| "Ġlistening": 5035, | |
| "ĠRad": 5036, | |
| "ĠMur": 5037, | |
| "bur": 5038, | |
| "ba": 5039, | |
| "nces": 5040, | |
| "Ġlaughing": 5041, | |
| "bre": 5042, | |
| "Ġpil": 5043, | |
| "Ġsports": 5044, | |
| "Ġteaching": 5045, | |
| "agon": 5046, | |
| "Stay": 5047, | |
| "ĠGovernor": 5048, | |
| "ĠIll": 5049, | |
| "ĠServ": 5050, | |
| "Ġanal": 5051, | |
| "Perhaps": 5052, | |
| "Ġcart": 5053, | |
| "ĠChief": 5054, | |
| "ili": 5055, | |
| "ĠStan": 5056, | |
| "Ġbomb": 5057, | |
| "with": 5058, | |
| "ĠYoung": 5059, | |
| "ĠAng": 5060, | |
| "More": 5061, | |
| "ĠArab": 5062, | |
| "Ġfixed": 5063, | |
| "Ġcircum": 5064, | |
| "idents": 5065, | |
| "Ġgrant": 5066, | |
| "ĠUK": 5067, | |
| "Ġodd": 5068, | |
| "ĠCam": 5069, | |
| "Ġcloud": 5070, | |
| "Ġadvant": 5071, | |
| "Ġwatched": 5072, | |
| "EE": 5073, | |
| "pro": 5074, | |
| "Ġstream": 5075, | |
| "ĠFoot": 5076, | |
| "Ġmanner": 5077, | |
| "aded": 5078, | |
| "Ġveh": 5079, | |
| "Ġmaid": 5080, | |
| "ressive": 5081, | |
| "Ġleague": 5082, | |
| "Ġappears": 5083, | |
| "ushing": 5084, | |
| "elcome": 5085, | |
| "Ġmanaged": 5086, | |
| ".'\"": 5087, | |
| "ĠCarl": 5088, | |
| "ĠAngeles": 5089, | |
| "Ġthrew": 5090, | |
| "ĠVer": 5091, | |
| "ani": 5092, | |
| "Ġpossibly": 5093, | |
| "lig": 5094, | |
| "uals": 5095, | |
| "elly": 5096, | |
| "ĠFlorida": 5097, | |
| "Ġpure": 5098, | |
| "Ġmetal": 5099, | |
| "ĠJoseph": 5100, | |
| "ĠGar": 5101, | |
| "Ġexpression": 5102, | |
| "Ġworst": 5103, | |
| "Ġplain": 5104, | |
| "Ġresist": 5105, | |
| "....": 5106, | |
| "ĠBest": 5107, | |
| "Ġdying": 5108, | |
| "Ġsteps": 5109, | |
| "orter": 5110, | |
| "Ġrecords": 5111, | |
| "friend": 5112, | |
| "Ġusual": 5113, | |
| "Ġast": 5114, | |
| "ĠAunt": 5115, | |
| "Ġmagic": 5116, | |
| "ennis": 5117, | |
| "Ġsleeping": 5118, | |
| "ura": 5119, | |
| "Ġtrial": 5120, | |
| "Ġfashion": 5121, | |
| "ĠHaw": 5122, | |
| "utenant": 5123, | |
| "nam": 5124, | |
| "Ġdreams": 5125, | |
| "Miss": 5126, | |
| "Ġknock": 5127, | |
| "Ġmainly": 5128, | |
| "Ġsem": 5129, | |
| "ĠDev": 5130, | |
| "ĠFre": 5131, | |
| "abeth": 5132, | |
| "kend": 5133, | |
| "Ġdrew": 5134, | |
| "ĠIm": 5135, | |
| "Ġprovided": 5136, | |
| "ĠBritain": 5137, | |
| "Ġswear": 5138, | |
| "rig": 5139, | |
| "ĠDutch": 5140, | |
| "ĠMusic": 5141, | |
| "ĠKim": 5142, | |
| "Ġplanning": 5143, | |
| "ĠHon": 5144, | |
| "Ġsequ": 5145, | |
| "ras": 5146, | |
| "tering": 5147, | |
| "ropical": 5148, | |
| "ĠDepartment": 5149, | |
| "uman": 5150, | |
| "ĠMajor": 5151, | |
| "Ġdefend": 5152, | |
| "Ġshowing": 5153, | |
| "ĠAnn": 5154, | |
| "Ġappearance": 5155, | |
| "bour": 5156, | |
| "Ġlaws": 5157, | |
| "Over": 5158, | |
| "ardon": 5159, | |
| "atre": 5160, | |
| "ĠRog": 5161, | |
| "Ġconversation": 5162, | |
| "ĠDou": 5163, | |
| "Ġawful": 5164, | |
| "Ġbrand": 5165, | |
| "Ġanx": 5166, | |
| "RI": 5167, | |
| "uries": 5168, | |
| "ĠWhy": 5169, | |
| "rier": 5170, | |
| "ĠHel": 5171, | |
| "oured": 5172, | |
| "Ġknowing": 5173, | |
| "ua": 5174, | |
| "achel": 5175, | |
| "ĠVal": 5176, | |
| "Ġscore": 5177, | |
| "Ġofficers": 5178, | |
| "ĠFOR": 5179, | |
| "oles": 5180, | |
| "aine": 5181, | |
| "Ġgro": 5182, | |
| "icide": 5183, | |
| "Ġcoat": 5184, | |
| "ĠSus": 5185, | |
| "ooper": 5186, | |
| "azz": 5187, | |
| "Ġoccasion": 5188, | |
| "Ġdamage": 5189, | |
| "Ġunc": 5190, | |
| "onse": 5191, | |
| "eare": 5192, | |
| "Ġburied": 5193, | |
| "Ġ\"Â": 5194, | |
| "Ġends": 5195, | |
| "Ġfingers": 5196, | |
| "Ġtrib": 5197, | |
| "Ġpartner": 5198, | |
| "wing": 5199, | |
| "Ġdeb": 5200, | |
| "Ġrow": 5201, | |
| "Ġspoken": 5202, | |
| "ĠPan": 5203, | |
| "Ġeverywhere": 5204, | |
| "ĠEmpire": 5205, | |
| "Ġmel": 5206, | |
| "LY": 5207, | |
| "Ġfeelings": 5208, | |
| "cellent": 5209, | |
| "Ġnoticed": 5210, | |
| "ĠCons": 5211, | |
| "Ġassum": 5212, | |
| "Ġalt": 5213, | |
| "Ġinha": 5214, | |
| "Ġyounger": 5215, | |
| "Ġwalls": 5216, | |
| "Ġrequired": 5217, | |
| "Ġpocket": 5218, | |
| "Sit": 5219, | |
| "ctors": 5220, | |
| "Cause": 5221, | |
| "Ġremains": 5222, | |
| "Ġconstruction": 5223, | |
| "Ġgir": 5224, | |
| "ĠPak": 5225, | |
| "writ": 5226, | |
| "Ġ#\"": 5227, | |
| "ym": 5228, | |
| "Ġstayed": 5229, | |
| "urance": 5230, | |
| "Ġneighbor": 5231, | |
| "oices": 5232, | |
| "ĠBecause": 5233, | |
| "ĠSummer": 5234, | |
| "ĠJane": 5235, | |
| "book": 5236, | |
| "Ġfeels": 5237, | |
| "Ġce": 5238, | |
| "Ġstudies": 5239, | |
| "Ġreligion": 5240, | |
| "Ġgift": 5241, | |
| "Ġstock": 5242, | |
| "Ġtong": 5243, | |
| "Ġnuc": 5244, | |
| "Ġguns": 5245, | |
| "Ġstret": 5246, | |
| "ĠRose": 5247, | |
| "Ġowned": 5248, | |
| "ĠGroup": 5249, | |
| "CE": 5250, | |
| "resp": 5251, | |
| "Ġeconomic": 5252, | |
| "rant": 5253, | |
| "heart": 5254, | |
| "gain": 5255, | |
| "usic": 5256, | |
| "Ġdrag": 5257, | |
| "Damn": 5258, | |
| "WE": 5259, | |
| "enced": 5260, | |
| "ANT": 5261, | |
| "elle": 5262, | |
| "Ġinteg": 5263, | |
| "Ġmagazine": 5264, | |
| "Ġtroops": 5265, | |
| "ĠDivision": 5266, | |
| "Ġsmoke": 5267, | |
| "Ġreality": 5268, | |
| "ĠAlthough": 5269, | |
| "ios": 5270, | |
| "Ġcomplic": 5271, | |
| "ĠBefore": 5272, | |
| "ĠCle": 5273, | |
| "ĠParliament": 5274, | |
| "Ad": 5275, | |
| "iously": 5276, | |
| "Ġsect": 5277, | |
| "Ġpapers": 5278, | |
| "Ġprefer": 5279, | |
| "OH": 5280, | |
| "ocol": 5281, | |
| "aura": 5282, | |
| "Once": 5283, | |
| "Ġprem": 5284, | |
| "Ġcous": 5285, | |
| "ĠCamp": 5286, | |
| "Anyway": 5287, | |
| "imum": 5288, | |
| "ali": 5289, | |
| "ĠPrime": 5290, | |
| "Ġautom": 5291, | |
| "Ġbutter": 5292, | |
| "Ġintellig": 5293, | |
| "ĠEdward": 5294, | |
| "Ġflow": 5295, | |
| "Ġrequire": 5296, | |
| "Ġrat": 5297, | |
| "Ġcollection": 5298, | |
| "oura": 5299, | |
| "Ġchamp": 5300, | |
| "Ġrequest": 5301, | |
| "Ġdirty": 5302, | |
| "American": 5303, | |
| "Ġopposite": 5304, | |
| "Ġwinning": 5305, | |
| "lim": 5306, | |
| "ĠYes": 5307, | |
| "Ġupset": 5308, | |
| "Ġlocation": 5309, | |
| "oma": 5310, | |
| "Ġreact": 5311, | |
| "Ġdepart": 5312, | |
| "aving": 5313, | |
| "Ġoperation": 5314, | |
| "iable": 5315, | |
| "ĠAmericans": 5316, | |
| "ĠFer": 5317, | |
| "ĠIreland": 5318, | |
| "Ġlosing": 5319, | |
| "ĠTw": 5320, | |
| "ĠGeorg": 5321, | |
| "ront": 5322, | |
| "Ġduck": 5323, | |
| "Ġthee": 5324, | |
| "ties": 5325, | |
| "ĠOs": 5326, | |
| "Ġloves": 5327, | |
| "ĠGames": 5328, | |
| "Ġimprove": 5329, | |
| "ĠSqu": 5330, | |
| "ĠRail": 5331, | |
| "Ġwheel": 5332, | |
| "Ġscrew": 5333, | |
| "orial": 5334, | |
| "Ġren": 5335, | |
| "Ġrestaur": 5336, | |
| "Ġgall": 5337, | |
| "ournament": 5338, | |
| "lict": 5339, | |
| "Ġdrama": 5340, | |
| "Hmm": 5341, | |
| "lyn": 5342, | |
| "Ġminor": 5343, | |
| "Ġfinding": 5344, | |
| "Ġeffort": 5345, | |
| "heast": 5346, | |
| "Ġrelative": 5347, | |
| "quar": 5348, | |
| "Ġcompleted": 5349, | |
| "Ġinnoc": 5350, | |
| "Ġtreatment": 5351, | |
| "ĠMax": 5352, | |
| "Ġthoughts": 5353, | |
| "John": 5354, | |
| "Ġexerc": 5355, | |
| "ja": 5356, | |
| "sembly": 5357, | |
| "Ġstruck": 5358, | |
| "ingu": 5359, | |
| "Ġbottle": 5360, | |
| "Call": 5361, | |
| "ella": 5362, | |
| "Ġfavour": 5363, | |
| "pre": 5364, | |
| "Ġtim": 5365, | |
| "Ġmusical": 5366, | |
| "Ġability": 5367, | |
| "ĠJean": 5368, | |
| "ĠPrincess": 5369, | |
| "oving": 5370, | |
| "Ġunits": 5371, | |
| "she": 5372, | |
| "Ġfile": 5373, | |
| "Ġcake": 5374, | |
| "Ġexcuse": 5375, | |
| "ĠOff": 5376, | |
| "ĠDire": 5377, | |
| "Since": 5378, | |
| "cel": 5379, | |
| "Ġdriver": 5380, | |
| "Ġcells": 5381, | |
| "ois": 5382, | |
| "ĠWind": 5383, | |
| "Ġtraditional": 5384, | |
| "ĠScotland": 5385, | |
| "icked": 5386, | |
| "Ġraise": 5387, | |
| "Tw": 5388, | |
| "ĠKent": 5389, | |
| "ĠMike": 5390, | |
| "Ġflag": 5391, | |
| "Ġmo": 5392, | |
| "Ġfought": 5393, | |
| "Ġthousands": 5394, | |
| "Ġforgotten": 5395, | |
| "ulty": 5396, | |
| "Everyone": 5397, | |
| "Ġhelping": 5398, | |
| "Ġlights": 5399, | |
| "Ġgiant": 5400, | |
| "Ġfavorite": 5401, | |
| "Ġfan": 5402, | |
| "ĠProfessor": 5403, | |
| "Ġpin": 5404, | |
| "OP": 5405, | |
| "amm": 5406, | |
| "Ġfro": 5407, | |
| "Ġjack": 5408, | |
| "ĠLife": 5409, | |
| "Bet": 5410, | |
| "pa": 5411, | |
| "Ġadvice": 5412, | |
| "NOW": 5413, | |
| "Ġbasis": 5414, | |
| "Con": 5415, | |
| "ko": 5416, | |
| "Ġhumans": 5417, | |
| "Ġjoke": 5418, | |
| "Ġmatters": 5419, | |
| "Ġgate": 5420, | |
| "Ġstatement": 5421, | |
| "ominated": 5422, | |
| "riday": 5423, | |
| "ansas": 5424, | |
| "Ġtiny": 5425, | |
| "Ġaffect": 5426, | |
| "Turn": 5427, | |
| "Ġmatches": 5428, | |
| "Ġflower": 5429, | |
| "lying": 5430, | |
| "Whatever": 5431, | |
| "Ġuseful": 5432, | |
| "Ġdrugs": 5433, | |
| "Ġexpress": 5434, | |
| "ĠPlay": 5435, | |
| "Someone": 5436, | |
| "Ġweekend": 5437, | |
| "Ġships": 5438, | |
| "Ġmicro": 5439, | |
| "Ġpresence": 5440, | |
| "down": 5441, | |
| "Ġetc": 5442, | |
| "emic": 5443, | |
| "asty": 5444, | |
| "Ġtur": 5445, | |
| "uit": 5446, | |
| "Ġsin": 5447, | |
| "Ġnerv": 5448, | |
| "Ġflo": 5449, | |
| "Ġattend": 5450, | |
| "]\"": 5451, | |
| "...?\"": 5452, | |
| "yo": 5453, | |
| "ĠBas": 5454, | |
| "Shall": 5455, | |
| "gle": 5456, | |
| "ĠLand": 5457, | |
| "Ġchemical": 5458, | |
| "Ġaltern": 5459, | |
| "Äģ": 5460, | |
| "Ġgentleman": 5461, | |
| "Ġdeclared": 5462, | |
| "Ġdu": 5463, | |
| "Ġthin": 5464, | |
| "Ġguitar": 5465, | |
| "Ġwebs": 5466, | |
| "ĠRepublican": 5467, | |
| "ĠLatin": 5468, | |
| "Ġsafety": 5469, | |
| "arian": 5470, | |
| "Today": 5471, | |
| "Ġbast": 5472, | |
| "ĠHol": 5473, | |
| "Ġholid": 5474, | |
| "ache": 5475, | |
| "aring": 5476, | |
| "eping": 5477, | |
| "Ġmotion": 5478, | |
| "RA": 5479, | |
| "aval": 5480, | |
| "Ġfreedom": 5481, | |
| "Ġthy": 5482, | |
| "Ġjobs": 5483, | |
| "Ġfal": 5484, | |
| "ĠMass": 5485, | |
| "Ġearn": 5486, | |
| "ĠSaturday": 5487, | |
| "Ġtun": 5488, | |
| "ching": 5489, | |
| "ira": 5490, | |
| "Ġsword": 5491, | |
| "Ġwestern": 5492, | |
| "Ġbodies": 5493, | |
| "ila": 5494, | |
| "Ġbye": 5495, | |
| "obile": 5496, | |
| "Ġgolden": 5497, | |
| "Ġcloser": 5498, | |
| "ĠDar": 5499, | |
| "Ġbillion": 5500, | |
| "Ġreceive": 5501, | |
| "Ġaccepted": 5502, | |
| "place": 5503, | |
| "ano": 5504, | |
| "Everybody": 5505, | |
| "Ġentirely": 5506, | |
| "ĠDemocratic": 5507, | |
| "Ġye": 5508, | |
| "Ġeffects": 5509, | |
| "boy": 5510, | |
| "ĠDoctor": 5511, | |
| "ufact": 5512, | |
| "Ġrise": 5513, | |
| "apa": 5514, | |
| "ĠHa": 5515, | |
| "Ġsilence": 5516, | |
| "low": 5517, | |
| "osen": 5518, | |
| "ĠEven": 5519, | |
| "Ġnative": 5520, | |
| "acle": 5521, | |
| "Ġexchan": 5522, | |
| "Ġbare": 5523, | |
| "Ġlect": 5524, | |
| "Ġbringing": 5525, | |
| "Le": 5526, | |
| "Ġninety": 5527, | |
| "Ġdressed": 5528, | |
| "Ġgri": 5529, | |
| "ĠOlympics": 5530, | |
| "lfriend": 5531, | |
| "ĠYear": 5532, | |
| "Ġsail": 5533, | |
| "Ġtears": 5534, | |
| "Ġselected": 5535, | |
| "Ġlips": 5536, | |
| "Ġawarded": 5537, | |
| "Ġmort": 5538, | |
| "add": 5539, | |
| "onds": 5540, | |
| "Ġauthority": 5541, | |
| "thur": 5542, | |
| "Welcome": 5543, | |
| "ĠHA": 5544, | |
| "aimed": 5545, | |
| "ĠInstitute": 5546, | |
| "Ġfocus": 5547, | |
| "New": 5548, | |
| "ĠLy": 5549, | |
| "Ġminister": 5550, | |
| "Ġsplit": 5551, | |
| "Ġresponse": 5552, | |
| "Ġtemperature": 5553, | |
| "ji": 5554, | |
| "UST": 5555, | |
| "ĠBilly": 5556, | |
| "ĠStar": 5557, | |
| "ophy": 5558, | |
| "ĠMore": 5559, | |
| "aning": 5560, | |
| "enny": 5561, | |
| "Ġfinancial": 5562, | |
| "Ġsignal": 5563, | |
| "Ġhearing": 5564, | |
| "Ġcredit": 5565, | |
| "ĠLater": 5566, | |
| "Ġdesire": 5567, | |
| "Ġperfectly": 5568, | |
| "enc": 5569, | |
| "Ġafford": 5570, | |
| "ĠEliz": 5571, | |
| "itzer": 5572, | |
| "ads": 5573, | |
| "leg": 5574, | |
| "ĠCommittee": 5575, | |
| "Ġcarefully": 5576, | |
| "eral": 5577, | |
| "Ġcontains": 5578, | |
| "Ġexcited": 5579, | |
| "Ġlabor": 5580, | |
| "Ġnewspaper": 5581, | |
| "Ġactivity": 5582, | |
| "Ġweapons": 5583, | |
| "imp": 5584, | |
| "Ġrecent": 5585, | |
| "Ġgraph": 5586, | |
| "stitution": 5587, | |
| "Ġdrawing": 5588, | |
| "Ġfifteen": 5589, | |
| "Out": 5590, | |
| "Ġdetail": 5591, | |
| "Ġcream": 5592, | |
| "Ġborder": 5593, | |
| "Ġcash": 5594, | |
| "col": 5595, | |
| "ĠIran": 5596, | |
| "Ġstreets": 5597, | |
| "Ġjail": 5598, | |
| "Ġworkers": 5599, | |
| "Ġmate": 5600, | |
| "Ġbroadcast": 5601, | |
| "Ġdarling": 5602, | |
| "Ġtal": 5603, | |
| "Ġfired": 5604, | |
| "olved": 5605, | |
| "Ġrecomm": 5606, | |
| "icient": 5607, | |
| "stances": 5608, | |
| "ĠHot": 5609, | |
| "vest": 5610, | |
| "Ġmajority": 5611, | |
| "Ġconnected": 5612, | |
| "Ġdivor": 5613, | |
| "rary": 5614, | |
| "ĠJackson": 5615, | |
| "Ġprec": 5616, | |
| "Ġcrim": 5617, | |
| "Ġfalling": 5618, | |
| "Ġarrange": 5619, | |
| "Ġcastle": 5620, | |
| "Ġlic": 5621, | |
| "Ġchicken": 5622, | |
| "ilty": 5623, | |
| "Ġhyd": 5624, | |
| "ĠJac": 5625, | |
| "Ġsignificant": 5626, | |
| "gor": 5627, | |
| "Ġapproach": 5628, | |
| "App": 5629, | |
| "ĠSociety": 5630, | |
| "rd": 5631, | |
| "ysis": 5632, | |
| "ĠMajesty": 5633, | |
| "Ġcomment": 5634, | |
| "iven": 5635, | |
| "ĠAwards": 5636, | |
| "Ġgrave": 5637, | |
| "Sometimes": 5638, | |
| "Ġmanagement": 5639, | |
| "ĠSk": 5640, | |
| "Ġbeside": 5641, | |
| "ĠSecretary": 5642, | |
| "Ġboot": 5643, | |
| "ĠUnder": 5644, | |
| "Ġunderstood": 5645, | |
| "hamber": 5646, | |
| "Ġfruit": 5647, | |
| "zer": 5648, | |
| "stra": 5649, | |
| "uous": 5650, | |
| "Ġfaster": 5651, | |
| "they": 5652, | |
| "ĠEarly": 5653, | |
| ".]": 5654, | |
| "ĠLove": 5655, | |
| "Ġsugar": 5656, | |
| "opher": 5657, | |
| ".)": 5658, | |
| "ĠStep": 5659, | |
| "ervation": 5660, | |
| "Ġsolution": 5661, | |
| "och": 5662, | |
| "ogether": 5663, | |
| "ĠHarry": 5664, | |
| "Ġsettled": 5665, | |
| "stead": 5666, | |
| "Ġdrinking": 5667, | |
| "ĠAh": 5668, | |
| "ĠAmy": 5669, | |
| "Up": 5670, | |
| "ulated": 5671, | |
| "Ġconcent": 5672, | |
| "urse": 5673, | |
| "Ġadvent": 5674, | |
| "Ġsixty": 5675, | |
| "ĠEdu": 5676, | |
| "eer": 5677, | |
| "Ph": 5678, | |
| "bled": 5679, | |
| "Ġ\"..": 5680, | |
| "Ġnarrow": 5681, | |
| "Ġsharp": 5682, | |
| "Ġdiam": 5683, | |
| "Ġnineteen": 5684, | |
| "Ġremoved": 5685, | |
| "Ġpool": 5686, | |
| "ective": 5687, | |
| "Ġbeach": 5688, | |
| "ĠLong": 5689, | |
| "Looks": 5690, | |
| "Ġpossess": 5691, | |
| "Ġfully": 5692, | |
| "Ġavoid": 5693, | |
| "gers": 5694, | |
| "Ġincreased": 5695, | |
| "venue": 5696, | |
| "Ġmedicine": 5697, | |
| "pet": 5698, | |
| "vention": 5699, | |
| "Ġotherwise": 5700, | |
| "Ġgain": 5701, | |
| "Next": 5702, | |
| "ĠCorn": 5703, | |
| "Ġupper": 5704, | |
| "Ġelement": 5705, | |
| "mother": 5706, | |
| "Ġhabit": 5707, | |
| "',": 5708, | |
| "load": 5709, | |
| "Ġrent": 5710, | |
| "Ġqueen": 5711, | |
| "foot": 5712, | |
| "ĠNorthern": 5713, | |
| "Ġproceed": 5714, | |
| "Ġsuggested": 5715, | |
| "Ġfant": 5716, | |
| "ĠHy": 5717, | |
| "Ġboo": 5718, | |
| "Ġrapid": 5719, | |
| "Ġnumer": 5720, | |
| "Ġkeeps": 5721, | |
| "erves": 5722, | |
| "Ġlake": 5723, | |
| "Ġaudience": 5724, | |
| "vin": 5725, | |
| "inet": 5726, | |
| "onder": 5727, | |
| "Shit": 5728, | |
| "Has": 5729, | |
| "Hurry": 5730, | |
| "Open": 5731, | |
| "ĠPac": 5732, | |
| "Ġplanned": 5733, | |
| "Ġmountains": 5734, | |
| "Ġbranch": 5735, | |
| "Ġhighly": 5736, | |
| "Ġterror": 5737, | |
| "Ġpotential": 5738, | |
| "Love": 5739, | |
| "Ġpassing": 5740, | |
| "Ġfigures": 5741, | |
| "jo": 5742, | |
| "Ġchat": 5743, | |
| "Ġtough": 5744, | |
| "Ġah": 5745, | |
| "bury": 5746, | |
| "Ġdim": 5747, | |
| "Ġpleased": 5748, | |
| "ĠMars": 5749, | |
| "appy": 5750, | |
| "Ġtor": 5751, | |
| "isa": 5752, | |
| "._": 5753, | |
| "ulate": 5754, | |
| "Ġcomedy": 5755, | |
| "Ġlord": 5756, | |
| "Ġmixed": 5757, | |
| "ĠMuseum": 5758, | |
| "Ġkidding": 5759, | |
| "Ġbasic": 5760, | |
| "Move": 5761, | |
| "ĠGirl": 5762, | |
| "ĠJohnson": 5763, | |
| "inois": 5764, | |
| "Ġroy": 5765, | |
| "Ġprimary": 5766, | |
| "Ġcomfortable": 5767, | |
| "Ġsetting": 5768, | |
| "chant": 5769, | |
| "Ġscored": 5770, | |
| "ublic": 5771, | |
| "Ġapartment": 5772, | |
| "Ġmap": 5773, | |
| "elling": 5774, | |
| "Ġconsum": 5775, | |
| "Ġconscious": 5776, | |
| "Ġvictory": 5777, | |
| "Daddy": 5778, | |
| "ĠSH": 5779, | |
| "Another": 5780, | |
| "don": 5781, | |
| "Ġsexual": 5782, | |
| "essel": 5783, | |
| "Ġprograms": 5784, | |
| "Ġfederal": 5785, | |
| "sell": 5786, | |
| "igan": 5787, | |
| "wan": 5788, | |
| "ĠSouthern": 5789, | |
| "fall": 5790, | |
| "ĠKe": 5791, | |
| "Ġfailure": 5792, | |
| "ĠInter": 5793, | |
| "Aye": 5794, | |
| "wers": 5795, | |
| "owed": 5796, | |
| "ĠCy": 5797, | |
| "Ġprior": 5798, | |
| "Ġgoals": 5799, | |
| "Ġkingdom": 5800, | |
| "Ġfaces": 5801, | |
| "ĠSweden": 5802, | |
| "ender": 5803, | |
| "Ġpregn": 5804, | |
| "Ġlibrary": 5805, | |
| "OL": 5806, | |
| "Ġrailway": 5807, | |
| "orge": 5808, | |
| "Ġroles": 5809, | |
| "Ġmanufact": 5810, | |
| "Ġstatus": 5811, | |
| "Ġforgive": 5812, | |
| "ĠPakistan": 5813, | |
| "Ġrepresented": 5814, | |
| "Ġarrested": 5815, | |
| "obal": 5816, | |
| "Ġwindows": 5817, | |
| "rison": 5818, | |
| "ĠOut": 5819, | |
| "Ġchosen": 5820, | |
| "Ġpra": 5821, | |
| "Ġchanging": 5822, | |
| "Ġfifth": 5823, | |
| "\").": 5824, | |
| "Ġstrike": 5825, | |
| "Ġnervous": 5826, | |
| "Ġwealth": 5827, | |
| "ummy": 5828, | |
| "ĠArch": 5829, | |
| "Ġelements": 5830, | |
| "Ġpaying": 5831, | |
| "ĠWAS": 5832, | |
| "odd": 5833, | |
| "ĠColumb": 5834, | |
| "eman": 5835, | |
| "Ġapolog": 5836, | |
| "stant": 5837, | |
| "Ġinvited": 5838, | |
| "Ġcircle": 5839, | |
| "arry": 5840, | |
| "Ġdancing": 5841, | |
| "Ġextremely": 5842, | |
| "ador": 5843, | |
| "ĠBang": 5844, | |
| "Ġbelief": 5845, | |
| "zy": 5846, | |
| "Ġinstance": 5847, | |
| "Ġeighty": 5848, | |
| "hetic": 5849, | |
| "ĠJewish": 5850, | |
| "ĠTer": 5851, | |
| "Ġdefeated": 5852, | |
| "Ġknife": 5853, | |
| "aging": 5854, | |
| "Ġchest": 5855, | |
| "ĠMAN": 5856, | |
| "elled": 5857, | |
| "Ġgrowth": 5858, | |
| "Ġwid": 5859, | |
| "Ġunf": 5860, | |
| "Ġdisplay": 5861, | |
| "bor": 5862, | |
| "Ġadvantage": 5863, | |
| "Ġlatter": 5864, | |
| "Ġkil": 5865, | |
| "Ġcontroll": 5866, | |
| "uckles": 5867, | |
| "Ġactivities": 5868, | |
| "Ġmuseum": 5869, | |
| "ĠBi": 5870, | |
| "Ġagent": 5871, | |
| "Sm": 5872, | |
| "ĠHE": 5873, | |
| "porary": 5874, | |
| "Ġsomehow": 5875, | |
| "Ġprofessor": 5876, | |
| "ĠFriday": 5877, | |
| "Ġplenty": 5878, | |
| "Ġhiding": 5879, | |
| "Ġschol": 5880, | |
| "osaur": 5881, | |
| "ĠJeff": 5882, | |
| "ĠAsia": 5883, | |
| "Ġunderstanding": 5884, | |
| "ĠEs": 5885, | |
| "ĠCommun": 5886, | |
| "ĠEll": 5887, | |
| "ĠLight": 5888, | |
| "Ġchannel": 5889, | |
| "Ġtap": 5890, | |
| "Ġeh": 5891, | |
| "Ġcarrying": 5892, | |
| "Ġnotes": 5893, | |
| "oston": 5894, | |
| "Ġult": 5895, | |
| "ĠBre": 5896, | |
| "gment": 5897, | |
| "Ġproducer": 5898, | |
| "Ġpurcha": 5899, | |
| "Ġrevolution": 5900, | |
| "adium": 5901, | |
| "ports": 5902, | |
| "Ġsoldier": 5903, | |
| "ĠRod": 5904, | |
| "Ġconsist": 5905, | |
| "Ġtongue": 5906, | |
| "spect": 5907, | |
| "Ġ(;": 5908, | |
| "Ġfields": 5909, | |
| "Ġwash": 5910, | |
| "Ġcolour": 5911, | |
| "gency": 5912, | |
| "Ġdism": 5913, | |
| "Ġgirlfriend": 5914, | |
| "ĠWall": 5915, | |
| "Ġroute": 5916, | |
| "had": 5917, | |
| "Ġliber": 5918, | |
| "ishment": 5919, | |
| "Ġmax": 5920, | |
| "Ġupstairs": 5921, | |
| "hens": 5922, | |
| "Ġselling": 5923, | |
| "inger": 5924, | |
| "ricult": 5925, | |
| "Ġshell": 5926, | |
| "ropri": 5927, | |
| "Ġentertain": 5928, | |
| "Ġflew": 5929, | |
| "Ġslightly": 5930, | |
| "Ġsees": 5931, | |
| "outs": 5932, | |
| "ĠSecond": 5933, | |
| "Ġwha": 5934, | |
| "Ġsons": 5935, | |
| "ĠCare": 5936, | |
| "Ġexpand": 5937, | |
| "Ġshooting": 5938, | |
| "Big": 5939, | |
| "Ġfamiliar": 5940, | |
| "Ġremembered": 5941, | |
| "ĠColonel": 5942, | |
| "Ġcompos": 5943, | |
| "Ġachieve": 5944, | |
| "izes": 5945, | |
| "ĠZeal": 5946, | |
| "Ġproducts": 5947, | |
| "Ġpowers": 5948, | |
| "li": 5949, | |
| "Ġcalcul": 5950, | |
| "ĠUncle": 5951, | |
| "Ġhanging": 5952, | |
| "Ġtone": 5953, | |
| "Ġbunch": 5954, | |
| "ĠMos": 5955, | |
| "Ġconnection": 5956, | |
| "illed": 5957, | |
| "Ġeth": 5958, | |
| "isation": 5959, | |
| "ĠSel": 5960, | |
| "Ġmultiple": 5961, | |
| "Ġcounter": 5962, | |
| "Ġdust": 5963, | |
| "Before": 5964, | |
| "RY": 5965, | |
| "Ġsales": 5966, | |
| "Ġscientific": 5967, | |
| "Ġdoors": 5968, | |
| "ĠSol": 5969, | |
| "ĠWay": 5970, | |
| "ivity": 5971, | |
| "ĠUp": 5972, | |
| "Ġghost": 5973, | |
| "Ġproof": 5974, | |
| "Ġscale": 5975, | |
| "Ġseriously": 5976, | |
| "Char": 5977, | |
| "Ġquant": 5978, | |
| "Ġguilty": 5979, | |
| "Ġtraffic": 5980, | |
| "Ġresc": 5981, | |
| "'.\"": 5982, | |
| "ented": 5983, | |
| "ĠJun": 5984, | |
| "ĠIslam": 5985, | |
| "ĠOver": 5986, | |
| "Ġaircraft": 5987, | |
| "Ġbackground": 5988, | |
| "riff": 5989, | |
| "Ġowner": 5990, | |
| "ONE": 5991, | |
| "Ġocean": 5992, | |
| "Ġpoison": 5993, | |
| "ĠIrish": 5994, | |
| "Ġprepar": 5995, | |
| "Ġrealized": 5996, | |
| "Ġspect": 5997, | |
| "pal": 5998, | |
| "Ġheav": 5999, | |
| "ĠSur": 6000, | |
| "Ġescap": 6001, | |
| "Ġded": 6002, | |
| "onday": 6003, | |
| "Ġafterwards": 6004, | |
| "Ġdiss": 6005, | |
| "Ġbrave": 6006, | |
| "aming": 6007, | |
| "Ġmathem": 6008, | |
| "esh": 6009, | |
| "Ġtask": 6010, | |
| "Ġfilms": 6011, | |
| "Ġham": 6012, | |
| "Ġimpl": 6013, | |
| "Ġcheer": 6014, | |
| "Ġprogress": 6015, | |
| "stein": 6016, | |
| "Ġsched": 6017, | |
| "Ġcitizens": 6018, | |
| "overy": 6019, | |
| "Ġcauses": 6020, | |
| "inda": 6021, | |
| "Ġresources": 6022, | |
| "IE": 6023, | |
| "vior": 6024, | |
| "ocal": 6025, | |
| "ĠWho": 6026, | |
| "Ġsupported": 6027, | |
| "Ġemot": 6028, | |
| "PS": 6029, | |
| "Ġdetails": 6030, | |
| "Ġgather": 6031, | |
| "Ġexpensive": 6032, | |
| "iform": 6033, | |
| "Ġplate": 6034, | |
| "Ġsupply": 6035, | |
| "Ġpink": 6036, | |
| "unny": 6037, | |
| "NO": 6038, | |
| "iro": 6039, | |
| "zo": 6040, | |
| "):": 6041, | |
| "awa": 6042, | |
| "Ġsilent": 6043, | |
| "phant": 6044, | |
| "Ġdisappoint": 6045, | |
| "Ġgang": 6046, | |
| "ĠZealand": 6047, | |
| "Ġwondering": 6048, | |
| "ici": 6049, | |
| "Ġunion": 6050, | |
| "Ġuniverse": 6051, | |
| "ĠAT": 6052, | |
| "ĠHan": 6053, | |
| "ums": 6054, | |
| "Ġchain": 6055, | |
| "Ġweapon": 6056, | |
| "Ġbat": 6057, | |
| "ĠLab": 6058, | |
| "Ġfairly": 6059, | |
| "Ġreck": 6060, | |
| "Ġtradition": 6061, | |
| "Ġvessel": 6062, | |
| "Ġmental": 6063, | |
| "aughs": 6064, | |
| "ĠChair": 6065, | |
| "Ġshore": 6066, | |
| "ĠNick": 6067, | |
| "Ġtransform": 6068, | |
| "Ġrecording": 6069, | |
| "ĠEv": 6070, | |
| "ĠAnother": 6071, | |
| "ĠCharlie": 6072, | |
| "icy": 6073, | |
| "ĠTre": 6074, | |
| "Ġapprox": 6075, | |
| "Ġshoulder": 6076, | |
| "Ġincred": 6077, | |
| "erk": 6078, | |
| "Ġblame": 6079, | |
| "ĠAngel": 6080, | |
| "Ġwave": 6081, | |
| "GE": 6082, | |
| "Ġwings": 6083, | |
| "Ġnom": 6084, | |
| "ĠSomet": 6085, | |
| "Ġguest": 6086, | |
| "Ġstring": 6087, | |
| "ĠMY": 6088, | |
| "ĠLike": 6089, | |
| "gery": 6090, | |
| "Ġcosts": 6091, | |
| "erman": 6092, | |
| "ĠMem": 6093, | |
| "Ġclasses": 6094, | |
| "Ġhidden": 6095, | |
| "ĠCla": 6096, | |
| "Ġlevels": 6097, | |
| "oir": 6098, | |
| "Ġstro": 6099, | |
| "Ġsport": 6100, | |
| "Ġhyp": 6101, | |
| "Ġunivers": 6102, | |
| "ĠProvince": 6103, | |
| "ĠBook": 6104, | |
| "Ġresponsibility": 6105, | |
| "ĠDor": 6106, | |
| "ĠRam": 6107, | |
| "Ġspin": 6108, | |
| "ĠCarolina": 6109, | |
| "Ġpresented": 6110, | |
| "ĠWE": 6111, | |
| "ĠBoth": 6112, | |
| "ĠFort": 6113, | |
| "Ġvirt": 6114, | |
| "Ġpassion": 6115, | |
| "water": 6116, | |
| "inent": 6117, | |
| "amily": 6118, | |
| "Ġadvert": 6119, | |
| "ĠCommission": 6120, | |
| "worth": 6121, | |
| "Ġrac": 6122, | |
| "Ġcommercial": 6123, | |
| "ĠSP": 6124, | |
| "ĠThree": 6125, | |
| "ĠBra": 6126, | |
| "Ġthroat": 6127, | |
| "Ġscr": 6128, | |
| "Ġtravell": 6129, | |
| "bel": 6130, | |
| "UGH": 6131, | |
| "wa": 6132, | |
| "Ġplatform": 6133, | |
| "bey": 6134, | |
| "ĠIllinois": 6135, | |
| "Ġoldest": 6136, | |
| "Ġshirt": 6137, | |
| "ĠCHAP": 6138, | |
| "Ġpha": 6139, | |
| "Ġaband": 6140, | |
| "Ġcapac": 6141, | |
| "Ġlabel": 6142, | |
| "Ne": 6143, | |
| "Ġgrab": 6144, | |
| "ĠTri": 6145, | |
| "ĠMiddle": 6146, | |
| "Aw": 6147, | |
| "ĠMod": 6148, | |
| "vy": 6149, | |
| "amin": 6150, | |
| "Ġrefused": 6151, | |
| "Ġtelephone": 6152, | |
| "Ġdetermined": 6153, | |
| "Ġsheep": 6154, | |
| "Ġsolid": 6155, | |
| "ĠGra": 6156, | |
| "ĠUN": 6157, | |
| "ĠFootball": 6158, | |
| "gie": 6159, | |
| "Ġseasons": 6160, | |
| "Ġbreaking": 6161, | |
| "Ġcolon": 6162, | |
| "Jesus": 6163, | |
| "ordin": 6164, | |
| "wide": 6165, | |
| "Ġwaited": 6166, | |
| "Ġdisappeared": 6167, | |
| "Ġcousin": 6168, | |
| "ĠIII": 6169, | |
| "Ġdread": 6170, | |
| "Ġstaying": 6171, | |
| "Ġroyal": 6172, | |
| "Ġbub": 6173, | |
| "ĠSon": 6174, | |
| "ĠTy": 6175, | |
| "Ġate": 6176, | |
| "ĠRon": 6177, | |
| "Ġexistence": 6178, | |
| "ο": 6179, | |
| "Ġmole": 6180, | |
| "Ġprincess": 6181, | |
| "Four": 6182, | |
| "Ind": 6183, | |
| "ĠBea": 6184, | |
| "Ġhook": 6185, | |
| "Ġlimited": 6186, | |
| "Ġcards": 6187, | |
| "Ġfurn": 6188, | |
| "Ġrocks": 6189, | |
| "Ġwise": 6190, | |
| "Ġfeature": 6191, | |
| "ĠMen": 6192, | |
| "part": 6193, | |
| "orse": 6194, | |
| "Ġattacked": 6195, | |
| "Ġpill": 6196, | |
| "ĠAS": 6197, | |
| "Ġparties": 6198, | |
| "Ġfinds": 6199, | |
| "Ġlat": 6200, | |
| "ĠNE": 6201, | |
| "Ġ/": 6202, | |
| "Ġbudget": 6203, | |
| "ĠChild": 6204, | |
| "ĠValley": 6205, | |
| "Ġwire": 6206, | |
| "owned": 6207, | |
| "Ġsuffered": 6208, | |
| "Ġhom": 6209, | |
| "....\"": 6210, | |
| "ĠUk": 6211, | |
| "Ġath": 6212, | |
| "Ġshame": 6213, | |
| "Ġchose": 6214, | |
| "Ġliqu": 6215, | |
| "Ġeconomy": 6216, | |
| "ĠKorea": 6217, | |
| "acter": 6218, | |
| "Ġjustice": 6219, | |
| "ati": 6220, | |
| "Ġtowns": 6221, | |
| "ñ": 6222, | |
| "ĠFour": 6223, | |
| "Ġblank": 6224, | |
| "Ġoccurred": 6225, | |
| "Ġfolks": 6226, | |
| "esides": 6227, | |
| "Ġstated": 6228, | |
| "IL": 6229, | |
| "Ġdrawn": 6230, | |
| "Ġhappiness": 6231, | |
| "Ġartists": 6232, | |
| "ĠLib": 6233, | |
| "Ġtournament": 6234, | |
| "ĠVan": 6235, | |
| "icted": 6236, | |
| "Ġflu": 6237, | |
| "ĠChris": 6238, | |
| "ĠAdm": 6239, | |
| "oto": 6240, | |
| "ĠNorm": 6241, | |
| "Ġpoll": 6242, | |
| "Ġangel": 6243, | |
| "Ġrelax": 6244, | |
| "Ġanti": 6245, | |
| "gs": 6246, | |
| "CT": 6247, | |
| "pered": 6248, | |
| "Mic": 6249, | |
| "eding": 6250, | |
| "Ġprotection": 6251, | |
| "Ġfalse": 6252, | |
| "ĠDi": 6253, | |
| "Ġgeneration": 6254, | |
| "ĠHu": 6255, | |
| "Ġmedal": 6256, | |
| "Ġstations": 6257, | |
| "Ġbegins": 6258, | |
| "Mrs": 6259, | |
| "hin": 6260, | |
| "rast": 6261, | |
| "eaking": 6262, | |
| "Ġbrill": 6263, | |
| "unched": 6264, | |
| "ĠShi": 6265, | |
| "ĠCa": 6266, | |
| "ĠWales": 6267, | |
| "Too": 6268, | |
| "acher": 6269, | |
| "ĠSocial": 6270, | |
| "Ġpolitics": 6271, | |
| "Ġadmit": 6272, | |
| "Ġchallenge": 6273, | |
| "Ġbatter": 6274, | |
| "Whoo": 6275, | |
| "athy": 6276, | |
| "Ġinhabit": 6277, | |
| "ĠCHAPTER": 6278, | |
| "Still": 6279, | |
| "ĠAss": 6280, | |
| "Ġunus": 6281, | |
| "Ġcheese": 6282, | |
| "rence": 6283, | |
| "lend": 6284, | |
| "Ġhello": 6285, | |
| "icket": 6286, | |
| "Ġvariety": 6287, | |
| "Ġeditor": 6288, | |
| "Ġridic": 6289, | |
| "Ġattended": 6290, | |
| "Ġconflict": 6291, | |
| "fortunately": 6292, | |
| "weet": 6293, | |
| "Ġlegisl": 6294, | |
| "bably": 6295, | |
| "ĠTay": 6296, | |
| "Ġtouched": 6297, | |
| "ĠVen": 6298, | |
| "gly": 6299, | |
| "urally": 6300, | |
| "ĠJohnny": 6301, | |
| "ipping": 6302, | |
| "ĠCO": 6303, | |
| "ĠAlan": 6304, | |
| "Ġrare": 6305, | |
| "Ġgodd": 6306, | |
| "acks": 6307, | |
| "thew": 6308, | |
| "this": 6309, | |
| "Ġhomes": 6310, | |
| "Ġinnocent": 6311, | |
| "SE": 6312, | |
| "Ġproposed": 6313, | |
| "alf": 6314, | |
| "ĠLeg": 6315, | |
| "Ġeleven": 6316, | |
| "Ġtemple": 6317, | |
| "ĠTony": 6318, | |
| "ova": 6319, | |
| "Ġpleasant": 6320, | |
| "entially": 6321, | |
| "inson": 6322, | |
| "Ġarticle": 6323, | |
| "Ġnormally": 6324, | |
| "Ġdaily": 6325, | |
| "ĠTHIS": 6326, | |
| "ĠEduc": 6327, | |
| "Ġlone": 6328, | |
| "Ġpaint": 6329, | |
| "Ġshr": 6330, | |
| "inn": 6331, | |
| "Ġsole": 6332, | |
| "while": 6333, | |
| "Ġcig": 6334, | |
| "Ġveget": 6335, | |
| "Ġfold": 6336, | |
| "ĠWhere": 6337, | |
| "Ġhelps": 6338, | |
| "enger": 6339, | |
| "amps": 6340, | |
| "ĠFe": 6341, | |
| "Ġlocked": 6342, | |
| "Ġvent": 6343, | |
| "Ġeastern": 6344, | |
| "Ġpa": 6345, | |
| "Ġstands": 6346, | |
| "ĠSub": 6347, | |
| "Ġreferred": 6348, | |
| "Ġnurs": 6349, | |
| "Ġsentence": 6350, | |
| "ĠSenate": 6351, | |
| "ĠEach": 6352, | |
| "verse": 6353, | |
| "Ġax": 6354, | |
| "Anything": 6355, | |
| "Ġdegrees": 6356, | |
| "iments": 6357, | |
| "ĠJimmy": 6358, | |
| "Ġconc": 6359, | |
| "Ġcarbon": 6360, | |
| "ĠNaz": 6361, | |
| "ares": 6362, | |
| "Ġidiot": 6363, | |
| "Ġrespond": 6364, | |
| "aka": 6365, | |
| "Ġinqu": 6366, | |
| "Ġheight": 6367, | |
| "Ġunknown": 6368, | |
| "Ġtreated": 6369, | |
| "nic": 6370, | |
| "Ġcateg": 6371, | |
| "Ġoperations": 6372, | |
| "Ġaim": 6373, | |
| "ints": 6374, | |
| "ologist": 6375, | |
| "itzerland": 6376, | |
| "ĠJones": 6377, | |
| "Ġconsequ": 6378, | |
| "Ġclimate": 6379, | |
| "Ġvision": 6380, | |
| "Ġestablish": 6381, | |
| "Ġvictim": 6382, | |
| "ĠElizabeth": 6383, | |
| "Ġcriminal": 6384, | |
| "Ġcoal": 6385, | |
| "Ġequip": 6386, | |
| "quarters": 6387, | |
| "Ġswitch": 6388, | |
| "Ġincreasing": 6389, | |
| "cest": 6390, | |
| "Ġtower": 6391, | |
| "Ġrab": 6392, | |
| "ronic": 6393, | |
| "Back": 6394, | |
| "ĠBoston": 6395, | |
| "hole": 6396, | |
| "Ġcontinues": 6397, | |
| "Ġloose": 6398, | |
| "ĠMaria": 6399, | |
| "iac": 6400, | |
| "uing": 6401, | |
| "Ġonline": 6402, | |
| "Ġbite": 6403, | |
| "ESS": 6404, | |
| "ĠGer": 6405, | |
| "ompl": 6406, | |
| "ĠGal": 6407, | |
| "Ġflood": 6408, | |
| "Ġengaged": 6409, | |
| "Ġfallen": 6410, | |
| "Ġimpact": 6411, | |
| "ĠYOUR": 6412, | |
| "Ġrecognized": 6413, | |
| "El": 6414, | |
| "Last": 6415, | |
| "Ġ\"?\"": 6416, | |
| "ntil": 6417, | |
| "enes": 6418, | |
| "Ġbutton": 6419, | |
| "Ġfollows": 6420, | |
| "Ġdiscover": 6421, | |
| "Ġsuicide": 6422, | |
| "Ġcommittee": 6423, | |
| "Ġmail": 6424, | |
| "ague": 6425, | |
| "Ġobjects": 6426, | |
| "Ġterritory": 6427, | |
| "Ġtied": 6428, | |
| "which": 6429, | |
| "Ġassociated": 6430, | |
| "ario": 6431, | |
| "Ġdyn": 6432, | |
| "ĠTele": 6433, | |
| "run": 6434, | |
| "Other": 6435, | |
| "Ġaspect": 6436, | |
| "Ġfancy": 6437, | |
| "Ġseek": 6438, | |
| "Ġframe": 6439, | |
| "eps": 6440, | |
| "Ġshadow": 6441, | |
| "ĠEmperor": 6442, | |
| "Ġsymbol": 6443, | |
| "Ġsacrif": 6444, | |
| "yeah": 6445, | |
| "Ġpiano": 6446, | |
| "ĠBarb": 6447, | |
| "ĠPortug": 6448, | |
| "Most": 6449, | |
| "ĠAndrew": 6450, | |
| "Ġkiller": 6451, | |
| "coh": 6452, | |
| "Ġvalues": 6453, | |
| "\"),": 6454, | |
| "rical": 6455, | |
| "ĠLiber": 6456, | |
| "Ġdistinct": 6457, | |
| "Ġhundreds": 6458, | |
| "Ġordinary": 6459, | |
| "urd": 6460, | |
| "Ġorange": 6461, | |
| "iece": 6462, | |
| "Ġrepeated": 6463, | |
| "Ġhorn": 6464, | |
| "Ġsuffering": 6465, | |
| "Ġpreviously": 6466, | |
| "Ġcott": 6467, | |
| "Ġserving": 6468, | |
| "ĠGil": 6469, | |
| "Exactly": 6470, | |
| "Ġinstrument": 6471, | |
| "Ġmyst": 6472, | |
| "ĠMarg": 6473, | |
| "ĠForce": 6474, | |
| "Ġcas": 6475, | |
| "uls": 6476, | |
| "Ġviolence": 6477, | |
| "Ġhunting": 6478, | |
| "Ġappeal": 6479, | |
| "Ġincome": 6480, | |
| "Five": 6481, | |
| "isse": 6482, | |
| "Ġborrow": 6483, | |
| "ĠEastern": 6484, | |
| "Ġquit": 6485, | |
| "Ġacad": 6486, | |
| "Ġinsp": 6487, | |
| "Ġrooms": 6488, | |
| "ĠSwitzerland": 6489, | |
| "idae": 6490, | |
| "Ġappreciate": 6491, | |
| "okes": 6492, | |
| "Ġhandsome": 6493, | |
| "Ġtruly": 6494, | |
| "ez": 6495, | |
| "ups": 6496, | |
| "ĠRom": 6497, | |
| "Ġcommission": 6498, | |
| "Ġmaintain": 6499, | |
| "ĠPhilipp": 6500, | |
| "ela": 6501, | |
| "Ġpriest": 6502, | |
| "geant": 6503, | |
| "ĠHome": 6504, | |
| "Ġclock": 6505, | |
| "ĠBern": 6506, | |
| "Ġconduct": 6507, | |
| "ĠKong": 6508, | |
| "IA": 6509, | |
| "ĠCome": 6510, | |
| "Ġhast": 6511, | |
| "Ġdescend": 6512, | |
| "ĠSteve": 6513, | |
| "then": 6514, | |
| "Little": 6515, | |
| "ĠMu": 6516, | |
| "Ġdrove": 6517, | |
| "Ġargument": 6518, | |
| "stone": 6519, | |
| "bow": 6520, | |
| "lar": 6521, | |
| "Ġsisters": 6522, | |
| "Ġlit": 6523, | |
| "Ġsomewhat": 6524, | |
| "Ġhoping": 6525, | |
| "ĠKat": 6526, | |
| "Ġcircumstances": 6527, | |
| "Ġcute": 6528, | |
| "Mother": 6529, | |
| "Ser": 6530, | |
| "Ġcant": 6531, | |
| "ava": 6532, | |
| "Ġcourage": 6533, | |
| "andy": 6534, | |
| "OULD": 6535, | |
| "Ġclever": 6536, | |
| "Ġaunt": 6537, | |
| "Ġboyfriend": 6538, | |
| "Bring": 6539, | |
| "Ġtie": 6540, | |
| "ĠPop": 6541, | |
| "Ġshock": 6542, | |
| "Ġbenefit": 6543, | |
| "Ġcompared": 6544, | |
| "ĠHind": 6545, | |
| "Ġarran": 6546, | |
| "Ġclient": 6547, | |
| "Ġfeatured": 6548, | |
| "Ġapparently": 6549, | |
| "Ġestim": 6550, | |
| "Ġsenior": 6551, | |
| "iat": 6552, | |
| "ĠJon": 6553, | |
| "pret": 6554, | |
| "Ġimportance": 6555, | |
| "ĠRecords": 6556, | |
| "Ġjuice": 6557, | |
| "ĠBlue": 6558, | |
| "ĠDef": 6559, | |
| "âĻ«": 6560, | |
| "Ġpale": 6561, | |
| "ricane": 6562, | |
| "Ġcreature": 6563, | |
| "unte": 6564, | |
| "Ġfate": 6565, | |
| "Ġapple": 6566, | |
| "Ġproperly": 6567, | |
| "Ġrecognize": 6568, | |
| "orpor": 6569, | |
| "ece": 6570, | |
| "osphere": 6571, | |
| "Ġbeer": 6572, | |
| "ĠSee": 6573, | |
| "ĠOnly": 6574, | |
| "Ġlin": 6575, | |
| "ĠNOT": 6576, | |
| "Ġexcellent": 6577, | |
| "Ġbreast": 6578, | |
| "Ġlimit": 6579, | |
| "Ġindividuals": 6580, | |
| "ĠFair": 6581, | |
| "Ġsuppl": 6582, | |
| "ĠSimon": 6583, | |
| "Ġho": 6584, | |
| "ĠKNOW": 6585, | |
| "ĠTem": 6586, | |
| "ĠOx": 6587, | |
| "Ġcheap": 6588, | |
| "ito": 6589, | |
| "Somebody": 6590, | |
| "ĠLeon": 6591, | |
| "ĠLuc": 6592, | |
| "Ġsurvive": 6593, | |
| "ĠInt": 6594, | |
| "bridge": 6595, | |
| "chester": 6596, | |
| "Ġrestaurant": 6597, | |
| "ustration": 6598, | |
| "itty": 6599, | |
| "Ġbehavior": 6600, | |
| "Ġâ": 6601, | |
| "ĠBank": 6602, | |
| "Ġdeliver": 6603, | |
| "lev": 6604, | |
| "standing": 6605, | |
| "alm": 6606, | |
| "ĠTime": 6607, | |
| "emies": 6608, | |
| "ĠDaniel": 6609, | |
| "sect": 6610, | |
| "Ġexplained": 6611, | |
| "Ġconvin": 6612, | |
| "\"?\"": 6613, | |
| "Cap": 6614, | |
| "Ġbatt": 6615, | |
| "lla": 6616, | |
| "ements": 6617, | |
| "ception": 6618, | |
| "ĠBus": 6619, | |
| "Ġrum": 6620, | |
| "Ġburning": 6621, | |
| "Ġcontest": 6622, | |
| "ĠLI": 6623, | |
| "omer": 6624, | |
| "Ġnoted": 6625, | |
| "Ġearned": 6626, | |
| "ĠArthur": 6627, | |
| "ĠLes": 6628, | |
| "onia": 6629, | |
| "Ġoverall": 6630, | |
| "AB": 6631, | |
| "Ġpushed": 6632, | |
| "Ġconsult": 6633, | |
| "Ġstom": 6634, | |
| "Ġintended": 6635, | |
| "Ġsigns": 6636, | |
| "Ġunique": 6637, | |
| "Ġexact": 6638, | |
| "Ġemp": 6639, | |
| "Ġagreement": 6640, | |
| "ĠDun": 6641, | |
| "Ġequipment": 6642, | |
| "sters": 6643, | |
| "Ġcommitted": 6644, | |
| "ACK": 6645, | |
| "Ġsou": 6646, | |
| "ĠDet": 6647, | |
| "Ġreports": 6648, | |
| "arrass": 6649, | |
| "ĠFrancisco": 6650, | |
| "Ġwebsite": 6651, | |
| "Ġ\".\"": 6652, | |
| "ĠFestival": 6653, | |
| "ieutenant": 6654, | |
| "Ġok": 6655, | |
| "ĠCivil": 6656, | |
| "Ready": 6657, | |
| "ĠBattle": 6658, | |
| "Ġobvious": 6659, | |
| "Ġholds": 6660, | |
| "ealous": 6661, | |
| "ĠBon": 6662, | |
| "ĠAlso": 6663, | |
| "Ġadvance": 6664, | |
| "IST": 6665, | |
| "ĠConn": 6666, | |
| "ĠNic": 6667, | |
| "Ġconstant": 6668, | |
| "ocolate": 6669, | |
| "arn": 6670, | |
| "UM": 6671, | |
| "ĠAsian": 6672, | |
| "Ġpartners": 6673, | |
| "ĠVol": 6674, | |
| "Ġpatients": 6675, | |
| "sex": 6676, | |
| "Ġexperiment": 6677, | |
| "ĠMonday": 6678, | |
| "gend": 6679, | |
| "Ġaccomp": 6680, | |
| "Ġdarkness": 6681, | |
| "writer": 6682, | |
| "Ġchampion": 6683, | |
| "Under": 6684, | |
| "Ġreject": 6685, | |
| "Ġsaving": 6686, | |
| "Ġtrail": 6687, | |
| "Ġbrings": 6688, | |
| "phy": 6689, | |
| "venge": 6690, | |
| "ĠJersey": 6691, | |
| "ading": 6692, | |
| "Ġwithd": 6693, | |
| "ĠTa": 6694, | |
| "Show": 6695, | |
| "Ġgovernor": 6696, | |
| "ĠList": 6697, | |
| "usted": 6698, | |
| "Ġrang": 6699, | |
| "ĠWater": 6700, | |
| "Ġmulti": 6701, | |
| "Ġrot": 6702, | |
| "Ġofficially": 6703, | |
| "ĠHAVE": 6704, | |
| "Ġmeal": 6705, | |
| "ĠRab": 6706, | |
| "Ġgoodness": 6707, | |
| "ĠFound": 6708, | |
| "Ġperman": 6709, | |
| "Father": 6710, | |
| "mn": 6711, | |
| "etch": 6712, | |
| "ĠHea": 6713, | |
| "rot": 6714, | |
| "iser": 6715, | |
| "izations": 6716, | |
| "ĠAlice": 6717, | |
| "Ġlisted": 6718, | |
| "rich": 6719, | |
| "ropol": 6720, | |
| "Ġadministr": 6721, | |
| "wich": 6722, | |
| "Ġow": 6723, | |
| "ograp": 6724, | |
| "Ġconference": 6725, | |
| "Ġcris": 6726, | |
| "ĠTurk": 6727, | |
| "Ġsoftware": 6728, | |
| "ĠService": 6729, | |
| "ĠJr": 6730, | |
| "Ġpretend": 6731, | |
| "Ġexchange": 6732, | |
| "Ġdesk": 6733, | |
| "oked": 6734, | |
| "mo": 6735, | |
| "Ġcorresp": 6736, | |
| "Ġbastard": 6737, | |
| "Ġshel": 6738, | |
| "Ġbuddy": 6739, | |
| "Åį": 6740, | |
| "ĠBab": 6741, | |
| "ĠBru": 6742, | |
| "Ġnuclear": 6743, | |
| "Ġadditional": 6744, | |
| "Were": 6745, | |
| "Ġwoods": 6746, | |
| "atherine": 6747, | |
| "ĠBerlin": 6748, | |
| "Ġslept": 6749, | |
| "Ġeaten": 6750, | |
| "ĠAtlantic": 6751, | |
| "Ġmoves": 6752, | |
| "Ġatm": 6753, | |
| "ĠEp": 6754, | |
| "Ġhorrible": 6755, | |
| "arant": 6756, | |
| "Ġdepends": 6757, | |
| "aph": 6758, | |
| "Ġclosely": 6759, | |
| "Ġbabies": 6760, | |
| "mpt": 6761, | |
| "uns": 6762, | |
| "aren": 6763, | |
| "Ġsymp": 6764, | |
| "Ġaccompl": 6765, | |
| "ĠShow": 6766, | |
| "hmm": 6767, | |
| "eaks": 6768, | |
| "otic": 6769, | |
| "ĠIntern": 6770, | |
| "ĠPacific": 6771, | |
| "era": 6772, | |
| "Ġteachers": 6773, | |
| "Ġassistant": 6774, | |
| "Ġhistorical": 6775, | |
| "Ġwished": 6776, | |
| "Ġlaunched": 6777, | |
| "HL": 6778, | |
| "UL": 6779, | |
| "ĠAv": 6780, | |
| "aki": 6781, | |
| "angle": 6782, | |
| "Ġconcert": 6783, | |
| "Ġroot": 6784, | |
| "ĠAdam": 6785, | |
| "Ġwrest": 6786, | |
| "Ġnominated": 6787, | |
| "who": 6788, | |
| "sha": 6789, | |
| "Ġstole": 6790, | |
| "Ġweb": 6791, | |
| "Ġfriendly": 6792, | |
| "ppy": 6793, | |
| "ĠNavy": 6794, | |
| "uan": 6795, | |
| "Ġmerely": 6796, | |
| "Ġgoods": 6797, | |
| "ĠRa": 6798, | |
| "Ġsolve": 6799, | |
| "ĠCharl": 6800, | |
| "Ġphotograph": 6801, | |
| "Ġneighborhood": 6802, | |
| "TV": 6803, | |
| "iral": 6804, | |
| "Ġancest": 6805, | |
| "Ġsplend": 6806, | |
| "ĠKansas": 6807, | |
| "sk": 6808, | |
| "Ġsuck": 6809, | |
| "Ġkeys": 6810, | |
| "Ġbedroom": 6811, | |
| "ĠPL": 6812, | |
| "Ġclaimed": 6813, | |
| "force": 6814, | |
| "Ġbeneath": 6815, | |
| "ĠAlexander": 6816, | |
| "there": 6817, | |
| "Ġmyth": 6818, | |
| "Ġscript": 6819, | |
| "Ġcommit": 6820, | |
| "ĠThan": 6821, | |
| "hio": 6822, | |
| "Ġreaction": 6823, | |
| "Ġproved": 6824, | |
| "Ġcommonly": 6825, | |
| "Ġdescribe": 6826, | |
| "ĠRaj": 6827, | |
| "ĠAB": 6828, | |
| "Ġactions": 6829, | |
| "Boy": 6830, | |
| "Ġspite": 6831, | |
| "Ġswimming": 6832, | |
| "ĠTha": 6833, | |
| "EM": 6834, | |
| "ĠTok": 6835, | |
| "ĠDeath": 6836, | |
| "Ġtender": 6837, | |
| "imal": 6838, | |
| "ERS": 6839, | |
| "Whe": 6840, | |
| "sm": 6841, | |
| "ĠPart": 6842, | |
| "ĠFilm": 6843, | |
| "Ġsitu": 6844, | |
| "Ġtracks": 6845, | |
| "Ġindustrial": 6846, | |
| "Ġowe": 6847, | |
| "ingly": 6848, | |
| "egal": 6849, | |
| "Down": 6850, | |
| "Ġdesper": 6851, | |
| "Ġcurious": 6852, | |
| "Ġdefin": 6853, | |
| "Ġelephant": 6854, | |
| "asm": 6855, | |
| "ĠGall": 6856, | |
| "Ġmarked": 6857, | |
| "Ġexplos": 6858, | |
| "Ġembarrass": 6859, | |
| "based": 6860, | |
| "Again": 6861, | |
| "ĠTam": 6862, | |
| "Ġprime": 6863, | |
| "ĠAbout": 6864, | |
| "ĠALL": 6865, | |
| "ĠPen": 6866, | |
| "ĠGi": 6867, | |
| "Time": 6868, | |
| "bi": 6869, | |
| "bar": 6870, | |
| "Ġconqu": 6871, | |
| "Ġbeast": 6872, | |
| "Ġvalley": 6873, | |
| "Ġwinner": 6874, | |
| "Ġfrightened": 6875, | |
| "estic": 6876, | |
| "ĠEle": 6877, | |
| "ĠSab": 6878, | |
| "ĠCub": 6879, | |
| "Ġaside": 6880, | |
| "Ġcompeted": 6881, | |
| "ĠBull": 6882, | |
| "ĠBelg": 6883, | |
| "Ġromantic": 6884, | |
| "ĠTommy": 6885, | |
| "ĠSarah": 6886, | |
| "ĠHoly": 6887, | |
| "ĠPrize": 6888, | |
| "works": 6889, | |
| "Ġallows": 6890, | |
| "inity": 6891, | |
| "Ġ\"¶": 6892, | |
| "Jack": 6893, | |
| "Ġcomposed": 6894, | |
| "Ġremaining": 6895, | |
| "olt": 6896, | |
| "hess": 6897, | |
| "Ġcorpor": 6898, | |
| "TS": 6899, | |
| "olk": 6900, | |
| "Ġalcoh": 6901, | |
| "ĠRo": 6902, | |
| "Ġfishing": 6903, | |
| "Ġsettlement": 6904, | |
| "Ġretire": 6905, | |
| "incol": 6906, | |
| "erer": 6907, | |
| "Ġholiday": 6908, | |
| "Ġbang": 6909, | |
| "aze": 6910, | |
| "Ġinvestigation": 6911, | |
| "Ġcock": 6912, | |
| "Ġpuzz": 6913, | |
| "olen": 6914, | |
| "Ġwing": 6915, | |
| "Ġsteel": 6916, | |
| "ĠNether": 6917, | |
| "box": 6918, | |
| "atics": 6919, | |
| "lers": 6920, | |
| "Ġ\"\"": 6921, | |
| "obe": 6922, | |
| "Eh": 6923, | |
| "Aren": 6924, | |
| "Ġbasketball": 6925, | |
| "ĠJos": 6926, | |
| "earch": 6927, | |
| "evin": 6928, | |
| "Ġridiculous": 6929, | |
| "Ġbon": 6930, | |
| "Ġdevil": 6931, | |
| "Ġgods": 6932, | |
| "Ġanalysis": 6933, | |
| "Ġdies": 6934, | |
| "otal": 6935, | |
| "ĠLew": 6936, | |
| "Ġsoci": 6937, | |
| "Ġinsurance": 6938, | |
| "met": 6939, | |
| "itable": 6940, | |
| "ĠEducation": 6941, | |
| "lN": 6942, | |
| "Ġsending": 6943, | |
| "Ġlift": 6944, | |
| "Ġgotten": 6945, | |
| "ĠMir": 6946, | |
| "ĠNob": 6947, | |
| "Ġstronger": 6948, | |
| "Ġtort": 6949, | |
| "Ġapplication": 6950, | |
| "fle": 6951, | |
| "chestra": 6952, | |
| "ĠShar": 6953, | |
| "Ġefforts": 6954, | |
| "Ġmethods": 6955, | |
| "Ġbones": 6956, | |
| "Ġlonely": 6957, | |
| "CA": 6958, | |
| "mes": 6959, | |
| "Ġens": 6960, | |
| "Ġdecor": 6961, | |
| "ĠBoard": 6962, | |
| "Ma": 6963, | |
| "Ġfalls": 6964, | |
| "Ġemergency": 6965, | |
| "onic": 6966, | |
| "Ġmaterials": 6967, | |
| "Ġwore": 6968, | |
| "ĠHun": 6969, | |
| "Ġbathroom": 6970, | |
| "ĠKorean": 6971, | |
| "Ġnurse": 6972, | |
| "Six": 6973, | |
| "Ġreward": 6974, | |
| "Ġliterature": 6975, | |
| "cles": 6976, | |
| "asp": 6977, | |
| "ç": 6978, | |
| "inging": 6979, | |
| "Ġprotest": 6980, | |
| "Ġconce": 6981, | |
| "ĠProt": 6982, | |
| "omy": 6983, | |
| "Ġexamples": 6984, | |
| "Ġ!": 6985, | |
| "ĠGran": 6986, | |
| "Ġenemies": 6987, | |
| "onscious": 6988, | |
| "ika": 6989, | |
| "ĠBan": 6990, | |
| "Ġregret": 6991, | |
| "Ġcritical": 6992, | |
| "ĠWilliams": 6993, | |
| "Ġpride": 6994, | |
| "Ġbrilliant": 6995, | |
| "Ġmile": 6996, | |
| "heim": 6997, | |
| "isy": 6998, | |
| "Wanna": 6999, | |
| "ĠOpen": 7000, | |
| "Ġauthorities": 7001, | |
| "Mad": 7002, | |
| "Ġexercise": 7003, | |
| "Ġnut": 7004, | |
| "aws": 7005, | |
| "cri": 7006, | |
| "new": 7007, | |
| "Ġsets": 7008, | |
| "Ġcaptured": 7009, | |
| "osis": 7010, | |
| "hamed": 7011, | |
| "Ġnearby": 7012, | |
| "Ġtools": 7013, | |
| "Ġshook": 7014, | |
| "Ġsurely": 7015, | |
| "ĠWITH": 7016, | |
| "ropriate": 7017, | |
| "ami": 7018, | |
| "Ġuniform": 7019, | |
| "Ġoblig": 7020, | |
| "ĠClass": 7021, | |
| "Ġmonster": 7022, | |
| "Ġburst": 7023, | |
| "Ġgal": 7024, | |
| "ĠBible": 7025, | |
| "oof": 7026, | |
| "iques": 7027, | |
| "ĠDirector": 7028, | |
| "gues": 7029, | |
| "ĠNet": 7030, | |
| "Ġprote": 7031, | |
| "ĠSpec": 7032, | |
| "ĠMid": 7033, | |
| "Ġnumerous": 7034, | |
| "ĠRoss": 7035, | |
| "Ġshared": 7036, | |
| "Ġstomach": 7037, | |
| "ĠMeg": 7038, | |
| "Ġacid": 7039, | |
| "burgh": 7040, | |
| "'?\"": 7041, | |
| "iley": 7042, | |
| "Ġlands": 7043, | |
| "Ġestate": 7044, | |
| "Ġadopted": 7045, | |
| "bell": 7046, | |
| "Ġjun": 7047, | |
| "Ġagg": 7048, | |
| "Ġmood": 7049, | |
| "Ġconcl": 7050, | |
| "Ġconcern": 7051, | |
| "eau": 7052, | |
| "car": 7053, | |
| "irmed": 7054, | |
| "ourage": 7055, | |
| "Ġhired": 7056, | |
| "Ġenjoyed": 7057, | |
| "ĠScottish": 7058, | |
| "ierce": 7059, | |
| "ĠOffice": 7060, | |
| "Ġmyster": 7061, | |
| "Ġsimpl": 7062, | |
| "otted": 7063, | |
| "ĠHead": 7064, | |
| "Ġphr": 7065, | |
| "Ġours": 7066, | |
| "Ġapplied": 7067, | |
| "Ġpregnant": 7068, | |
| "ĠBall": 7069, | |
| "Ġinstant": 7070, | |
| "onsense": 7071, | |
| "Ġcopies": 7072, | |
| "gging": 7073, | |
| "ĠBrother": 7074, | |
| "Ġsalt": 7075, | |
| "Ġrug": 7076, | |
| "ĠTimes": 7077, | |
| "ĠAri": 7078, | |
| "Ġairport": 7079, | |
| "Ġattacks": 7080, | |
| "Ġthrown": 7081, | |
| "Ġdefeat": 7082, | |
| "Ġsoil": 7083, | |
| "ĠGeorgia": 7084, | |
| "ĠSC": 7085, | |
| "ĠCAN": 7086, | |
| "Ġapply": 7087, | |
| "Ġdealing": 7088, | |
| "Ġinhabitants": 7089, | |
| "ogue": 7090, | |
| "Ġorganized": 7091, | |
| "sen": 7092, | |
| "Ġgained": 7093, | |
| "Ġugly": 7094, | |
| "Ġdisci": 7095, | |
| "Ġfortune": 7096, | |
| "ordon": 7097, | |
| "achus": 7098, | |
| "ĠRepresent": 7099, | |
| "Ġagricult": 7100, | |
| "Ġben": 7101, | |
| "aya": 7102, | |
| "anta": 7103, | |
| "Ġdelay": 7104, | |
| "ĠMexican": 7105, | |
| "ĠSup": 7106, | |
| "Ġhousehold": 7107, | |
| "Ġsweetie": 7108, | |
| "ĠOnce": 7109, | |
| "encies": 7110, | |
| "Ġreform": 7111, | |
| "Ġsorts": 7112, | |
| "uce": 7113, | |
| "ĠShan": 7114, | |
| ",--": 7115, | |
| "case": 7116, | |
| "rin": 7117, | |
| "Ġproced": 7118, | |
| "Ġcolors": 7119, | |
| "Ġspo": 7120, | |
| "ĠArgent": 7121, | |
| "Ġbutt": 7122, | |
| "Cong": 7123, | |
| "Mommy": 7124, | |
| "Ġsurgery": 7125, | |
| "Ġobserved": 7126, | |
| "ĠAsh": 7127, | |
| "ĠBor": 7128, | |
| "Ġseats": 7129, | |
| "Ġfactory": 7130, | |
| "Ġunusual": 7131, | |
| "Ġ(,": 7132, | |
| "ĠNight": 7133, | |
| "Ġtheme": 7134, | |
| "Ġfolk": 7135, | |
| "Ġtoys": 7136, | |
| "Ġrand": 7137, | |
| "ĠArts": 7138, | |
| "ĠAssembly": 7139, | |
| "Ġdisappear": 7140, | |
| "Ġdistributed": 7141, | |
| "Ġsale": 7142, | |
| "Ġjoint": 7143, | |
| "Ġpropos": 7144, | |
| "Ġtear": 7145, | |
| "Ġdevice": 7146, | |
| "Ġyard": 7147, | |
| "onent": 7148, | |
| "ĠDON": 7149, | |
| "Ġskills": 7150, | |
| "Ġdemocr": 7151, | |
| "ĠDuke": 7152, | |
| "ĠDNA": 7153, | |
| "Ġcomplain": 7154, | |
| "ifying": 7155, | |
| "Ġrings": 7156, | |
| "Ġeffective": 7157, | |
| "Ġattitude": 7158, | |
| "OUT": 7159, | |
| "Ġincident": 7160, | |
| "Dan": 7161, | |
| "ĠEve": 7162, | |
| "Ġstruggle": 7163, | |
| "Ġstranger": 7164, | |
| "Ġbullet": 7165, | |
| "Ġhills": 7166, | |
| "Ġdesert": 7167, | |
| "Ġexplan": 7168, | |
| "Ġprize": 7169, | |
| "WHAT": 7170, | |
| "ĠViet": 7171, | |
| "Ġcomplicated": 7172, | |
| "bet": 7173, | |
| "asters": 7174, | |
| "ĠHung": 7175, | |
| "ĠBroad": 7176, | |
| "Ġvehicle": 7177, | |
| "ĠNetherlands": 7178, | |
| "Ġsuffer": 7179, | |
| "Honey": 7180, | |
| "ĠMich": 7181, | |
| "Ġunable": 7182, | |
| "keep": 7183, | |
| "ateful": 7184, | |
| "Ġannual": 7185, | |
| "esome": 7186, | |
| "Ġtrains": 7187, | |
| "Ġaid": 7188, | |
| "ĠOper": 7189, | |
| "ĠOlympic": 7190, | |
| "agement": 7191, | |
| "Bill": 7192, | |
| "Ġ\"âĢĵ": 7193, | |
| "Ġpermission": 7194, | |
| "Ġticket": 7195, | |
| "oti": 7196, | |
| "ĠRO": 7197, | |
| "Ġmayor": 7198, | |
| "Ġburned": 7199, | |
| "ĠPope": 7200, | |
| "inking": 7201, | |
| "Ġpointed": 7202, | |
| "Ġadvanced": 7203, | |
| "Ġscientists": 7204, | |
| "Ġwarning": 7205, | |
| "Ġpity": 7206, | |
| "BS": 7207, | |
| "Ġeager": 7208, | |
| "oster": 7209, | |
| "mony": 7210, | |
| "Ġconfess": 7211, | |
| "Ġelev": 7212, | |
| "Ġcrown": 7213, | |
| "Ġdraft": 7214, | |
| "Sec": 7215, | |
| "iy": 7216, | |
| "Ġbadly": 7217, | |
| "Abs": 7218, | |
| "Ġplot": 7219, | |
| "rogen": 7220, | |
| "Ġinitial": 7221, | |
| "Ġlegend": 7222, | |
| "Ġconsists": 7223, | |
| "Ġroads": 7224, | |
| "Ġexclaimed": 7225, | |
| "Ġdoctors": 7226, | |
| "ho": 7227, | |
| "Ġharder": 7228, | |
| "Ġhearts": 7229, | |
| "ĠDanny": 7230, | |
| "Ġgre": 7231, | |
| "ructed": 7232, | |
| "Ġopera": 7233, | |
| "omed": 7234, | |
| "EF": 7235, | |
| "bra": 7236, | |
| "Ġblocks": 7237, | |
| "ĠVictoria": 7238, | |
| "Ġhonour": 7239, | |
| "ithm": 7240, | |
| "hell": 7241, | |
| "Ġcong": 7242, | |
| "Ġsubsequ": 7243, | |
| "Ġcruel": 7244, | |
| "athered": 7245, | |
| "Ġbride": 7246, | |
| "Ġyards": 7247, | |
| "ivered": 7248, | |
| "Ġnights": 7249, | |
| "etts": 7250, | |
| "Ġpow": 7251, | |
| "à¸": 7252, | |
| "ĠWat": 7253, | |
| "Ġwhenever": 7254, | |
| "Ġparish": 7255, | |
| "Ġteen": 7256, | |
| "Ġelections": 7257, | |
| "Ġspare": 7258, | |
| "Ġislands": 7259, | |
| "Ġassume": 7260, | |
| "Ġlesson": 7261, | |
| "Ste": 7262, | |
| "Ġriding": 7263, | |
| "Ġsixth": 7264, | |
| "Ġjew": 7265, | |
| "ĠSanta": 7266, | |
| "Ġpeak": 7267, | |
| "ĠOffic": 7268, | |
| "Ġcandidate": 7269, | |
| "Ġstress": 7270, | |
| "Ġcultural": 7271, | |
| "Ġvolume": 7272, | |
| "Ġta": 7273, | |
| "ĠBad": 7274, | |
| "ĠOcean": 7275, | |
| "pton": 7276, | |
| "Ġcapable": 7277, | |
| "Ġfuel": 7278, | |
| "Ġowners": 7279, | |
| "Ġvisited": 7280, | |
| "Ġmeters": 7281, | |
| "rets": 7282, | |
| "Ġrandom": 7283, | |
| "apping": 7284, | |
| "Ġbelongs": 7285, | |
| "Ġmoral": 7286, | |
| "KING": 7287, | |
| "Ġdun": 7288, | |
| "Ġpages": 7289, | |
| "ĠAlf": 7290, | |
| "Ġleads": 7291, | |
| "Ġcreating": 7292, | |
| "Ġseventy": 7293, | |
| "Ġbalance": 7294, | |
| "GR": 7295, | |
| "Ġjealous": 7296, | |
| "ĠEnter": 7297, | |
| "Probably": 7298, | |
| "Ġchampionship": 7299, | |
| "Ġacts": 7300, | |
| "Ġsmooth": 7301, | |
| "ĠChampionships": 7302, | |
| "ĠHong": 7303, | |
| "ĠEst": 7304, | |
| "UCK": 7305, | |
| "Christ": 7306, | |
| "inem": 7307, | |
| "Ġbetray": 7308, | |
| "Ġidentity": 7309, | |
| "Äĩ": 7310, | |
| "Ġwounded": 7311, | |
| "una": 7312, | |
| "EST": 7313, | |
| "Ġwand": 7314, | |
| "umes": 7315, | |
| "ieve": 7316, | |
| "ĠNews": 7317, | |
| "Ġstairs": 7318, | |
| "Ġwaves": 7319, | |
| "Ġbits": 7320, | |
| "engers": 7321, | |
| "ĠGolden": 7322, | |
| "also": 7323, | |
| "Ġrear": 7324, | |
| "cip": 7325, | |
| "Ġangle": 7326, | |
| "Ġquietly": 7327, | |
| "adelp": 7328, | |
| "uties": 7329, | |
| "ĠCross": 7330, | |
| "Ġdish": 7331, | |
| "geon": 7332, | |
| "ĠFR": 7333, | |
| "Ġarmed": 7334, | |
| "ĠHealth": 7335, | |
| "||||": 7336, | |
| "Ġphilosophy": 7337, | |
| "ĠFord": 7338, | |
| "ĠJerry": 7339, | |
| "ĠForest": 7340, | |
| "ĠWalter": 7341, | |
| "tr": 7342, | |
| "vo": 7343, | |
| "Ġpupp": 7344, | |
| "ĠCur": 7345, | |
| "Ġven": 7346, | |
| "Ġbuying": 7347, | |
| "retty": 7348, | |
| "Ġcharges": 7349, | |
| "ĠOk": 7350, | |
| "ĠAustria": 7351, | |
| "'\"": 7352, | |
| "ĠSong": 7353, | |
| "Ġwaters": 7354, | |
| "ĠTed": 7355, | |
| "Ġconclud": 7356, | |
| "UD": 7357, | |
| "Ġaffected": 7358, | |
| "Ġrevealed": 7359, | |
| "itors": 7360, | |
| "ĠCL": 7361, | |
| "orney": 7362, | |
| "comm": 7363, | |
| "achusetts": 7364, | |
| "earest": 7365, | |
| "Ġvia": 7366, | |
| "Ġinterrupt": 7367, | |
| "Ġballs": 7368, | |
| "Ġtrained": 7369, | |
| "Ġinterests": 7370, | |
| "Ġoperating": 7371, | |
| "uma": 7372, | |
| "Ġdebt": 7373, | |
| "Ġruled": 7374, | |
| "will": 7375, | |
| "Ġmud": 7376, | |
| "ĠLincol": 7377, | |
| "Ġvolunte": 7378, | |
| "Ġconver": 7379, | |
| "adelphia": 7380, | |
| "chief": 7381, | |
| "ardo": 7382, | |
| "icing": 7383, | |
| "ĠNations": 7384, | |
| "Ġphoto": 7385, | |
| "Ġcapacity": 7386, | |
| "ĠMA": 7387, | |
| "Ġlistened": 7388, | |
| "utation": 7389, | |
| "Ġshoulders": 7390, | |
| "ĠChairman": 7391, | |
| "Ġwhist": 7392, | |
| "has": 7393, | |
| "ti": 7394, | |
| "aling": 7395, | |
| "Ġvoices": 7396, | |
| "Ġcrash": 7397, | |
| "Ġpainted": 7398, | |
| "ĠFel": 7399, | |
| "Ġreference": 7400, | |
| "Ill": 7401, | |
| "Ġtropical": 7402, | |
| "Ġspending": 7403, | |
| "perial": 7404, | |
| "Mmm": 7405, | |
| "ĠRevolution": 7406, | |
| "ĠLine": 7407, | |
| "Ġsche": 7408, | |
| "Ġsmiled": 7409, | |
| "Ġrelief": 7410, | |
| "Ġelder": 7411, | |
| "point": 7412, | |
| "ĠCop": 7413, | |
| "aughters": 7414, | |
| "ART": 7415, | |
| "ée": 7416, | |
| "Ġcutting": 7417, | |
| "Ġtrem": 7418, | |
| "Ġchart": 7419, | |
| "Ġapproximately": 7420, | |
| "stance": 7421, | |
| "Ġaccur": 7422, | |
| "Ġrecommend": 7423, | |
| "Ġinterpret": 7424, | |
| "Ġsquared": 7425, | |
| "pson": 7426, | |
| "Ġgrey": 7427, | |
| "Ġregions": 7428, | |
| "Ġdespite": 7429, | |
| "Ġdozen": 7430, | |
| "haw": 7431, | |
| "La": 7432, | |
| "Ġcrossed": 7433, | |
| "Ġintroduce": 7434, | |
| "Fl": 7435, | |
| "IV": 7436, | |
| "Ġfart": 7437, | |
| "Ġreflect": 7438, | |
| "Ġcooking": 7439, | |
| "Ġlaunch": 7440, | |
| "Ġdistribution": 7441, | |
| "wick": 7442, | |
| "Ġpants": 7443, | |
| "ĠBudd": 7444, | |
| "ĠAnth": 7445, | |
| "apped": 7446, | |
| "ranch": 7447, | |
| "ĠAndy": 7448, | |
| "Ġlecture": 7449, | |
| "Ġcenturies": 7450, | |
| "ygen": 7451, | |
| "Ġsubs": 7452, | |
| "Forget": 7453, | |
| "ĠHolly": 7454, | |
| "ervative": 7455, | |
| "Ġmurdered": 7456, | |
| "ĠHans": 7457, | |
| "BI": 7458, | |
| "fish": 7459, | |
| "Ġgray": 7460, | |
| "Ġstudying": 7461, | |
| "Ġcreation": 7462, | |
| "ii": 7463, | |
| "Ġexpert": 7464, | |
| "Ġmarks": 7465, | |
| "ĠSusan": 7466, | |
| "Ġguests": 7467, | |
| "Doesn": 7468, | |
| "ĠTaylor": 7469, | |
| "OUN": 7470, | |
| "Ġmillions": 7471, | |
| "Ġatmosphere": 7472, | |
| "Ġbone": 7473, | |
| "ureau": 7474, | |
| "Ġdistingu": 7475, | |
| "Ġgrandfather": 7476, | |
| "Ġped": 7477, | |
| "EP": 7478, | |
| "Ġvast": 7479, | |
| "Ġtalks": 7480, | |
| "Ġfuneral": 7481, | |
| "Ġsecure": 7482, | |
| "ĠAM": 7483, | |
| "ĠBC": 7484, | |
| "ĠFederal": 7485, | |
| "Ġprogramme": 7486, | |
| "ursday": 7487, | |
| "Ġcorrespond": 7488, | |
| "yes": 7489, | |
| "kel": 7490, | |
| "Ġsucceeded": 7491, | |
| "eh": 7492, | |
| "Ġfond": 7493, | |
| "looking": 7494, | |
| "Ġera": 7495, | |
| "ĠMatthew": 7496, | |
| "Su": 7497, | |
| "ĠLO": 7498, | |
| "Ġsources": 7499, | |
| "Ġexciting": 7500, | |
| "nat": 7501, | |
| "ĠBO": 7502, | |
| "mad": 7503, | |
| "Ġcert": 7504, | |
| "Ġchocolate": 7505, | |
| "Ġglobal": 7506, | |
| "Ġguarant": 7507, | |
| "Ġuns": 7508, | |
| "Ġbaseball": 7509, | |
| "Ġstolen": 7510, | |
| "Ġfeather": 7511, | |
| "Ġpersons": 7512, | |
| "Ġhockey": 7513, | |
| "ĠFC": 7514, | |
| "Ġgraduated": 7515, | |
| "ori": 7516, | |
| "Ġnoble": 7517, | |
| "orders": 7518, | |
| "Ġbom": 7519, | |
| "Ġstir": 7520, | |
| "Run": 7521, | |
| "ĠDam": 7522, | |
| "Ġentrance": 7523, | |
| "ĠIslands": 7524, | |
| "Ġanswers": 7525, | |
| "Talk": 7526, | |
| "ĠNO": 7527, | |
| "Ġillust": 7528, | |
| "hus": 7529, | |
| "Ġalgor": 7530, | |
| "Ġarts": 7531, | |
| "However": 7532, | |
| "Ġheadquarters": 7533, | |
| "iture": 7534, | |
| "ĠKhan": 7535, | |
| "Ġprisoners": 7536, | |
| "ĠOhio": 7537, | |
| "Ġdeserve": 7538, | |
| "Ġdistricts": 7539, | |
| "chers": 7540, | |
| "**": 7541, | |
| "Ġbitter": 7542, | |
| "ĠSometimes": 7543, | |
| "Ġrhy": 7544, | |
| "Ġfunctions": 7545, | |
| "Ġcollea": 7546, | |
| "uable": 7547, | |
| "Ġmouse": 7548, | |
| "rovers": 7549, | |
| "ensity": 7550, | |
| "æ": 7551, | |
| "ĠGreg": 7552, | |
| "real": 7553, | |
| "Ġshake": 7554, | |
| "Ġextended": 7555, | |
| "ĠSwedish": 7556, | |
| "hew": 7557, | |
| "ĠWalk": 7558, | |
| "Ġstones": 7559, | |
| "Ġhealthy": 7560, | |
| "ĠMarc": 7561, | |
| "aska": 7562, | |
| "ĠColumbia": 7563, | |
| "Ġtoile": 7564, | |
| "Ġalbums": 7565, | |
| "Ġ£": 7566, | |
| "ĠDisney": 7567, | |
| "Ġgrace": 7568, | |
| "rim": 7569, | |
| "ĠSO": 7570, | |
| "Ġgenus": 7571, | |
| "hings": 7572, | |
| "ondisse": 7573, | |
| "Ġaffair": 7574, | |
| "ĠSteven": 7575, | |
| "Fin": 7576, | |
| "Ġnick": 7577, | |
| "Ġinjury": 7578, | |
| "Ġbul": 7579, | |
| "ĠAD": 7580, | |
| "bec": 7581, | |
| "othy": 7582, | |
| "Ġinterf": 7583, | |
| "Ġpractical": 7584, | |
| "Ġmunicipal": 7585, | |
| "esc": 7586, | |
| "Ġnuts": 7587, | |
| "otte": 7588, | |
| "Ġjumped": 7589, | |
| "rane": 7590, | |
| "Brother": 7591, | |
| "Ġsan": 7592, | |
| "Ġsang": 7593, | |
| "ARD": 7594, | |
| "ĠMichigan": 7595, | |
| "aria": 7596, | |
| "Ġthrill": 7597, | |
| "ĠInc": 7598, | |
| "lad": 7599, | |
| "was": 7600, | |
| "Ġsquad": 7601, | |
| "Ġshopping": 7602, | |
| "ington": 7603, | |
| "Baby": 7604, | |
| "ked": 7605, | |
| "ĠPublic": 7606, | |
| "Ġfacts": 7607, | |
| "Ġbranches": 7608, | |
| "Ġarranged": 7609, | |
| "Ġloan": 7610, | |
| "ILL": 7611, | |
| "Ġmirror": 7612, | |
| "Ġracing": 7613, | |
| "aughing": 7614, | |
| "ĠMassachusetts": 7615, | |
| "ĠChi": 7616, | |
| "isms": 7617, | |
| "ĠBrazilian": 7618, | |
| "Ġinspect": 7619, | |
| "Ġconstitution": 7620, | |
| "long": 7621, | |
| "Ġanger": 7622, | |
| "raine": 7623, | |
| "Ġsites": 7624, | |
| "ĠPolice": 7625, | |
| "Ġbanks": 7626, | |
| "Ġpilot": 7627, | |
| "erences": 7628, | |
| "Ġdiscussion": 7629, | |
| "rete": 7630, | |
| "utor": 7631, | |
| "Ġwidely": 7632, | |
| "Cha": 7633, | |
| "cow": 7634, | |
| "five": 7635, | |
| "owing": 7636, | |
| "ĠWed": 7637, | |
| "Ġglasses": 7638, | |
| "ĠTownship": 7639, | |
| "ĠNa": 7640, | |
| "Ġfactor": 7641, | |
| "Ġconfidence": 7642, | |
| "ĠPhiladelphia": 7643, | |
| "ĠPoland": 7644, | |
| "itter": 7645, | |
| "Ġdude": 7646, | |
| "ĠFa": 7647, | |
| "ĠJess": 7648, | |
| "Ġspr": 7649, | |
| "Ġaffairs": 7650, | |
| "nal": 7651, | |
| "Ġcompar": 7652, | |
| "Ġalleg": 7653, | |
| "Ġevolution": 7654, | |
| "ô": 7655, | |
| "arah": 7656, | |
| "ĠAtt": 7657, | |
| "ederation": 7658, | |
| "Ge": 7659, | |
| "Ġselect": 7660, | |
| "Ġgathered": 7661, | |
| "Ġinstruct": 7662, | |
| "Ġsteam": 7663, | |
| "Ġdifficulty": 7664, | |
| "Ġsurrounded": 7665, | |
| "Dear": 7666, | |
| "eline": 7667, | |
| "ĠKa": 7668, | |
| "reck": 7669, | |
| "ĠRadio": 7670, | |
| "ĠDave": 7671, | |
| "inder": 7672, | |
| "cho": 7673, | |
| "Ġassign": 7674, | |
| "Ġprovides": 7675, | |
| "ĠPers": 7676, | |
| "western": 7677, | |
| "ĠBrian": 7678, | |
| "ĠUP": 7679, | |
| "Ġchildhood": 7680, | |
| "Ġconfused": 7681, | |
| "ĠMcC": 7682, | |
| "ni": 7683, | |
| "Ġchecked": 7684, | |
| "ĠOxford": 7685, | |
| "TA": 7686, | |
| "Ġintelligence": 7687, | |
| "hab": 7688, | |
| "Ġhi": 7689, | |
| "Ġknees": 7690, | |
| "ĠSystem": 7691, | |
| "ĠIra": 7692, | |
| "ĠWHAT": 7693, | |
| "Ġwitch": 7694, | |
| "Ġlion": 7695, | |
| "Ġgrade": 7696, | |
| "Ġsubjects": 7697, | |
| "Int": 7698, | |
| "race": 7699, | |
| "Ġcrap": 7700, | |
| "Ġindu": 7701, | |
| "Ġitems": 7702, | |
| "irus": 7703, | |
| "Ġimple": 7704, | |
| "Ġsmiling": 7705, | |
| "Ġrising": 7706, | |
| "Goodbye": 7707, | |
| "Ġedition": 7708, | |
| "Ġexecutive": 7709, | |
| "ĠTeam": 7710, | |
| "berry": 7711, | |
| "Ġprofession": 7712, | |
| "ĠLook": 7713, | |
| "Ġfans": 7714, | |
| "Ġfigured": 7715, | |
| "ilton": 7716, | |
| "ĠAR": 7717, | |
| "Ġputs": 7718, | |
| "Ġvictims": 7719, | |
| "While": 7720, | |
| "ĠOb": 7721, | |
| "Ġpoly": 7722, | |
| "ĠRich": 7723, | |
| "Ġcollap": 7724, | |
| "ĠSav": 7725, | |
| "ulpt": 7726, | |
| "Ġrib": 7727, | |
| "Ġloyal": 7728, | |
| "Ġprojects": 7729, | |
| "ĠSupreme": 7730, | |
| "Ġslide": 7731, | |
| "Absolutely": 7732, | |
| "Ġtip": 7733, | |
| "ĠARE": 7734, | |
| "Ġdecisions": 7735, | |
| "Ġurban": 7736, | |
| "ĠBrad": 7737, | |
| "Ġissued": 7738, | |
| "ĠWilson": 7739, | |
| "Ġdemonstr": 7740, | |
| "eness": 7741, | |
| "ĠLi": 7742, | |
| "Ġing": 7743, | |
| "Ġremove": 7744, | |
| "Ġdepth": 7745, | |
| "Ġescaped": 7746, | |
| "ĠâĢĶ": 7747, | |
| "Ġsupper": 7748, | |
| "Ġcommunication": 7749, | |
| "ĠStephen": 7750, | |
| "ĠFire": 7751, | |
| "Ġ+": 7752, | |
| "irk": 7753, | |
| "ordan": 7754, | |
| "IND": 7755, | |
| "Ġpossibility": 7756, | |
| "ĠKh": 7757, | |
| "ĠThus": 7758, | |
| "Ġviews": 7759, | |
| "ropolitan": 7760, | |
| "irds": 7761, | |
| "Ġindependence": 7762, | |
| "Ġknocked": 7763, | |
| "Ġcovers": 7764, | |
| "azed": 7765, | |
| "Ġservant": 7766, | |
| "Sam": 7767, | |
| "pite": 7768, | |
| "Ġdefense": 7769, | |
| "Ġterrif": 7770, | |
| "eable": 7771, | |
| "Ġinjured": 7772, | |
| "Ġreviews": 7773, | |
| "Ġtow": 7774, | |
| "THAT": 7775, | |
| "Check": 7776, | |
| "Ġrush": 7777, | |
| "ĠNever": 7778, | |
| "Ġplastic": 7779, | |
| "Ġgranted": 7780, | |
| "ĠBow": 7781, | |
| "Ġsooner": 7782, | |
| "aks": 7783, | |
| "Ġstarring": 7784, | |
| "ĠLA": 7785, | |
| "ographer": 7786, | |
| "iri": 7787, | |
| "uesday": 7788, | |
| "Ġcommunities": 7789, | |
| "'.": 7790, | |
| "erable": 7791, | |
| "Ġyo": 7792, | |
| "Ġpiss": 7793, | |
| "Ġlap": 7794, | |
| "ollowing": 7795, | |
| "Ġbegun": 7796, | |
| "Pre": 7797, | |
| "alls": 7798, | |
| "igg": 7799, | |
| "Ġheaded": 7800, | |
| "ĠBetty": 7801, | |
| "uled": 7802, | |
| "Ġflash": 7803, | |
| "Ġdawn": 7804, | |
| "Ġtries": 7805, | |
| "Ġreduced": 7806, | |
| "non": 7807, | |
| "pass": 7808, | |
| "ĠScience": 7809, | |
| "ĠCD": 7810, | |
| "Ġexha": 7811, | |
| "icking": 7812, | |
| "eek": 7813, | |
| "Happy": 7814, | |
| "ĠCoast": 7815, | |
| "ĠCard": 7816, | |
| "ĠHay": 7817, | |
| "ĠRel": 7818, | |
| "Ġbeating": 7819, | |
| "Ġfairy": 7820, | |
| "ourse": 7821, | |
| "po": 7822, | |
| "Ġreturning": 7823, | |
| "án": 7824, | |
| "SC": 7825, | |
| "Ġawards": 7826, | |
| "Ġsed": 7827, | |
| "ĠCz": 7828, | |
| "ĠGame": 7829, | |
| "umin": 7830, | |
| "Ġmoments": 7831, | |
| "Ġbesides": 7832, | |
| "ĠAk": 7833, | |
| "Ġcontem": 7834, | |
| "Ġmodels": 7835, | |
| "Ġclaims": 7836, | |
| "onents": 7837, | |
| "Ġ*\"": 7838, | |
| "chi": 7839, | |
| "Ġletting": 7840, | |
| "ĠJews": 7841, | |
| "Captain": 7842, | |
| "eel": 7843, | |
| "Ġprepare": 7844, | |
| "ĠMargaret": 7845, | |
| "TO": 7846, | |
| "mouth": 7847, | |
| "ĠBBC": 7848, | |
| "Ġadministration": 7849, | |
| "ĠSher": 7850, | |
| "Ow": 7851, | |
| "uate": 7852, | |
| "atically": 7853, | |
| "ĠWhe": 7854, | |
| "Ġcharged": 7855, | |
| "</": 7856, | |
| "Sha": 7857, | |
| "ĠNi": 7858, | |
| "ccer": 7859, | |
| "Ġheavily": 7860, | |
| "ĠInternet": 7861, | |
| "gram": 7862, | |
| "Ġnecessarily": 7863, | |
| "elia": 7864, | |
| "Ġec": 7865, | |
| "Ġfrag": 7866, | |
| "rons": 7867, | |
| "ĠPot": 7868, | |
| "iner": 7869, | |
| "Ġevident": 7870, | |
| "ĠPolish": 7871, | |
| "Ġchairman": 7872, | |
| "Ġdeck": 7873, | |
| "Ġsecretary": 7874, | |
| "Ġpul": 7875, | |
| "Ġdiagn": 7876, | |
| "ĠVill": 7877, | |
| "Ġuncom": 7878, | |
| "Ġoccas": 7879, | |
| "etime": 7880, | |
| "Ġdriven": 7881, | |
| "ĠForm": 7882, | |
| "Ġparliament": 7883, | |
| "Ġforb": 7884, | |
| "Ġpersu": 7885, | |
| "Ġprovin": 7886, | |
| "Ġceremony": 7887, | |
| "Better": 7888, | |
| "Ġdumb": 7889, | |
| "ierre": 7890, | |
| "Ġillness": 7891, | |
| "Ġfoolish": 7892, | |
| "Ġtoy": 7893, | |
| "ĠTop": 7894, | |
| "class": 7895, | |
| "Ġpoetry": 7896, | |
| "cript": 7897, | |
| "ĠConstitution": 7898, | |
| "Ġsust": 7899, | |
| "Ġashamed": 7900, | |
| "Ġimpression": 7901, | |
| "Ġ\"âĻª\"": 7902, | |
| "onym": 7903, | |
| "ĠWinter": 7904, | |
| "Ġstrict": 7905, | |
| "Ġsplendid": 7906, | |
| "itage": 7907, | |
| "Ġcollabor": 7908, | |
| "Ġfiction": 7909, | |
| "osity": 7910, | |
| "Ġslave": 7911, | |
| "Ġspiritual": 7912, | |
| "Ġextent": 7913, | |
| "Ġawake": 7914, | |
| "mers": 7915, | |
| "Ġseparated": 7916, | |
| "alo": 7917, | |
| "Ġsorrow": 7918, | |
| "ĠStone": 7919, | |
| "Ġrecon": 7920, | |
| "Ġformal": 7921, | |
| "Ġreplace": 7922, | |
| "III": 7923, | |
| "ĠStation": 7924, | |
| "antry": 7925, | |
| "Ġfriendship": 7926, | |
| "ĠLincoln": 7927, | |
| "Both": 7928, | |
| "ĠKn": 7929, | |
| "Ġconfirmed": 7930, | |
| "icky": 7931, | |
| "Ġunlike": 7932, | |
| "cules": 7933, | |
| "Ġdomin": 7934, | |
| "mann": 7935, | |
| "Ġpersonally": 7936, | |
| "nesday": 7937, | |
| "Ġsympt": 7938, | |
| "ĠTechn": 7939, | |
| "ĠMayor": 7940, | |
| "Col": 7941, | |
| "pers": 7942, | |
| "Ġtheatre": 7943, | |
| "ĠToday": 7944, | |
| "ĠOt": 7945, | |
| "nedy": 7946, | |
| "ĠGuard": 7947, | |
| "Ġneighbour": 7948, | |
| "Ġastron": 7949, | |
| "ifer": 7950, | |
| "Ġwondered": 7951, | |
| "Ġideal": 7952, | |
| "Ġtorn": 7953, | |
| "Ġexhib": 7954, | |
| "Ġfox": 7955, | |
| "ĠWild": 7956, | |
| "ouri": 7957, | |
| "Ġshortly": 7958, | |
| "Ġcustomers": 7959, | |
| "==": 7960, | |
| "Ġpor": 7961, | |
| "âĢİ": 7962, | |
| "Ġmassive": 7963, | |
| "Ġprinciple": 7964, | |
| "ifts": 7965, | |
| "iped": 7966, | |
| "Ġdefined": 7967, | |
| "Ġchamber": 7968, | |
| "Ġdaughters": 7969, | |
| "ĠSid": 7970, | |
| "umps": 7971, | |
| "Ġminds": 7972, | |
| "Ġtreasure": 7973, | |
| "Ġdeeply": 7974, | |
| "Ġwra": 7975, | |
| "owa": 7976, | |
| "Hang": 7977, | |
| "ĠAli": 7978, | |
| "Ġ-\"": 7979, | |
| "ĠPa": 7980, | |
| "IG": 7981, | |
| "SP": 7982, | |
| "Ġchoo": 7983, | |
| "Ġending": 7984, | |
| "Ġregist": 7985, | |
| "FL": 7986, | |
| "equ": 7987, | |
| "Ġfasc": 7988, | |
| "Ġnest": 7989, | |
| "Ġstim": 7990, | |
| "Stand": 7991, | |
| "Ġboats": 7992, | |
| "Ġdipl": 7993, | |
| "Ġlifted": 7994, | |
| "door": 7995, | |
| "Ġalcohol": 7996, | |
| "Ġopposed": 7997, | |
| "ĠCastle": 7998, | |
| "ĠGro": 7999, | |
| "Ġcontext": 8000, | |
| "Ġkilomet": 8001, | |
| "Ġfestival": 8002, | |
| "Ġmachines": 8003, | |
| "itled": 8004, | |
| "ĠLau": 8005, | |
| "ĠLieutenant": 8006, | |
| "ĠCON": 8007, | |
| "ĠBal": 8008, | |
| "Ġpron": 8009, | |
| "intend": 8010, | |
| "Ġpresidential": 8011, | |
| "bu": 8012, | |
| "Their": 8013, | |
| "ĠOUT": 8014, | |
| "obby": 8015, | |
| "ailed": 8016, | |
| "Ġiniti": 8017, | |
| "Ġpassage": 8018, | |
| "Ġanxious": 8019, | |
| "ĠAle": 8020, | |
| "Ġappropriate": 8021, | |
| "ounce": 8022, | |
| "bro": 8023, | |
| "Ġlung": 8024, | |
| "ĠMot": 8025, | |
| "ĠRus": 8026, | |
| "Ġpir": 8027, | |
| "Ġgrateful": 8028, | |
| "Ġscheme": 8029, | |
| "allel": 8030, | |
| "Ġbass": 8031, | |
| "Ġenorm": 8032, | |
| "Ġleaf": 8033, | |
| "Ġalternative": 8034, | |
| "Find": 8035, | |
| "tery": 8036, | |
| "Ġpoem": 8037, | |
| "ĠChap": 8038, | |
| "Ġcats": 8039, | |
| "acon": 8040, | |
| "ĠGET": 8041, | |
| "Ġreckon": 8042, | |
| "ĠLewis": 8043, | |
| "\";": 8044, | |
| "Ġabsor": 8045, | |
| "Paul": 8046, | |
| "via": 8047, | |
| "urches": 8048, | |
| "Ġsolo": 8049, | |
| "Ġlover": 8050, | |
| "Ġstab": 8051, | |
| "ilding": 8052, | |
| "Ġnic": 8053, | |
| "enses": 8054, | |
| "Ġrivers": 8055, | |
| "Ġexisting": 8056, | |
| "Ġcops": 8057, | |
| "Ġnaturally": 8058, | |
| "Ġencoura": 8059, | |
| "Ġinspired": 8060, | |
| "ĠCorpor": 8061, | |
| "ĠRoger": 8062, | |
| "life": 8063, | |
| "hibit": 8064, | |
| "Ġengineer": 8065, | |
| "Ġfrequently": 8066, | |
| "ĠTokyo": 8067, | |
| "LES": 8068, | |
| "rive": 8069, | |
| "ĠBart": 8070, | |
| "agger": 8071, | |
| "ĠJustice": 8072, | |
| "Ġassociation": 8073, | |
| "Ġjournalist": 8074, | |
| "yard": 8075, | |
| "Ġinner": 8076, | |
| "hatt": 8077, | |
| "ĠDid": 8078, | |
| "Ġcombined": 8079, | |
| "iders": 8080, | |
| "Ġindic": 8081, | |
| "Ġidentified": 8082, | |
| "Ġclimb": 8083, | |
| "Ġvotes": 8084, | |
| "ĠPost": 8085, | |
| "ĠRem": 8086, | |
| "ĠInf": 8087, | |
| "ĠUt": 8088, | |
| "Ġprisoner": 8089, | |
| "Ġworn": 8090, | |
| "Ġcolumn": 8091, | |
| "ã": 8092, | |
| "Ġneut": 8093, | |
| "ipper": 8094, | |
| "Ġoccupied": 8095, | |
| "rix": 8096, | |
| "ĠWel": 8097, | |
| "akers": 8098, | |
| "ucker": 8099, | |
| "adesh": 8100, | |
| "Ġclubs": 8101, | |
| "net": 8102, | |
| "ĠBrook": 8103, | |
| "ĠSeries": 8104, | |
| "ĠPict": 8105, | |
| "ĠEric": 8106, | |
| "erg": 8107, | |
| "Ġconvinced": 8108, | |
| "Ġimplement": 8109, | |
| "organ": 8110, | |
| "ĠGram": 8111, | |
| "Ten": 8112, | |
| "Ġvel": 8113, | |
| "ĠFle": 8114, | |
| "rous": 8115, | |
| "Ġthrowing": 8116, | |
| "ĠAnton": 8117, | |
| "Ġtickets": 8118, | |
| "Ġepisodes": 8119, | |
| "ĠOur": 8120, | |
| "Ġprincipal": 8121, | |
| "Ġthir": 8122, | |
| "usting": 8123, | |
| "Ġinvented": 8124, | |
| "Ġoxygen": 8125, | |
| "Ġuser": 8126, | |
| "Ġreply": 8127, | |
| "ratulations": 8128, | |
| "Ġliterally": 8129, | |
| "ĠMoscow": 8130, | |
| "ĠPerson": 8131, | |
| "unts": 8132, | |
| "Ġcombination": 8133, | |
| "ĠNap": 8134, | |
| "erent": 8135, | |
| "Ġcontrovers": 8136, | |
| "oos": 8137, | |
| "ĠDown": 8138, | |
| "Ġsnake": 8139, | |
| "Ġ¶": 8140, | |
| "Ġpitch": 8141, | |
| "Ġunha": 8142, | |
| "Ġgreatly": 8143, | |
| "Ġattached": 8144, | |
| "ĠSpring": 8145, | |
| "outheast": 8146, | |
| "Without": 8147, | |
| "ennes": 8148, | |
| "Ġhorror": 8149, | |
| "ĠCommon": 8150, | |
| "Ġsatisfied": 8151, | |
| "uv": 8152, | |
| "ĠElect": 8153, | |
| "ĠBridge": 8154, | |
| "Ġcrisis": 8155, | |
| "mont": 8156, | |
| "Ġdating": 8157, | |
| "Ġjury": 8158, | |
| "Ġpersonality": 8159, | |
| "Ġscholars": 8160, | |
| "ĠMarie": 8161, | |
| "Ġvari": 8162, | |
| "Ġshift": 8163, | |
| "izz": 8164, | |
| "Ġcomputers": 8165, | |
| "rows": 8166, | |
| "ĠDaddy": 8167, | |
| "/>": 8168, | |
| "Ġmal": 8169, | |
| "Ġimages": 8170, | |
| "ĠAirport": 8171, | |
| "Ġdates": 8172, | |
| "Ġtransm": 8173, | |
| "Poor": 8174, | |
| "Ġviolent": 8175, | |
| "Ġsoup": 8176, | |
| "hh": 8177, | |
| "athan": 8178, | |
| "ĠSara": 8179, | |
| "Ġmere": 8180, | |
| "Ġincredible": 8181, | |
| "fit": 8182, | |
| "Ġpositions": 8183, | |
| "pol": 8184, | |
| "Ġinsect": 8185, | |
| "Ġgrav": 8186, | |
| "Ġengineering": 8187, | |
| "Ġregarded": 8188, | |
| "Ġmystery": 8189, | |
| "Ġhes": 8190, | |
| "Ġstraw": 8191, | |
| "Ġacquired": 8192, | |
| "Ġexplanation": 8193, | |
| "Ġorganizations": 8194, | |
| "ĠRh": 8195, | |
| "Ġpunishment": 8196, | |
| "De": 8197, | |
| "ĠUs": 8198, | |
| "Ask": 8199, | |
| "Ġtransferred": 8200, | |
| "Ġnaked": 8201, | |
| "Ġsevere": 8202, | |
| "Ġsurre": 8203, | |
| "Ġcooper": 8204, | |
| "umph": 8205, | |
| "Ġprecious": 8206, | |
| "Ġrescue": 8207, | |
| "ĠBat": 8208, | |
| "ĠHard": 8209, | |
| "lets": 8210, | |
| "Ġalpha": 8211, | |
| "Ġsculpt": 8212, | |
| "Ġregional": 8213, | |
| "Ġshower": 8214, | |
| "Ġstops": 8215, | |
| "Ġprecise": 8216, | |
| "Ġadmitted": 8217, | |
| "ordinary": 8218, | |
| "Ġtests": 8219, | |
| "ĠEnd": 8220, | |
| "ĠOrder": 8221, | |
| "ĠBeth": 8222, | |
| "ciences": 8223, | |
| "ĠClint": 8224, | |
| "uct": 8225, | |
| "Ġmama": 8226, | |
| "Ġinher": 8227, | |
| "Ġintellect": 8228, | |
| "cription": 8229, | |
| "ĠCab": 8230, | |
| "Ġhoped": 8231, | |
| "SO": 8232, | |
| "jan": 8233, | |
| "Ġarticles": 8234, | |
| "Ġadventure": 8235, | |
| "des": 8236, | |
| "Ġbeings": 8237, | |
| "Ġrope": 8238, | |
| "Ġbold": 8239, | |
| "Ġstable": 8240, | |
| "Ġpicking": 8241, | |
| "Ġvideos": 8242, | |
| "Ġ{": 8243, | |
| "Ġmusician": 8244, | |
| "ĠBrand": 8245, | |
| "atoes": 8246, | |
| "ĠKy": 8247, | |
| "Ġpurple": 8248, | |
| "ĠPlan": 8249, | |
| "uer": 8250, | |
| "erick": 8251, | |
| "Ġinches": 8252, | |
| "General": 8253, | |
| "ĠTour": 8254, | |
| "Tomorrow": 8255, | |
| "cont": 8256, | |
| "Ġhurts": 8257, | |
| "bits": 8258, | |
| "music": 8259, | |
| "Ġpump": 8260, | |
| "emon": 8261, | |
| "Ġdescription": 8262, | |
| "rum": 8263, | |
| "Ġfever": 8264, | |
| "ĠIndians": 8265, | |
| "BA": 8266, | |
| "Ġhunt": 8267, | |
| "bage": 8268, | |
| "ĠGreece": 8269, | |
| "Illustration": 8270, | |
| "ĠIraq": 8271, | |
| "press": 8272, | |
| "Ġpour": 8273, | |
| "note": 8274, | |
| "ĠHur": 8275, | |
| "THER": 8276, | |
| "Ġrapidly": 8277, | |
| "Ġrice": 8278, | |
| "ĠVar": 8279, | |
| "ugg": 8280, | |
| "Ġofficials": 8281, | |
| "Ġwhispered": 8282, | |
| "usive": 8283, | |
| "Ġthorough": 8284, | |
| "ĠMah": 8285, | |
| "Ġswall": 8286, | |
| "Ġarrive": 8287, | |
| "Ġbark": 8288, | |
| "Ġpie": 8289, | |
| "Ġpasses": 8290, | |
| "Ġdiscovery": 8291, | |
| "Ġintention": 8292, | |
| "ĠTest": 8293, | |
| "ĠKennedy": 8294, | |
| "ĠJacob": 8295, | |
| "oore": 8296, | |
| "ĠRoy": 8297, | |
| "Ġprosec": 8298, | |
| "Ġoperated": 8299, | |
| "ui": 8300, | |
| "ĠGa": 8301, | |
| "Ġdecre": 8302, | |
| "Ġvaluable": 8303, | |
| "Ġtypical": 8304, | |
| "ĠBack": 8305, | |
| "ĠProdu": 8306, | |
| "Ġphen": 8307, | |
| "Ġdownstairs": 8308, | |
| "Ġrestrict": 8309, | |
| "Ġtechnical": 8310, | |
| "bie": 8311, | |
| "Ġguide": 8312, | |
| "Ġtank": 8313, | |
| "lly": 8314, | |
| "Ġlately": 8315, | |
| "ĠHospital": 8316, | |
| "mag": 8317, | |
| "ĠSn": 8318, | |
| "ĠBir": 8319, | |
| "ĠCentre": 8320, | |
| "Ġbowl": 8321, | |
| "Ġnations": 8322, | |
| "ĠSever": 8323, | |
| "ĠPR": 8324, | |
| "Ġdece": 8325, | |
| "Ġillegal": 8326, | |
| "Ġcontrolled": 8327, | |
| "Ġrode": 8328, | |
| "Ġerror": 8329, | |
| "ĠKentucky": 8330, | |
| "tical": 8331, | |
| "Ġpup": 8332, | |
| "Ġkinda": 8333, | |
| "Ġproperties": 8334, | |
| "Ġwishes": 8335, | |
| "Ġbacter": 8336, | |
| "Ġhm": 8337, | |
| "Ġvisual": 8338, | |
| "ĠColor": 8339, | |
| "Ġwicked": 8340, | |
| "Ġment": 8341, | |
| "iev": 8342, | |
| "Congratulations": 8343, | |
| "agers": 8344, | |
| "avid": 8345, | |
| "Ġinitially": 8346, | |
| "Must": 8347, | |
| "Ġnowhere": 8348, | |
| "Ġmonkey": 8349, | |
| "END": 8350, | |
| "ounced": 8351, | |
| "Ġpermanent": 8352, | |
| "Grand": 8353, | |
| "Ġcausing": 8354, | |
| "ĠMatt": 8355, | |
| "ategy": 8356, | |
| "Ġrefle": 8357, | |
| "Ġbond": 8358, | |
| "Ġfaint": 8359, | |
| "Ġvice": 8360, | |
| "Ġsyn": 8361, | |
| "Ġportion": 8362, | |
| "Ġfulf": 8363, | |
| "Ġnort": 8364, | |
| "lete": 8365, | |
| "adies": 8366, | |
| "Ġpulling": 8367, | |
| "Ġbike": 8368, | |
| "?'": 8369, | |
| "Ġcreatures": 8370, | |
| "Ġtesting": 8371, | |
| "Ġscarce": 8372, | |
| "EO": 8373, | |
| "Ġspark": 8374, | |
| "ĠStory": 8375, | |
| "erted": 8376, | |
| "Ġrevenge": 8377, | |
| "Ġstrategy": 8378, | |
| "Ġages": 8379, | |
| "Ġdisturb": 8380, | |
| "acles": 8381, | |
| "Ġexpecting": 8382, | |
| "ĠAlbert": 8383, | |
| "Ġtool": 8384, | |
| "Ġasks": 8385, | |
| "ĠBalt": 8386, | |
| "ndar": 8387, | |
| "ĠAdd": 8388, | |
| "Ġexped": 8389, | |
| "Ġwins": 8390, | |
| "emet": 8391, | |
| "ques": 8392, | |
| "Ġannoy": 8393, | |
| "Ġresistance": 8394, | |
| "Ġabandoned": 8395, | |
| "Sim": 8396, | |
| "oration": 8397, | |
| "ĠThursday": 8398, | |
| "PP": 8399, | |
| "Red": 8400, | |
| "ĠHal": 8401, | |
| "Ġvillages": 8402, | |
| "Ġstepped": 8403, | |
| "ĠReddy": 8404, | |
| "Ġreign": 8405, | |
| "andal": 8406, | |
| "neath": 8407, | |
| "Ġimmig": 8408, | |
| "aa": 8409, | |
| "Ġacted": 8410, | |
| "Ġpromoted": 8411, | |
| "iÄĩ": 8412, | |
| "ĠOw": 8413, | |
| "Ġclin": 8414, | |
| "Ġmemories": 8415, | |
| "ĠGet": 8416, | |
| "Ġproport": 8417, | |
| "Ġdigital": 8418, | |
| "Ġthrone": 8419, | |
| "called": 8420, | |
| "ds": 8421, | |
| "fly": 8422, | |
| "zes": 8423, | |
| "Ġraces": 8424, | |
| "iah": 8425, | |
| "Ġconstitu": 8426, | |
| "earer": 8427, | |
| "ĠCzech": 8428, | |
| "ĠIce": 8429, | |
| "Ġcommander": 8430, | |
| "Ġdefinition": 8431, | |
| "Ġdiet": 8432, | |
| "rait": 8433, | |
| "Ġsheet": 8434, | |
| "ĠKevin": 8435, | |
| "Ġessentially": 8436, | |
| "Jo": 8437, | |
| "die": 8438, | |
| "Ġbron": 8439, | |
| "alem": 8440, | |
| "Ġprayer": 8441, | |
| "rose": 8442, | |
| "ĠFollowing": 8443, | |
| "orted": 8444, | |
| "ungle": 8445, | |
| "nold": 8446, | |
| "rang": 8447, | |
| "Ġequation": 8448, | |
| "Com": 8449, | |
| "uther": 8450, | |
| "pent": 8451, | |
| "Ġcore": 8452, | |
| "Ġincl": 8453, | |
| "Ġhug": 8454, | |
| "Ġdeveloping": 8455, | |
| "onto": 8456, | |
| "lock": 8457, | |
| "Ġ:": 8458, | |
| "Ġpi": 8459, | |
| "ĠBand": 8460, | |
| "arts": 8461, | |
| "hedral": 8462, | |
| "atures": 8463, | |
| "Ġreputation": 8464, | |
| "Ġskill": 8465, | |
| "Ġarchitecture": 8466, | |
| "ĠAnthony": 8467, | |
| "dney": 8468, | |
| "Ġbreathing": 8469, | |
| "Ġadministrative": 8470, | |
| "ĠJam": 8471, | |
| "ĠIV": 8472, | |
| "ĠBul": 8473, | |
| "ĠStat": 8474, | |
| "ĠFoundation": 8475, | |
| "resents": 8476, | |
| "ĠHistor": 8477, | |
| "Ġinternal": 8478, | |
| "ĠPo": 8479, | |
| "Ġalongside": 8480, | |
| "ĠHor": 8481, | |
| "Ġneat": 8482, | |
| "Ġassault": 8483, | |
| "Ġdisg": 8484, | |
| "Ġaccused": 8485, | |
| "Ġcycl": 8486, | |
| "Ġgarage": 8487, | |
| "Pretty": 8488, | |
| "Ġnarr": 8489, | |
| "otes": 8490, | |
| "Ġouter": 8491, | |
| "Ġsurvey": 8492, | |
| "Ġobst": 8493, | |
| "THING": 8494, | |
| "icit": 8495, | |
| "Ġholes": 8496, | |
| "DO": 8497, | |
| "Ġnap": 8498, | |
| "Ġabroad": 8499, | |
| "Ġcampus": 8500, | |
| "Ġabsolute": 8501, | |
| "Son": 8502, | |
| "ĠDer": 8503, | |
| "Ġeighteen": 8504, | |
| "Ġadapt": 8505, | |
| "Ġdomestic": 8506, | |
| "Ġphrase": 8507, | |
| "Ġanaly": 8508, | |
| "ĠGrant": 8509, | |
| "Ġkissed": 8510, | |
| "ĠLabour": 8511, | |
| "Ġliquid": 8512, | |
| "ghan": 8513, | |
| "ĠYeah": 8514, | |
| "itched": 8515, | |
| "Ġfed": 8516, | |
| "Ġfra": 8517, | |
| "stal": 8518, | |
| "ĠHoll": 8519, | |
| "unting": 8520, | |
| "Ġlessons": 8521, | |
| "lon": 8522, | |
| "pan": 8523, | |
| "ĠAustrian": 8524, | |
| "ĠLo": 8525, | |
| "ĠVice": 8526, | |
| "Ġ--\"": 8527, | |
| "nels": 8528, | |
| "Em": 8529, | |
| "icians": 8530, | |
| "Ġrelation": 8531, | |
| "Ġutter": 8532, | |
| "ĠYet": 8533, | |
| "isp": 8534, | |
| "ĠJay": 8535, | |
| "aga": 8536, | |
| "ensions": 8537, | |
| "prise": 8538, | |
| "ĠMuslim": 8539, | |
| "Ġhousing": 8540, | |
| "Ġrein": 8541, | |
| "Ġbelt": 8542, | |
| "Ġpassengers": 8543, | |
| "Ġdelivered": 8544, | |
| "Ġstroke": 8545, | |
| "Ġopposition": 8546, | |
| "phas": 8547, | |
| "Ġmaximum": 8548, | |
| "Te": 8549, | |
| "ĠÎ": 8550, | |
| "lder": 8551, | |
| "Ġconfident": 8552, | |
| "ĠChannel": 8553, | |
| "uster": 8554, | |
| "ĠMain": 8555, | |
| "Ġprotected": 8556, | |
| "ĠHit": 8557, | |
| "gines": 8558, | |
| "Ġrefers": 8559, | |
| "ĠMiller": 8560, | |
| "ĠJason": 8561, | |
| "Ġhoriz": 8562, | |
| "Ġcomposer": 8563, | |
| "Ġpossession": 8564, | |
| "Ġfellows": 8565, | |
| "Ġtoilet": 8566, | |
| "lav": 8567, | |
| "uy": 8568, | |
| "ĠTen": 8569, | |
| "Ġbrush": 8570, | |
| "Ġcarriage": 8571, | |
| "Ġmessages": 8572, | |
| "Ġgrandmother": 8573, | |
| "Ġdragon": 8574, | |
| "Ġwooden": 8575, | |
| "Ġstores": 8576, | |
| "Ġpipe": 8577, | |
| "Ġgenius": 8578, | |
| "cut": 8579, | |
| "san": 8580, | |
| "Ġisol": 8581, | |
| "Twenty": 8582, | |
| "ĠCareer": 8583, | |
| "None": 8584, | |
| "Ġtiss": 8585, | |
| "Ġfence": 8586, | |
| "ester": 8587, | |
| "Ġcraw": 8588, | |
| "Ġmerchant": 8589, | |
| "ĠVin": 8590, | |
| "Ġflows": 8591, | |
| "ddie": 8592, | |
| "Ġboots": 8593, | |
| "Ġelimin": 8594, | |
| "Ġexperienced": 8595, | |
| "Å¡": 8596, | |
| "Ġsought": 8597, | |
| "Ġversions": 8598, | |
| "Ġcycle": 8599, | |
| "kesp": 8600, | |
| "Ġsna": 8601, | |
| "Ġpurposes": 8602, | |
| "Until": 8603, | |
| "ggy": 8604, | |
| "ĠPrem": 8605, | |
| "glas": 8606, | |
| "Ġobtained": 8607, | |
| "Ġbags": 8608, | |
| "iki": 8609, | |
| "ĠTurkey": 8610, | |
| "Ġnonsense": 8611, | |
| "Ġlargely": 8612, | |
| "Ġpurs": 8613, | |
| "Ġphotos": 8614, | |
| "Ġleadership": 8615, | |
| "ĠConference": 8616, | |
| "ão": 8617, | |
| "than": 8618, | |
| "Ġooh": 8619, | |
| "ĠHERE": 8620, | |
| "ĠWeb": 8621, | |
| "Ġdedicated": 8622, | |
| "Cor": 8623, | |
| "Ġestimated": 8624, | |
| "ĠHeaven": 8625, | |
| "Music": 8626, | |
| "olas": 8627, | |
| "ĠClark": 8628, | |
| "INE": 8629, | |
| "Ġrepeat": 8630, | |
| "Ġsemi": 8631, | |
| "_.": 8632, | |
| "Ġfleet": 8633, | |
| "ĠHonor": 8634, | |
| "Ġnotable": 8635, | |
| "ardens": 8636, | |
| "ĠSpecial": 8637, | |
| "ĠPas": 8638, | |
| "uki": 8639, | |
| "Ġbenefits": 8640, | |
| "Ġmobile": 8641, | |
| "agle": 8642, | |
| "ĠMissouri": 8643, | |
| "Ġfacilities": 8644, | |
| "lan": 8645, | |
| "ĠTai": 8646, | |
| "ĠJUST": 8647, | |
| "Ġlasted": 8648, | |
| "Ġreduce": 8649, | |
| "teenth": 8650, | |
| "Ġappointment": 8651, | |
| "master": 8652, | |
| "aro": 8653, | |
| "ĠAL": 8654, | |
| "icial": 8655, | |
| "shit": 8656, | |
| "Ġzone": 8657, | |
| "ĠPhilip": 8658, | |
| "Ġathlet": 8659, | |
| "ĠTuesday": 8660, | |
| "ĠJordan": 8661, | |
| "Ġdepos": 8662, | |
| "Ġappearances": 8663, | |
| "Ġcave": 8664, | |
| "Ġworship": 8665, | |
| "Ġdat": 8666, | |
| "ĠHuman": 8667, | |
| "ibilities": 8668, | |
| "Ġdelicious": 8669, | |
| "ĠWas": 8670, | |
| "Ġwanting": 8671, | |
| "Ġexpressed": 8672, | |
| "Ġfiles": 8673, | |
| "Ġnickn": 8674, | |
| "rome": 8675, | |
| "Ġske": 8676, | |
| "OUGH": 8677, | |
| "keeper": 8678, | |
| "Ġ\"-": 8679, | |
| "Care": 8680, | |
| "hara": 8681, | |
| "Ġoption": 8682, | |
| "rac": 8683, | |
| "ands": 8684, | |
| "Ġwhoa": 8685, | |
| "Ġthreatened": 8686, | |
| "VD": 8687, | |
| "ĠFamily": 8688, | |
| "Ġwheels": 8689, | |
| "theless": 8690, | |
| "Ġfo": 8691, | |
| "Ġexists": 8692, | |
| "rett": 8693, | |
| "Ġcritics": 8694, | |
| "Ġdocuments": 8695, | |
| "eller": 8696, | |
| "akh": 8697, | |
| "Ġdinosaur": 8698, | |
| "Ġelectricity": 8699, | |
| "Ġentry": 8700, | |
| "Ġsweetheart": 8701, | |
| "ecess": 8702, | |
| "Ġupd": 8703, | |
| "ragon": 8704, | |
| "Ġexperiences": 8705, | |
| "â": 8706, | |
| "ĠGab": 8707, | |
| "Ġsixteen": 8708, | |
| "Ġbreathe": 8709, | |
| "Ġrural": 8710, | |
| "Ġdistant": 8711, | |
| "Ġyoungest": 8712, | |
| "Ġrepresents": 8713, | |
| "Ġinsult": 8714, | |
| "Bar": 8715, | |
| "Cut": 8716, | |
| "ules": 8717, | |
| "Ġfounder": 8718, | |
| "ĠDevelop": 8719, | |
| "Quick": 8720, | |
| "ĠPy": 8721, | |
| "Ġidentify": 8722, | |
| "Ġ||": 8723, | |
| "kespeare": 8724, | |
| "Ġdetect": 8725, | |
| "ĠGeography": 8726, | |
| "Ġsurvived": 8727, | |
| "Ġsequence": 8728, | |
| "Besides": 8729, | |
| "hai": 8730, | |
| "ĠBishop": 8731, | |
| "Ġslipped": 8732, | |
| "Ġamongst": 8733, | |
| "Ġbehavi": 8734, | |
| "Ġrelatively": 8735, | |
| "Ġlatest": 8736, | |
| "ĠTan": 8737, | |
| "Es": 8738, | |
| "Ġengines": 8739, | |
| "zing": 8740, | |
| "Ġunconscious": 8741, | |
| "emetery": 8742, | |
| "Ġhits": 8743, | |
| "ĠTurn": 8744, | |
| "Ġmargin": 8745, | |
| "Ġcattle": 8746, | |
| "Ġsav": 8747, | |
| "Pol": 8748, | |
| "Ġoffers": 8749, | |
| "Ġreprodu": 8750, | |
| "ĠRyan": 8751, | |
| "Ġcontrast": 8752, | |
| "Ġheading": 8753, | |
| "Ġfourteen": 8754, | |
| "Ġvolcan": 8755, | |
| "Ġinch": 8756, | |
| "Ġconven": 8757, | |
| "ĠAny": 8758, | |
| "Although": 8759, | |
| "ĠGermans": 8760, | |
| "ĠMorgan": 8761, | |
| "Jim": 8762, | |
| "Ġfab": 8763, | |
| "Bel": 8764, | |
| "Ġspirits": 8765, | |
| "endment": 8766, | |
| "Ġtrap": 8767, | |
| "ĠRailway": 8768, | |
| "Ġgalax": 8769, | |
| "orious": 8770, | |
| "Ġchop": 8771, | |
| "Total": 8772, | |
| "Ġinstinct": 8773, | |
| "Ġsingles": 8774, | |
| "Ġusers": 8775, | |
| "ienna": 8776, | |
| "Ġdollar": 8777, | |
| "Ġenvironmental": 8778, | |
| "Ġmig": 8779, | |
| "fire": 8780, | |
| "Also": 8781, | |
| "SH": 8782, | |
| "Ġsession": 8783, | |
| ");": 8784, | |
| "ĠBud": 8785, | |
| "ĠCarter": 8786, | |
| "Ġclouds": 8787, | |
| "ĠAnna": 8788, | |
| "Ġfaced": 8789, | |
| "Ġtoast": 8790, | |
| "Ġnegoti": 8791, | |
| "Ġshouted": 8792, | |
| ".--": 8793, | |
| "Ġholy": 8794, | |
| "ĠFree": 8795, | |
| "Ġcrimes": 8796, | |
| "Frank": 8797, | |
| "Ġtent": 8798, | |
| "nda": 8799, | |
| "ĠArm": 8800, | |
| "ribly": 8801, | |
| "ĠCir": 8802, | |
| "Ġuseless": 8803, | |
| "Ġinstitution": 8804, | |
| "Ġreaching": 8805, | |
| "Ġkeen": 8806, | |
| "scape": 8807, | |
| "Ġinvolve": 8808, | |
| "ĠDie": 8809, | |
| "Ġshoe": 8810, | |
| "Ġdivorce": 8811, | |
| "tainment": 8812, | |
| "ĠDonald": 8813, | |
| "ĠWednesday": 8814, | |
| "Ġmighty": 8815, | |
| "Ġpec": 8816, | |
| "Ġspons": 8817, | |
| "pool": 8818, | |
| "Ġtale": 8819, | |
| "ĠSuch": 8820, | |
| "oogle": 8821, | |
| "Ġworldwide": 8822, | |
| "Ġemphas": 8823, | |
| "Ġdial": 8824, | |
| "Ġexplore": 8825, | |
| "Ġdiscipl": 8826, | |
| "AF": 8827, | |
| "Ġpartly": 8828, | |
| "Ġslip": 8829, | |
| "Ġcapture": 8830, | |
| "Ġruined": 8831, | |
| "Ġselection": 8832, | |
| "Ġtypically": 8833, | |
| "ĠLIKE": 8834, | |
| "esse": 8835, | |
| "ogy": 8836, | |
| "Ġsubt": 8837, | |
| "Ġlanded": 8838, | |
| "Laughter": 8839, | |
| "Ġfoss": 8840, | |
| "Ġagency": 8841, | |
| "Ġconducted": 8842, | |
| "Ġmos": 8843, | |
| "ĠSix": 8844, | |
| "Ġrival": 8845, | |
| "ĠLouisiana": 8846, | |
| "ggie": 8847, | |
| "Ġruin": 8848, | |
| "Ġacademic": 8849, | |
| "Ġcoc": 8850, | |
| "Ġmeetings": 8851, | |
| "Ġbent": 8852, | |
| "Ġfrank": 8853, | |
| "Ġcabin": 8854, | |
| "itals": 8855, | |
| "ĠMun": 8856, | |
| "ĠMunicip": 8857, | |
| "Sw": 8858, | |
| "found": 8859, | |
| "oty": 8860, | |
| "irts": 8861, | |
| "two": 8862, | |
| "Ġloving": 8863, | |
| "INK": 8864, | |
| "Ġtalent": 8865, | |
| "ĠSom": 8866, | |
| "abad": 8867, | |
| "Ġdifferences": 8868, | |
| "Ġhated": 8869, | |
| "Ġexcit": 8870, | |
| "Ġrabbit": 8871, | |
| "Ġequals": 8872, | |
| "ĠHug": 8873, | |
| "ĠGen": 8874, | |
| "ĠGordon": 8875, | |
| "going": 8876, | |
| "Ġfactors": 8877, | |
| "Ġrolled": 8878, | |
| "Ġfake": 8879, | |
| "Ġmovements": 8880, | |
| "ĠPeace": 8881, | |
| "Ġjudgment": 8882, | |
| "Ġpardon": 8883, | |
| "oody": 8884, | |
| "Ġannounce": 8885, | |
| "Ġchapter": 8886, | |
| "ĠRoll": 8887, | |
| "itated": 8888, | |
| "CO": 8889, | |
| "amma": 8890, | |
| "ĠWend": 8891, | |
| "Ġalarm": 8892, | |
| "ĠJoy": 8893, | |
| "ĠWolf": 8894, | |
| "Ġfocused": 8895, | |
| "Ġtempt": 8896, | |
| "Ġundert": 8897, | |
| "ĠRIGHT": 8898, | |
| "Ġlean": 8899, | |
| "Ġpresents": 8900, | |
| "Ġbend": 8901, | |
| "Ġflesh": 8902, | |
| "Ġrefuse": 8903, | |
| "umbling": 8904, | |
| "ĠId": 8905, | |
| "ĠMas": 8906, | |
| "ĠWork": 8907, | |
| "Ġserves": 8908, | |
| "ĠSydney": 8909, | |
| "Ġextraordinary": 8910, | |
| "Ġfantastic": 8911, | |
| "ĠBurn": 8912, | |
| "Ġunex": 8913, | |
| "pected": 8914, | |
| "Ġbarrel": 8915, | |
| "Ġmysterious": 8916, | |
| "Doctor": 8917, | |
| "Ġprimarily": 8918, | |
| "Ġphase": 8919, | |
| "Ġtennis": 8920, | |
| "Ġslaves": 8921, | |
| "Kill": 8922, | |
| "oard": 8923, | |
| "state": 8924, | |
| "ĠRight": 8925, | |
| "ĠIndepend": 8926, | |
| "Ġprofit": 8927, | |
| "Ġmerged": 8928, | |
| "ĠHockey": 8929, | |
| "Ġdebate": 8930, | |
| "rem": 8931, | |
| "Ġbot": 8932, | |
| "ogan": 8933, | |
| "Ġbands": 8934, | |
| "Ġconclusion": 8935, | |
| "ĠRepresentatives": 8936, | |
| "Pardon": 8937, | |
| "mate": 8938, | |
| "Ġduties": 8939, | |
| "Ġash": 8940, | |
| "Ġproviding": 8941, | |
| "Ġ\"{": 8942, | |
| "Ġreasonable": 8943, | |
| "Ġsacred": 8944, | |
| "Ġnewspapers": 8945, | |
| "Ġinstruments": 8946, | |
| "ĠTurkish": 8947, | |
| "Ġdow": 8948, | |
| "ĠNar": 8949, | |
| "Ġawesome": 8950, | |
| "wr": 8951, | |
| "alling": 8952, | |
| "ĠLind": 8953, | |
| "ĠResearch": 8954, | |
| "ĠHelen": 8955, | |
| "Ġenormous": 8956, | |
| "Ġtub": 8957, | |
| "Ġpushing": 8958, | |
| "ashi": 8959, | |
| "omi": 8960, | |
| "thy": 8961, | |
| "Ġsoap": 8962, | |
| "Ġwherever": 8963, | |
| "ĠPoint": 8964, | |
| "ĠOrigin": 8965, | |
| "ternal": 8966, | |
| "ĠSports": 8967, | |
| "ieur": 8968, | |
| "Ġunderneath": 8969, | |
| "Ġencourage": 8970, | |
| "ĠHollywood": 8971, | |
| "Ġunhappy": 8972, | |
| "Ġaston": 8973, | |
| "hu": 8974, | |
| "ĠRen": 8975, | |
| "Ġgreet": 8976, | |
| "Ġreceiving": 8977, | |
| "ĠBarry": 8978, | |
| "Ġwoke": 8979, | |
| "ĠDavis": 8980, | |
| "Ġphenomen": 8981, | |
| "umble": 8982, | |
| "ĠField": 8983, | |
| "Ġaccounts": 8984, | |
| "herry": 8985, | |
| "ĠDu": 8986, | |
| "ĠBeach": 8987, | |
| "Ġsurrounding": 8988, | |
| "Ġimmediate": 8989, | |
| "Alex": 8990, | |
| "Enough": 8991, | |
| "Ġdrinks": 8992, | |
| "Ġblew": 8993, | |
| "Ġincorpor": 8994, | |
| "Ġdign": 8995, | |
| "ĠAz": 8996, | |
| "Ġstaring": 8997, | |
| "ĠVietnam": 8998, | |
| "ĠMoon": 8999, | |
| "ĠKnight": 9000, | |
| "ĠWy": 9001, | |
| "iveness": 9002, | |
| "Ob": 9003, | |
| "Sounds": 9004, | |
| "Ġaer": 9005, | |
| "ĠCro": 9006, | |
| "angers": 9007, | |
| "Many": 9008, | |
| "ĠÅ": 9009, | |
| "Ġmath": 9010, | |
| "Ġstadium": 9011, | |
| "Ġadjust": 9012, | |
| "annah": 9013, | |
| "LAUGH": 9014, | |
| "Ġsymptoms": 9015, | |
| "after": 9016, | |
| "uting": 9017, | |
| "Ġwarn": 9018, | |
| "Ġdamaged": 9019, | |
| "Ġeter": 9020, | |
| "idering": 9021, | |
| "ĠAud": 9022, | |
| "Ġcontained": 9023, | |
| "Mon": 9024, | |
| "otta": 9025, | |
| "Ġpenal": 9026, | |
| "cknow": 9027, | |
| "ogs": 9028, | |
| "Ġinteract": 9029, | |
| "Always": 9030, | |
| "Ġservants": 9031, | |
| "Play": 9032, | |
| "Ġintent": 9033, | |
| "Ġconstantly": 9034, | |
| "ĠAfghan": 9035, | |
| "!'": 9036, | |
| "ĠHad": 9037, | |
| "Ġknee": 9038, | |
| "ĠEconom": 9039, | |
| "soft": 9040, | |
| "Ġstandards": 9041, | |
| "Ġdoub": 9042, | |
| "Ġrequires": 9043, | |
| "ĠTemple": 9044, | |
| "pher": 9045, | |
| "elf": 9046, | |
| "Ġnorthwest": 9047, | |
| "à¤": 9048, | |
| "Ġassess": 9049, | |
| "Ġdisaster": 9050, | |
| "Ġdecent": 9051, | |
| "Ġaltogether": 9052, | |
| "Ġsacrifice": 9053, | |
| "TING": 9054, | |
| "Ġbid": 9055, | |
| "imental": 9056, | |
| "weight": 9057, | |
| "Ġenthus": 9058, | |
| "Ġcricket": 9059, | |
| "Ġprobability": 9060, | |
| "Ġdemanded": 9061, | |
| "Ġpaintings": 9062, | |
| "BER": 9063, | |
| "ĠSU": 9064, | |
| "Ġparticipated": 9065, | |
| "Ġdreadful": 9066, | |
| "Foot": 9067, | |
| "ĠAgain": 9068, | |
| "ĠEN": 9069, | |
| "Ġvon": 9070, | |
| "Ġscenes": 9071, | |
| "Unless": 9072, | |
| "ĠChuck": 9073, | |
| "unes": 9074, | |
| "izza": 9075, | |
| "Ġsubm": 9076, | |
| "FFFF": 9077, | |
| ".[": 9078, | |
| "ı": 9079, | |
| "Ġtherap": 9080, | |
| "ĠTal": 9081, | |
| "Ġresidents": 9082, | |
| "BE": 9083, | |
| "Jan": 9084, | |
| "Ġinput": 9085, | |
| "icity": 9086, | |
| "ĠCape": 9087, | |
| "Ġroots": 9088, | |
| "ĠArk": 9089, | |
| "Ġtunnel": 9090, | |
| "from": 9091, | |
| "alendar": 9092, | |
| "shine": 9093, | |
| "Ġremote": 9094, | |
| "Ġstrongly": 9095, | |
| "Ġboxes": 9096, | |
| "inction": 9097, | |
| "orage": 9098, | |
| "ĠAff": 9099, | |
| "ĠBase": 9100, | |
| "olves": 9101, | |
| "Ġintense": 9102, | |
| "Ġdisag": 9103, | |
| "Ġstrateg": 9104, | |
| "ĠAllen": 9105, | |
| "Ġemotional": 9106, | |
| "give": 9107, | |
| "ĠTR": 9108, | |
| "ĠBruce": 9109, | |
| "Ġric": 9110, | |
| "Ġretirement": 9111, | |
| "Ġwriters": 9112, | |
| "EAH": 9113, | |
| "olve": 9114, | |
| "Ġclassic": 9115, | |
| "Ġrolling": 9116, | |
| "ĠRegion": 9117, | |
| "Ġadults": 9118, | |
| "BO": 9119, | |
| "Pat": 9120, | |
| "irit": 9121, | |
| "Sweet": 9122, | |
| "ĠWOR": 9123, | |
| "Ġformat": 9124, | |
| "Ġlanding": 9125, | |
| "Ġfuckin": 9126, | |
| "Ġcookie": 9127, | |
| "ĠSum": 9128, | |
| "Ġimagination": 9129, | |
| "Ġlaughter": 9130, | |
| "ĠBaby": 9131, | |
| "ĠOtt": 9132, | |
| "ĠCra": 9133, | |
| "ĠHart": 9134, | |
| "Ġoffering": 9135, | |
| "Ġscare": 9136, | |
| "lessly": 9137, | |
| "Ġdetermine": 9138, | |
| "suit": 9139, | |
| "ĠWoman": 9140, | |
| "Ġmetres": 9141, | |
| "Ġtaxes": 9142, | |
| "Ġinstructions": 9143, | |
| "Ġsmoking": 9144, | |
| "Ġparallel": 9145, | |
| "ĠHoward": 9146, | |
| "Ġvisitors": 9147, | |
| "ĠAvenue": 9148, | |
| "ĠPad": 9149, | |
| "Ġassigned": 9150, | |
| "Ġkidna": 9151, | |
| "because": 9152, | |
| "Ġwinds": 9153, | |
| "Ġlicense": 9154, | |
| "ridge": 9155, | |
| "zed": 9156, | |
| "ĠSyl": 9157, | |
| "apore": 9158, | |
| "LING": 9159, | |
| "ĠLead": 9160, | |
| "Ġadding": 9161, | |
| "ĠTar": 9162, | |
| "Ġseed": 9163, | |
| "ĠGR": 9164, | |
| "Ġconsciousness": 9165, | |
| "ouch": 9166, | |
| "ĠSOME": 9167, | |
| "Ġeval": 9168, | |
| "Ġbeaten": 9169, | |
| "Ġbay": 9170, | |
| "Ġcares": 9171, | |
| "Long": 9172, | |
| "leton": 9173, | |
| "Ġ(_": 9174, | |
| "iolet": 9175, | |
| "nesota": 9176, | |
| "romise": 9177, | |
| "ansion": 9178, | |
| "Ġarrival": 9179, | |
| "Ġtitles": 9180, | |
| "oa": 9181, | |
| "hesis": 9182, | |
| "Ġcurtain": 9183, | |
| "lause": 9184, | |
| "ĠAmb": 9185, | |
| "ĠPower": 9186, | |
| "Ġchurches": 9187, | |
| "Ġopens": 9188, | |
| "ĠThrough": 9189, | |
| "Ġstructures": 9190, | |
| "Ġalgorithm": 9191, | |
| "Mum": 9192, | |
| "Ġcod": 9193, | |
| "bal": 9194, | |
| "gon": 9195, | |
| "ĠManchester": 9196, | |
| "Ġresear": 9197, | |
| "Ġsample": 9198, | |
| "Ġapologize": 9199, | |
| "rating": 9200, | |
| "Ġ\"âĻ«": 9201, | |
| "Ġtheore": 9202, | |
| "acement": 9203, | |
| "Ġcomic": 9204, | |
| "rected": 9205, | |
| "Ġtooth": 9206, | |
| "onsieur": 9207, | |
| "Ġcoordin": 9208, | |
| "Ġdrift": 9209, | |
| "Ġaffection": 9210, | |
| "coming": 9211, | |
| "Ġmidnight": 9212, | |
| "ĠDouglas": 9213, | |
| "Peter": 9214, | |
| "when": 9215, | |
| "Ġmedium": 9216, | |
| "eanwhile": 9217, | |
| "ĠColorado": 9218, | |
| "oria": 9219, | |
| "Ġagents": 9220, | |
| "Ġjoining": 9221, | |
| "Ġcam": 9222, | |
| "ubs": 9223, | |
| "Ġassass": 9224, | |
| "certain": 9225, | |
| "ĠAut": 9226, | |
| "ighed": 9227, | |
| "Ġprices": 9228, | |
| "iversary": 9229, | |
| "Ġstrings": 9230, | |
| "ĠChildren": 9231, | |
| "oni": 9232, | |
| "Ġnewly": 9233, | |
| "ologists": 9234, | |
| "Ġreturns": 9235, | |
| "Ġhistoric": 9236, | |
| "Ġachieved": 9237, | |
| "VID": 9238, | |
| "rell": 9239, | |
| "Ġna": 9240, | |
| "Ġgoin": 9241, | |
| "Ġairpl": 9242, | |
| "Ġregarding": 9243, | |
| "Ġfrequency": 9244, | |
| "ĠPhilippines": 9245, | |
| "Had": 9246, | |
| "py": 9247, | |
| "ĠTheatre": 9248, | |
| "Ġgosh": 9249, | |
| "ĠOnt": 9250, | |
| "Ġwolf": 9251, | |
| "Ġcollected": 9252, | |
| "ĠWhit": 9253, | |
| "Ed": 9254, | |
| "ĠWANT": 9255, | |
| "Ġanimated": 9256, | |
| "ĠShakespeare": 9257, | |
| "Ġaccompan": 9258, | |
| "Nope": 9259, | |
| "Yo": 9260, | |
| "ĠWars": 9261, | |
| "Ġrailroad": 9262, | |
| "Ġexcitement": 9263, | |
| "CC": 9264, | |
| "ĠBR": 9265, | |
| "Ġinvestment": 9266, | |
| "udes": 9267, | |
| "Ġtwin": 9268, | |
| "Ġprominent": 9269, | |
| "Ap": 9270, | |
| "Ġmamm": 9271, | |
| "ertainly": 9272, | |
| "Ġclothing": 9273, | |
| "Ġessential": 9274, | |
| "ovie": 9275, | |
| "Ġrecover": 9276, | |
| "Ġequival": 9277, | |
| "Ġsoftly": 9278, | |
| "Ġemployed": 9279, | |
| "kind": 9280, | |
| "orous": 9281, | |
| "ĠLat": 9282, | |
| "ĠGrace": 9283, | |
| "rong": 9284, | |
| "idel": 9285, | |
| "igen": 9286, | |
| "Ġpref": 9287, | |
| "Ġswing": 9288, | |
| "Ġdepending": 9289, | |
| "mates": 9290, | |
| "occ": 9291, | |
| "Ġtrunk": 9292, | |
| "Ġwrites": 9293, | |
| "thm": 9294, | |
| "ORE": 9295, | |
| "ippi": 9296, | |
| "ĠPatrick": 9297, | |
| "bourne": 9298, | |
| "ondissement": 9299, | |
| "Ġpy": 9300, | |
| "ĠTro": 9301, | |
| "Ġlied": 9302, | |
| "ATH": 9303, | |
| "Ġscreaming": 9304, | |
| "Ġsector": 9305, | |
| "Ġmask": 9306, | |
| "Ġargue": 9307, | |
| "Ġpredict": 9308, | |
| "Ġcelebrate": 9309, | |
| "Ġfacing": 9310, | |
| "Ġearliest": 9311, | |
| "Aah": 9312, | |
| "ocated": 9313, | |
| "Ġcourts": 9314, | |
| "Ġproducing": 9315, | |
| "Ġdivide": 9316, | |
| "Ġgradually": 9317, | |
| "Ġdismiss": 9318, | |
| "GO": 9319, | |
| "Ġwis": 9320, | |
| "ashes": 9321, | |
| "ĠCamer": 9322, | |
| "ĠEngine": 9323, | |
| "Ġexception": 9324, | |
| "term": 9325, | |
| "ĠEarl": 9326, | |
| "ĠStanley": 9327, | |
| "eenth": 9328, | |
| "Ġgig": 9329, | |
| "ĠCreek": 9330, | |
| "esar": 9331, | |
| "ĠLin": 9332, | |
| "egas": 9333, | |
| "ĠGary": 9334, | |
| "Ġdesperate": 9335, | |
| "gger": 9336, | |
| "Ġstarred": 9337, | |
| "Ġsufficient": 9338, | |
| "Ġconsiderable": 9339, | |
| "Ġbarely": 9340, | |
| "Rel": 9341, | |
| "sa": 9342, | |
| "Ġdirt": 9343, | |
| "ĠCart": 9344, | |
| "ĠMP": 9345, | |
| "Ġkitt": 9346, | |
| "Ġshining": 9347, | |
| "Ġclassical": 9348, | |
| "Ġattempted": 9349, | |
| "ĠPalace": 9350, | |
| "ĠSilver": 9351, | |
| "Ġmob": 9352, | |
| "rav": 9353, | |
| "ĠSenator": 9354, | |
| "dam": 9355, | |
| "fa": 9356, | |
| "ĠHas": 9357, | |
| "Going": 9358, | |
| "ĠCorps": 9359, | |
| "Har": 9360, | |
| "Ġeducational": 9361, | |
| "Eng": 9362, | |
| "Ġitem": 9363, | |
| "ĠKal": 9364, | |
| "uese": 9365, | |
| "Ġtribe": 9366, | |
| "Ġseventh": 9367, | |
| "ĠMess": 9368, | |
| "Ġretreat": 9369, | |
| "abel": 9370, | |
| "Ġallowing": 9371, | |
| "Michael": 9372, | |
| "burn": 9373, | |
| "Ġalien": 9374, | |
| "ĠMinistry": 9375, | |
| "Ġroughly": 9376, | |
| "ĠCult": 9377, | |
| "Ġseized": 9378, | |
| "obb": 9379, | |
| "Star": 9380, | |
| "Start": 9381, | |
| "Ġfootballer": 9382, | |
| "Ġfoundation": 9383, | |
| "Ġequally": 9384, | |
| "Ġgrows": 9385, | |
| "Ġcompanion": 9386, | |
| "Ġacknow": 9387, | |
| "Ġwashing": 9388, | |
| "ĠKelly": 9389, | |
| "Ġdiplom": 9390, | |
| "tes": 9391, | |
| "Ġapproved": 9392, | |
| "Ġjacket": 9393, | |
| "Ġfarther": 9394, | |
| "ĠBush": 9395, | |
| "wall": 9396, | |
| "pective": 9397, | |
| "ĠFrances": 9398, | |
| "ĠMountain": 9399, | |
| "Ġthief": 9400, | |
| "Ġvoc": 9401, | |
| "ĠMinnesota": 9402, | |
| "ĠIndiana": 9403, | |
| "Ġwreck": 9404, | |
| "Ġvain": 9405, | |
| "Ġglance": 9406, | |
| "ĠOrgan": 9407, | |
| "Ġobtain": 9408, | |
| "Ġcovering": 9409, | |
| "KS": 9410, | |
| "allas": 9411, | |
| "ĠBobby": 9412, | |
| "Ġclosing": 9413, | |
| "Ġemployees": 9414, | |
| "vor": 9415, | |
| "omic": 9416, | |
| "unning": 9417, | |
| "ĠStand": 9418, | |
| "Ġperce": 9419, | |
| "Ġcrossing": 9420, | |
| "MS": 9421, | |
| "Ġpanel": 9422, | |
| "ĠHawai": 9423, | |
| "ĠUr": 9424, | |
| "Ġcleared": 9425, | |
| "Ġprompt": 9426, | |
| "Ġmaiden": 9427, | |
| "ĠCorporation": 9428, | |
| "Ġthirteen": 9429, | |
| "ĠChile": 9430, | |
| "Ben": 9431, | |
| "ĠHIM": 9432, | |
| "ifferent": 9433, | |
| "ĠNorway": 9434, | |
| "Ġtan": 9435, | |
| "Ġcraft": 9436, | |
| "Ġinsane": 9437, | |
| "ĠLucy": 9438, | |
| "ĠHell": 9439, | |
| "ĠYe": 9440, | |
| "Ġdestruction": 9441, | |
| "Life": 9442, | |
| "ĠGOT": 9443, | |
| "Ġcloth": 9444, | |
| "ĠIan": 9445, | |
| "Ġrust": 9446, | |
| "Ġshops": 9447, | |
| "odge": 9448, | |
| "Ġoccurs": 9449, | |
| "cill": 9450, | |
| "Ġairl": 9451, | |
| "Ġvul": 9452, | |
| "Ġspecifically": 9453, | |
| "oyd": 9454, | |
| "Ġswift": 9455, | |
| "Ġcurve": 9456, | |
| "Shh": 9457, | |
| "Ġcompete": 9458, | |
| "Ġstiff": 9459, | |
| "ĠAbd": 9460, | |
| "uration": 9461, | |
| "eaf": 9462, | |
| "Ġabsence": 9463, | |
| "°": 9464, | |
| "ĠTs": 9465, | |
| "Ġextensive": 9466, | |
| "Ġsupporting": 9467, | |
| "ĠToronto": 9468, | |
| "child": 9469, | |
| "chae": 9470, | |
| "Ġringing": 9471, | |
| "Ġprinciples": 9472, | |
| "Ġdelighted": 9473, | |
| "Cont": 9474, | |
| "rors": 9475, | |
| "Ġtheater": 9476, | |
| "elson": 9477, | |
| "ĠDomin": 9478, | |
| "Ġresident": 9479, | |
| "Ġwarri": 9480, | |
| "Ġcleaning": 9481, | |
| "udden": 9482, | |
| "Ġapplications": 9483, | |
| "Ġwars": 9484, | |
| "ruits": 9485, | |
| "Ġadj": 9486, | |
| "Ġearthqu": 9487, | |
| "ĠSingapore": 9488, | |
| "Ġsink": 9489, | |
| "stan": 9490, | |
| "Ġexisted": 9491, | |
| "ĠBetween": 9492, | |
| "Ġinstitutions": 9493, | |
| "Ġassumed": 9494, | |
| "Ġtack": 9495, | |
| "ĠBos": 9496, | |
| "Ġdull": 9497, | |
| "Ġflour": 9498, | |
| "Ġentitled": 9499, | |
| "ĠLawrence": 9500, | |
| "itate": 9501, | |
| "Ġinvasion": 9502, | |
| "Ġperforming": 9503, | |
| "ĠDespite": 9504, | |
| "ĠContin": 9505, | |
| "Eight": 9506, | |
| "Pull": 9507, | |
| "isha": 9508, | |
| "ĠHou": 9509, | |
| "ĠPitt": 9510, | |
| "Ġvisible": 9511, | |
| "Ġimproved": 9512, | |
| "Ġprinted": 9513, | |
| "Master": 9514, | |
| "ĠSA": 9515, | |
| "Ġoffices": 9516, | |
| "EAD": 9517, | |
| "Ġabst": 9518, | |
| "Ġvacation": 9519, | |
| "Ġmanufacture": 9520, | |
| "ĠOfficer": 9521, | |
| "Ġcomed": 9522, | |
| "Ġsounded": 9523, | |
| "Ġphysics": 9524, | |
| "Ġrobber": 9525, | |
| "ĠIowa": 9526, | |
| "Ġshy": 9527, | |
| "Ġmarch": 9528, | |
| "Ġeducated": 9529, | |
| "Old": 9530, | |
| "ecca": 9531, | |
| "Ġinvite": 9532, | |
| "Ġexposed": 9533, | |
| "Ġdrill": 9534, | |
| "Ġnerve": 9535, | |
| "rying": 9536, | |
| "Ġcounties": 9537, | |
| "Ġfee": 9538, | |
| "ĠVienna": 9539, | |
| "Ġbrid": 9540, | |
| "Ġcombat": 9541, | |
| "IP": 9542, | |
| "ĠRachel": 9543, | |
| "Ġscary": 9544, | |
| "Ġformation": 9545, | |
| "Ġtroubles": 9546, | |
| "ĠPete": 9547, | |
| "Ġdisappointed": 9548, | |
| "oust": 9549, | |
| "Ġstopping": 9550, | |
| "ATION": 9551, | |
| "Uncle": 9552, | |
| "ĠOntario": 9553, | |
| "four": 9554, | |
| "orters": 9555, | |
| "ĠNext": 9556, | |
| "ĠCommander": 9557, | |
| "Ġinfluenced": 9558, | |
| "utiful": 9559, | |
| "Ġtrace": 9560, | |
| "Ġbattery": 9561, | |
| "BUT": 9562, | |
| "ĠDC": 9563, | |
| "oi": 9564, | |
| "ĠDiana": 9565, | |
| "Ġlongest": 9566, | |
| "ĠQueens": 9567, | |
| "ĠOliver": 9568, | |
| "morrow": 9569, | |
| "Ġpip": 9570, | |
| "Ġdiscussed": 9571, | |
| "Yay": 9572, | |
| "Ġbelieves": 9573, | |
| "Ġsecondary": 9574, | |
| "ĠXX": 9575, | |
| "ĠApple": 9576, | |
| "Ġinformed": 9577, | |
| "Ġfemales": 9578, | |
| "Ġmeasures": 9579, | |
| "Same": 9580, | |
| "ĠPra": 9581, | |
| "oli": 9582, | |
| "avig": 9583, | |
| "Ġmercy": 9584, | |
| "Ġfierce": 9585, | |
| "Ġtermin": 9586, | |
| "Ġconstructed": 9587, | |
| "Ġrenamed": 9588, | |
| "Des": 9589, | |
| "Ġobey": 9590, | |
| "assador": 9591, | |
| "ĠSecurity": 9592, | |
| "amental": 9593, | |
| "ĠLl": 9594, | |
| "Ġmotiv": 9595, | |
| "aints": 9596, | |
| "ĠAmong": 9597, | |
| "Guess": 9598, | |
| "Ġdivorced": 9599, | |
| "ré": 9600, | |
| "Ġdwell": 9601, | |
| "ĠNich": 9602, | |
| "Ġmales": 9603, | |
| "ĠDeb": 9604, | |
| "ĠBeat": 9605, | |
| "Ġsuperior": 9606, | |
| "Ġkicked": 9607, | |
| "Ġgrounds": 9608, | |
| "ĠAlexand": 9609, | |
| "ĠDevelopment": 9610, | |
| "ĠID": 9611, | |
| "ĠSoon": 9612, | |
| "ĠBuck": 9613, | |
| "ĠReb": 9614, | |
| "Ġabuse": 9615, | |
| "Ġguards": 9616, | |
| "ĠPerhaps": 9617, | |
| "ĠHER": 9618, | |
| "Ġnep": 9619, | |
| "Ġglory": 9620, | |
| "ĠMississ": 9621, | |
| "ĠUSA": 9622, | |
| "Ġfurniture": 9623, | |
| "LO": 9624, | |
| "Ġschedule": 9625, | |
| "Eat": 9626, | |
| "Ġcoinc": 9627, | |
| "Ġbriefly": 9628, | |
| "Ġtoss": 9629, | |
| "Ġpant": 9630, | |
| "Ġcra": 9631, | |
| "Ġprogramming": 9632, | |
| "Ġvehicles": 9633, | |
| "Ġwow": 9634, | |
| "Ġthread": 9635, | |
| "Ġminimum": 9636, | |
| "Guys": 9637, | |
| "oons": 9638, | |
| "ARS": 9639, | |
| "ĠSquare": 9640, | |
| "ĠLibrary": 9641, | |
| "stream": 9642, | |
| "ĠMR": 9643, | |
| "Ġanch": 9644, | |
| "ĠONE": 9645, | |
| "ú": 9646, | |
| "employ": 9647, | |
| "Ġgoodbye": 9648, | |
| "Ġcharming": 9649, | |
| "Ġhighway": 9650, | |
| "ĠChristopher": 9651, | |
| "ennessee": 9652, | |
| "hist": 9653, | |
| "icop": 9654, | |
| "Ġimpressed": 9655, | |
| "Ġrelationships": 9656, | |
| "Ġtremend": 9657, | |
| "orf": 9658, | |
| "Ġhanded": 9659, | |
| "Ġcourses": 9660, | |
| "Ġbehalf": 9661, | |
| "Black": 9662, | |
| "ĠBert": 9663, | |
| "ags": 9664, | |
| "Ġclick": 9665, | |
| "ĠChamp": 9666, | |
| "ĠFive": 9667, | |
| "Ġbreaks": 9668, | |
| "ĠPhill": 9669, | |
| "Ġchances": 9670, | |
| "Ġhurried": 9671, | |
| "scar": 9672, | |
| "Ġrecognition": 9673, | |
| "keys": 9674, | |
| "only": 9675, | |
| "ĠNort": 9676, | |
| "Ġresigned": 9677, | |
| "Ġhurricane": 9678, | |
| "],": 9679, | |
| "Ġtube": 9680, | |
| "Ġthunder": 9681, | |
| "Ġfarmer": 9682, | |
| "ĠUkraine": 9683, | |
| "WELL": 9684, | |
| "inter": 9685, | |
| "Ġlayer": 9686, | |
| "Ġnearer": 9687, | |
| "ĠNag": 9688, | |
| "ĠCommand": 9689, | |
| "Ġlamp": 9690, | |
| "ailing": 9691, | |
| "sky": 9692, | |
| "ĠAdminist": 9693, | |
| "some": 9694, | |
| "ĠStock": 9695, | |
| "Ġhopes": 9696, | |
| "bach": 9697, | |
| "Ġcord": 9698, | |
| "Ġfled": 9699, | |
| "Ġremarkable": 9700, | |
| "Ġoccasionally": 9701, | |
| "Ġhid": 9702, | |
| "Ġchuck": 9703, | |
| "Ġforests": 9704, | |
| "Ġboring": 9705, | |
| "Ġdump": 9706, | |
| "reeze": 9707, | |
| "Ġsumm": 9708, | |
| "ĠRabbit": 9709, | |
| "gun": 9710, | |
| "ussy": 9711, | |
| "Ġrecall": 9712, | |
| "ONG": 9713, | |
| "rants": 9714, | |
| "ture": 9715, | |
| "ante": 9716, | |
| "ĠNorman": 9717, | |
| "ĠCas": 9718, | |
| "udge": 9719, | |
| "ĠStill": 9720, | |
| "Ġtechnique": 9721, | |
| "Ġtox": 9722, | |
| "ĠHim": 9723, | |
| "Ġplates": 9724, | |
| "ckets": 9725, | |
| "Ġactors": 9726, | |
| "Ġreserve": 9727, | |
| "Ġsatell": 9728, | |
| "Ġtremb": 9729, | |
| "ĠJohan": 9730, | |
| "ĠDennis": 9731, | |
| "ĠLim": 9732, | |
| "aved": 9733, | |
| "Ġunderground": 9734, | |
| "Ġfacility": 9735, | |
| "ĠABOUT": 9736, | |
| "inations": 9737, | |
| "ilst": 9738, | |
| "Ġsearching": 9739, | |
| "org": 9740, | |
| "umbled": 9741, | |
| "Ġrepresenting": 9742, | |
| "Ġrepresentative": 9743, | |
| "ĠLaure": 9744, | |
| "Ġbelonged": 9745, | |
| "Ġsensitive": 9746, | |
| "ĠLaurie": 9747, | |
| "Ġbore": 9748, | |
| "formation": 9749, | |
| "Ġinsist": 9750, | |
| "Ġbears": 9751, | |
| "ĠAy": 9752, | |
| "ICE": 9753, | |
| "ĠJoan": 9754, | |
| "Ġshield": 9755, | |
| "Ġmurm": 9756, | |
| "ĠPortuguese": 9757, | |
| "orp": 9758, | |
| "abled": 9759, | |
| "Ġnephew": 9760, | |
| "David": 9761, | |
| "encer": 9762, | |
| "Ġwhisper": 9763, | |
| "piration": 9764, | |
| "Ġdeleg": 9765, | |
| "Ġspaces": 9766, | |
| "onsin": 9767, | |
| "Ġoperate": 9768, | |
| "Ġgrandma": 9769, | |
| "Ġdevices": 9770, | |
| "Ġgently": 9771, | |
| "ications": 9772, | |
| "ĠCole": 9773, | |
| "ĠLaura": 9774, | |
| "Ġcopper": 9775, | |
| "USE": 9776, | |
| "ĠConfeder": 9777, | |
| "Ġtables": 9778, | |
| "Ġtemporary": 9779, | |
| "Ġpolicies": 9780, | |
| "Ġ\"~": 9781, | |
| "aman": 9782, | |
| "ĠGib": 9783, | |
| "ntown": 9784, | |
| "Ġvoted": 9785, | |
| "âĻª\"": 9786, | |
| "anguage": 9787, | |
| "Jul": 9788, | |
| "Ġintend": 9789, | |
| "Ġresign": 9790, | |
| "ARR": 9791, | |
| "Ġvisiting": 9792, | |
| "eks": 9793, | |
| "iden": 9794, | |
| "Ġinternet": 9795, | |
| "Gl": 9796, | |
| "ĠMarian": 9797, | |
| "ĠEntertainment": 9798, | |
| "Ġbronze": 9799, | |
| "Da": 9800, | |
| "Ġfare": 9801, | |
| "Ġtomb": 9802, | |
| "ĠPur": 9803, | |
| "Ġeveryday": 9804, | |
| "Ġdistract": 9805, | |
| "ĠMicro": 9806, | |
| "Ġcategory": 9807, | |
| "Know": 9808, | |
| "Ġsecrets": 9809, | |
| "Ġpassenger": 9810, | |
| "attered": 9811, | |
| "riot": 9812, | |
| "illery": 9813, | |
| "ĠOd": 9814, | |
| "hammad": 9815, | |
| "Ġcitizen": 9816, | |
| "ÅĤ": 9817, | |
| "Ġbeet": 9818, | |
| "Ġwashed": 9819, | |
| "Ġsolar": 9820, | |
| "Ġmistakes": 9821, | |
| "zona": 9822, | |
| "Ġbars": 9823, | |
| "Ġgolf": 9824, | |
| "Ġcharity": 9825, | |
| "urious": 9826, | |
| "Ġethnic": 9827, | |
| "Rep": 9828, | |
| "bian": 9829, | |
| "Ġhip": 9830, | |
| "Except": 9831, | |
| "Ġsilk": 9832, | |
| "rine": 9833, | |
| "ĠKings": 9834, | |
| "cular": 9835, | |
| "Ġchase": 9836, | |
| "isconsin": 9837, | |
| "Ġopportunities": 9838, | |
| "ĠTaiwan": 9839, | |
| "Dec": 9840, | |
| "Morning": 9841, | |
| "ê": 9842, | |
| "ARE": 9843, | |
| "Ġattempts": 9844, | |
| "ĠBangl": 9845, | |
| "Ġyield": 9846, | |
| "ĠMoore": 9847, | |
| "Ġseal": 9848, | |
| "Ġvirus": 9849, | |
| "Ġentertainment": 9850, | |
| "ĠScient": 9851, | |
| "Ġrates": 9852, | |
| "last": 9853, | |
| "Ġcalendar": 9854, | |
| "ĠAst": 9855, | |
| "ctic": 9856, | |
| "Ġwhoever": 9857, | |
| "Ġmonarch": 9858, | |
| "Ġdefence": 9859, | |
| "Ġmiserable": 9860, | |
| "oz": 9861, | |
| "quis": 9862, | |
| "Ġdramatic": 9863, | |
| "Ġmusicians": 9864, | |
| "uj": 9865, | |
| "ĠPass": 9866, | |
| "Ġrude": 9867, | |
| "ĠMadame": 9868, | |
| "Ġhypot": 9869, | |
| "Ġ\"_": 9870, | |
| "uter": 9871, | |
| "Ġliterary": 9872, | |
| "Ġbunny": 9873, | |
| "Ġpreced": 9874, | |
| "Ġscientist": 9875, | |
| "ifted": 9876, | |
| "Ġjazz": 9877, | |
| "peed": 9878, | |
| "fecture": 9879, | |
| "MA": 9880, | |
| "Things": 9881, | |
| "ĠHills": 9882, | |
| "Ġprospect": 9883, | |
| "chell": 9884, | |
| "ĠEgyptian": 9885, | |
| "Mark": 9886, | |
| "ĠDak": 9887, | |
| "your": 9888, | |
| "ĠColin": 9889, | |
| "Ġscratch": 9890, | |
| "Won": 9891, | |
| "asia": 9892, | |
| "ĠTennessee": 9893, | |
| "ĠBureau": 9894, | |
| "ĠHave": 9895, | |
| "ĠPress": 9896, | |
| "Ġdishes": 9897, | |
| "ultan": 9898, | |
| "Ġski": 9899, | |
| "Ġwhale": 9900, | |
| "Ġcable": 9901, | |
| "star": 9902, | |
| "Ġmanif": 9903, | |
| "ivia": 9904, | |
| "actor": 9905, | |
| "Ġemotion": 9906, | |
| "Ġextend": 9907, | |
| "Ġdeliber": 9908, | |
| "Ġlifetime": 9909, | |
| "warf": 9910, | |
| "NE": 9911, | |
| "Ġflav": 9912, | |
| "Ġprocedure": 9913, | |
| "ĠHo": 9914, | |
| "Ġdeaths": 9915, | |
| "ĠParker": 9916, | |
| "ĠRobinson": 9917, | |
| "levant": 9918, | |
| "Such": 9919, | |
| "Ġcomments": 9920, | |
| "ĠOri": 9921, | |
| "Ġelectrical": 9922, | |
| "IFA": 9923, | |
| "Lord": 9924, | |
| "Cle": 9925, | |
| "Ġcliff": 9926, | |
| "Ġbeloved": 9927, | |
| "ĠSwiss": 9928, | |
| "ĠWendy": 9929, | |
| "Ġpros": 9930, | |
| "Ġproposal": 9931, | |
| "Ġhal": 9932, | |
| "pless": 9933, | |
| "aza": 9934, | |
| "Ġmuscle": 9935, | |
| "ĠZe": 9936, | |
| "ĠNetwork": 9937, | |
| "ĠCre": 9938, | |
| "osure": 9939, | |
| "Ġcounting": 9940, | |
| "ĠHarris": 9941, | |
| "Dude": 9942, | |
| "Ġaboard": 9943, | |
| "ĠNative": 9944, | |
| "----------------": 9945, | |
| "ĠSeveral": 9946, | |
| "ĠSin": 9947, | |
| "uliar": 9948, | |
| "ĠFame": 9949, | |
| "Ġrecovered": 9950, | |
| "Ġlimits": 9951, | |
| "uart": 9952, | |
| "abama": 9953, | |
| "ĠKer": 9954, | |
| "Work": 9955, | |
| "ivery": 9956, | |
| "Ġtune": 9957, | |
| "Ġspoon": 9958, | |
| "Ġdisorder": 9959, | |
| "Ġvector": 9960, | |
| "Ġstretched": 9961, | |
| "Super": 9962, | |
| "gian": 9963, | |
| "Ġcure": 9964, | |
| "Ġseeking": 9965, | |
| "Ġdepression": 9966, | |
| "Ġtopic": 9967, | |
| "ĠWindows": 9968, | |
| "ĠHitler": 9969, | |
| "ĠPun": 9970, | |
| "Ġcontaining": 9971, | |
| "iens": 9972, | |
| "Ġnearest": 9973, | |
| "ĠGoogle": 9974, | |
| "ĠFederation": 9975, | |
| "artial": 9976, | |
| "Ġshots": 9977, | |
| "ĠThom": 9978, | |
| "ĠGilbert": 9979, | |
| "ser": 9980, | |
| "Ġspeaks": 9981, | |
| "ugs": 9982, | |
| "Ġelsewhere": 9983, | |
| "laughs": 9984, | |
| "Ġmac": 9985, | |
| "anch": 9986, | |
| "raham": 9987, | |
| "Ġhers": 9988, | |
| "ĠNiger": 9989, | |
| "ommod": 9990, | |
| "Ġignor": 9991, | |
| "Ġprotein": 9992, | |
| "DS": 9993, | |
| "Ġjam": 9994, | |
| "ĠLev": 9995, | |
| "Ġblast": 9996, | |
| "cluding": 9997, | |
| "Ġhonestly": 9998, | |
| "ĠPin": 9999, | |
| "ographic": 10000, | |
| "ĠSupp": 10001, | |
| "Ġinnit": 10002, | |
| "Ġassistance": 10003, | |
| "Ġaye": 10004, | |
| "Ġsty": 10005, | |
| "Ġuna": 10006, | |
| "celer": 10007, | |
| "ainted": 10008, | |
| "ĠLyn": 10009, | |
| "Ġsynt": 10010, | |
| "Ġfunds": 10011, | |
| "pur": 10012, | |
| "ĠLam": 10013, | |
| "Ġyourselves": 10014, | |
| "abilities": 10015, | |
| "Ġprivile": 10016, | |
| "Ġcustomer": 10017, | |
| "Ġshelter": 10018, | |
| "Fire": 10019, | |
| "ĠDVD": 10020, | |
| "ĠIndust": 10021, | |
| "ĠChristians": 10022, | |
| "ichi": 10023, | |
| "ĠKate": 10024, | |
| "Ġunp": 10025, | |
| "Ġ..\"": 10026, | |
| "Ġconcerns": 10027, | |
| "ĠRy": 10028, | |
| "Ġworker": 10029, | |
| "eeds": 10030, | |
| "asps": 10031, | |
| "ĠCost": 10032, | |
| "Ġseeds": 10033, | |
| "ipt": 10034, | |
| "sea": 10035, | |
| "ĠBry": 10036, | |
| "Ġstatue": 10037, | |
| "Easy": 10038, | |
| "ĠMit": 10039, | |
| "Ġkings": 10040, | |
| "ĠDog": 10041, | |
| "Ġrushed": 10042, | |
| "ĠNik": 10043, | |
| "Ġhosted": 10044, | |
| "ĠLuke": 10045, | |
| "ushes": 10046, | |
| "utt": 10047, | |
| "Ġfeast": 10048, | |
| "Ġwarned": 10049, | |
| "Ġobserv": 10050, | |
| "Ġfavourite": 10051, | |
| "away": 10052, | |
| "ĠJenn": 10053, | |
| "resident": 10054, | |
| "ĠTHERE": 10055, | |
| "Ġrefuge": 10056, | |
| "Ġportray": 10057, | |
| "Quite": 10058, | |
| "lims": 10059, | |
| "Ann": 10060, | |
| "phan": 10061, | |
| "struction": 10062, | |
| "ĠMi": 10063, | |
| "ĠBeng": 10064, | |
| "ĠWisconsin": 10065, | |
| "Ġintroduction": 10066, | |
| "mph": 10067, | |
| "woman": 10068, | |
| "ĠCass": 10069, | |
| "iami": 10070, | |
| "\"?": 10071, | |
| "ĠIF": 10072, | |
| "ĠNan": 10073, | |
| "Ġqueer": 10074, | |
| "Ġentering": 10075, | |
| "Ġsharing": 10076, | |
| "Bre": 10077, | |
| "Hon": 10078, | |
| "Ġpresently": 10079, | |
| "Ġbrains": 10080, | |
| "top": 10081, | |
| "ingo": 10082, | |
| "ĠFranklin": 10083, | |
| "Ġpenalty": 10084, | |
| "ĠNHL": 10085, | |
| "udi": 10086, | |
| "unction": 10087, | |
| "Ġvalid": 10088, | |
| "ĠFinn": 10089, | |
| "Ġga": 10090, | |
| "ĠRub": 10091, | |
| "ĠUnivers": 10092, | |
| "ĠIndones": 10093, | |
| "ATE": 10094, | |
| "ophie": 10095, | |
| "Ġfarmers": 10096, | |
| "Ġrebu": 10097, | |
| "Ġderiv": 10098, | |
| "=\"": 10099, | |
| "ĠLion": 10100, | |
| "osa": 10101, | |
| "Ġpeas": 10102, | |
| "Ġlets": 10103, | |
| "Ġquarters": 10104, | |
| "Bad": 10105, | |
| "atical": 10106, | |
| "Ġque": 10107, | |
| "Ġchecking": 10108, | |
| "ĠConnect": 10109, | |
| "Ġ¶\"": 10110, | |
| "ĠKaz": 10111, | |
| "Ġgrat": 10112, | |
| "ĠJuan": 10113, | |
| "AST": 10114, | |
| "Ġdynam": 10115, | |
| "Ġempire": 10116, | |
| "Ġfir": 10117, | |
| "illing": 10118, | |
| "ĠLeb": 10119, | |
| "Par": 10120, | |
| "made": 10121, | |
| "Ġol": 10122, | |
| "know": 10123, | |
| "Ġward": 10124, | |
| "Ġlt": 10125, | |
| "ĠCOM": 10126, | |
| "Ġultimately": 10127, | |
| "rer": 10128, | |
| "Fran": 10129, | |
| "Mind": 10130, | |
| "Pr": 10131, | |
| "ĠDID": 10132, | |
| "Ġbucks": 10133, | |
| "Ġperf": 10134, | |
| "Ġresulted": 10135, | |
| "Ġsupplies": 10136, | |
| "Ġequivalent": 10137, | |
| "vol": 10138, | |
| "Ã¥": 10139, | |
| "ulating": 10140, | |
| "Ġorchestra": 10141, | |
| "Ġanniversary": 10142, | |
| "roit": 10143, | |
| "Ġspy": 10144, | |
| "Comm": 10145, | |
| "Ġaired": 10146, | |
| "Ġbuff": 10147, | |
| "Step": 10148, | |
| "Ġcircuit": 10149, | |
| "icip": 10150, | |
| "Ġsafely": 10151, | |
| "ĠEX": 10152, | |
| "issa": 10153, | |
| "Ġdifficulties": 10154, | |
| "Ġtoler": 10155, | |
| "Ġhem": 10156, | |
| "alle": 10157, | |
| "ISH": 10158, | |
| "fare": 10159, | |
| "ĠBrig": 10160, | |
| "Ġorbit": 10161, | |
| "Ġpatterns": 10162, | |
| "je": 10163, | |
| "Ġhollow": 10164, | |
| "Ġstages": 10165, | |
| "Ġdrum": 10166, | |
| "Ġformerly": 10167, | |
| "Ġblowing": 10168, | |
| "Ġbleeding": 10169, | |
| "chair": 10170, | |
| "Ġstamp": 10171, | |
| "ĠBha": 10172, | |
| "Ġattrib": 10173, | |
| "Ġsuggests": 10174, | |
| "ĠJunior": 10175, | |
| "MAN": 10176, | |
| "ĠBav": 10177, | |
| "Ġconfirm": 10178, | |
| "Ġpencil": 10179, | |
| "ĠMedia": 10180, | |
| "Ġattracted": 10181, | |
| "Ġlinked": 10182, | |
| "Chan": 10183, | |
| "Ġelectron": 10184, | |
| "Ġgest": 10185, | |
| "Ġthirst": 10186, | |
| "Ġvariable": 10187, | |
| "Ġweakness": 10188, | |
| "Ġtact": 10189, | |
| "ĠMississippi": 10190, | |
| "anes": 10191, | |
| "ĠRat": 10192, | |
| "ĠMaryland": 10193, | |
| "oting": 10194, | |
| "ruption": 10195, | |
| "Ġclimbed": 10196, | |
| "Ġattractive": 10197, | |
| "lNG": 10198, | |
| "ĠMead": 10199, | |
| "estly": 10200, | |
| "Ġsauce": 10201, | |
| "cr": 10202, | |
| "Ġvib": 10203, | |
| "Ġconsidering": 10204, | |
| "én": 10205, | |
| "Ġfrozen": 10206, | |
| "ĠIslamic": 10207, | |
| "Ġdunno": 10208, | |
| "ĠNature": 10209, | |
| "Ġbusinessman": 10210, | |
| "ĠFarmer": 10211, | |
| "acious": 10212, | |
| "ĠNep": 10213, | |
| "Ġpole": 10214, | |
| "Ġboom": 10215, | |
| "Ġsteady": 10216, | |
| "Ġsatisfaction": 10217, | |
| "orkshire": 10218, | |
| "Ġpeculiar": 10219, | |
| "FC": 10220, | |
| "ĠDoc": 10221, | |
| "Ġdecades": 10222, | |
| "Ġapproaching": 10223, | |
| "Ġbehaviour": 10224, | |
| "Sl": 10225, | |
| "ĠGU": 10226, | |
| "ateur": 10227, | |
| "ĠKam": 10228, | |
| "ĠRobin": 10229, | |
| "Ġgrief": 10230, | |
| "Ġtons": 10231, | |
| "Ġmerry": 10232, | |
| "Ġbearing": 10233, | |
| "Ġemployment": 10234, | |
| "Ġfrogs": 10235, | |
| "Ġconcrete": 10236, | |
| "about": 10237, | |
| "Ġdespair": 10238, | |
| "Ġcongress": 10239, | |
| "Ġunexpected": 10240, | |
| "ĠBol": 10241, | |
| "Ġmeets": 10242, | |
| "REAM": 10243, | |
| "Girl": 10244, | |
| "Ġtoes": 10245, | |
| "Ġbeard": 10246, | |
| "opy": 10247, | |
| "Ġjur": 10248, | |
| "Ġhelpful": 10249, | |
| "ĠDean": 10250, | |
| "Calm": 10251, | |
| "Ġsits": 10252, | |
| "Ġborders": 10253, | |
| "vet": 10254, | |
| "Ġcarpet": 10255, | |
| "ĠImperial": 10256, | |
| "Men": 10257, | |
| "ĠFIFA": 10258, | |
| "Ġadap": 10259, | |
| "Ġbusinesses": 10260, | |
| "ĠTake": 10261, | |
| "Ġdebuted": 10262, | |
| "Ġgoddamn": 10263, | |
| "ĠPersonal": 10264, | |
| "tion": 10265, | |
| "never": 10266, | |
| "Ġmonitor": 10267, | |
| "ĠThose": 10268, | |
| "Ġtouching": 10269, | |
| "adays": 10270, | |
| "ĠCooper": 10271, | |
| "Ġsurf": 10272, | |
| "Ġfundamental": 10273, | |
| "hol": 10274, | |
| "asks": 10275, | |
| "ĠRain": 10276, | |
| "Ġflies": 10277, | |
| "Ġbug": 10278, | |
| "ĠHamilton": 10279, | |
| "Ġbench": 10280, | |
| "Ġpile": 10281, | |
| "ĠRoc": 10282, | |
| "Ġattorney": 10283, | |
| "Ġimprison": 10284, | |
| "Ġsack": 10285, | |
| "ĠAth": 10286, | |
| "Ġelectronic": 10287, | |
| "Ġdeeper": 10288, | |
| "ĠBiography": 10289, | |
| "ĠCroat": 10290, | |
| "Ġknight": 10291, | |
| "Id": 10292, | |
| "Ġ\".": 10293, | |
| "ĠIvan": 10294, | |
| "ĠCru": 10295, | |
| "song": 10296, | |
| "eters": 10297, | |
| "ĠBY": 10298, | |
| "opes": 10299, | |
| "ĠEddie": 10300, | |
| "ĠSpace": 10301, | |
| "Ġrifle": 10302, | |
| "Ġworthy": 10303, | |
| "Ġconvince": 10304, | |
| "Ladies": 10305, | |
| "Ġlyr": 10306, | |
| "Ġease": 10307, | |
| "ĠStorm": 10308, | |
| "Ġfract": 10309, | |
| "Ġcanton": 10310, | |
| "ĠHey": 10311, | |
| "Ġcompound": 10312, | |
| "ĠBelgium": 10313, | |
| "Billboard": 10314, | |
| "Def": 10315, | |
| "jamin": 10316, | |
| "Ġbored": 10317, | |
| "Careful": 10318, | |
| "section": 10319, | |
| "ĠLas": 10320, | |
| "ĠProject": 10321, | |
| "Ġpackage": 10322, | |
| "Ġmiracle": 10323, | |
| "Ġguarantee": 10324, | |
| "Ġlux": 10325, | |
| "riet": 10326, | |
| "Ġrepair": 10327, | |
| "Ġdirections": 10328, | |
| "Ġrobot": 10329, | |
| "Ġfeeding": 10330, | |
| "Especially": 10331, | |
| "Ġdensity": 10332, | |
| "achi": 10333, | |
| "ĠFlore": 10334, | |
| "vals": 10335, | |
| "idency": 10336, | |
| "Ġseated": 10337, | |
| "agne": 10338, | |
| "Ġsweat": 10339, | |
| "ught": 10340, | |
| "verty": 10341, | |
| "ĠCensus": 10342, | |
| "Ġshed": 10343, | |
| "Ġuniversities": 10344, | |
| "Ġhosp": 10345, | |
| "ĠSnow": 10346, | |
| "ĠRey": 10347, | |
| "ĠNev": 10348, | |
| "Ġwhereas": 10349, | |
| "ĠAlabama": 10350, | |
| "arson": 10351, | |
| "Ġsolemn": 10352, | |
| "Ġwithdraw": 10353, | |
| "ĠFBI": 10354, | |
| "Its": 10355, | |
| "OUR": 10356, | |
| "ĠClare": 10357, | |
| "ĠCambridge": 10358, | |
| "Ġcolleagues": 10359, | |
| "inals": 10360, | |
| "Ġgifts": 10361, | |
| "iry": 10362, | |
| "ĠStadium": 10363, | |
| "ĠSergeant": 10364, | |
| "Ġexecution": 10365, | |
| "Ġgraduate": 10366, | |
| "hattan": 10367, | |
| "YEAH": 10368, | |
| "Ġles": 10369, | |
| "istinct": 10370, | |
| "Ġsynd": 10371, | |
| "dale": 10372, | |
| "Ġtin": 10373, | |
| "ĠOak": 10374, | |
| "Ġcreative": 10375, | |
| "Ġtested": 10376, | |
| "Ġfaithful": 10377, | |
| "Ġtissue": 10378, | |
| "Ġgym": 10379, | |
| "rade": 10380, | |
| "Ġhitting": 10381, | |
| "imore": 10382, | |
| "Ġkindly": 10383, | |
| "spector": 10384, | |
| "uddenly": 10385, | |
| "BLE": 10386, | |
| "oj": 10387, | |
| "Ġresolution": 10388, | |
| "ĠYorkshire": 10389, | |
| "Ġsubstant": 10390, | |
| "Ġasshole": 10391, | |
| "Ġbarn": 10392, | |
| "Ġvessels": 10393, | |
| "ovak": 10394, | |
| "insula": 10395, | |
| "asket": 10396, | |
| "Ġneighbors": 10397, | |
| "Charlie": 10398, | |
| "Ġpoverty": 10399, | |
| "ĠAlfred": 10400, | |
| "oral": 10401, | |
| "ĠGun": 10402, | |
| "Ġconvent": 10403, | |
| "ĠInstead": 10404, | |
| "ĠMerc": 10405, | |
| "Ġclar": 10406, | |
| "Ġaccommod": 10407, | |
| "azy": 10408, | |
| "Ġwalks": 10409, | |
| "Ġfunding": 10410, | |
| "Ju": 10411, | |
| "Kn": 10412, | |
| "Ġ;": 10413, | |
| "Ġcm": 10414, | |
| "Ġpension": 10415, | |
| "Ġgap": 10416, | |
| "ĠTA": 10417, | |
| "ĠMO": 10418, | |
| "ĠAdams": 10419, | |
| "ITT": 10420, | |
| "APP": 10421, | |
| "ĠSay": 10422, | |
| "ĠCec": 10423, | |
| "ĠLane": 10424, | |
| "Ġspots": 10425, | |
| "ocation": 10426, | |
| "ĠAndre": 10427, | |
| "Ġspeaker": 10428, | |
| "Ġexperiments": 10429, | |
| "Otherwise": 10430, | |
| "GA": 10431, | |
| "Ġgear": 10432, | |
| "ĠOp": 10433, | |
| "cers": 10434, | |
| "sur": 10435, | |
| "xual": 10436, | |
| "ete": 10437, | |
| "ĠHIS": 10438, | |
| "ĠWard": 10439, | |
| "Ġexpanded": 10440, | |
| "ĠCharlotte": 10441, | |
| "ĠArizona": 10442, | |
| "Ġwisdom": 10443, | |
| "IVE": 10444, | |
| "illes": 10445, | |
| "Ġpainter": 10446, | |
| "Ġsubsequently": 10447, | |
| "Ġbacteria": 10448, | |
| "Ġexceed": 10449, | |
| "ĠMedical": 10450, | |
| "ĠPLAY": 10451, | |
| "Fif": 10452, | |
| "kward": 10453, | |
| "Ġtab": 10454, | |
| "ĠMs": 10455, | |
| "Mart": 10456, | |
| "arc": 10457, | |
| "Ġperformances": 10458, | |
| "Ġsunshine": 10459, | |
| "Ġradiation": 10460, | |
| "Ġbubble": 10461, | |
| "Ġfer": 10462, | |
| "Ġpond": 10463, | |
| "Ġthumb": 10464, | |
| "Ġpointing": 10465, | |
| "ĠBaron": 10466, | |
| "iate": 10467, | |
| "icut": 10468, | |
| "rik": 10469, | |
| "ĠFrog": 10470, | |
| "Ġraising": 10471, | |
| "Ġacceler": 10472, | |
| "Ġconfront": 10473, | |
| "ĠShort": 10474, | |
| "achelor": 10475, | |
| "Ġdict": 10476, | |
| "ĠEth": 10477, | |
| "ĠAlb": 10478, | |
| "ĠThough": 10479, | |
| "uela": 10480, | |
| "Fucking": 10481, | |
| "Ġtheat": 10482, | |
| "Ġmild": 10483, | |
| "Ġmode": 10484, | |
| "break": 10485, | |
| "ĠTower": 10486, | |
| "Ġoutta": 10487, | |
| "Ġsuccessfully": 10488, | |
| "ĠPolit": 10489, | |
| "Ġselfish": 10490, | |
| "Seriously": 10491, | |
| "Ġbills": 10492, | |
| "ĠRick": 10493, | |
| "Ġmustn": 10494, | |
| "ribed": 10495, | |
| "MY": 10496, | |
| "sighs": 10497, | |
| "ulance": 10498, | |
| "Ġoutput": 10499, | |
| "Ġparam": 10500, | |
| "Ġcondem": 10501, | |
| "pert": 10502, | |
| "Ġconsideration": 10503, | |
| "Ġcounsel": 10504, | |
| "Ġphilosopher": 10505, | |
| "lings": 10506, | |
| "Ġrarely": 10507, | |
| "Ġrejected": 10508, | |
| "Ġexpedition": 10509, | |
| "oen": 10510, | |
| "utter": 10511, | |
| "Ġjumping": 10512, | |
| "Ġpolite": 10513, | |
| "Att": 10514, | |
| "Ġdescribes": 10515, | |
| "Ġpremie": 10516, | |
| "ĠArgentina": 10517, | |
| "Ġvocal": 10518, | |
| "ideo": 10519, | |
| "Ġpowder": 10520, | |
| "riel": 10521, | |
| "uru": 10522, | |
| "Bea": 10523, | |
| "tra": 10524, | |
| "ĠRand": 10525, | |
| "Ġfinishing": 10526, | |
| "ĠPeters": 10527, | |
| "Ġranked": 10528, | |
| "ĠRussell": 10529, | |
| "mail": 10530, | |
| "agu": 10531, | |
| "Ġsquee": 10532, | |
| "Ġgenetic": 10533, | |
| "Ġintelligent": 10534, | |
| "Ġfires": 10535, | |
| "ĠAnderson": 10536, | |
| "Ġexpansion": 10537, | |
| "ĠPremier": 10538, | |
| "ĠDark": 10539, | |
| "Ġtwist": 10540, | |
| "Ġemperor": 10541, | |
| "ĠGulf": 10542, | |
| "Ġscra": 10543, | |
| "Ġpromote": 10544, | |
| "rings": 10545, | |
| "eria": 10546, | |
| "Ġfreak": 10547, | |
| "Ġbegged": 10548, | |
| "ĠSi": 10549, | |
| "ĠDallas": 10550, | |
| "ĠWrest": 10551, | |
| "odox": 10552, | |
| "Ġoptions": 10553, | |
| "Ġpurchased": 10554, | |
| "heastern": 10555, | |
| "Ġfert": 10556, | |
| "Ġvig": 10557, | |
| "ĠSpirit": 10558, | |
| "ĠHighness": 10559, | |
| "Oops": 10560, | |
| "uine": 10561, | |
| "oples": 10562, | |
| "quet": 10563, | |
| "Ġdescent": 10564, | |
| "Ġfascin": 10565, | |
| "mi": 10566, | |
| "Ġshaking": 10567, | |
| "Ġmistress": 10568, | |
| "ĠJudge": 10569, | |
| "Ġabstract": 10570, | |
| "QU": 10571, | |
| "Ġfict": 10572, | |
| "Ġdick": 10573, | |
| "Ġsituations": 10574, | |
| "Certainly": 10575, | |
| "Off": 10576, | |
| "ancing": 10577, | |
| "ĠSamuel": 10578, | |
| "Ġnovels": 10579, | |
| "ĠJulie": 10580, | |
| "Cool": 10581, | |
| "Sn": 10582, | |
| "ĠDream": 10583, | |
| "agram": 10584, | |
| "Ġinstantly": 10585, | |
| "Ġskull": 10586, | |
| "Ġhopefully": 10587, | |
| "ĠErn": 10588, | |
| "DP": 10589, | |
| "Ġrelatives": 10590, | |
| "Ġstays": 10591, | |
| "Whoops": 10592, | |
| "vard": 10593, | |
| "ĠMorris": 10594, | |
| "Ġcelebrated": 10595, | |
| "Ġdiamond": 10596, | |
| "Ġmathematics": 10597, | |
| "orus": 10598, | |
| "ĠFern": 10599, | |
| "inks": 10600, | |
| "Ġhammer": 10601, | |
| "Coming": 10602, | |
| "ĠFur": 10603, | |
| "oca": 10604, | |
| "dle": 10605, | |
| "Ġloop": 10606, | |
| "ĠDyn": 10607, | |
| "ĠÐ": 10608, | |
| "isk": 10609, | |
| "ĠBorn": 10610, | |
| "iga": 10611, | |
| "Ġdocumentary": 10612, | |
| "Hope": 10613, | |
| "Ġunfortunately": 10614, | |
| "ĠVik": 10615, | |
| "Ġtechniques": 10616, | |
| "Ġparking": 10617, | |
| "ĠHotel": 10618, | |
| "Ġconcluded": 10619, | |
| "gi": 10620, | |
| "onne": 10621, | |
| "Ġdrank": 10622, | |
| "Ġdiseases": 10623, | |
| "ĠJulia": 10624, | |
| "Ġpossessed": 10625, | |
| "Ġaspects": 10626, | |
| "Ġclients": 10627, | |
| "Ġbuzz": 10628, | |
| "ĠPalest": 10629, | |
| "odded": 10630, | |
| "Ġpuzzle": 10631, | |
| "Ġsometime": 10632, | |
| "Ġchim": 10633, | |
| "Ġbattles": 10634, | |
| "SR": 10635, | |
| "Ġlos": 10636, | |
| "Ġgran": 10637, | |
| "Ġforehead": 10638, | |
| "Ġsteep": 10639, | |
| "Ġregularly": 10640, | |
| "Ġceased": 10641, | |
| "ATOR": 10642, | |
| "ĠSky": 10643, | |
| "Ġexcess": 10644, | |
| "Ġpee": 10645, | |
| "Ġcuts": 10646, | |
| "ĠForeign": 10647, | |
| "ĠArea": 10648, | |
| "iper": 10649, | |
| "ĠAuthor": 10650, | |
| "ĠWalt": 10651, | |
| "ouses": 10652, | |
| "Ġconstruct": 10653, | |
| "Ġprocesses": 10654, | |
| "ĠWILL": 10655, | |
| "Ġcasual": 10656, | |
| "Ġscre": 10657, | |
| "ĠCountry": 10658, | |
| "ĠTransport": 10659, | |
| "lah": 10660, | |
| "vation": 10661, | |
| "asha": 10662, | |
| "acc": 10663, | |
| "ĠRio": 10664, | |
| "Ġdeer": 10665, | |
| "Ġchrist": 10666, | |
| "ĠMountains": 10667, | |
| "Ġmicrophone": 10668, | |
| "ĠTell": 10669, | |
| "Ġprey": 10670, | |
| "Ġgravity": 10671, | |
| "Ġleather": 10672, | |
| "Ġparad": 10673, | |
| "Close": 10674, | |
| "Ġemotions": 10675, | |
| "Ġadvertising": 10676, | |
| "Ġgoddess": 10677, | |
| "Ġconsequences": 10678, | |
| "Sarah": 10679, | |
| "rm": 10680, | |
| "ĠCarlos": 10681, | |
| "Ġmunicipalities": 10682, | |
| "ĠChristianity": 10683, | |
| "Ġstealing": 10684, | |
| "Ġuncomfort": 10685, | |
| "Us": 10686, | |
| "Use": 10687, | |
| "Ġic": 10688, | |
| "Ġrele": 10689, | |
| "Ġsuggestion": 10690, | |
| "Ġmurderer": 10691, | |
| "ĠHop": 10692, | |
| "Ġterribly": 10693, | |
| "Ġwidow": 10694, | |
| "Ġjunior": 10695, | |
| "Ġvary": 10696, | |
| "Ġresemb": 10697, | |
| "Ġloaded": 10698, | |
| "ĠReal": 10699, | |
| "Ġadvis": 10700, | |
| "Ġdemands": 10701, | |
| "MP": 10702, | |
| "ĠLow": 10703, | |
| "Ġqualified": 10704, | |
| "Ġgene": 10705, | |
| "ĠCook": 10706, | |
| "ĠRet": 10707, | |
| "Ġapproached": 10708, | |
| "Ġoccasions": 10709, | |
| "Ġlun": 10710, | |
| "Ġnit": 10711, | |
| "Ġclown": 10712, | |
| "Ġshouting": 10713, | |
| "Ġaccompanied": 10714, | |
| "AA": 10715, | |
| "dis": 10716, | |
| "Ġgross": 10717, | |
| "ĠAirl": 10718, | |
| "ĠJa": 10719, | |
| "Ġtricks": 10720, | |
| "Ġbeds": 10721, | |
| "Ġsurprising": 10722, | |
| "ĠMuslims": 10723, | |
| "Ġperspective": 10724, | |
| "iop": 10725, | |
| "olley": 10726, | |
| "Ġtitled": 10727, | |
| "Ġexecuted": 10728, | |
| "ĠDorothy": 10729, | |
| "Ugh": 10730, | |
| "Ġstared": 10731, | |
| "ĠBear": 10732, | |
| "inding": 10733, | |
| "ĠPhys": 10734, | |
| "Ġdevoted": 10735, | |
| "Ġbelly": 10736, | |
| "Ġtribes": 10737, | |
| "Sur": 10738, | |
| "Ġstrip": 10739, | |
| "''": 10740, | |
| "Ġpunch": 10741, | |
| "Ġstorage": 10742, | |
| "Ġtranslated": 10743, | |
| "Ġmeasured": 10744, | |
| "hum": 10745, | |
| "Ġjerk": 10746, | |
| "ĠNord": 10747, | |
| "ogen": 10748, | |
| "Ġpainful": 10749, | |
| "Ġpractically": 10750, | |
| "Ġinjuries": 10751, | |
| "Ġdenied": 10752, | |
| "Ġfetch": 10753, | |
| "Ġsailed": 10754, | |
| "Ġcheeks": 10755, | |
| "Ġsouthwest": 10756, | |
| "Plus": 10757, | |
| "Ġcabinet": 10758, | |
| "Second": 10759, | |
| "isible": 10760, | |
| "ĠPant": 10761, | |
| "ĠJake": 10762, | |
| "uda": 10763, | |
| "ĠVery": 10764, | |
| "Ġapples": 10765, | |
| "Ġsympathy": 10766, | |
| "ndered": 10767, | |
| "Ġpayment": 10768, | |
| "Ġargued": 10769, | |
| "Ġsustain": 10770, | |
| "hop": 10771, | |
| "ĠVegas": 10772, | |
| "Ġbrick": 10773, | |
| "Ġkills": 10774, | |
| "Ġadmir": 10775, | |
| "Ġactivist": 10776, | |
| "Ġinnov": 10777, | |
| "Ġtel": 10778, | |
| "ĠPRO": 10779, | |
| "Ġmothers": 10780, | |
| "ĠCuba": 10781, | |
| "ĠNelson": 10782, | |
| "Ġwarrant": 10783, | |
| "Ġpromotion": 10784, | |
| "ĠPictures": 10785, | |
| "Ġpist": 10786, | |
| "ĠTit": 10787, | |
| "Ġdefine": 10788, | |
| "Ġdelivery": 10789, | |
| "Seven": 10790, | |
| "Each": 10791, | |
| "Sighs": 10792, | |
| "Ġhire": 10793, | |
| "Ġhelicop": 10794, | |
| "Ġcandy": 10795, | |
| "Ġsections": 10796, | |
| "Ġcared": 10797, | |
| "ĠMand": 10798, | |
| "ĠMiami": 10799, | |
| "oper": 10800, | |
| "ĠGene": 10801, | |
| "igs": 10802, | |
| "Ġgenerations": 10803, | |
| "Ġresulting": 10804, | |
| "ĠNobel": 10805, | |
| "Ġensure": 10806, | |
| "cod": 10807, | |
| "Ġcinem": 10808, | |
| "ĠDeputy": 10809, | |
| "ĠHouston": 10810, | |
| "Ġcub": 10811, | |
| "Ġmast": 10812, | |
| "agan": 10813, | |
| "Ġuncertain": 10814, | |
| "ĠTIM": 10815, | |
| "earl": 10816, | |
| "Ġcompass": 10817, | |
| "Ġfloating": 10818, | |
| "ĠCos": 10819, | |
| "Ġunemploy": 10820, | |
| "Ġsurve": 10821, | |
| "Ġinstall": 10822, | |
| "arette": 10823, | |
| "Ġpizza": 10824, | |
| "Min": 10825, | |
| "Ġsoutheast": 10826, | |
| "Ġfranch": 10827, | |
| "Ġbeef": 10828, | |
| "ialect": 10829, | |
| "Ġrage": 10830, | |
| "Ġlogic": 10831, | |
| "walk": 10832, | |
| "Ġtum": 10833, | |
| "ĠTak": 10834, | |
| "mingham": 10835, | |
| "Ġmagnific": 10836, | |
| "ĠWayne": 10837, | |
| "ĠNazi": 10838, | |
| "Ġfeathers": 10839, | |
| "ĠTel": 10840, | |
| "Ġlip": 10841, | |
| "ĠLast": 10842, | |
| "ANS": 10843, | |
| "Ġdatab": 10844, | |
| "Holy": 10845, | |
| "mic": 10846, | |
| "usalem": 10847, | |
| "ĠGon": 10848, | |
| "Ġawkward": 10849, | |
| "Ġdeny": 10850, | |
| "ĠCOVID": 10851, | |
| "ĠWelsh": 10852, | |
| "Ġwounds": 10853, | |
| "veland": 10854, | |
| "Ġvo": 10855, | |
| "Ġextract": 10856, | |
| "Ġgovernments": 10857, | |
| "former": 10858, | |
| "Ġchairs": 10859, | |
| "ĠDakota": 10860, | |
| "Norm": 10861, | |
| "Ġtu": 10862, | |
| "Ġartific": 10863, | |
| "Ġconcerning": 10864, | |
| "grat": 10865, | |
| "Ġtremendous": 10866, | |
| "Ġresidence": 10867, | |
| "ĠMario": 10868, | |
| "Ġdrives": 10869, | |
| "Ġlads": 10870, | |
| "Ġstretch": 10871, | |
| "Ġregistered": 10872, | |
| "Ġbin": 10873, | |
| "ando": 10874, | |
| "ĠLinda": 10875, | |
| "ifications": 10876, | |
| "Ġdragged": 10877, | |
| "Ġfisher": 10878, | |
| "iane": 10879, | |
| "Ġlandscape": 10880, | |
| "div": 10881, | |
| "pat": 10882, | |
| "Ġloo": 10883, | |
| "Ġpublisher": 10884, | |
| "ĠLeo": 10885, | |
| "Ġburden": 10886, | |
| "Ġfiring": 10887, | |
| "ĠANY": 10888, | |
| "bus": 10889, | |
| "ÅŁ": 10890, | |
| "Ġshares": 10891, | |
| "ĠExam": 10892, | |
| "ĠNorwe": 10893, | |
| "bish": 10894, | |
| "world": 10895, | |
| "Ġtiger": 10896, | |
| "Ġwives": 10897, | |
| "Ġdeaf": 10898, | |
| "Ġnodded": 10899, | |
| "Ġreception": 10900, | |
| "Ġaccent": 10901, | |
| "Ġlabour": 10902, | |
| "town": 10903, | |
| "aser": 10904, | |
| "ĠRights": 10905, | |
| "Ġdischar": 10906, | |
| "cH": 10907, | |
| "ĠPed": 10908, | |
| "Ġprev": 10909, | |
| "ĠTrust": 10910, | |
| "Ġtraveling": 10911, | |
| "ĠCrown": 10912, | |
| "Ġnortheast": 10913, | |
| "Ġinject": 10914, | |
| "Ġgender": 10915, | |
| "Ġtrapped": 10916, | |
| "Ġtriangle": 10917, | |
| "Ġenjoying": 10918, | |
| "Ġbehave": 10919, | |
| "ĠMetropolitan": 10920, | |
| "Cr": 10921, | |
| "Ġarrow": 10922, | |
| "Ġconfusion": 10923, | |
| "Clear": 10924, | |
| "rection": 10925, | |
| "ĠMAR": 10926, | |
| "ĠJosh": 10927, | |
| "oshi": 10928, | |
| "Ġgenuine": 10929, | |
| "Ġmounted": 10930, | |
| "Ġcottage": 10931, | |
| "borough": 10932, | |
| "ĠSem": 10933, | |
| "unted": 10934, | |
| "ĠLisa": 10935, | |
| "Trust": 10936, | |
| "rations": 10937, | |
| "Ġlamb": 10938, | |
| "Ġvital": 10939, | |
| "Ġdelicate": 10940, | |
| "Ġgarbage": 10941, | |
| "ĠTelevision": 10942, | |
| "Young": 10943, | |
| "ĠRap": 10944, | |
| "Ġune": 10945, | |
| "ĠFrederick": 10946, | |
| "ĠMarshall": 10947, | |
| "Ġauth": 10948, | |
| "urbed": 10949, | |
| "OMAN": 10950, | |
| "Ġbust": 10951, | |
| "Ġjungle": 10952, | |
| "Ġsouls": 10953, | |
| "Ġcust": 10954, | |
| "egro": 10955, | |
| "Ġcotton": 10956, | |
| "Ġscarcely": 10957, | |
| "din": 10958, | |
| "ded": 10959, | |
| "Ġsear": 10960, | |
| "Ġbackwards": 10961, | |
| "Ġpoems": 10962, | |
| "ĠMalays": 10963, | |
| "Ġaccurate": 10964, | |
| "Ġprovinces": 10965, | |
| "Mama": 10966, | |
| "ĠCR": 10967, | |
| "ĠLabor": 10968, | |
| "ĠOkay": 10969, | |
| "Tonight": 10970, | |
| "whe": 10971, | |
| "Ġconscience": 10972, | |
| "Ġinsisted": 10973, | |
| "Ġhumanity": 10974, | |
| "Ġsuitable": 10975, | |
| "Footnote": 10976, | |
| "Ġhack": 10977, | |
| "Ġpresum": 10978, | |
| "Ġtransition": 10979, | |
| "bling": 10980, | |
| "ĠKay": 10981, | |
| "Ġdivine": 10982, | |
| "Ġcookies": 10983, | |
| "ĠWalker": 10984, | |
| "According": 10985, | |
| "Ġgle": 10986, | |
| "ĠTun": 10987, | |
| "ĠCall": 10988, | |
| "Ġmuscles": 10989, | |
| "Ġdesigns": 10990, | |
| "Ġamounts": 10991, | |
| "Ġpeaceful": 10992, | |
| "Ġparticipate": 10993, | |
| "Ġairplane": 10994, | |
| "Ġnotion": 10995, | |
| "ĠEmma": 10996, | |
| "Ġsurrender": 10997, | |
| "Ġchess": 10998, | |
| "pled": 10999, | |
| "aund": 11000, | |
| "Ġinfection": 11001, | |
| "Ġsoccer": 11002, | |
| "Ġpeasant": 11003, | |
| "ixon": 11004, | |
| "Ġsneak": 11005, | |
| "have": 11006, | |
| "ĠOR": 11007, | |
| "di": 11008, | |
| "ĠSri": 11009, | |
| "estion": 11010, | |
| "Ġsuspicious": 11011, | |
| "ĠHindu": 11012, | |
| "ĠConnecticut": 11013, | |
| "arse": 11014, | |
| "Ġrehe": 11015, | |
| "Ġchlor": 11016, | |
| "Ġladder": 11017, | |
| "Ġbrig": 11018, | |
| "Lou": 11019, | |
| "ĠCatherine": 11020, | |
| "aste": 11021, | |
| "Ġinterior": 11022, | |
| "ĠMarilla": 11023, | |
| "Ġcreep": 11024, | |
| "ĠSammy": 11025, | |
| "Ġsticks": 11026, | |
| "Ġarrangement": 11027, | |
| "atus": 11028, | |
| "Ġrenew": 11029, | |
| "Ġscan": 11030, | |
| "ologies": 11031, | |
| "Ġmadam": 11032, | |
| "Ġinsects": 11033, | |
| "Ġearthquake": 11034, | |
| "Ġtag": 11035, | |
| "ĠLang": 11036, | |
| "ĠThird": 11037, | |
| "Ġdropping": 11038, | |
| "nity": 11039, | |
| "Ġwagon": 11040, | |
| "ĠRu": 11041, | |
| "ĠRef": 11042, | |
| "ĠLive": 11043, | |
| "Ġcongrat": 11044, | |
| "Ġregister": 11045, | |
| "Ġsubstance": 11046, | |
| "Ġpurchase": 11047, | |
| "Hell": 11048, | |
| "Ġnasty": 11049, | |
| "Ġcolours": 11050, | |
| "Ġmaintained": 11051, | |
| "Ġsuspic": 11052, | |
| "ĠDenmark": 11053, | |
| "Ġcandidates": 11054, | |
| "Ġhydrogen": 11055, | |
| "Ġvegetables": 11056, | |
| "ĠClinton": 11057, | |
| "chard": 11058, | |
| "ĠHorn": 11059, | |
| "Ġconvention": 11060, | |
| "Ġcontrary": 11061, | |
| "ega": 11062, | |
| "Ġcameras": 11063, | |
| "Ġpigs": 11064, | |
| "asures": 11065, | |
| "ocking": 11066, | |
| "Ġsuburb": 11067, | |
| "Ġassure": 11068, | |
| "Ġexplosion": 11069, | |
| "ĠAfghanistan": 11070, | |
| "orig": 11071, | |
| "alph": 11072, | |
| "ĠFriend": 11073, | |
| "ranean": 11074, | |
| "ocity": 11075, | |
| "Ġtrash": 11076, | |
| "Ġpresentation": 11077, | |
| "Ġhistorian": 11078, | |
| "intendo": 11079, | |
| "Ġlyrics": 11080, | |
| "Ġwipe": 11081, | |
| "ĠDur": 11082, | |
| "Ġhydro": 11083, | |
| "ĠMum": 11084, | |
| "oped": 11085, | |
| "ĠNam": 11086, | |
| "laughter": 11087, | |
| "kee": 11088, | |
| "Ġdifferently": 11089, | |
| "Ġexplo": 11090, | |
| "ĠTrump": 11091, | |
| "ĠEmily": 11092, | |
| "ĠPortugal": 11093, | |
| "Ġbishop": 11094, | |
| "ĠGot": 11095, | |
| "\":": 11096, | |
| "ĠAge": 11097, | |
| "Ġrit": 11098, | |
| "reaming": 11099, | |
| "ĠAffairs": 11100, | |
| "Child": 11101, | |
| "Half": 11102, | |
| "Ġsigh": 11103, | |
| "ader": 11104, | |
| "ĠCrow": 11105, | |
| "Ġshove": 11106, | |
| "Ġsup": 11107, | |
| "ortion": 11108, | |
| "és": 11109, | |
| "Ġsalary": 11110, | |
| "Ġintellectual": 11111, | |
| "cus": 11112, | |
| "gage": 11113, | |
| "ĠSEE": 11114, | |
| "DER": 11115, | |
| "Ġtheories": 11116, | |
| "Ġnerves": 11117, | |
| "Ġserial": 11118, | |
| "ĠAbb": 11119, | |
| "Ġlinear": 11120, | |
| "ĠDetroit": 11121, | |
| "zi": 11122, | |
| "Ġlaura": 11123, | |
| "Ġnavig": 11124, | |
| "Ġhen": 11125, | |
| "ĠProgram": 11126, | |
| "Ġevidently": 11127, | |
| "irrel": 11128, | |
| "Ġstead": 11129, | |
| "ooh": 11130, | |
| "ĠWright": 11131, | |
| "acking": 11132, | |
| "Ġimmense": 11133, | |
| "Ġblessed": 11134, | |
| "cu": 11135, | |
| "edge": 11136, | |
| "ettle": 11137, | |
| "ĠLarry": 11138, | |
| "wealth": 11139, | |
| "Ġparticles": 11140, | |
| "Ġcough": 11141, | |
| "ĠKr": 11142, | |
| "Ġextension": 11143, | |
| "ĠBron": 11144, | |
| "regon": 11145, | |
| "ĠHighway": 11146, | |
| "Ġchemistry": 11147, | |
| "Ġtravelling": 11148, | |
| "repre": 11149, | |
| "Ġsore": 11150, | |
| "Ġpressed": 11151, | |
| "iko": 11152, | |
| "Ġedges": 11153, | |
| "dé": 11154, | |
| "rov": 11155, | |
| "Ġstake": 11156, | |
| "Ġcoin": 11157, | |
| "Ġfeaturing": 11158, | |
| "Ġreun": 11159, | |
| "rob": 11160, | |
| "Ġjoking": 11161, | |
| "ĠGrey": 11162, | |
| "Ġsprang": 11163, | |
| "Ġrestored": 11164, | |
| "ikes": 11165, | |
| "shot": 11166, | |
| "century": 11167, | |
| "ÃŃa": 11168, | |
| "Ġagriculture": 11169, | |
| "Ġcontemporary": 11170, | |
| "Ġexhibit": 11171, | |
| "ĠTHINK": 11172, | |
| "Forgive": 11173, | |
| "headed": 11174, | |
| "Anyone": 11175, | |
| "Ġdrops": 11176, | |
| "Ġencoun": 11177, | |
| "Ġsuspected": 11178, | |
| "believ": 11179, | |
| "Ġton": 11180, | |
| "Ġsmallest": 11181, | |
| "Ġobliged": 11182, | |
| "Ġalphabet": 11183, | |
| "whel": 11184, | |
| "held": 11185, | |
| "ĠImp": 11186, | |
| "ĠPA": 11187, | |
| "Ġchannels": 11188, | |
| "Anybody": 11189, | |
| "Ġeffectively": 11190, | |
| "rooms": 11191, | |
| "Ġkittie": 11192, | |
| "reprene": 11193, | |
| "Äį": 11194, | |
| "Ġnaught": 11195, | |
| "ĠCommunist": 11196, | |
| "Ġestablishment": 11197, | |
| "ĠBaltimore": 11198, | |
| "ĠGy": 11199, | |
| "Ġconsec": 11200, | |
| "Ġmans": 11201, | |
| "Ġdispl": 11202, | |
| "rama": 11203, | |
| "Ġrhythm": 11204, | |
| "King": 11205, | |
| "wald": 11206, | |
| "ĠLot": 11207, | |
| "ods": 11208, | |
| "Ġpenny": 11209, | |
| "rolled": 11210, | |
| "ĠJustin": 11211, | |
| "ĠTerry": 11212, | |
| "ĠDong": 11213, | |
| "oga": 11214, | |
| "Ġmatrix": 11215, | |
| "Ġpublication": 11216, | |
| "ĠGreater": 11217, | |
| "ĠFinally": 11218, | |
| "Gee": 11219, | |
| "bly": 11220, | |
| "Ġcows": 11221, | |
| "Ġromance": 11222, | |
| "Spec": 11223, | |
| "hant": 11224, | |
| "gedy": 11225, | |
| "Ġmistaken": 11226, | |
| "Ġpoliceman": 11227, | |
| "Haven": 11228, | |
| "Ġje": 11229, | |
| "Ġlieutenant": 11230, | |
| "Ġhunter": 11231, | |
| "Å«": 11232, | |
| "Ġassembly": 11233, | |
| "Ġquote": 11234, | |
| "Ġcharm": 11235, | |
| "ĠTHEY": 11236, | |
| "iciency": 11237, | |
| "oute": 11238, | |
| "Ġclay": 11239, | |
| "Ġcaps": 11240, | |
| "ĠTamil": 11241, | |
| "Ġlend": 11242, | |
| "Ġseas": 11243, | |
| "Ġversus": 11244, | |
| "ĠBenjamin": 11245, | |
| "ĠGraham": 11246, | |
| "hill": 11247, | |
| "hey": 11248, | |
| "ĠSax": 11249, | |
| "ĠGray": 11250, | |
| "Ġexternal": 11251, | |
| "Ġrevol": 11252, | |
| "Ġcompanions": 11253, | |
| "word": 11254, | |
| "ĠMember": 11255, | |
| "Whose": 11256, | |
| "Instead": 11257, | |
| "Ġgorge": 11258, | |
| "ĠNintendo": 11259, | |
| "Ġdough": 11260, | |
| "Ġliver": 11261, | |
| "ells": 11262, | |
| "Ġderived": 11263, | |
| "Ġblanket": 11264, | |
| "Push": 11265, | |
| "ww": 11266, | |
| "ilia": 11267, | |
| "icken": 11268, | |
| "Ġbund": 11269, | |
| "Ġcommunicate": 11270, | |
| "ĠWarren": 11271, | |
| "Ġshadows": 11272, | |
| "Ġcommanded": 11273, | |
| "Ġdoct": 11274, | |
| "Ġswept": 11275, | |
| "Ġplanets": 11276, | |
| "Ġpacked": 11277, | |
| "ĠMilan": 11278, | |
| "Ġreci": 11279, | |
| "Ġaddressed": 11280, | |
| "Ġrespectively": 11281, | |
| "why": 11282, | |
| "ĠMedal": 11283, | |
| "Ġfits": 11284, | |
| "Ġconsent": 11285, | |
| "ĠChand": 11286, | |
| "Ġdownload": 11287, | |
| "ĠMemorial": 11288, | |
| "nik": 11289, | |
| "emen": 11290, | |
| "Ġvoy": 11291, | |
| "ĠKan": 11292, | |
| "Ġchin": 11293, | |
| "Ġcheek": 11294, | |
| "Ġcharts": 11295, | |
| "Ġcray": 11296, | |
| "Ġcolony": 11297, | |
| "offs": 11298, | |
| "Ġdowntown": 11299, | |
| "ĠAdmiral": 11300, | |
| "orable": 11301, | |
| "acent": 11302, | |
| "Ġrounds": 11303, | |
| "ĠExec": 11304, | |
| "ĠAntonio": 11305, | |
| "Ġefficient": 11306, | |
| "Ġtrusted": 11307, | |
| "VERY": 11308, | |
| "ĠJosé": 11309, | |
| "GRUN": 11310, | |
| "Ġbush": 11311, | |
| "yler": 11312, | |
| "Ġfortun": 11313, | |
| "Ġscheduled": 11314, | |
| "ĠNorwegian": 11315, | |
| "Ġdialect": 11316, | |
| "Ġweigh": 11317, | |
| "Ġinvitation": 11318, | |
| "Ġdreaming": 11319, | |
| "Yet": 11320, | |
| "power": 11321, | |
| "Ġfet": 11322, | |
| "usions": 11323, | |
| "elect": 11324, | |
| "Ġcloset": 11325, | |
| "Ġoccupation": 11326, | |
| "Ġmechanical": 11327, | |
| "ĠLeonard": 11328, | |
| "Ġwrapped": 11329, | |
| "ĠBangladesh": 11330, | |
| "aku": 11331, | |
| "?!\"": 11332, | |
| "Hen": 11333, | |
| "three": 11334, | |
| "Ġovert": 11335, | |
| "ĠArmen": 11336, | |
| "ĠAncient": 11337, | |
| "Ġeighth": 11338, | |
| "Ġroutes": 11339, | |
| "Ġcoward": 11340, | |
| "helle": 11341, | |
| "Ġpeoples": 11342, | |
| "Ġengagement": 11343, | |
| "Ġbullshit": 11344, | |
| "Ġlinks": 11345, | |
| "ĠJerusalem": 11346, | |
| "ĠCaesar": 11347, | |
| "âĶ": 11348, | |
| "ested": 11349, | |
| "ĠStuart": 11350, | |
| "Ġaccord": 11351, | |
| "Ġdesignated": 11352, | |
| "entlemen": 11353, | |
| "Ġanxiety": 11354, | |
| "Ġconverted": 11355, | |
| "Ġexhibition": 11356, | |
| "Bob": 11357, | |
| "lia": 11358, | |
| "ulu": 11359, | |
| "Ġdreamed": 11360, | |
| "boat": 11361, | |
| "Ġconcentration": 11362, | |
| "ĠDE": 11363, | |
| "thodox": 11364, | |
| "ĠLar": 11365, | |
| "Ġcultiv": 11366, | |
| "ĠMadrid": 11367, | |
| "Dou": 11368, | |
| "mare": 11369, | |
| "abet": 11370, | |
| "ften": 11371, | |
| "Ġgloom": 11372, | |
| "Ġorganisation": 11373, | |
| "ĠUtah": 11374, | |
| "ĠBirmingham": 11375, | |
| "FOR": 11376, | |
| "Ġcents": 11377, | |
| "Ġretain": 11378, | |
| "ĠAcc": 11379, | |
| "Ġanth": 11380, | |
| "AME": 11381, | |
| "ĠAtlanta": 11382, | |
| "Ġpillow": 11383, | |
| "gus": 11384, | |
| "xide": 11385, | |
| "ø": 11386, | |
| "α": 11387, | |
| "Ġori": 11388, | |
| "ayan": 11389, | |
| "ĠTW": 11390, | |
| "ĠRud": 11391, | |
| "iang": 11392, | |
| "ahn": 11393, | |
| "Ġimpressive": 11394, | |
| "Ġlocations": 11395, | |
| "Ġveter": 11396, | |
| "Ġdestiny": 11397, | |
| "Ġzoo": 11398, | |
| "Ġinvolves": 11399, | |
| "usk": 11400, | |
| "Ġexit": 11401, | |
| "Ġchoices": 11402, | |
| "Ġfounding": 11403, | |
| "Ġincreases": 11404, | |
| "Ġobser": 11405, | |
| "ĠRoberts": 11406, | |
| "Ġscholar": 11407, | |
| "Ġsatellite": 11408, | |
| ")}": 11409, | |
| "Follow": 11410, | |
| "Ġpace": 11411, | |
| "aron": 11412, | |
| "Ġcolored": 11413, | |
| "Ġmisunder": 11414, | |
| "ĠModern": 11415, | |
| "Ear": 11416, | |
| "Ġgates": 11417, | |
| "Ġstern": 11418, | |
| "ĠFace": 11419, | |
| "Ġmoder": 11420, | |
| "Ġdetective": 11421, | |
| "Ġdistinguished": 11422, | |
| "maker": 11423, | |
| "Ġdoggie": 11424, | |
| "ĠBenn": 11425, | |
| "vas": 11426, | |
| "ĠVis": 11427, | |
| "Ġindicate": 11428, | |
| "Ġpanic": 11429, | |
| "Ġpraise": 11430, | |
| "ĠBarbara": 11431, | |
| "ĠAirlines": 11432, | |
| "Best": 11433, | |
| "Ġspider": 11434, | |
| "harm": 11435, | |
| "ĠYouth": 11436, | |
| "ĠJanet": 11437, | |
| "ĠParaly": 11438, | |
| "Ġdynasty": 11439, | |
| "-+": 11440, | |
| "Hy": 11441, | |
| "ethe": 11442, | |
| "ieval": 11443, | |
| "Ġcontrols": 11444, | |
| "Blue": 11445, | |
| "Ġtranslation": 11446, | |
| "Ass": 11447, | |
| "ĠTreat": 11448, | |
| "ĠInn": 11449, | |
| "ANG": 11450, | |
| "Ġpurse": 11451, | |
| "Ġadvoc": 11452, | |
| "Ġambulance": 11453, | |
| "Co": 11454, | |
| "ilation": 11455, | |
| "iland": 11456, | |
| "olph": 11457, | |
| "aima": 11458, | |
| "Ġbottles": 11459, | |
| "ĠGrandfather": 11460, | |
| "shaped": 11461, | |
| "ĠObama": 11462, | |
| "Ġpairs": 11463, | |
| "ĠCad": 11464, | |
| "Ġalike": 11465, | |
| "Ġslope": 11466, | |
| "Ġsandwich": 11467, | |
| "Ġconstituency": 11468, | |
| "Ġuncomfortable": 11469, | |
| "Ġdecade": 11470, | |
| "ĠSpencer": 11471, | |
| "Ġclimbing": 11472, | |
| "Ġdining": 11473, | |
| "Ġshorter": 11474, | |
| "otto": 11475, | |
| "ĠColomb": 11476, | |
| "change": 11477, | |
| "ĠCleveland": 11478, | |
| "Rec": 11479, | |
| "pse": 11480, | |
| "uits": 11481, | |
| "Ġbeans": 11482, | |
| "ĠCow": 11483, | |
| "Ġdoin": 11484, | |
| "Ġovercome": 11485, | |
| "Ġcarries": 11486, | |
| "Ġburnt": 11487, | |
| "Ġwhistle": 11488, | |
| "Ä«": 11489, | |
| "ĠStew": 11490, | |
| "Ġcriticism": 11491, | |
| "ĠCampbell": 11492, | |
| "ĠParalymp": 11493, | |
| "Ant": 11494, | |
| "Sil": 11495, | |
| "Ġtid": 11496, | |
| "Ġbump": 11497, | |
| "Ġdared": 11498, | |
| "ĠBed": 11499, | |
| "ĠNeb": 11500, | |
| "zard": 11501, | |
| "ë": 11502, | |
| "Ġjudges": 11503, | |
| "Ġpreparing": 11504, | |
| "Ġassignment": 11505, | |
| "Ġheir": 11506, | |
| "ĠUEF": 11507, | |
| "Ġcompare": 11508, | |
| "Ġindex": 11509, | |
| "Unfortunately": 11510, | |
| "Ġtraveled": 11511, | |
| "ructure": 11512, | |
| "kers": 11513, | |
| "Ġchips": 11514, | |
| "imens": 11515, | |
| "ĠBass": 11516, | |
| "ĠLore": 11517, | |
| "ountain": 11518, | |
| "ĠVI": 11519, | |
| "Ġdesired": 11520, | |
| "Ġdrown": 11521, | |
| "Ġroutine": 11522, | |
| "Ġagricultural": 11523, | |
| "Finally": 11524, | |
| "ĠMolly": 11525, | |
| "ĠBL": 11526, | |
| "ĠHat": 11527, | |
| "Ġgenerous": 11528, | |
| "Ġdanced": 11529, | |
| "rehens": 11530, | |
| "ĠGarden": 11531, | |
| "Ġspray": 11532, | |
| "Ġbuck": 11533, | |
| "ĠYan": 11534, | |
| "Ġcrimin": 11535, | |
| "olo": 11536, | |
| "ĠConstant": 11537, | |
| "Ġavo": 11538, | |
| "ĠHunter": 11539, | |
| "Sub": 11540, | |
| "Ġroses": 11541, | |
| "orship": 11542, | |
| "ĠMedic": 11543, | |
| "Ġboundary": 11544, | |
| "Hit": 11545, | |
| "hour": 11546, | |
| "Ġorphan": 11547, | |
| "Ġblown": 11548, | |
| "Ġnucle": 11549, | |
| "Ġfeared": 11550, | |
| "ĠSally": 11551, | |
| "Ġvoting": 11552, | |
| "Ġcage": 11553, | |
| "ĠMeanwhile": 11554, | |
| "ĠLower": 11555, | |
| "Ġplug": 11556, | |
| "Ġoverwhel": 11557, | |
| "Ġmerc": 11558, | |
| "related": 11559, | |
| "Ġdemocracy": 11560, | |
| "Ġdated": 11561, | |
| "Ġsheets": 11562, | |
| "Ġsignals": 11563, | |
| "armed": 11564, | |
| "Ġseve": 11565, | |
| "ĠKl": 11566, | |
| "Ġscattered": 11567, | |
| "ĠGuin": 11568, | |
| "grad": 11569, | |
| "Bra": 11570, | |
| "nut": 11571, | |
| "ĠSound": 11572, | |
| "ifies": 11573, | |
| "Ġwhilst": 11574, | |
| "Ġcharacteristics": 11575, | |
| "Rob": 11576, | |
| "Ġturb": 11577, | |
| "inburgh": 11578, | |
| "ĠRi": 11579, | |
| "active": 11580, | |
| "Ġhelpless": 11581, | |
| "Ġorganic": 11582, | |
| "ĠMicrosoft": 11583, | |
| "Ever": 11584, | |
| "Ġwrestling": 11585, | |
| "Ġimpress": 11586, | |
| "Ġpatience": 11587, | |
| "ICK": 11588, | |
| "ĠMelbourne": 11589, | |
| "Ġthoroughly": 11590, | |
| "Tra": 11591, | |
| "Yup": 11592, | |
| "ĠYouT": 11593, | |
| "Almost": 11594, | |
| "Ġcouch": 11595, | |
| "Ġrocket": 11596, | |
| "Perfect": 11597, | |
| "wind": 11598, | |
| "ector": 11599, | |
| "ĠManhattan": 11600, | |
| "Ġgrain": 11601, | |
| "Ġdomain": 11602, | |
| "Ġuniversal": 11603, | |
| "giving": 11604, | |
| "ĠSciences": 11605, | |
| "Ġperiods": 11606, | |
| "Ġstriking": 11607, | |
| "Ġmidst": 11608, | |
| "Ġcuriosity": 11609, | |
| "Ġcigarette": 11610, | |
| "Ġbury": 11611, | |
| "asses": 11612, | |
| "issance": 11613, | |
| "Ġfantasy": 11614, | |
| "Ġpatch": 11615, | |
| "ĠChat": 11616, | |
| "Ġruler": 11617, | |
| "white": 11618, | |
| "Ġeldest": 11619, | |
| "Ġadapted": 11620, | |
| "Might": 11621, | |
| "pot": 11622, | |
| "а": 11623, | |
| "ĠBri": 11624, | |
| "inkle": 11625, | |
| "plete": 11626, | |
| "Ġindicated": 11627, | |
| "Ġdesigner": 11628, | |
| "Ġmummy": 11629, | |
| "Supp": 11630, | |
| "Ġrejo": 11631, | |
| "Ġconsisted": 11632, | |
| "Ġproduces": 11633, | |
| "Ġeats": 11634, | |
| "Ġprovision": 11635, | |
| "ACE": 11636, | |
| "ĠCommunity": 11637, | |
| "Ġneutral": 11638, | |
| "pherd": 11639, | |
| "Ġstub": 11640, | |
| "ĠCurt": 11641, | |
| "ĠJe": 11642, | |
| "ĠOregon": 11643, | |
| "Ġcomposition": 11644, | |
| "Ġlegit": 11645, | |
| "Ġmechanism": 11646, | |
| "ĠHugh": 11647, | |
| "June": 11648, | |
| "uto": 11649, | |
| "Ġunited": 11650, | |
| "Ġinfl": 11651, | |
| "Ġsleepy": 11652, | |
| "ĠGuy": 11653, | |
| "Ġshark": 11654, | |
| "ĠBulgar": 11655, | |
| "James": 11656, | |
| "owser": 11657, | |
| "Ġsends": 11658, | |
| "Ġrepresentation": 11659, | |
| "Ġseventeen": 11660, | |
| "icycle": 11661, | |
| "Laughs": 11662, | |
| "mind": 11663, | |
| "ĠWes": 11664, | |
| "Ġclue": 11665, | |
| "Ġsla": 11666, | |
| "Ġthrust": 11667, | |
| "Ġirrit": 11668, | |
| "Ġshocked": 11669, | |
| "ĠNad": 11670, | |
| "ĠStaff": 11671, | |
| "ĠFinland": 11672, | |
| "ĠLiberal": 11673, | |
| "Number": 11674, | |
| "level": 11675, | |
| "imony": 11676, | |
| "Ġtrading": 11677, | |
| "Ġmagazines": 11678, | |
| "igenous": 11679, | |
| "ju": 11680, | |
| "jud": 11681, | |
| "Ġfame": 11682, | |
| "ĠBuff": 11683, | |
| "ĠBesides": 11684, | |
| "Ġfucked": 11685, | |
| "ĠGeoff": 11686, | |
| "Ġanticip": 11687, | |
| "believable": 11688, | |
| "Mike": 11689, | |
| "Ġflex": 11690, | |
| "omo": 11691, | |
| "ĠNed": 11692, | |
| "ĠShir": 11693, | |
| "Res": 11694, | |
| "ĠKit": 11695, | |
| "ĠUpper": 11696, | |
| "Ġwaist": 11697, | |
| "Ġgathering": 11698, | |
| "oseph": 11699, | |
| "Ġverse": 11700, | |
| "Ġliberty": 11701, | |
| "ĠBusiness": 11702, | |
| "cillor": 11703, | |
| "gate": 11704, | |
| "lines": 11705, | |
| "yers": 11706, | |
| "agg": 11707, | |
| "izer": 11708, | |
| "ĠServices": 11709, | |
| "ĠMort": 11710, | |
| "Ġarray": 11711, | |
| "Ġdeputy": 11712, | |
| "Ġoven": 11713, | |
| "Ġdot": 11714, | |
| "Ġneuro": 11715, | |
| "oslav": 11716, | |
| "Ġclo": 11717, | |
| "ĠPrim": 11718, | |
| "lahoma": 11719, | |
| "CR": 11720, | |
| "SA": 11721, | |
| "Ġsung": 11722, | |
| "iti": 11723, | |
| "Ġcamps": 11724, | |
| "Ġpunk": 11725, | |
| "ĠBec": 11726, | |
| "bean": 11727, | |
| "ĠThanks": 11728, | |
| "Dis": 11729, | |
| "graph": 11730, | |
| "Ġappet": 11731, | |
| "pshire": 11732, | |
| "Ġrelie": 11733, | |
| "ĠSingh": 11734, | |
| "cat": 11735, | |
| "ĠIl": 11736, | |
| "ĠCoun": 11737, | |
| "Ġcompens": 11738, | |
| "OWN": 11739, | |
| "ĠTerrit": 11740, | |
| "person": 11741, | |
| "omot": 11742, | |
| "ĠJen": 11743, | |
| "Ġexplains": 11744, | |
| "ĠFaith": 11745, | |
| "Ġencouraged": 11746, | |
| "ĠFat": 11747, | |
| "ĠPrix": 11748, | |
| "Ġremarked": 11749, | |
| "aire": 11750, | |
| "Ġvic": 11751, | |
| "issions": 11752, | |
| "anka": 11753, | |
| "ĠSeven": 11754, | |
| "Ġrubber": 11755, | |
| "OUND": 11756, | |
| "aco": 11757, | |
| "Ġalert": 11758, | |
| "...!\"": 11759, | |
| "Ġfictional": 11760, | |
| "acey": 11761, | |
| "Soon": 11762, | |
| "Ġscandal": 11763, | |
| "Ġlists": 11764, | |
| "tenance": 11765, | |
| "ĠUEFA": 11766, | |
| "good": 11767, | |
| "estyle": 11768, | |
| "Ġ(),": 11769, | |
| "Ġadmire": 11770, | |
| "ĠMunicipality": 11771, | |
| "Send": 11772, | |
| "ĠLiver": 11773, | |
| "eges": 11774, | |
| "ographical": 11775, | |
| "Ġcooked": 11776, | |
| "Ġvanished": 11777, | |
| "Ġrequirements": 11778, | |
| "ĠHurricane": 11779, | |
| "Ġmeantime": 11780, | |
| "fortunate": 11781, | |
| "urname": 11782, | |
| "Ġapproval": 11783, | |
| "Ġviolin": 11784, | |
| "Ġdressing": 11785, | |
| "Ġprayers": 11786, | |
| "Ġacquaint": 11787, | |
| "ĠNeil": 11788, | |
| "Ġfest": 11789, | |
| "Ġpic": 11790, | |
| "Ġdisgr": 11791, | |
| "Ġlegislation": 11792, | |
| "Feel": 11793, | |
| "Ġdwarf": 11794, | |
| "roid": 11795, | |
| "Ġhappily": 11796, | |
| "Ġowns": 11797, | |
| "Ġtreaty": 11798, | |
| "Ġpropose": 11799, | |
| "Ġdignity": 11800, | |
| "mble": 11801, | |
| "Ġfram": 11802, | |
| "Ġtroubled": 11803, | |
| "Ġimagined": 11804, | |
| "ĠNothing": 11805, | |
| "ĠHolland": 11806, | |
| "leans": 11807, | |
| "Ġdestro": 11808, | |
| "Ġobservation": 11809, | |
| "ĠKarl": 11810, | |
| "rec": 11811, | |
| "alion": 11812, | |
| "ĠREA": 11813, | |
| "Ġsod": 11814, | |
| "ĠEdinburgh": 11815, | |
| "ĠCant": 11816, | |
| "ĠRuth": 11817, | |
| "ĠAlber": 11818, | |
| "âĢĶ\"": 11819, | |
| "Ġpractices": 11820, | |
| "Ġcatching": 11821, | |
| "Cheers": 11822, | |
| "Ġphotographs": 11823, | |
| "Pick": 11824, | |
| "ania": 11825, | |
| "outing": 11826, | |
| "Ġrecorder": 11827, | |
| "Ġdivisions": 11828, | |
| "Ġproportion": 11829, | |
| "piece": 11830, | |
| "alie": 11831, | |
| "essions": 11832, | |
| "ollo": 11833, | |
| "Ġrig": 11834, | |
| "Ġinspiration": 11835, | |
| "WAY": 11836, | |
| "ados": 11837, | |
| "Ġunsu": 11838, | |
| "hearted": 11839, | |
| "Walk": 11840, | |
| "onies": 11841, | |
| "Ġpier": 11842, | |
| "ĠPierre": 11843, | |
| "ĠHeb": 11844, | |
| "Ġhighlight": 11845, | |
| "enez": 11846, | |
| "Ġmarketing": 11847, | |
| "Ġheroes": 11848, | |
| "Ġwitnesses": 11849, | |
| "aud": 11850, | |
| "ĠPoly": 11851, | |
| "ĠDra": 11852, | |
| "oded": 11853, | |
| "Ġshapes": 11854, | |
| "oku": 11855, | |
| "Ġlawn": 11856, | |
| "Ġceiling": 11857, | |
| "Ġtravelled": 11858, | |
| "oda": 11859, | |
| "Ġintr": 11860, | |
| "ĠTherefore": 11861, | |
| "ĠHarvard": 11862, | |
| "Quiet": 11863, | |
| "Ġsituated": 11864, | |
| "eem": 11865, | |
| "Ġapparent": 11866, | |
| "Ġrealise": 11867, | |
| "jab": 11868, | |
| "Ġmand": 11869, | |
| "ĠMove": 11870, | |
| "Ġumb": 11871, | |
| "Ġneedle": 11872, | |
| "Being": 11873, | |
| "wear": 11874, | |
| "ĠLanc": 11875, | |
| "Ġprocl": 11876, | |
| "Ġblows": 11877, | |
| "Ġconservative": 11878, | |
| "Ġsentenced": 11879, | |
| "Ġstatements": 11880, | |
| "Relax": 11881, | |
| "Comp": 11882, | |
| "ĠRea": 11883, | |
| "Ġplanes": 11884, | |
| "Ġlowest": 11885, | |
| "iterranean": 11886, | |
| "Ġfilling": 11887, | |
| "ĠDiego": 11888, | |
| "Ġprosper": 11889, | |
| "making": 11890, | |
| "Ġtide": 11891, | |
| "ĠMaur": 11892, | |
| "ĠPE": 11893, | |
| "Ġraw": 11894, | |
| "Ġbreed": 11895, | |
| "Ġartistic": 11896, | |
| "ĠMartha": 11897, | |
| "ĠFlorence": 11898, | |
| "August": 11899, | |
| "ĠIron": 11900, | |
| "Ġmini": 11901, | |
| "ĠAnnie": 11902, | |
| "Ġassured": 11903, | |
| "ĠPlace": 11904, | |
| "Ġignore": 11905, | |
| "ĠUpon": 11906, | |
| "Ġdiver": 11907, | |
| "acha": 11908, | |
| "Ġcancell": 11909, | |
| "Ġsocks": 11910, | |
| "âĶĢ": 11911, | |
| "gro": 11912, | |
| "ĠCentury": 11913, | |
| "ĠQuebec": 11914, | |
| "ĠFROM": 11915, | |
| "Ġtherapy": 11916, | |
| "ĠPitts": 11917, | |
| "arter": 11918, | |
| "Ġwelf": 11919, | |
| "ĠHand": 11920, | |
| "hism": 11921, | |
| "Ġquid": 11922, | |
| "ĠVic": 11923, | |
| "Ġreveal": 11924, | |
| "Ġbubbles": 11925, | |
| "Ġwelfare": 11926, | |
| "URE": 11927, | |
| "ĠGill": 11928, | |
| "ĠExt": 11929, | |
| "Ġkindness": 11930, | |
| "ĠXV": 11931, | |
| "Ġmagnetic": 11932, | |
| "shire": 11933, | |
| "alia": 11934, | |
| "ido": 11935, | |
| "ĠChamber": 11936, | |
| "idi": 11937, | |
| "Ġreaches": 11938, | |
| "azine": 11939, | |
| "Ġfatal": 11940, | |
| "parent": 11941, | |
| "uis": 11942, | |
| "Ġlou": 11943, | |
| "Ġmultiply": 11944, | |
| "Ġaccomplished": 11945, | |
| "Ġpills": 11946, | |
| "Ġprotecting": 11947, | |
| "rise": 11948, | |
| "¶": 11949, | |
| "Ġseg": 11950, | |
| "Ġwheat": 11951, | |
| "Ġkilometers": 11952, | |
| "bird": 11953, | |
| "dist": 11954, | |
| "Ġgoat": 11955, | |
| "umns": 11956, | |
| "ĠJournal": 11957, | |
| "Ġrape": 11958, | |
| "PER": 11959, | |
| "Ġpretending": 11960, | |
| "Ġawait": 11961, | |
| "Ġballoon": 11962, | |
| "Wouldn": 11963, | |
| "Ġpercentage": 11964, | |
| "Ġmultipl": 11965, | |
| "ĠHawaii": 11966, | |
| "Ġfranchise": 11967, | |
| "Ġslavery": 11968, | |
| "itches": 11969, | |
| "ĠBaker": 11970, | |
| "actory": 11971, | |
| "Ġestimate": 11972, | |
| "Ġscrewed": 11973, | |
| "produ": 11974, | |
| "ifully": 11975, | |
| "Ġslipp": 11976, | |
| "Ġpopularity": 11977, | |
| "Ġoptim": 11978, | |
| "uscript": 11979, | |
| "Ġrelevant": 11980, | |
| "ĠNancy": 11981, | |
| "Ġnoon": 11982, | |
| "ĠAlaska": 11983, | |
| "Ġdiameter": 11984, | |
| "oro": 11985, | |
| "Ġpad": 11986, | |
| "rah": 11987, | |
| "Ġdecides": 11988, | |
| "ANK": 11989, | |
| "cover": 11990, | |
| "ĠAgent": 11991, | |
| "Art": 11992, | |
| "ĠBrooklyn": 11993, | |
| "ellig": 11994, | |
| "Ġrecy": 11995, | |
| "Ġpersonnel": 11996, | |
| "Throw": 11997, | |
| "ĠHarrison": 11998, | |
| "ĠHeritage": 11999, | |
| "USIC": 12000, | |
| "Neither": 12001, | |
| "Ġgalaxy": 12002, | |
| "Obviously": 12003, | |
| "Ġdent": 12004, | |
| "Ġhint": 12005, | |
| "ilight": 12006, | |
| "ĠKu": 12007, | |
| "beat": 12008, | |
| "arrondissement": 12009, | |
| "Ġdeparture": 12010, | |
| "Ġgardens": 12011, | |
| "icia": 12012, | |
| "ĠKil": 12013, | |
| "ĠYam": 12014, | |
| "ussian": 12015, | |
| "Ġabsurd": 12016, | |
| "George": 12017, | |
| "ĠFront": 12018, | |
| "Ġsuits": 12019, | |
| "agraph": 12020, | |
| "Ġscoring": 12021, | |
| "Ġgram": 12022, | |
| "Ġidentical": 12023, | |
| "ĠMontreal": 12024, | |
| "Ġprecisely": 12025, | |
| "Ġcomedian": 12026, | |
| "??": 12027, | |
| "Ġstew": 12028, | |
| "ĠEP": 12029, | |
| "Ġclassified": 12030, | |
| "Ġobjective": 12031, | |
| "Ġcivilization": 12032, | |
| "Ġcontribution": 12033, | |
| "ĠCommonwealth": 12034, | |
| "uction": 12035, | |
| "ĠPut": 12036, | |
| "ĠPil": 12037, | |
| "ĠDragon": 12038, | |
| "cling": 12039, | |
| "Ġstrengthen": 12040, | |
| "Ġwasted": 12041, | |
| "ĠBACK": 12042, | |
| "ĠNAS": 12043, | |
| "ĠClay": 12044, | |
| "Ġmarkets": 12045, | |
| "Ġpian": 12046, | |
| "ĠDal": 12047, | |
| "ĠHeart": 12048, | |
| "ĠOrleans": 12049, | |
| "def": 12050, | |
| "acco": 12051, | |
| "ĠDaw": 12052, | |
| "ĠAbraham": 12053, | |
| "Ġpunished": 12054, | |
| "ĠGrammy": 12055, | |
| "tit": 12056, | |
| "ulum": 12057, | |
| "Ġoverse": 12058, | |
| "Ġjewel": 12059, | |
| "Ġharsh": 12060, | |
| "Ġchasing": 12061, | |
| "Ġwealthy": 12062, | |
| "omeday": 12063, | |
| "encing": 12064, | |
| "ocese": 12065, | |
| "Ġresolved": 12066, | |
| "Ġcollar": 12067, | |
| "Ġengage": 12068, | |
| "Ġrebell": 12069, | |
| "ĠTechnology": 12070, | |
| "Sa": 12071, | |
| "Ġsank": 12072, | |
| "ĠDead": 12073, | |
| "ĠRan": 12074, | |
| "ĠKir": 12075, | |
| "Ġsubsc": 12076, | |
| "Ġmush": 12077, | |
| "Ġcultures": 12078, | |
| "OSE": 12079, | |
| "VEN": 12080, | |
| "Ġmant": 12081, | |
| "ĠPap": 12082, | |
| "ĠSop": 12083, | |
| "uno": 12084, | |
| "ĠMcK": 12085, | |
| "ĠRomania": 12086, | |
| "Ġdancer": 12087, | |
| "Ġnomination": 12088, | |
| "ourt": 12089, | |
| "Ġabund": 12090, | |
| "Ġvague": 12091, | |
| "ĠStri": 12092, | |
| "cycle": 12093, | |
| "Ġfiled": 12094, | |
| "Ġlaying": 12095, | |
| "Ġhunger": 12096, | |
| "ĠSylvia": 12097, | |
| "Ag": 12098, | |
| "Ġtrump": 12099, | |
| "Ġlandl": 12100, | |
| "Ġbargain": 12101, | |
| "Ġbeliefs": 12102, | |
| "Ġmolecules": 12103, | |
| "Ġpaused": 12104, | |
| "arus": 12105, | |
| "lement": 12106, | |
| "ĠSue": 12107, | |
| "ĠSHE": 12108, | |
| "acts": 12109, | |
| "Ġimper": 12110, | |
| "Ġflame": 12111, | |
| "Ġsignature": 12112, | |
| "Ġmilit": 12113, | |
| "Ġradical": 12114, | |
| "Ġfraud": 12115, | |
| "Ġdiscipline": 12116, | |
| "Ġartificial": 12117, | |
| "EX": 12118, | |
| "Ġwret": 12119, | |
| "Ġcul": 12120, | |
| "Ġrect": 12121, | |
| "Ġverte": 12122, | |
| "Ġinterrupted": 12123, | |
| "Ġdisgusting": 12124, | |
| "Ġfruits": 12125, | |
| "Ġreverse": 12126, | |
| "Ġforming": 12127, | |
| "Ġcontinuous": 12128, | |
| "ĠGlen": 12129, | |
| "Ġathlete": 12130, | |
| "ĠTob": 12131, | |
| "ĠBey": 12132, | |
| "ĠHold": 12133, | |
| "Ġrack": 12134, | |
| "Ġsolitary": 12135, | |
| "REE": 12136, | |
| "Ġbullets": 12137, | |
| "OST": 12138, | |
| "Max": 12139, | |
| "may": 12140, | |
| "itis": 12141, | |
| "Ġoath": 12142, | |
| "Ġfighter": 12143, | |
| "Ġdiagnosed": 12144, | |
| "Hard": 12145, | |
| "ĠProp": 12146, | |
| "Ġabol": 12147, | |
| "Ġfewer": 12148, | |
| "Ġfrequent": 12149, | |
| "Ġblessing": 12150, | |
| "ĠOklahoma": 12151, | |
| "olleyball": 12152, | |
| "Sat": 12153, | |
| "fight": 12154, | |
| "Ġpause": 12155, | |
| "ulus": 12156, | |
| "ĠWag": 12157, | |
| "Ġmanip": 12158, | |
| "Ġdeadly": 12159, | |
| "Ġfluid": 12160, | |
| "Ġancestors": 12161, | |
| "Ġunfortunate": 12162, | |
| "Ġleap": 12163, | |
| "Ġdrivers": 12164, | |
| "Ġautumn": 12165, | |
| "six": 12166, | |
| "Ġchip": 12167, | |
| "Ġlane": 12168, | |
| "Ġfollowers": 12169, | |
| "ASE": 12170, | |
| "Ġsmells": 12171, | |
| "Ġgamb": 12172, | |
| "Ġsob": 12173, | |
| "sson": 12174, | |
| "Ġtriumph": 12175, | |
| "Ġsuccessor": 12176, | |
| "Read": 12177, | |
| "him": 12178, | |
| "Ġliberal": 12179, | |
| "Ġmagnificent": 12180, | |
| "Either": 12181, | |
| "Ġrod": 12182, | |
| "Ġphones": 12183, | |
| "Ġobserve": 12184, | |
| "avalry": 12185, | |
| "Ġvelocity": 12186, | |
| "IAN": 12187, | |
| "ĠYug": 12188, | |
| "Ġrecovery": 12189, | |
| "Ġwinners": 12190, | |
| "feld": 12191, | |
| "ĠJonathan": 12192, | |
| "ĠProtest": 12193, | |
| "ĠCraig": 12194, | |
| "gal": 12195, | |
| "ista": 12196, | |
| "Ġresource": 12197, | |
| "Ġarrangements": 12198, | |
| "Ġinaug": 12199, | |
| "aton": 12200, | |
| "Ġsailing": 12201, | |
| "Ġevolved": 12202, | |
| "ĠRaymond": 12203, | |
| "Ġpreparation": 12204, | |
| "Del": 12205, | |
| "bai": 12206, | |
| "free": 12207, | |
| "Shoot": 12208, | |
| "Ġconductor": 12209, | |
| "Ġstrangers": 12210, | |
| "ĠMurray": 12211, | |
| "Ġabandon": 12212, | |
| "President": 12213, | |
| "Ġgloves": 12214, | |
| "Ġdefensive": 12215, | |
| "Ġfoods": 12216, | |
| "arrator": 12217, | |
| ",.\"": 12218, | |
| "Nah": 12219, | |
| "Ġpub": 12220, | |
| "Ġrevenue": 12221, | |
| "ulse": 12222, | |
| "neum": 12223, | |
| "Ġbuttons": 12224, | |
| "ĠPersian": 12225, | |
| "Ġtenth": 12226, | |
| "ĠRalph": 12227, | |
| "Ġdisgu": 12228, | |
| "ibi": 12229, | |
| "Ġconvicted": 12230, | |
| "uerto": 12231, | |
| "Ġwax": 12232, | |
| "Ġphysician": 12233, | |
| "ĠWHO": 12234, | |
| "ĠMoz": 12235, | |
| "Ġpreferred": 12236, | |
| "Ġexhausted": 12237, | |
| "Mary": 12238, | |
| "inch": 12239, | |
| "Ġjokes": 12240, | |
| "ĠSeattle": 12241, | |
| "Ġeconomics": 12242, | |
| "ĠJefferson": 12243, | |
| "Wonder": 12244, | |
| "ĠAqu": 12245, | |
| "igious": 12246, | |
| "Ġentreprene": 12247, | |
| "engu": 12248, | |
| "Ġarguments": 12249, | |
| "anth": 12250, | |
| "ĠIsa": 12251, | |
| "ĠMediterranean": 12252, | |
| "Ġpartnership": 12253, | |
| "Believe": 12254, | |
| "Ġfog": 12255, | |
| "Ġdoo": 12256, | |
| "ĠRow": 12257, | |
| "ĠFinal": 12258, | |
| "Ġelabor": 12259, | |
| "Apparently": 12260, | |
| "Gonna": 12261, | |
| "ĠDue": 12262, | |
| "ĠKey": 12263, | |
| "Though": 12264, | |
| "Ġportrait": 12265, | |
| "ĠPalmer": 12266, | |
| "Ġtorture": 12267, | |
| "umper": 12268, | |
| "Ġpeep": 12269, | |
| "Ġscores": 12270, | |
| "Ġharvest": 12271, | |
| "INGS": 12272, | |
| "Ġplanted": 12273, | |
| "ĠBoys": 12274, | |
| "nia": 12275, | |
| "Ġtang": 12276, | |
| "ĠBuilding": 12277, | |
| "March": 12278, | |
| "fs": 12279, | |
| "rates": 12280, | |
| "Ġinev": 12281, | |
| "eae": 12282, | |
| "Ġdistinction": 12283, | |
| "Ġcolumns": 12284, | |
| "Ġpermit": 12285, | |
| "Ġsurvival": 12286, | |
| "Ġtrucks": 12287, | |
| "GB": 12288, | |
| "Ġpion": 12289, | |
| "Ġhence": 12290, | |
| "ĠSultan": 12291, | |
| "Ġspan": 12292, | |
| "eremy": 12293, | |
| "irect": 12294, | |
| "Ġamateur": 12295, | |
| "Ġhomework": 12296, | |
| "Ġvisits": 12297, | |
| "Ġmemorial": 12298, | |
| "Ġholidays": 12299, | |
| "lace": 12300, | |
| "Ġpine": 12301, | |
| "ĠBatt": 12302, | |
| "Ġpotatoes": 12303, | |
| "Ġfemin": 12304, | |
| ").\"": 12305, | |
| "ĠWould": 12306, | |
| "umi": 12307, | |
| "ĠKaren": 12308, | |
| "Ġpockets": 12309, | |
| "ĠArnold": 12310, | |
| "Ġpreserved": 12311, | |
| "OUS": 12312, | |
| "Ġextinct": 12313, | |
| "ĠMichel": 12314, | |
| "ĠDanish": 12315, | |
| "Ġbabe": 12316, | |
| "Ġdetailed": 12317, | |
| "Indeed": 12318, | |
| "Part": 12319, | |
| "ĠCEO": 12320, | |
| "ĠNav": 12321, | |
| "ĠStra": 12322, | |
| "acht": 12323, | |
| "Ġchrom": 12324, | |
| "ĠHarold": 12325, | |
| "Ġgenes": 12326, | |
| "ĠIsraeli": 12327, | |
| "ĠGirls": 12328, | |
| "Ġsympat": 12329, | |
| "Ġrehears": 12330, | |
| "ski": 12331, | |
| "onom": 12332, | |
| "Ġburg": 12333, | |
| "Ġcries": 12334, | |
| "ĠSuz": 12335, | |
| "ventually": 12336, | |
| "Ġsubmar": 12337, | |
| "ĠClar": 12338, | |
| "Ġmembership": 12339, | |
| "Ġslee": 12340, | |
| "ECT": 12341, | |
| "ĠBroadway": 12342, | |
| "ĠHig": 12343, | |
| "Chief": 12344, | |
| "HA": 12345, | |
| "isen": 12346, | |
| "Ġpapa": 12347, | |
| "onde": 12348, | |
| "ensed": 12349, | |
| "eyed": 12350, | |
| "Ġtaxi": 12351, | |
| "Ġcontributed": 12352, | |
| "bat": 12353, | |
| "ĠMack": 12354, | |
| "Ġalter": 12355, | |
| "Ġross": 12356, | |
| "Ġarchae": 12357, | |
| "Ġcrept": 12358, | |
| "dad": 12359, | |
| "Ġhay": 12360, | |
| "ĠSean": 12361, | |
| "ĠMust": 12362, | |
| "ĠBox": 12363, | |
| "Ġcandle": 12364, | |
| "Water": 12365, | |
| "enz": 12366, | |
| "Ġjunk": 12367, | |
| "Ġcomponents": 12368, | |
| "Ġbrut": 12369, | |
| "Ġinfinite": 12370, | |
| "Ġcircles": 12371, | |
| "ĠMetro": 12372, | |
| "chuckles": 12373, | |
| "Ġartillery": 12374, | |
| "Ġpalm": 12375, | |
| "Ġloads": 12376, | |
| "ourable": 12377, | |
| "Wake": 12378, | |
| "ige": 12379, | |
| "icular": 12380, | |
| "amous": 12381, | |
| "enson": 12382, | |
| "Ġobsc": 12383, | |
| "Ġpoliticians": 12384, | |
| "Ġpsychology": 12385, | |
| "ĠÃī": 12386, | |
| "Ġdelightful": 12387, | |
| "ĠExecutive": 12388, | |
| "Ol": 12389, | |
| "UH": 12390, | |
| "Ġhed": 12391, | |
| "Ġweary": 12392, | |
| "ebast": 12393, | |
| "Ġnicely": 12394, | |
| "Ġprocessing": 12395, | |
| "Ġvisitor": 12396, | |
| "Ġgrocer": 12397, | |
| "Ġalleged": 12398, | |
| "wait": 12399, | |
| "Ġdug": 12400, | |
| "Ġtragedy": 12401, | |
| "Ġreporter": 12402, | |
| "Ġcurse": 12403, | |
| "Ġdealt": 12404, | |
| "Ġemployee": 12405, | |
| "Ġvulner": 12406, | |
| "bishop": 12407, | |
| "say": 12408, | |
| "Ġrating": 12409, | |
| "Ġmonument": 12410, | |
| "Ġcontinu": 12411, | |
| "ĠBarn": 12412, | |
| "Ġsurviv": 12413, | |
| "Ġbombs": 12414, | |
| "Squ": 12415, | |
| "War": 12416, | |
| "Ġarose": 12417, | |
| "Ġoffensive": 12418, | |
| "oger": 12419, | |
| "Ġmining": 12420, | |
| "Ġinstalled": 12421, | |
| "Ġevac": 12422, | |
| "Ġguitarist": 12423, | |
| "Ġnursing": 12424, | |
| "Ġhorns": 12425, | |
| "gic": 12426, | |
| "mund": 12427, | |
| "pin": 12428, | |
| "Ġcargo": 12429, | |
| "ĠConvention": 12430, | |
| "ĠHarvey": 12431, | |
| "William": 12432, | |
| "regation": 12433, | |
| "Ġpsychiat": 12434, | |
| "Ġrubbish": 12435, | |
| "Ġbetrayed": 12436, | |
| "Later": 12437, | |
| "Mine": 12438, | |
| "Ġsurname": 12439, | |
| "ĠNOW": 12440, | |
| "Ġunn": 12441, | |
| "Ġmixture": 12442, | |
| "Adam": 12443, | |
| "ĠFormula": 12444, | |
| "Police": 12445, | |
| "Ain": 12446, | |
| "Ġassemb": 12447, | |
| "ĠDAY": 12448, | |
| "plex": 12449, | |
| "Ġinstruction": 12450, | |
| "Ġcreates": 12451, | |
| "ĠOFF": 12452, | |
| "Ġstruggling": 12453, | |
| "natural": 12454, | |
| "Ġtales": 12455, | |
| "Ġunl": 12456, | |
| "Ġgrin": 12457, | |
| "ĠSpeak": 12458, | |
| "Ġhumor": 12459, | |
| "onymous": 12460, | |
| "Ġfib": 12461, | |
| "Ġlocality": 12462, | |
| "Ġruling": 12463, | |
| "Ġmartial": 12464, | |
| "ĠAzer": 12465, | |
| "rium": 12466, | |
| "iva": 12467, | |
| "Ġnowadays": 12468, | |
| "Ġsenses": 12469, | |
| "Ġthreatening": 12470, | |
| "Ġsequel": 12471, | |
| "ĠLegisl": 12472, | |
| "mphony": 12473, | |
| "somet": 12474, | |
| "Ġlazy": 12475, | |
| "eches": 12476, | |
| "abl": 12477, | |
| "Ġswitched": 12478, | |
| "Ġmotherf": 12479, | |
| "ĠShin": 12480, | |
| "Ġtraditions": 12481, | |
| "ĠMilitary": 12482, | |
| "ĠThompson": 12483, | |
| "Ġbonds": 12484, | |
| "Ġmaj": 12485, | |
| "ĠChel": 12486, | |
| "ĠPH": 12487, | |
| "Ġtrend": 12488, | |
| "ĠAthlet": 12489, | |
| "mun": 12490, | |
| "such": 12491, | |
| "Ġmice": 12492, | |
| "anche": 12493, | |
| "acre": 12494, | |
| "ĠBou": 12495, | |
| "ĠDig": 12496, | |
| "Ġmanuscript": 12497, | |
| "osexual": 12498, | |
| "Ġsecured": 12499, | |
| "Ġassets": 12500, | |
| "atively": 12501, | |
| "ieth": 12502, | |
| "Ġposted": 12503, | |
| "Ġaudio": 12504, | |
| "Ġcrops": 12505, | |
| "ĠYouTube": 12506, | |
| "girl": 12507, | |
| "Ãł": 12508, | |
| "ĠÄ": 12509, | |
| "ĠJill": 12510, | |
| "ĠJenny": 12511, | |
| "Ġshone": 12512, | |
| "hang": 12513, | |
| "ruck": 12514, | |
| "Ġperpet": 12515, | |
| "Ġcrashed": 12516, | |
| "ĠOrchestra": 12517, | |
| "Ġpraised": 12518, | |
| "cia": 12519, | |
| "anny": 12520, | |
| "seud": 12521, | |
| "Ġcheerful": 12522, | |
| "Ġfossil": 12523, | |
| "Ġrobbery": 12524, | |
| "Ġ\"$": 12525, | |
| "ĠRun": 12526, | |
| "ĠLiz": 12527, | |
| "Ġenforce": 12528, | |
| "Ġbloss": 12529, | |
| "Ġgrim": 12530, | |
| "ĠThor": 12531, | |
| "Ġinfect": 12532, | |
| "Ġcontinuing": 12533, | |
| "Ġchallenges": 12534, | |
| "Ġratio": 12535, | |
| "Nat": 12536, | |
| "].\"": 12537, | |
| "isd": 12538, | |
| "istical": 12539, | |
| "ĠYu": 12540, | |
| "Ġinvisible": 12541, | |
| "Ġappearing": 12542, | |
| "Ġconnections": 12543, | |
| "Ġcorporate": 12544, | |
| "Ġlungs": 12545, | |
| "ML": 12546, | |
| "inery": 12547, | |
| "Ġstored": 12548, | |
| "Ġreader": 12549, | |
| "Ac": 12550, | |
| "Ġhood": 12551, | |
| "ĠBund": 12552, | |
| "Ġdeals": 12553, | |
| "udible": 12554, | |
| "ilda": 12555, | |
| "aneous": 12556, | |
| "Ġopinions": 12557, | |
| "Night": 12558, | |
| "uated": 12559, | |
| "Äĥ": 12560, | |
| "ĠMach": 12561, | |
| "ĠMarine": 12562, | |
| "Ġballet": 12563, | |
| "Drink": 12564, | |
| "Bu": 12565, | |
| "ĠDuck": 12566, | |
| "Ġjolly": 12567, | |
| "ĠFall": 12568, | |
| "Ġflung": 12569, | |
| "Ġcounted": 12570, | |
| "Ġtransmit": 12571, | |
| "Ġpriests": 12572, | |
| "Ġfaculty": 12573, | |
| "Ġcrowded": 12574, | |
| "ĠWWE": 12575, | |
| "udson": 12576, | |
| "Ġexpense": 12577, | |
| "Ġprofile": 12578, | |
| "untary": 12579, | |
| "Ġnetworks": 12580, | |
| "Ġfitted": 12581, | |
| "Bro": 12582, | |
| "ĠSlo": 12583, | |
| "iler": 12584, | |
| "Ġsummon": 12585, | |
| "Chuckles": 12586, | |
| "ĠConservative": 12587, | |
| "colm": 12588, | |
| "cs": 12589, | |
| "wering": 12590, | |
| "Ġpanc": 12591, | |
| "ĠAra": 12592, | |
| "ĠPink": 12593, | |
| "Ġsegment": 12594, | |
| "Ġmammals": 12595, | |
| "Ġcodes": 12596, | |
| "ĠLuther": 12597, | |
| "Looking": 12598, | |
| "ĠPic": 12599, | |
| "ĠYang": 12600, | |
| "Ġfinest": 12601, | |
| "Ġhates": 12602, | |
| "Ġattacking": 12603, | |
| "Ġtempor": 12604, | |
| "Ġprophe": 12605, | |
| "ĠExpress": 12606, | |
| "ĠRomans": 12607, | |
| "Whether": 12608, | |
| "Ġwider": 12609, | |
| "roph": 12610, | |
| "Ġstem": 12611, | |
| "ĠRena": 12612, | |
| "ĠLud": 12613, | |
| "igo": 12614, | |
| "Ġmarine": 12615, | |
| "Ġranks": 12616, | |
| "Ġcriminals": 12617, | |
| "ĠLiverpool": 12618, | |
| "Ġpatron": 12619, | |
| "Ġqualities": 12620, | |
| "Ġaccompany": 12621, | |
| "shi": 12622, | |
| "ĠKill": 12623, | |
| "ĠStr": 12624, | |
| "Ġcoins": 12625, | |
| "Ġmaintenance": 12626, | |
| "Ġweekly": 12627, | |
| "Ġcharacteristic": 12628, | |
| "Ġdried": 12629, | |
| "Ġheels": 12630, | |
| "Ġstalk": 12631, | |
| "ĠFal": 12632, | |
| "Ġrational": 12633, | |
| "Ġcomponent": 12634, | |
| "Ġresting": 12635, | |
| "Ġmedals": 12636, | |
| "ĠCarib": 12637, | |
| "ĠForces": 12638, | |
| "rainian": 12639, | |
| "ĠBernard": 12640, | |
| "ĠMans": 12641, | |
| "ĠUntil": 12642, | |
| "Ġregiment": 12643, | |
| "Ġfarming": 12644, | |
| "LLY": 12645, | |
| "Ġphotographer": 12646, | |
| "Ġpunish": 12647, | |
| "Ġgeomet": 12648, | |
| "Hel": 12649, | |
| "ĠBuzz": 12650, | |
| "ĠFitz": 12651, | |
| "ĠNumber": 12652, | |
| "avan": 12653, | |
| "Ġhelicopter": 12654, | |
| "Ġmister": 12655, | |
| "ripp": 12656, | |
| "ĠEllen": 12657, | |
| "assy": 12658, | |
| "Ġscen": 12659, | |
| "ĠBavaria": 12660, | |
| "ĠWrestling": 12661, | |
| "Ġdatabase": 12662, | |
| "tail": 12663, | |
| "Ġdock": 12664, | |
| "neys": 12665, | |
| "Ġclosest": 12666, | |
| "Ġcontroversial": 12667, | |
| "Ġbothered": 12668, | |
| "ih": 12669, | |
| "rite": 12670, | |
| "erek": 12671, | |
| "Pop": 12672, | |
| "ĠWol": 12673, | |
| "ĠWonder": 12674, | |
| "Ġprofound": 12675, | |
| "Ġorgans": 12676, | |
| "Ġpenet": 12677, | |
| "Ġquantity": 12678, | |
| "iciently": 12679, | |
| "Boss": 12680, | |
| "pack": 12681, | |
| "vate": 12682, | |
| "ĠHannah": 12683, | |
| "ĠPapa": 12684, | |
| "Ġvow": 12685, | |
| "Ġopponent": 12686, | |
| "IGHS": 12687, | |
| "High": 12688, | |
| "elli": 12689, | |
| "ĠVenez": 12690, | |
| "ĠAlt": 12691, | |
| "Ġbasement": 12692, | |
| "Ġcoron": 12693, | |
| "ĠTrade": 12694, | |
| "speaking": 12695, | |
| "Ġpsychological": 12696, | |
| "Ġutil": 12697, | |
| "ĠCathedral": 12698, | |
| "ĠRonald": 12699, | |
| "ĠMuhammad": 12700, | |
| "Save": 12701, | |
| "bes": 12702, | |
| "ĠAld": 12703, | |
| "Ġwhore": 12704, | |
| "Ġwilliam": 12705, | |
| "Ġchew": 12706, | |
| "azon": 12707, | |
| "Ġescort": 12708, | |
| "ttes": 12709, | |
| "Ġeternal": 12710, | |
| "West": 12711, | |
| "igers": 12712, | |
| "itarian": 12713, | |
| "handed": 12714, | |
| "ĠGOING": 12715, | |
| "IX": 12716, | |
| "sers": 12717, | |
| "ĠPuerto": 12718, | |
| "Ġcounts": 12719, | |
| "Ġvolt": 12720, | |
| "Ġwears": 12721, | |
| "Ġstove": 12722, | |
| "Ġstair": 12723, | |
| "Ġsober": 12724, | |
| "ĠKid": 12725, | |
| "ĠShad": 12726, | |
| "Ġcircus": 12727, | |
| "ĠSaf": 12728, | |
| "Ġmanners": 12729, | |
| "Ġelectrons": 12730, | |
| "Ġdigging": 12731, | |
| "Ġventure": 12732, | |
| "Ġcommitment": 12733, | |
| "Ġcollapse": 12734, | |
| "ĠTIME": 12735, | |
| "е": 12736, | |
| "ĠPel": 12737, | |
| "Ġcolonel": 12738, | |
| "ĠWithout": 12739, | |
| "ĠBasil": 12740, | |
| "ĠSidney": 12741, | |
| "ĠAzerbai": 12742, | |
| "Home": 12743, | |
| "Ġwoo": 12744, | |
| "Ġbob": 12745, | |
| "steps": 12746, | |
| "ĠWik": 12747, | |
| "ĠEnt": 12748, | |
| "Ġisolated": 12749, | |
| "Ġhind": 12750, | |
| "stop": 12751, | |
| "ĠRoute": 12752, | |
| "White": 12753, | |
| "Ġendea": 12754, | |
| "Ġcheaper": 12755, | |
| "election": 12756, | |
| "ĠMonte": 12757, | |
| "Ġpuppy": 12758, | |
| "ĠNepal": 12759, | |
| "rella": 12760, | |
| "Ġnaval": 12761, | |
| "Ġfreely": 12762, | |
| "Ġsouthwestern": 12763, | |
| "Ġcleaned": 12764, | |
| "Ġderivative": 12765, | |
| "bound": 12766, | |
| "overs": 12767, | |
| "stable": 12768, | |
| "ĠCP": 12769, | |
| "ĠBurg": 12770, | |
| "ĠHem": 12771, | |
| "ĠWOULD": 12772, | |
| "Ġinvolving": 12773, | |
| "Ġlovers": 12774, | |
| "ĠHungary": 12775, | |
| "Ġsubsequent": 12776, | |
| "Ray": 12777, | |
| "inth": 12778, | |
| "ĠChen": 12779, | |
| "ĠBah": 12780, | |
| "Ġboundaries": 12781, | |
| "Ġangels": 12782, | |
| "ĠNicholas": 12783, | |
| "Ġgorgeous": 12784, | |
| "Rock": 12785, | |
| "olid": 12786, | |
| "essa": 12787, | |
| "Ġvirgin": 12788, | |
| "reeks": 12789, | |
| "ĠNathan": 12790, | |
| "Ġrequested": 12791, | |
| "ĠTol": 12792, | |
| "ĠCrit": 12793, | |
| "ĠFif": 12794, | |
| "Ġattach": 12795, | |
| "Thought": 12796, | |
| "ĠBlake": 12797, | |
| "Ġpermitted": 12798, | |
| "Ġbiological": 12799, | |
| "Ġfirmly": 12800, | |
| "Ġbacks": 12801, | |
| "ĠUnlike": 12802, | |
| "Ġmarble": 12803, | |
| "ĠAnim": 12804, | |
| "ATTER": 12805, | |
| "ĠSandy": 12806, | |
| "Ġinterpretation": 12807, | |
| "kh": 12808, | |
| "zel": 12809, | |
| "river": 12810, | |
| "Ġstack": 12811, | |
| "Ġshine": 12812, | |
| "ĠKnow": 12813, | |
| "Ġchir": 12814, | |
| "astery": 12815, | |
| "ĠStudies": 12816, | |
| "April": 12817, | |
| "Det": 12818, | |
| "Ġmaps": 12819, | |
| "Ġeleg": 12820, | |
| "Ġsuspended": 12821, | |
| "ĠRogers": 12822, | |
| "UE": 12823, | |
| "wright": 12824, | |
| "Ġber": 12825, | |
| "Ġmoth": 12826, | |
| "Ġmines": 12827, | |
| "uffy": 12828, | |
| "Excellent": 12829, | |
| "Ġhopeless": 12830, | |
| "ĠLAUGH": 12831, | |
| "ĠLloyd": 12832, | |
| "LS": 12833, | |
| "Money": 12834, | |
| "Ter": 12835, | |
| "Ġrats": 12836, | |
| "Ġhurting": 12837, | |
| "ĠMcG": 12838, | |
| "Ġterritories": 12839, | |
| "ĠDevon": 12840, | |
| "ĠMitchell": 12841, | |
| "isure": 12842, | |
| "Ġpursue": 12843, | |
| "kar": 12844, | |
| "Ġwages": 12845, | |
| "ĠRound": 12846, | |
| "abe": 12847, | |
| "Ġlawyers": 12848, | |
| "ĠCatal": 12849, | |
| "Ġreflected": 12850, | |
| "ĠJoyce": 12851, | |
| "ĠPunjab": 12852, | |
| "Imag": 12853, | |
| "Ric": 12854, | |
| "anne": 12855, | |
| "arms": 12856, | |
| "rost": 12857, | |
| "ĠMes": 12858, | |
| "ĠMeth": 12859, | |
| "ials": 12860, | |
| "Ġconspir": 12861, | |
| "Ġstrain": 12862, | |
| "âĢİ.\"": 12863, | |
| "ĠAdministration": 12864, | |
| "ĠWOMAN": 12865, | |
| "Ġalliance": 12866, | |
| "ĠOrange": 12867, | |
| "ĠKra": 12868, | |
| "Ġbugs": 12869, | |
| "Ġsurgeon": 12870, | |
| "Ġautomatic": 12871, | |
| "ĠSelena": 12872, | |
| "Ġpupils": 12873, | |
| "Joe": 12874, | |
| "ĠTodd": 12875, | |
| "umed": 12876, | |
| "Ġupside": 12877, | |
| "Ġlightning": 12878, | |
| "Ġclassification": 12879, | |
| "IO": 12880, | |
| "uka": 12881, | |
| "Ġmanifest": 12882, | |
| "Ġ\",": 12883, | |
| "atra": 12884, | |
| "ldom": 12885, | |
| "ĠBour": 12886, | |
| "oline": 12887, | |
| "ĠOscar": 12888, | |
| "Ġenhan": 12889, | |
| "ylan": 12890, | |
| "Ġfears": 12891, | |
| "mat": 12892, | |
| "Ġbew": 12893, | |
| "ĠJin": 12894, | |
| "Ġbucket": 12895, | |
| "Ġsigning": 12896, | |
| "Ġparagraph": 12897, | |
| "Ġcostume": 12898, | |
| "Ġsuggesting": 12899, | |
| "Ġrecognised": 12900, | |
| "ĠGranny": 12901, | |
| "ĠâĻ«": 12902, | |
| "Ġhut": 12903, | |
| "ĠGang": 12904, | |
| "Ġtwins": 12905, | |
| "ĠAlbum": 12906, | |
| "Ġninth": 12907, | |
| "ĠAgency": 12908, | |
| "Ġapplause": 12909, | |
| "True": 12910, | |
| "ĠBrothers": 12911, | |
| "Que": 12912, | |
| "ĠFu": 12913, | |
| "track": 12914, | |
| "birds": 12915, | |
| "Ġheap": 12916, | |
| "Ġmead": 12917, | |
| "ĠGriff": 12918, | |
| "Ġoutcome": 12919, | |
| "venth": 12920, | |
| "Ġdepressed": 12921, | |
| "Ġlighter": 12922, | |
| "aneously": 12923, | |
| "Ġreferring": 12924, | |
| "ĠFairy": 12925, | |
| "ĠFried": 12926, | |
| "Ġadam": 12927, | |
| "sels": 12928, | |
| "Ġspeakers": 12929, | |
| "Ġsolutions": 12930, | |
| "------": 12931, | |
| "Ġbells": 12932, | |
| "Ġvacc": 12933, | |
| "ĠCameron": 12934, | |
| "ĠPittsburgh": 12935, | |
| "tin": 12936, | |
| "Ġties": 12937, | |
| "ĠMig": 12938, | |
| "resa": 12939, | |
| "ĠKon": 12940, | |
| "Ġsharply": 12941, | |
| "Ġcomplications": 12942, | |
| "Ġincorporated": 12943, | |
| "Ġbeam": 12944, | |
| "ĠKang": 12945, | |
| "Ġlearnt": 12946, | |
| "grade": 12947, | |
| "Ġimprovement": 12948, | |
| "ĠClaire": 12949, | |
| "omon": 12950, | |
| "Ġregulations": 12951, | |
| "Ġsolved": 12952, | |
| "Couldn": 12953, | |
| "ĠEthiop": 12954, | |
| "hot": 12955, | |
| "ĠHorse": 12956, | |
| "Ġliar": 12957, | |
| "ĠVas": 12958, | |
| "Ġrip": 12959, | |
| "Ġresponded": 12960, | |
| "ĠGallery": 12961, | |
| "people": 12962, | |
| "ublin": 12963, | |
| "ĠGOOD": 12964, | |
| "Ġbutterfly": 12965, | |
| "Ġconsistent": 12966, | |
| "Ġnickname": 12967, | |
| "cribed": 12968, | |
| "ayer": 12969, | |
| "ĠDin": 12970, | |
| "ĠAllah": 12971, | |
| "Ġproceeded": 12972, | |
| "ĠBelgian": 12973, | |
| "haus": 12974, | |
| "adi": 12975, | |
| "THEY": 12976, | |
| "Ġadventures": 12977, | |
| "movie": 12978, | |
| "ingle": 12979, | |
| "Ġneur": 12980, | |
| "Ġsnap": 12981, | |
| "Ġorganisms": 12982, | |
| "Phil": 12983, | |
| "ĠâĶ": 12984, | |
| "Ġcertific": 12985, | |
| "ĠNapole": 12986, | |
| "Ġhospitals": 12987, | |
| "Ms": 12988, | |
| "Real": 12989, | |
| "Ġtire": 12990, | |
| "anim": 12991, | |
| "Ġwasting": 12992, | |
| "Ay": 12993, | |
| "ÂĿ": 12994, | |
| "Ġjet": 12995, | |
| "Ġdistress": 12996, | |
| "ĠPhoen": 12997, | |
| "ĠDesign": 12998, | |
| "Ġcelebration": 12999, | |
| "Ġsamples": 13000, | |
| "Ġultimate": 13001, | |
| "Ġfolded": 13002, | |
| "Drop": 13003, | |
| "ĠHerm": 13004, | |
| "olar": 13005, | |
| "Ġworm": 13006, | |
| "Ohh": 13007, | |
| "arks": 13008, | |
| "brid": 13009, | |
| "Ġinvestigate": 13010, | |
| "ĠDelhi": 13011, | |
| "Ġsighed": 13012, | |
| "ĠEmer": 13013, | |
| "Through": 13014, | |
| "ĠWarner": 13015, | |
| "Ġtravels": 13016, | |
| "Ġcategories": 13017, | |
| "Ġtanks": 13018, | |
| "ARRATOR": 13019, | |
| "Ġcustody": 13020, | |
| "ĠSAY": 13021, | |
| "ĠAP": 13022, | |
| "ĠNFL": 13023, | |
| "Getting": 13024, | |
| "Ġgraduating": 13025, | |
| "Ġbatteries": 13026, | |
| "Mag": 13027, | |
| "Ġted": 13028, | |
| "Ġcemetery": 13029, | |
| "ĠPC": 13030, | |
| "gins": 13031, | |
| "nergy": 13032, | |
| "Ġanswering": 13033, | |
| "Ġreplacement": 13034, | |
| "afa": 13035, | |
| "Ġrestaurants": 13036, | |
| "Ġcomparison": 13037, | |
| "ĠGor": 13038, | |
| "ĠLeslie": 13039, | |
| "ĠMalaysia": 13040, | |
| "Ġbail": 13041, | |
| "ĠDA": 13042, | |
| "iao": 13043, | |
| "Ġshade": 13044, | |
| "Ġunto": 13045, | |
| "Ġsweep": 13046, | |
| "Ġassociate": 13047, | |
| "Ġacknowled": 13048, | |
| "Green": 13049, | |
| "list": 13050, | |
| "Ġtroll": 13051, | |
| "ĠSud": 13052, | |
| "Ġconj": 13053, | |
| "Ġpublishing": 13054, | |
| "Ġsticking": 13055, | |
| "Ġtransportation": 13056, | |
| "Ġcolonial": 13057, | |
| "YS": 13058, | |
| "hou": 13059, | |
| "Ġrecept": 13060, | |
| "Ġmeals": 13061, | |
| "Atl": 13062, | |
| "Ġmurders": 13063, | |
| "ĠStewart": 13064, | |
| "PH": 13065, | |
| "Rober": 13066, | |
| "Ġtob": 13067, | |
| "Ġcancel": 13068, | |
| "Ġglanced": 13069, | |
| "Ġdisturbed": 13070, | |
| "Ġtastes": 13071, | |
| "Ġtowel": 13072, | |
| "Ġrelieved": 13073, | |
| "Count": 13074, | |
| "IES": 13075, | |
| "itudes": 13076, | |
| "osy": 13077, | |
| "arded": 13078, | |
| "Ġautomatically": 13079, | |
| "Hot": 13080, | |
| "Mat": 13081, | |
| "onge": 13082, | |
| "Ġecho": 13083, | |
| "Ġgoss": 13084, | |
| "oping": 13085, | |
| "ieu": 13086, | |
| "ĠAthens": 13087, | |
| "Ġarrives": 13088, | |
| "ĠShah": 13089, | |
| "IDE": 13090, | |
| "Ġlectures": 13091, | |
| "ĠPam": 13092, | |
| "rup": 13093, | |
| "Ġshaped": 13094, | |
| "Ġbanana": 13095, | |
| "Ġrecommended": 13096, | |
| "Ġconsisting": 13097, | |
| "ĠCaribbean": 13098, | |
| "__": 13099, | |
| "aver": 13100, | |
| "gas": 13101, | |
| "ĠLt": 13102, | |
| "Ġresort": 13103, | |
| "ctoral": 13104, | |
| "Ġdiary": 13105, | |
| "celona": 13106, | |
| "Ġpeasants": 13107, | |
| "Ġauthors": 13108, | |
| "ĠSE": 13109, | |
| "ĠSac": 13110, | |
| "rily": 13111, | |
| "Ġscales": 13112, | |
| "Ġmedieval": 13113, | |
| "Ġexperts": 13114, | |
| "Ġbelonging": 13115, | |
| "Ġtemperatures": 13116, | |
| "ĠMagazine": 13117, | |
| "Ġsymbols": 13118, | |
| "ĠBaseball": 13119, | |
| "immer": 13120, | |
| "ĠSophie": 13121, | |
| "ĠRangers": 13122, | |
| "ussia": 13123, | |
| "ikh": 13124, | |
| "ĠLords": 13125, | |
| "ĠPerry": 13126, | |
| "ĠHungarian": 13127, | |
| "July": 13128, | |
| "Friend": 13129, | |
| "eda": 13130, | |
| "eting": 13131, | |
| "ĠCase": 13132, | |
| "chio": 13133, | |
| "Ġratt": 13134, | |
| "abs": 13135, | |
| "oval": 13136, | |
| "ĠArabic": 13137, | |
| "Phone": 13138, | |
| "Ġdisagre": 13139, | |
| "Add": 13140, | |
| "Gentlemen": 13141, | |
| "vironment": 13142, | |
| "wife": 13143, | |
| "Ġq": 13144, | |
| "ĠMouse": 13145, | |
| "orne": 13146, | |
| "plain": 13147, | |
| "Ġconfession": 13148, | |
| "Ġinherit": 13149, | |
| "ĠFurther": 13150, | |
| "gra": 13151, | |
| "ieves": 13152, | |
| "Ġvamp": 13153, | |
| "hambers": 13154, | |
| "Ġcoverage": 13155, | |
| "Ġirre": 13156, | |
| "Ġembarrassed": 13157, | |
| "Ġsoph": 13158, | |
| "ĠCold": 13159, | |
| "ĠBent": 13160, | |
| "ĠNash": 13161, | |
| "aba": 13162, | |
| "Ġmankind": 13163, | |
| "eneration": 13164, | |
| "Ġhonored": 13165, | |
| "Ġdestination": 13166, | |
| "Ġsexy": 13167, | |
| "Ġcorners": 13168, | |
| "Ġdependent": 13169, | |
| "Ġodds": 13170, | |
| "Ġpurely": 13171, | |
| "Ġconsequence": 13172, | |
| "enburg": 13173, | |
| "ĠMong": 13174, | |
| "Ġatoms": 13175, | |
| "Ġsupports": 13176, | |
| "ais": 13177, | |
| "á»": 13178, | |
| "Ġcomplaint": 13179, | |
| "Ġturkey": 13180, | |
| "Ġembarrassing": 13181, | |
| "asper": 13182, | |
| "unks": 13183, | |
| "gered": 13184, | |
| "ĠWorks": 13185, | |
| "hana": 13186, | |
| "Ġdrain": 13187, | |
| "Ġsecretly": 13188, | |
| "ĠShaw": 13189, | |
| "Ġphysically": 13190, | |
| "Ġprimitive": 13191, | |
| "ère": 13192, | |
| "Ġnaughty": 13193, | |
| "ĠUl": 13194, | |
| "Donald": 13195, | |
| "Ġreaders": 13196, | |
| "Ġaffili": 13197, | |
| "Ġannouncement": 13198, | |
| "aments": 13199, | |
| "ĠMall": 13200, | |
| "ĠHum": 13201, | |
| "ĠTheod": 13202, | |
| "Ġjar": 13203, | |
| "ighty": 13204, | |
| "Ġagencies": 13205, | |
| "ACH": 13206, | |
| "bul": 13207, | |
| "rades": 13208, | |
| "hend": 13209, | |
| "ĠTropical": 13210, | |
| "Ġdaylight": 13211, | |
| "Ġdefinite": 13212, | |
| "ées": 13213, | |
| "Ġrepresentatives": 13214, | |
| "Ġcontributions": 13215, | |
| "Ġshells": 13216, | |
| "Ġank": 13217, | |
| "ĠLiter": 13218, | |
| "Ġcontents": 13219, | |
| "sterdam": 13220, | |
| "Ġguessed": 13221, | |
| "Applause": 13222, | |
| "Ġtoe": 13223, | |
| "ĠMoses": 13224, | |
| "arer": 13225, | |
| "Ġroast": 13226, | |
| "Ġregime": 13227, | |
| "Ġbushes": 13228, | |
| "Ġdefending": 13229, | |
| "mmet": 13230, | |
| "maid": 13231, | |
| "Ġdub": 13232, | |
| "Ġpneum": 13233, | |
| "Ġnail": 13234, | |
| "ifting": 13235, | |
| "anted": 13236, | |
| "ĠKo": 13237, | |
| "Ġpreserve": 13238, | |
| "Ġpays": 13239, | |
| "Ġexamination": 13240, | |
| "Ġurgent": 13241, | |
| "Ġtransmission": 13242, | |
| "ا": 13243, | |
| "Ġcyl": 13244, | |
| "Ġlakes": 13245, | |
| "imb": 13246, | |
| "Ġglorious": 13247, | |
| "Ġsensible": 13248, | |
| "Ġingred": 13249, | |
| "ĠScientists": 13250, | |
| "mill": 13251, | |
| "ĠSide": 13252, | |
| "ĠEvan": 13253, | |
| "ĠKirk": 13254, | |
| "Ġbanned": 13255, | |
| "Ġbiology": 13256, | |
| "half": 13257, | |
| "ĠToy": 13258, | |
| "Ġrows": 13259, | |
| "aboo": 13260, | |
| "Ġpromises": 13261, | |
| "Ġkissing": 13262, | |
| "Ġmoist": 13263, | |
| "ĠIranian": 13264, | |
| "ĠHebrew": 13265, | |
| "ĠYugoslav": 13266, | |
| "mel": 13267, | |
| "ingham": 13268, | |
| "ĠMind": 13269, | |
| "Ġguid": 13270, | |
| "ét": 13271, | |
| "Ġparas": 13272, | |
| "Angel": 13273, | |
| "Ġcompeting": 13274, | |
| "ĠVenus": 13275, | |
| "Pass": 13276, | |
| "opard": 13277, | |
| "Ġdecline": 13278, | |
| "Ġcenters": 13279, | |
| "Ġfights": 13280, | |
| "DR": 13281, | |
| "Ġtherm": 13282, | |
| "riers": 13283, | |
| "Ġregards": 13284, | |
| "ONNA": 13285, | |
| "Ġconcerts": 13286, | |
| "Ġpissed": 13287, | |
| "January": 13288, | |
| "End": 13289, | |
| "Fred": 13290, | |
| "Imp": 13291, | |
| "Ġdense": 13292, | |
| "ĠGard": 13293, | |
| "ĠKenn": 13294, | |
| "Ġseparation": 13295, | |
| "ÃŃn": 13296, | |
| "pos": 13297, | |
| "earing": 13298, | |
| "Ġsunset": 13299, | |
| "ĠâĶĤ": 13300, | |
| "Sal": 13301, | |
| "ĠCOULD": 13302, | |
| "Ġchoir": 13303, | |
| "Ġsummit": 13304, | |
| "Ġhorizont": 13305, | |
| "ĠIndonesia": 13306, | |
| "iors": 13307, | |
| "erts": 13308, | |
| "Ġbru": 13309, | |
| "ĠUniverse": 13310, | |
| "Ġpolar": 13311, | |
| "borne": 13312, | |
| "ĠAustin": 13313, | |
| "ĠTurner": 13314, | |
| "raska": 13315, | |
| "iege": 13316, | |
| "berries": 13317, | |
| "Ġbrass": 13318, | |
| "Ġserver": 13319, | |
| "Ġhandling": 13320, | |
| "Ġhumble": 13321, | |
| "Ġindustries": 13322, | |
| "ĠLeader": 13323, | |
| "Tony": 13324, | |
| "Ġporn": 13325, | |
| "ĠHudson": 13326, | |
| "Ġcompounds": 13327, | |
| "ĠViv": 13328, | |
| "ORY": 13329, | |
| "ĠUkrainian": 13330, | |
| "Beautiful": 13331, | |
| "Cons": 13332, | |
| "Ġcrop": 13333, | |
| "ĠCAR": 13334, | |
| "ppers": 13335, | |
| "Ġaloud": 13336, | |
| "Ġtension": 13337, | |
| "Ġrevel": 13338, | |
| "psy": 13339, | |
| "Ġgrandson": 13340, | |
| "LET": 13341, | |
| "ĠSyria": 13342, | |
| "Ġrises": 13343, | |
| "Ġemerged": 13344, | |
| "ĠEvans": 13345, | |
| "MO": 13346, | |
| "ĠVo": 13347, | |
| "phones": 13348, | |
| "Ġspinning": 13349, | |
| "ĠReagan": 13350, | |
| "Imagine": 13351, | |
| "COME": 13352, | |
| "Gold": 13353, | |
| "Light": 13354, | |
| "Ġashes": 13355, | |
| "ĠLeeds": 13356, | |
| "ĠFE": 13357, | |
| "ĠEqu": 13358, | |
| "Ġpean": 13359, | |
| "Ġbelieving": 13360, | |
| "Ġceremon": 13361, | |
| "ME": 13362, | |
| "Ġgoose": 13363, | |
| "ĠABC": 13364, | |
| "ĠHO": 13365, | |
| "ĠPsych": 13366, | |
| "Ġvag": 13367, | |
| "REAT": 13368, | |
| "Ġsignificance": 13369, | |
| "Ġincredibly": 13370, | |
| "Ġinquired": 13371, | |
| "Roger": 13372, | |
| "Ġsins": 13373, | |
| "ĠSS": 13374, | |
| "ĠLE": 13375, | |
| "please": 13376, | |
| "Ġdrowned": 13377, | |
| "THIS": 13378, | |
| "Ġpatrol": 13379, | |
| "Ġwritings": 13380, | |
| "Ġsurviving": 13381, | |
| "Ġlogical": 13382, | |
| "ĠJulian": 13383, | |
| "Ġchemicals": 13384, | |
| "Ġlaboratory": 13385, | |
| "Ġunfair": 13386, | |
| "Ġphenomenon": 13387, | |
| "Ġtrembling": 13388, | |
| "bone": 13389, | |
| "Ġbicycle": 13390, | |
| "Ġom": 13391, | |
| "ĠJi": 13392, | |
| "rington": 13393, | |
| "ascal": 13394, | |
| "AH": 13395, | |
| "Brit": 13396, | |
| "nan": 13397, | |
| "Ġbisc": 13398, | |
| "inaudible": 13399, | |
| "Ġlaughs": 13400, | |
| "Ġmasses": 13401, | |
| "Ġdresses": 13402, | |
| "Ġcoastal": 13403, | |
| "ĠCaroline": 13404, | |
| "Ġloyalty": 13405, | |
| "October": 13406, | |
| "hent": 13407, | |
| "ĠIP": 13408, | |
| "Ġbee": 13409, | |
| "hart": 13410, | |
| "Ġ'\"": 13411, | |
| "oko": 13412, | |
| "ĠBarcelona": 13413, | |
| "Ġtatt": 13414, | |
| "arettes": 13415, | |
| "flies": 13416, | |
| "ĠVincent": 13417, | |
| "Ġstrategic": 13418, | |
| "Henry": 13419, | |
| "cott": 13420, | |
| "ishi": 13421, | |
| "itness": 13422, | |
| "ĠKi": 13423, | |
| "Ġtwisted": 13424, | |
| "Ġbloke": 13425, | |
| "tingham": 13426, | |
| "Speak": 13427, | |
| "aptist": 13428, | |
| "Seems": 13429, | |
| "Ġpitcher": 13430, | |
| "Ġturtle": 13431, | |
| "isons": 13432, | |
| "enos": 13433, | |
| "Ġheal": 13434, | |
| "ĠMik": 13435, | |
| "ĠBU": 13436, | |
| "ĠWeek": 13437, | |
| "ĠLily": 13438, | |
| "Ġdeploy": 13439, | |
| "aux": 13440, | |
| "Ġformally": 13441, | |
| "ĠNewton": 13442, | |
| "Ġpossibilities": 13443, | |
| "Ġvoyage": 13444, | |
| "Far": 13445, | |
| "ĠChem": 13446, | |
| "Ġambit": 13447, | |
| "Ġfrust": 13448, | |
| "ĠBrid": 13449, | |
| "ön": 13450, | |
| "partement": 13451, | |
| "Ġsubstantial": 13452, | |
| "*\"": 13453, | |
| "ao": 13454, | |
| "eor": 13455, | |
| "Ġchi": 13456, | |
| "Ġpap": 13457, | |
| "illo": 13458, | |
| "Ġchains": 13459, | |
| "Ġdrums": 13460, | |
| "Ġdoorway": 13461, | |
| "Ġwallet": 13462, | |
| "Ġconcentrate": 13463, | |
| "Ġmanufacturing": 13464, | |
| "Ġsuspicion": 13465, | |
| "gil": 13466, | |
| "Ġtens": 13467, | |
| "eries": 13468, | |
| "Ġlemon": 13469, | |
| "ĠHappy": 13470, | |
| "ĠDR": 13471, | |
| "ths": 13472, | |
| "sole": 13473, | |
| "Ġquad": 13474, | |
| "Ġruins": 13475, | |
| "care": 13476, | |
| "INGING": 13477, | |
| "Ġbankrupt": 13478, | |
| "ĠMagn": 13479, | |
| "Ġchapel": 13480, | |
| "Ġwandering": 13481, | |
| "Having": 13482, | |
| "Sister": 13483, | |
| "Ġsaint": 13484, | |
| "Ġpoured": 13485, | |
| "ĠBright": 13486, | |
| "Ġindign": 13487, | |
| "Ġlighting": 13488, | |
| "shop": 13489, | |
| "Ġmagnet": 13490, | |
| "market": 13491, | |
| "ĠValent": 13492, | |
| "Ġrevolutionary": 13493, | |
| "Ġstyles": 13494, | |
| "ĠCosta": 13495, | |
| "aus": 13496, | |
| "ĠFem": 13497, | |
| "Ġnightmare": 13498, | |
| "Ġtrigger": 13499, | |
| "Ġessay": 13500, | |
| "Ġheavens": 13501, | |
| "Ġcriticized": 13502, | |
| "Ġquantum": 13503, | |
| "Ġrugby": 13504, | |
| "NY": 13505, | |
| "ĠSport": 13506, | |
| "Ġdod": 13507, | |
| "ĠDJ": 13508, | |
| "oodle": 13509, | |
| "Ġsheriff": 13510, | |
| "Ġintu": 13511, | |
| "Ġclerk": 13512, | |
| "pering": 13513, | |
| "Ġtrials": 13514, | |
| "Ġdeparted": 13515, | |
| "GAS": 13516, | |
| "Sch": 13517, | |
| "Ġwrap": 13518, | |
| "Ġborough": 13519, | |
| "Ġfran": 13520, | |
| "Ġrevers": 13521, | |
| "ĠPay": 13522, | |
| "ĠNear": 13523, | |
| "Enjoy": 13524, | |
| "Ġknocking": 13525, | |
| "Ġterrorist": 13526, | |
| "ĠAuthority": 13527, | |
| "Ġsearched": 13528, | |
| "Reg": 13529, | |
| "Ġdio": 13530, | |
| "ĠRE": 13531, | |
| "Ġsnakes": 13532, | |
| "Ġdiagram": 13533, | |
| "Ġcatal": 13534, | |
| "Ġpersist": 13535, | |
| "Bas": 13536, | |
| "Nine": 13537, | |
| "Ġpadd": 13538, | |
| "arin": 13539, | |
| "Ġsovere": 13540, | |
| "Ġabsorbed": 13541, | |
| "Ġvariables": 13542, | |
| "onn": 13543, | |
| "ĠCry": 13544, | |
| "ĠOz": 13545, | |
| "airies": 13546, | |
| "Ġfrost": 13547, | |
| "ĠDefense": 13548, | |
| "Ġeliminated": 13549, | |
| "orph": 13550, | |
| "Ġlob": 13551, | |
| "ierra": 13552, | |
| "Ġequations": 13553, | |
| "Ġoperates": 13554, | |
| "Ġcompetitive": 13555, | |
| "grim": 13556, | |
| "Ġreminded": 13557, | |
| "Ġforbidden": 13558, | |
| "Ġfrankly": 13559, | |
| "Ġwarrior": 13560, | |
| "oqu": 13561, | |
| "Ġtore": 13562, | |
| "Ġpod": 13563, | |
| "ĠNARRATOR": 13564, | |
| "ĠEver": 13565, | |
| "Ġcorrectly": 13566, | |
| "Ġgesture": 13567, | |
| "Ġthirsty": 13568, | |
| "atched": 13569, | |
| "Ġniece": 13570, | |
| "Ġflats": 13571, | |
| "ALLY": 13572, | |
| "Ġvirtue": 13573, | |
| "Ġdismissed": 13574, | |
| "Ġsyndrome": 13575, | |
| "September": 13576, | |
| "iche": 13577, | |
| "imo": 13578, | |
| "Ġsew": 13579, | |
| "ĠFA": 13580, | |
| "Ġleaning": 13581, | |
| "Ġeru": 13582, | |
| "Ġcorrid": 13583, | |
| "Ġcrystal": 13584, | |
| "SHE": 13585, | |
| "every": 13586, | |
| "ouver": 13587, | |
| "ĠBomb": 13588, | |
| "ĠGw": 13589, | |
| "Ġconvert": 13590, | |
| "Ġclan": 13591, | |
| "Ġmessenger": 13592, | |
| "Ġfreed": 13593, | |
| "arrison": 13594, | |
| "Ġvertical": 13595, | |
| "dog": 13596, | |
| "Ġfinance": 13597, | |
| "ĠOrthodox": 13598, | |
| "Ġpotato": 13599, | |
| "ĠLouise": 13600, | |
| "kerchief": 13601, | |
| "Ġincreasingly": 13602, | |
| "Ġownership": 13603, | |
| "CL": 13604, | |
| "ĠSad": 13605, | |
| "ĠLis": 13606, | |
| "udding": 13607, | |
| "velope": 13608, | |
| "ĠManagement": 13609, | |
| "Ġcollecting": 13610, | |
| "Ġbats": 13611, | |
| "ĠPoor": 13612, | |
| "Ġprett": 13613, | |
| "ĠMunich": 13614, | |
| "Ġcoincidence": 13615, | |
| "Ġmr": 13616, | |
| "riger": 13617, | |
| "ĠCamb": 13618, | |
| "ĠHank": 13619, | |
| "Ġseldom": 13620, | |
| "ĠWrit": 13621, | |
| "Ġmanaging": 13622, | |
| "ĠInspector": 13623, | |
| "Ġfarms": 13624, | |
| "Thirty": 13625, | |
| "Ġcompetitions": 13626, | |
| "Ġpriority": 13627, | |
| "Ġborrowed": 13628, | |
| "ĠChampion": 13629, | |
| "Ġencl": 13630, | |
| "Ġattending": 13631, | |
| "Ġdirectors": 13632, | |
| "Ġdeclare": 13633, | |
| "ĠMontana": 13634, | |
| "ĠCommissioner": 13635, | |
| "Ġairline": 13636, | |
| "Ġfarewell": 13637, | |
| "Trans": 13638, | |
| "inian": 13639, | |
| "Ġdess": 13640, | |
| "eties": 13641, | |
| "ĠWoo": 13642, | |
| "Ġcanal": 13643, | |
| "ĠLan": 13644, | |
| "ipur": 13645, | |
| "ugar": 13646, | |
| "Ans": 13647, | |
| "Ġconviction": 13648, | |
| "Ġlosses": 13649, | |
| "ĠNazis": 13650, | |
| "Ġelderly": 13651, | |
| "ĠArkansas": 13652, | |
| "Ġstubborn": 13653, | |
| "Kiss": 13654, | |
| "TY": 13655, | |
| "cal": 13656, | |
| "fr": 13657, | |
| "log": 13658, | |
| "ĠBond": 13659, | |
| "ĠDuc": 13660, | |
| "ĠEagle": 13661, | |
| "Ġintim": 13662, | |
| "CHUCK": 13663, | |
| "Ġspreading": 13664, | |
| "Ġkidnapped": 13665, | |
| "ĠConfederate": 13666, | |
| "Ġwage": 13667, | |
| "olis": 13668, | |
| "Ġjaw": 13669, | |
| "Ġpathetic": 13670, | |
| "oeing": 13671, | |
| "##": 13672, | |
| "Mur": 13673, | |
| "erie": 13674, | |
| "Ġexamined": 13675, | |
| "Wasn": 13676, | |
| "December": 13677, | |
| "département": 13678, | |
| "estone": 13679, | |
| "Ġcommunications": 13680, | |
| "Ġstrongest": 13681, | |
| "Ġsalad": 13682, | |
| "Ġcowboy": 13683, | |
| "Ġtapes": 13684, | |
| "Ġtoxic": 13685, | |
| "Ġtelesc": 13686, | |
| "erness": 13687, | |
| "ĠTib": 13688, | |
| "through": 13689, | |
| "Ġpartial": 13690, | |
| "Ġsubstitute": 13691, | |
| "Ġemail": 13692, | |
| "Ġexposure": 13693, | |
| "ĠPlat": 13694, | |
| "Ġquarrel": 13695, | |
| "ODY": 13696, | |
| "Ġcartoon": 13697, | |
| "ĠMovement": 13698, | |
| "During": 13699, | |
| "Im": 13700, | |
| "nell": 13701, | |
| "oric": 13702, | |
| "Ġgrandpa": 13703, | |
| "Ġleaned": 13704, | |
| "ĠParalympics": 13705, | |
| "Nor": 13706, | |
| "Said": 13707, | |
| "Ġtasks": 13708, | |
| "ĠPont": 13709, | |
| "Ġcontempt": 13710, | |
| "oba": 13711, | |
| "Ġrestore": 13712, | |
| "ĠJackie": 13713, | |
| "Ġtourist": 13714, | |
| "ĠVillage": 13715, | |
| "Af": 13716, | |
| "gom": 13717, | |
| "Ġsab": 13718, | |
| "Ġgown": 13719, | |
| "ĠMak": 13720, | |
| "ĠMaine": 13721, | |
| "ĠLen": 13722, | |
| "ĠEu": 13723, | |
| "aware": 13724, | |
| "Ġmarvel": 13725, | |
| "ĠButler": 13726, | |
| "Ġlightly": 13727, | |
| "Ġrecordings": 13728, | |
| "Ġquestioned": 13729, | |
| "Ġpropag": 13730, | |
| "Ġdepartments": 13731, | |
| "Ġporch": 13732, | |
| "Ġmall": 13733, | |
| "ĠAround": 13734, | |
| "agen": 13735, | |
| "ĠAmsterdam": 13736, | |
| "Ġtexts": 13737, | |
| "Ġphilosoph": 13738, | |
| "Ġbeetle": 13739, | |
| "Ġjurisd": 13740, | |
| "Lu": 13741, | |
| "crow": 13742, | |
| "eight": 13743, | |
| "Ġware": 13744, | |
| "Ġpear": 13745, | |
| "ivan": 13746, | |
| "Ġflights": 13747, | |
| "Ġmeter": 13748, | |
| "Ġlayers": 13749, | |
| "Ġnegro": 13750, | |
| "ĠSimpson": 13751, | |
| "Ġarguing": 13752, | |
| "Ġaltitude": 13753, | |
| "ĠWallace": 13754, | |
| "Ġashore": 13755, | |
| "ĠPir": 13756, | |
| "herent": 13757, | |
| "ĠAlpha": 13758, | |
| "Ġsunlight": 13759, | |
| "ĠCollins": 13760, | |
| "Ġdispute": 13761, | |
| "Ġreminds": 13762, | |
| "Ġaggressive": 13763, | |
| "Ġadjacent": 13764, | |
| "Ġtobacco": 13765, | |
| "Way": 13766, | |
| "Ġink": 13767, | |
| "asa": 13768, | |
| "vember": 13769, | |
| "ĠUh": 13770, | |
| "ĠIndeed": 13771, | |
| "ĠCanal": 13772, | |
| "Ġworrying": 13773, | |
| "Ġforgetting": 13774, | |
| "Ġstrikes": 13775, | |
| "ĠLuis": 13776, | |
| "Ġimmort": 13777, | |
| "Ġflee": 13778, | |
| "ĠJama": 13779, | |
| "Ġtraded": 13780, | |
| "Ġinfluential": 13781, | |
| "ĠOpera": 13782, | |
| "ĠFelix": 13783, | |
| "Ġinherited": 13784, | |
| "Ġfabric": 13785, | |
| "ĠNevada": 13786, | |
| "ĠCBS": 13787, | |
| "Ġdisplayed": 13788, | |
| "ĠMedicine": 13789, | |
| "ebastian": 13790, | |
| "Ġrely": 13791, | |
| "ĠJamie": 13792, | |
| "ĠGonz": 13793, | |
| "Slow": 13794, | |
| "Ġster": 13795, | |
| "ĠFund": 13796, | |
| "Ġguilt": 13797, | |
| "Ġdiscont": 13798, | |
| "Ġtopics": 13799, | |
| "Ġcivilian": 13800, | |
| "Ġbapt": 13801, | |
| "ĠBee": 13802, | |
| "essed": 13803, | |
| "Ġscram": 13804, | |
| "Ġprecip": 13805, | |
| "upiter": 13806, | |
| "oids": 13807, | |
| "Ġrobbed": 13808, | |
| "bin": 13809, | |
| "Ġbehold": 13810, | |
| "Ġlocomot": 13811, | |
| "Ġcontinent": 13812, | |
| "Ġvolumes": 13813, | |
| "post": 13814, | |
| "Ġgum": 13815, | |
| "ĠPent": 13816, | |
| "Ġamendment": 13817, | |
| "Ġcolleges": 13818, | |
| "Ġawfully": 13819, | |
| "IRE": 13820, | |
| "ĠHOW": 13821, | |
| "ĠGONNA": 13822, | |
| "ĠFood": 13823, | |
| "ĠKum": 13824, | |
| "Ġflames": 13825, | |
| "Ġopenly": 13826, | |
| "Ġelectro": 13827, | |
| "Ġreduction": 13828, | |
| "BY": 13829, | |
| "gam": 13830, | |
| "ĠRoom": 13831, | |
| "anga": 13832, | |
| "Ġparks": 13833, | |
| "otype": 13834, | |
| "Ġego": 13835, | |
| "ĠMama": 13836, | |
| "ĠGand": 13837, | |
| "Ġamid": 13838, | |
| "reams": 13839, | |
| "Bloody": 13840, | |
| "Ġvolunteer": 13841, | |
| "fashion": 13842, | |
| "sis": 13843, | |
| "Ġtires": 13844, | |
| "rock": 13845, | |
| "ĠMason": 13846, | |
| "avin": 13847, | |
| "ipher": 13848, | |
| "rency": 13849, | |
| "Ġpublicly": 13850, | |
| "Ġtestimony": 13851, | |
| "ĠChase": 13852, | |
| "Ġpollution": 13853, | |
| "ĠHistoric": 13854, | |
| "Ġunsuccess": 13855, | |
| "Bo": 13856, | |
| "Ġoct": 13857, | |
| "Ġpony": 13858, | |
| "Ġlod": 13859, | |
| "unci": 13860, | |
| "eling": 13861, | |
| "ĠRead": 13862, | |
| "Ġheritage": 13863, | |
| "ogram": 13864, | |
| "Ġrecre": 13865, | |
| "Ġhelmet": 13866, | |
| "oka": 13867, | |
| "Ġhardware": 13868, | |
| "Ġflowing": 13869, | |
| "Ġperceived": 13870, | |
| "WA": 13871, | |
| "oven": 13872, | |
| "Ġbegging": 13873, | |
| "antine": 13874, | |
| "geons": 13875, | |
| "uddy": 13876, | |
| "itionally": 13877, | |
| "Ġraining": 13878, | |
| "them": 13879, | |
| "uffs": 13880, | |
| "ĠStudios": 13881, | |
| "ĠDoug": 13882, | |
| "Danny": 13883, | |
| "ĠPotter": 13884, | |
| "ITTLE": 13885, | |
| "Med": 13886, | |
| "itating": 13887, | |
| "ĠDub": 13888, | |
| "ĠRou": 13889, | |
| "Ġparade": 13890, | |
| "coat": 13891, | |
| "ancouver": 13892, | |
| "Ġstreams": 13893, | |
| "Ġpyram": 13894, | |
| "!!\"": 13895, | |
| "would": 13896, | |
| "ĠJesse": 13897, | |
| "clude": 13898, | |
| "Ġbuses": 13899, | |
| "Ġcrust": 13900, | |
| "Ġfootage": 13901, | |
| "ĠMilton": 13902, | |
| "Ġ>>:": 13903, | |
| "Ġmathematical": 13904, | |
| "ĠSocialist": 13905, | |
| "Ġdelayed": 13906, | |
| "Ġeagerly": 13907, | |
| "Ġdrafted": 13908, | |
| "Mal": 13909, | |
| "ĠFr": 13910, | |
| "Ġconvey": 13911, | |
| "udy": 13912, | |
| "ĠHend": 13913, | |
| "Ġblade": 13914, | |
| "Ġpopulations": 13915, | |
| "Ġmodified": 13916, | |
| "Ġmeasuring": 13917, | |
| "Ġdemocratic": 13918, | |
| "Ġstrictly": 13919, | |
| "Ġconvenient": 13920, | |
| "Ġassassin": 13921, | |
| "ĠWagner": 13922, | |
| ".!\"": 13923, | |
| "Mel": 13924, | |
| "Roll": 13925, | |
| "Ġod": 13926, | |
| "Ġplun": 13927, | |
| "ovich": 13928, | |
| "Ġblocked": 13929, | |
| "Ġboards": 13930, | |
| "atsu": 13931, | |
| "ĠPresently": 13932, | |
| "Ġconcepts": 13933, | |
| "Ġmuttered": 13934, | |
| "ĠPanama": 13935, | |
| "ĠNEW": 13936, | |
| "Ġathletes": 13937, | |
| "ĠExamples": 13938, | |
| "ayed": 13939, | |
| "ĠBoo": 13940, | |
| "Ġcann": 13941, | |
| "auc": 13942, | |
| "Ġexpenses": 13943, | |
| "Ġseverely": 13944, | |
| "Ġcher": 13945, | |
| "Ġnomin": 13946, | |
| "Ġdol": 13947, | |
| "Ġlily": 13948, | |
| "strong": 13949, | |
| "Ġsatisfy": 13950, | |
| "ĠNebraska": 13951, | |
| "Ġcancelled": 13952, | |
| "Ġcups": 13953, | |
| "ĠAges": 13954, | |
| "ĠNation": 13955, | |
| "Ġvine": 13956, | |
| "Ġchill": 13957, | |
| "ĠPeru": 13958, | |
| "Ġdiscussing": 13959, | |
| "blast": 13960, | |
| "Ġdispos": 13961, | |
| "ĠDemocrat": 13962, | |
| "ĠSquad": 13963, | |
| "ĠIceland": 13964, | |
| "Ġenthusi": 13965, | |
| "oks": 13966, | |
| "Ġdorm": 13967, | |
| "Ġlaund": 13968, | |
| "ĠSister": 13969, | |
| "ĠDublin": 13970, | |
| "ĠLaughing": 13971, | |
| "ĠStart": 13972, | |
| "ylum": 13973, | |
| "Ġarriving": 13974, | |
| "Ġengineers": 13975, | |
| "alais": 13976, | |
| "Ġprinting": 13977, | |
| "ĠBowl": 13978, | |
| "Ġconsecutive": 13979, | |
| "PL": 13980, | |
| "Ġbade": 13981, | |
| "ĠWing": 13982, | |
| "ĠLoc": 13983, | |
| "Ġnevertheless": 13984, | |
| "Ġcoup": 13985, | |
| "ISS": 13986, | |
| "ĠNottingham": 13987, | |
| "Ġgallery": 13988, | |
| "ĠQueensland": 13989, | |
| "ĠShirley": 13990, | |
| "\"\"": 13991, | |
| "sl": 13992, | |
| "Ġoak": 13993, | |
| "ĠHaz": 13994, | |
| "ĠNote": 13995, | |
| "obi": 13996, | |
| "velt": 13997, | |
| "Ġretail": 13998, | |
| "Ġpeaked": 13999, | |
| "ĠTestament": 14000, | |
| "stad": 14001, | |
| "storm": 14002, | |
| "Hear": 14003, | |
| "Ġcarb": 14004, | |
| "Ġabsent": 14005, | |
| "DON": 14006, | |
| "Set": 14007, | |
| "Sleep": 14008, | |
| "east": 14009, | |
| "Ġhipp": 14010, | |
| "ĠBird": 14011, | |
| "istant": 14012, | |
| "Ġrays": 14013, | |
| "Ġshelf": 14014, | |
| "type": 14015, | |
| "Ġsupporters": 14016, | |
| "rently": 14017, | |
| "Ġhosts": 14018, | |
| "Ġdominant": 14019, | |
| "Ġreflection": 14020, | |
| "ĠSophia": 14021, | |
| "Ġsessions": 14022, | |
| "ĠTogether": 14023, | |
| "ĠMuch": 14024, | |
| "ĠDom": 14025, | |
| "ĠNov": 14026, | |
| "ĠOcc": 14027, | |
| "Ġunw": 14028, | |
| "ĠChapter": 14029, | |
| "Ġswallow": 14030, | |
| "Coll": 14031, | |
| "ĠHaving": 14032, | |
| "ENCE": 14033, | |
| "eption": 14034, | |
| "Ġsniff": 14035, | |
| "Ġorganised": 14036, | |
| "Ġcopyright": 14037, | |
| "Ġsailor": 14038, | |
| "Ġanchor": 14039, | |
| "Ġdisgrace": 14040, | |
| "Bull": 14041, | |
| "].": 14042, | |
| "ĠGive": 14043, | |
| "Ġtwent": 14044, | |
| "Ġsubtle": 14045, | |
| "Ġpursu": 14046, | |
| "unications": 14047, | |
| "ör": 14048, | |
| "ĠSaudi": 14049, | |
| "ĠLOOK": 14050, | |
| "%.": 14051, | |
| "Jean": 14052, | |
| "ref": 14053, | |
| "Ġflip": 14054, | |
| "Ġcheating": 14055, | |
| "Ġdrummer": 14056, | |
| "Ġcorps": 14057, | |
| "Ġadvise": 14058, | |
| "Ġdemol": 14059, | |
| "ĠAdvent": 14060, | |
| "Ġmisery": 14061, | |
| "ĠGerald": 14062, | |
| "Ġinterfere": 14063, | |
| "Ġguidance": 14064, | |
| "TR": 14065, | |
| "Ġtails": 14066, | |
| "imir": 14067, | |
| "ĠAaron": 14068, | |
| "rod": 14069, | |
| "season": 14070, | |
| "ĠMaz": 14071, | |
| "ĠFalls": 14072, | |
| "ĠEight": 14073, | |
| "Ġfathers": 14074, | |
| "Ġstarving": 14075, | |
| "ĠNatural": 14076, | |
| "writing": 14077, | |
| "Laura": 14078, | |
| "Ġtha": 14079, | |
| "ĠCraw": 14080, | |
| "ĠKyle": 14081, | |
| "ĠVlad": 14082, | |
| "Ġfilmed": 14083, | |
| "Ġclassroom": 14084, | |
| "Ġresidential": 14085, | |
| "Ġpipes": 14086, | |
| "Ġsizes": 14087, | |
| "Ġcakes": 14088, | |
| "ĠMerry": 14089, | |
| "ĠPow": 14090, | |
| "onda": 14091, | |
| "Ġhappier": 14092, | |
| "Ġprotests": 14093, | |
| "Ġmotive": 14094, | |
| "Ġpronounced": 14095, | |
| ",...": 14096, | |
| "ressing": 14097, | |
| "Ġcrush": 14098, | |
| "Ġmagical": 14099, | |
| "Ġreporting": 14100, | |
| "ĠDaisy": 14101, | |
| "ĠFreud": 14102, | |
| "Ġproteins": 14103, | |
| "ĠPetersburg": 14104, | |
| "Ġwag": 14105, | |
| "riages": 14106, | |
| "gebra": 14107, | |
| "Ġrushing": 14108, | |
| "ĠHampshire": 14109, | |
| "Ġconversations": 14110, | |
| "Ġearnest": 14111, | |
| "ĠMembers": 14112, | |
| "ĠLeban": 14113, | |
| "Ġchimney": 14114, | |
| "Sy": 14115, | |
| "Women": 14116, | |
| "folk": 14117, | |
| "Ġlan": 14118, | |
| "ĠPand": 14119, | |
| "Ġspill": 14120, | |
| "November": 14121, | |
| "Ġleisure": 14122, | |
| "Ġaccum": 14123, | |
| "Ġterminal": 14124, | |
| "Ġmythology": 14125, | |
| "Hand": 14126, | |
| "eous": 14127, | |
| "Ġhither": 14128, | |
| "ĠSic": 14129, | |
| "Ġwhip": 14130, | |
| "anting": 14131, | |
| "Ġoutfit": 14132, | |
| "ĠOVER": 14133, | |
| "ĠKle": 14134, | |
| "Ġhandkerchief": 14135, | |
| "hampton": 14136, | |
| "Ġreads": 14137, | |
| "Ġshallow": 14138, | |
| "Ġcorruption": 14139, | |
| "Ġremarks": 14140, | |
| "ĠReview": 14141, | |
| "did": 14142, | |
| "loe": 14143, | |
| "ĠRah": 14144, | |
| "ĠLor": 14145, | |
| "ĠNina": 14146, | |
| "quer": 14147, | |
| "Ġcarn": 14148, | |
| "Ġglow": 14149, | |
| "iji": 14150, | |
| "Ġmotorcycle": 14151, | |
| "Ġvoltage": 14152, | |
| "Ġly": 14153, | |
| "Ġlocks": 14154, | |
| "ĠNon": 14155, | |
| "ĠThailand": 14156, | |
| "Need": 14157, | |
| "ĠAx": 14158, | |
| "ppen": 14159, | |
| "Ġhomeless": 14160, | |
| "Ġexamine": 14161, | |
| "Ġinfant": 14162, | |
| "Ġcriteria": 14163, | |
| "Ġtendency": 14164, | |
| "Ġtribut": 14165, | |
| "Ġnursery": 14166, | |
| "Ġspoil": 14167, | |
| "ĠNigeria": 14168, | |
| "Ġreass": 14169, | |
| "urbs": 14170, | |
| "ĠHAD": 14171, | |
| "Ġatom": 14172, | |
| "osom": 14173, | |
| "iren": 14174, | |
| "ĠVe": 14175, | |
| "Ġblues": 14176, | |
| "archy": 14177, | |
| "Ġadvised": 14178, | |
| "ĠEdwards": 14179, | |
| "Ġreactions": 14180, | |
| "Ġvolunteers": 14181, | |
| "Ġindicates": 14182, | |
| "ĠErnest": 14183, | |
| "dig": 14184, | |
| "icism": 14185, | |
| "rawn": 14186, | |
| "ĠRural": 14187, | |
| "Ġvit": 14188, | |
| "Ġschem": 14189, | |
| "Ġapprent": 14190, | |
| "cliff": 14191, | |
| "Ġhatred": 14192, | |
| "Ġprints": 14193, | |
| "Ġbridges": 14194, | |
| "Ġgratitude": 14195, | |
| "TE": 14196, | |
| "bot": 14197, | |
| "pit": 14198, | |
| "instein": 14199, | |
| "Ġdonkey": 14200, | |
| "Ġworries": 14201, | |
| "Ġneedn": 14202, | |
| "Ġenters": 14203, | |
| "ĠAmendment": 14204, | |
| "ĠKeith": 14205, | |
| "ĠShang": 14206, | |
| "Ġmansion": 14207, | |
| "abetes": 14208, | |
| "Ġbreeze": 14209, | |
| "Ġmasc": 14210, | |
| "Ġretained": 14211, | |
| "stration": 14212, | |
| "ĠCS": 14213, | |
| "Ġkin": 14214, | |
| "ĠBald": 14215, | |
| "unty": 14216, | |
| "ĠVancouver": 14217, | |
| "pling": 14218, | |
| "Ġbloom": 14219, | |
| "Ġminority": 14220, | |
| "ĠColumbus": 14221, | |
| "ĠLightfoot": 14222, | |
| "Ġtransformed": 14223, | |
| "Ev": 14224, | |
| "HOW": 14225, | |
| "Sus": 14226, | |
| "Val": 14227, | |
| "oub": 14228, | |
| "Ġsulf": 14229, | |
| "othe": 14230, | |
| "ĠTree": 14231, | |
| "stick": 14232, | |
| "Ġcrushed": 14233, | |
| "ĠCliff": 14234, | |
| "IDS": 14235, | |
| "Ġtransformation": 14236, | |
| "Ġunnecess": 14237, | |
| "bia": 14238, | |
| "var": 14239, | |
| "Ġfuss": 14240, | |
| "ĠGate": 14241, | |
| "Ġoverl": 14242, | |
| "Ġunple": 14243, | |
| "Ġdisk": 14244, | |
| "Ġreluct": 14245, | |
| "Ġhumili": 14246, | |
| "Ġinfer": 14247, | |
| "ĠStudent": 14248, | |
| "Ġconsumption": 14249, | |
| "Richard": 14250, | |
| "Ġwig": 14251, | |
| "usively": 14252, | |
| "Ġsealed": 14253, | |
| "opl": 14254, | |
| "ĠLocal": 14255, | |
| "ahu": 14256, | |
| "ĠChart": 14257, | |
| "Ġtrousers": 14258, | |
| "Ġarmies": 14259, | |
| "Ġadopt": 14260, | |
| "Ġaxis": 14261, | |
| "ĠArgentine": 14262, | |
| "Air": 14263, | |
| "Ġcaut": 14264, | |
| "ĠToad": 14265, | |
| "ĠDraft": 14266, | |
| "ounded": 14267, | |
| "----\"": 14268, | |
| "ucked": 14269, | |
| "Ġchef": 14270, | |
| "Ġacres": 14271, | |
| "Ġprivacy": 14272, | |
| "Ġreligions": 14273, | |
| "ĠLux": 14274, | |
| "ustomed": 14275, | |
| "Ġcinema": 14276, | |
| "Dam": 14277, | |
| "Ġwides": 14278, | |
| "oning": 14279, | |
| "ĠTrib": 14280, | |
| "ĠBag": 14281, | |
| "Ġwhirl": 14282, | |
| "ĠDale": 14283, | |
| "Ġmanual": 14284, | |
| "ormal": 14285, | |
| "Ġtreating": 14286, | |
| "Ġexclusive": 14287, | |
| "Ġtiming": 14288, | |
| "Ġaccomplish": 14289, | |
| "ĠPeninsula": 14290, | |
| "Ġcolleague": 14291, | |
| "Ġcontroversy": 14292, | |
| "imm": 14293, | |
| "Ġenchant": 14294, | |
| "Ġdiamonds": 14295, | |
| "Ġterrific": 14296, | |
| "Ġbees": 14297, | |
| "ĠMap": 14298, | |
| "Ġspit": 14299, | |
| "Ġmarched": 14300, | |
| "ASS": 14301, | |
| "Ġhyper": 14302, | |
| "ĠGrandma": 14303, | |
| "Ġghosts": 14304, | |
| "ĠDetective": 14305, | |
| "Ġutterly": 14306, | |
| "Ġ\"{\\": 14307, | |
| "Ġresearchers": 14308, | |
| "holm": 14309, | |
| "eded": 14310, | |
| "ĠTu": 14311, | |
| "ĠSão": 14312, | |
| "ĠGhost": 14313, | |
| "Ġapproaches": 14314, | |
| "Ġsaddle": 14315, | |
| "ĠEnvironment": 14316, | |
| "Ġcontracts": 14317, | |
| "Speaking": 14318, | |
| "Ho": 14319, | |
| "Ġshat": 14320, | |
| "eren": 14321, | |
| "WHO": 14322, | |
| "Ġsettlements": 14323, | |
| "iasm": 14324, | |
| "kov": 14325, | |
| "izard": 14326, | |
| "ĠUnc": 14327, | |
| "Ġharmon": 14328, | |
| "Ġblend": 14329, | |
| "ĠAnglo": 14330, | |
| "Ġcigarettes": 14331, | |
| "Ġcollaboration": 14332, | |
| "Ġmi": 14333, | |
| "Ġyelling": 14334, | |
| "Ġbeats": 14335, | |
| "ĠWA": 14336, | |
| "ĠEug": 14337, | |
| "Ġenvelope": 14338, | |
| "fulness": 14339, | |
| "Ġministers": 14340, | |
| "amese": 14341, | |
| "Ġgenerated": 14342, | |
| "ĠElin": 14343, | |
| "smith": 14344, | |
| "Ġchoosing": 14345, | |
| "February": 14346, | |
| "cule": 14347, | |
| "tic": 14348, | |
| "Ġfu": 14349, | |
| "Ġhears": 14350, | |
| "uded": 14351, | |
| "Ġboast": 14352, | |
| "ouncer": 14353, | |
| "ristol": 14354, | |
| "Ġefficiency": 14355, | |
| "Ġoperator": 14356, | |
| "Ġchampionships": 14357, | |
| "Ġmortal": 14358, | |
| "Ġadvertis": 14359, | |
| "Ġpirate": 14360, | |
| "children": 14361, | |
| "Ġdioxide": 14362, | |
| "Bon": 14363, | |
| "oft": 14364, | |
| "ĠSign": 14365, | |
| "ĠPAR": 14366, | |
| "Ġmainland": 14367, | |
| "Ġawhile": 14368, | |
| "ĠSeoul": 14369, | |
| "Ġnecessity": 14370, | |
| "Ġkicking": 14371, | |
| "====": 14372, | |
| "Fort": 14373, | |
| "Mer": 14374, | |
| "Ġmasters": 14375, | |
| "ĠDance": 14376, | |
| "ĠWald": 14377, | |
| "Ġexport": 14378, | |
| "obs": 14379, | |
| "Ġsongwriter": 14380, | |
| "Ġaimed": 14381, | |
| "ĠBengal": 14382, | |
| "Catch": 14383, | |
| "first": 14384, | |
| "Ġnails": 14385, | |
| "urst": 14386, | |
| "ĠScar": 14387, | |
| "Ġdevast": 14388, | |
| "Ġclaiming": 14389, | |
| "ĠSPEA": 14390, | |
| "Ġcommissioned": 14391, | |
| "ĠOwen": 14392, | |
| "Break": 14393, | |
| "Robert": 14394, | |
| "gomery": 14395, | |
| "Gotta": 14396, | |
| "pow": 14397, | |
| "Ġdil": 14398, | |
| "Ġdamp": 14399, | |
| "ĠYellow": 14400, | |
| "Station": 14401, | |
| "Ġdamned": 14402, | |
| "ĠVenice": 14403, | |
| "ĠOttoman": 14404, | |
| "Ġfirms": 14405, | |
| "Ġstere": 14406, | |
| "ĠWERE": 14407, | |
| "Ġsofa": 14408, | |
| "Ġslap": 14409, | |
| "Ġeyeb": 14410, | |
| "original": 14411, | |
| "Ġoverseas": 14412, | |
| "effic": 14413, | |
| "ĠWAY": 14414, | |
| "ĠLITTLE": 14415, | |
| "Ġwrist": 14416, | |
| "Ġcarved": 14417, | |
| "Ġtragic": 14418, | |
| "idding": 14419, | |
| "fessional": 14420, | |
| "Ġattraction": 14421, | |
| "Ġbeasts": 14422, | |
| "Ġcurtains": 14423, | |
| "Ġbundle": 14424, | |
| "Ġdestroying": 14425, | |
| "uum": 14426, | |
| "arity": 14427, | |
| "ĠHir": 14428, | |
| "aho": 14429, | |
| "ĠPaulo": 14430, | |
| "ĠSmall": 14431, | |
| "ĠInfantry": 14432, | |
| "Ġluxury": 14433, | |
| "tor": 14434, | |
| "Ġinex": 14435, | |
| "Ġnod": 14436, | |
| "usa": 14437, | |
| "ĠHomer": 14438, | |
| "ĠPlease": 14439, | |
| "ĠPyr": 14440, | |
| "ĠDash": 14441, | |
| "ĠFras": 14442, | |
| "orting": 14443, | |
| "ivals": 14444, | |
| "cycl": 14445, | |
| "Ġsketch": 14446, | |
| "Ġrisks": 14447, | |
| "Ġcompliment": 14448, | |
| "Ġcollapsed": 14449, | |
| "Ġsavage": 14450, | |
| "Pay": 14451, | |
| "SIGHS": 14452, | |
| "ecraft": 14453, | |
| "ationally": 14454, | |
| "ĠNBC": 14455, | |
| "Ġexagger": 14456, | |
| "Ġimpat": 14457, | |
| "Ġanimation": 14458, | |
| "ĠRussians": 14459, | |
| "minster": 14460, | |
| "Ġmutual": 14461, | |
| "ĠRing": 14462, | |
| "abul": 14463, | |
| "inky": 14464, | |
| "Ġraid": 14465, | |
| "Ġswords": 14466, | |
| "Ġsimult": 14467, | |
| "Ġreplacing": 14468, | |
| "ĠPercy": 14469, | |
| "Ġrecognise": 14470, | |
| "Ġinvention": 14471, | |
| "Ġaffects": 14472, | |
| "Ġdescended": 14473, | |
| "Ġconquer": 14474, | |
| "Colonel": 14475, | |
| "Ġfortunate": 14476, | |
| "Jake": 14477, | |
| "Ġdip": 14478, | |
| "rived": 14479, | |
| "ĠJava": 14480, | |
| "Ġsitcom": 14481, | |
| "Ġprophet": 14482, | |
| "oosevelt": 14483, | |
| "Ġdescribing": 14484, | |
| "ictionary": 14485, | |
| "Ġassumption": 14486, | |
| "Dev": 14487, | |
| "Ġfork": 14488, | |
| "avia": 14489, | |
| "Ġwool": 14490, | |
| "Ġloses": 14491, | |
| "rained": 14492, | |
| "Ġjer": 14493, | |
| "Ġrider": 14494, | |
| "Ġorganize": 14495, | |
| "Ġsavings": 14496, | |
| "Lady": 14497, | |
| "hr": 14498, | |
| "ĠIike": 14499, | |
| "ĠCher": 14500, | |
| "ĠPast": 14501, | |
| "bleep": 14502, | |
| "Ġcomprehens": 14503, | |
| "Ġmonkeys": 14504, | |
| "Ġdrawer": 14505, | |
| "Ġsentences": 14506, | |
| "Ġgenre": 14507, | |
| "ĠBros": 14508, | |
| "Ġgossip": 14509, | |
| "pread": 14510, | |
| "Ġwires": 14511, | |
| "Ġcogn": 14512, | |
| "Ġdominated": 14513, | |
| "anas": 14514, | |
| "Ġcareless": 14515, | |
| "Ġ\"##": 14516, | |
| "Ġdepths": 14517, | |
| "Ġvulnerable": 14518, | |
| "Harry": 14519, | |
| "ĠSoul": 14520, | |
| "Ġdisl": 14521, | |
| "Ġhandled": 14522, | |
| "Ġrefriger": 14523, | |
| "Ġpretended": 14524, | |
| "ĠAttorney": 14525, | |
| "Ġumbrella": 14526, | |
| "ĠRug": 14527, | |
| "Therefore": 14528, | |
| "ĠParish": 14529, | |
| "Ġchecks": 14530, | |
| "Ġfastest": 14531, | |
| "Ġpetition": 14532, | |
| "ĠDevil": 14533, | |
| "Ġpremiered": 14534, | |
| "Ġencounter": 14535, | |
| "ĠBennett": 14536, | |
| "okay": 14537, | |
| "Ġsomeday": 14538, | |
| "Ġbord": 14539, | |
| "Ġcater": 14540, | |
| "Ġlil": 14541, | |
| "roach": 14542, | |
| "unn": 14543, | |
| "Ġcontrad": 14544, | |
| "Ġscold": 14545, | |
| "Ġtrauma": 14546, | |
| "Ġmenu": 14547, | |
| "oker": 14548, | |
| "Ġrespected": 14549, | |
| "Ġaccidentally": 14550, | |
| "Ġacquaintance": 14551, | |
| "tw": 14552, | |
| "Ġbout": 14553, | |
| "Ġbegg": 14554, | |
| "amine": 14555, | |
| "unity": 14556, | |
| "emor": 14557, | |
| "ĠAlger": 14558, | |
| "ĠAbbey": 14559, | |
| "Ġsensation": 14560, | |
| "Ġsignificantly": 14561, | |
| "munition": 14562, | |
| "rr": 14563, | |
| "rep": 14564, | |
| "Ġstating": 14565, | |
| "ĠCoy": 14566, | |
| "ĠHamb": 14567, | |
| "Ġthemes": 14568, | |
| "ubb": 14569, | |
| "Ġmischief": 14570, | |
| "Ġsadly": 14571, | |
| "minute": 14572, | |
| "Ġelementary": 14573, | |
| "ĠTerritory": 14574, | |
| "iÃ": 14575, | |
| "including": 14576, | |
| "Ġdeter": 14577, | |
| "atar": 14578, | |
| "ĠSuddenly": 14579, | |
| "ĠMut": 14580, | |
| "ĠMale": 14581, | |
| "ĠGust": 14582, | |
| "ĠLing": 14583, | |
| "Ġtram": 14584, | |
| "airy": 14585, | |
| "Ġcheat": 14586, | |
| "Ġ\"'\"": 14587, | |
| "Ġdeclined": 14588, | |
| "Ġinclined": 14589, | |
| "core": 14590, | |
| "Ġdivers": 14591, | |
| "Door": 14592, | |
| "ĠApollo": 14593, | |
| "Ġfailing": 14594, | |
| "ĠAngela": 14595, | |
| "Aunt": 14596, | |
| "Dead": 14597, | |
| "ĠEM": 14598, | |
| "Ġrelate": 14599, | |
| "Ġthreats": 14600, | |
| "ĠSingles": 14601, | |
| "asketball": 14602, | |
| "Gro": 14603, | |
| "mus": 14604, | |
| "Ġpussy": 14605, | |
| "Ġstall": 14606, | |
| "ĠDol": 14607, | |
| "Ġrotten": 14608, | |
| "Ġclip": 14609, | |
| "Ġamus": 14610, | |
| "Ġlonging": 14611, | |
| "Ġindigenous": 14612, | |
| "Ġsingular": 14613, | |
| "ITY": 14614, | |
| "ĠCapital": 14615, | |
| "ĠMadison": 14616, | |
| "ĠRegiment": 14617, | |
| "hibition": 14618, | |
| "Ġinterviews": 14619, | |
| "ĠDuncan": 14620, | |
| "ĠMarcus": 14621, | |
| "ĠDerby": 14622, | |
| "ĠRest": 14623, | |
| "Ġabilities": 14624, | |
| "ĠVoice": 14625, | |
| "Ġresur": 14626, | |
| "Ġbeautifully": 14627, | |
| "Ġbases": 14628, | |
| "ĠSeason": 14629, | |
| "ĠRegional": 14630, | |
| "ĠReserve": 14631, | |
| "guard": 14632, | |
| "Ġtargets": 14633, | |
| "Ġcolonies": 14634, | |
| "Madam": 14635, | |
| "Ġpneumonia": 14636, | |
| "pine": 14637, | |
| "Ġou": 14638, | |
| "Ġfurious": 14639, | |
| "Ġhorm": 14640, | |
| "ĠBach": 14641, | |
| "ĠHook": 14642, | |
| "ĠWon": 14643, | |
| "Ġfeud": 14644, | |
| "oots": 14645, | |
| "Ġ§": 14646, | |
| "ĠDarwin": 14647, | |
| "Ġbonus": 14648, | |
| "Ġprocedures": 14649, | |
| "Ġinitiative": 14650, | |
| "Ġimmigrants": 14651, | |
| "Ġdeliberately": 14652, | |
| "Kind": 14653, | |
| "Papa": 14654, | |
| "jack": 14655, | |
| "Ġfilming": 14656, | |
| "Ġmonthly": 14657, | |
| "Ġhats": 14658, | |
| "Ġapprove": 14659, | |
| "HEY": 14660, | |
| "Ġfloors": 14661, | |
| "aned": 14662, | |
| "hane": 14663, | |
| "Whoever": 14664, | |
| "ĠSprings": 14665, | |
| "Ġcollections": 14666, | |
| "Ġsupplied": 14667, | |
| "Jimmy": 14668, | |
| "Boo": 14669, | |
| "YES": 14670, | |
| "zburg": 14671, | |
| "Ġlest": 14672, | |
| "ĠTang": 14673, | |
| "Ġstout": 14674, | |
| "ĠDear": 14675, | |
| "Ġjelly": 14676, | |
| "ĠRaven": 14677, | |
| "Ġlikewise": 14678, | |
| "Ġspotted": 14679, | |
| "Ġprest": 14680, | |
| "Ġproducers": 14681, | |
| "Ġparticle": 14682, | |
| "Ġapost": 14683, | |
| "Ġmachinery": 14684, | |
| "Ġneighbours": 14685, | |
| "Ġcoffin": 14686, | |
| "ĠBEEN": 14687, | |
| "ĠDemocrats": 14688, | |
| "Ġchickens": 14689, | |
| "Definitely": 14690, | |
| ":--": 14691, | |
| "ĠSaints": 14692, | |
| "ĠCemetery": 14693, | |
| "ĠHalf": 14694, | |
| "Ġrecru": 14695, | |
| "Ġinfected": 14696, | |
| "Ġvillain": 14697, | |
| "Ġposter": 14698, | |
| "Ġcloses": 14699, | |
| "ĠMalcolm": 14700, | |
| "Ġritual": 14701, | |
| "MENT": 14702, | |
| "fold": 14703, | |
| "len": 14704, | |
| "ppe": 14705, | |
| "apor": 14706, | |
| "Ġdeserted": 14707, | |
| "Ġcorrupt": 14708, | |
| "Ġsunny": 14709, | |
| "ĠClaud": 14710, | |
| "Martin": 14711, | |
| "Bless": 14712, | |
| "got": 14713, | |
| "Ġsne": 14714, | |
| "Ġdive": 14715, | |
| "Ġyell": 14716, | |
| "ĠEaster": 14717, | |
| "Ġblog": 14718, | |
| "affe": 14719, | |
| "jin": 14720, | |
| "Ġtut": 14721, | |
| "oops": 14722, | |
| "illance": 14723, | |
| "ĠLanka": 14724, | |
| "ĠStars": 14725, | |
| "ĠVerm": 14726, | |
| "ĠBeing": 14727, | |
| "ĠPrior": 14728, | |
| "Ġnecklace": 14729, | |
| "Ġinstrumental": 14730, | |
| "Ġpirates": 14731, | |
| "Ġadmiration": 14732, | |
| "Ġsupreme": 14733, | |
| "Ġsteadily": 14734, | |
| "Ġdoctrine": 14735, | |
| "Din": 14736, | |
| "hero": 14737, | |
| "Ġgaze": 14738, | |
| "Ġkidney": 14739, | |
| "Ġconvict": 14740, | |
| "Ġneighbourhood": 14741, | |
| "ĠIndependent": 14742, | |
| "Ġfascinating": 14743, | |
| "Cat": 14744, | |
| "Ġcran": 14745, | |
| "ĠSuff": 14746, | |
| "ĠCOME": 14747, | |
| "ĠRiley": 14748, | |
| "ĠOUR": 14749, | |
| "Ġperception": 14750, | |
| "Ġdeserves": 14751, | |
| "Ġmature": 14752, | |
| "ĠPlot": 14753, | |
| "Ġviewed": 14754, | |
| "ĠMadonna": 14755, | |
| "Ġbowed": 14756, | |
| "ĠMarket": 14757, | |
| "Ġtribute": 14758, | |
| "Ġconquered": 14759, | |
| "ĠProtestant": 14760, | |
| "Dog": 14761, | |
| "PR": 14762, | |
| "kan": 14763, | |
| "ĠProm": 14764, | |
| "ĠWor": 14765, | |
| "ĠLock": 14766, | |
| "osc": 14767, | |
| "Ġworlds": 14768, | |
| "Ġrealised": 14769, | |
| "Ġtends": 14770, | |
| "Ġinvolvement": 14771, | |
| "mod": 14772, | |
| "Ġlid": 14773, | |
| "omers": 14774, | |
| "cially": 14775, | |
| "Ġidol": 14776, | |
| "Ġpulse": 14777, | |
| "Ġprovincial": 14778, | |
| "Hea": 14779, | |
| "oise": 14780, | |
| "vant": 14781, | |
| "Ġba": 14782, | |
| "ĠFab": 14783, | |
| "Ġmonsters": 14784, | |
| "Ġlighted": 14785, | |
| "owski": 14786, | |
| "Ġexperimental": 14787, | |
| "ĠBanks": 14788, | |
| "Ġhorizon": 14789, | |
| "ĠAzerbaijan": 14790, | |
| "ĠPhoenix": 14791, | |
| "isode": 14792, | |
| "Ġnode": 14793, | |
| "ĠGreeks": 14794, | |
| "ĠNaval": 14795, | |
| "ĠEnergy": 14796, | |
| "Ġadequ": 14797, | |
| "Ġdelta": 14798, | |
| "ĠRebecca": 14799, | |
| "ĠDynasty": 14800, | |
| "UC": 14801, | |
| "later": 14802, | |
| "Ġhandful": 14803, | |
| "Ġmedication": 14804, | |
| "Ġcountryside": 14805, | |
| "ĠJoey": 14806, | |
| "ijing": 14807, | |
| "Ġplainly": 14808, | |
| "Ġbastards": 14809, | |
| "ĠTeddy": 14810, | |
| "ĠRoosevelt": 14811, | |
| "ĠLith": 14812, | |
| "Ġenable": 14813, | |
| "izzy": 14814, | |
| "ĠControl": 14815, | |
| "ĠRichmond": 14816, | |
| "Ġclinic": 14817, | |
| "Ġenthusiasm": 14818, | |
| "English": 14819, | |
| "Cla": 14820, | |
| "card": 14821, | |
| "Ġfoul": 14822, | |
| "Ġpp": 14823, | |
| "ĠCer": 14824, | |
| "Ġunre": 14825, | |
| "Ġburns": 14826, | |
| "cellor": 14827, | |
| "ĠTreaty": 14828, | |
| "fles": 14829, | |
| "Ġtheta": 14830, | |
| "Ġsings": 14831, | |
| "ĠAC": 14832, | |
| "ĠFull": 14833, | |
| "Ġabrupt": 14834, | |
| "ĠCommons": 14835, | |
| "Ġdrawings": 14836, | |
| "offee": 14837, | |
| "Ġpitched": 14838, | |
| "Ġassuming": 14839, | |
| "ĠFacebook": 14840, | |
| "Tim": 14841, | |
| "dia": 14842, | |
| "Ġhabits": 14843, | |
| "Ġresent": 14844, | |
| "Ġtrips": 14845, | |
| "Ġfella": 14846, | |
| "Ġboarding": 14847, | |
| "Ġchampagne": 14848, | |
| "Ġdisappointment": 14849, | |
| "Ġwireless": 14850, | |
| "rastructure": 14851, | |
| "Ġterrified": 14852, | |
| "ĠPedro": 14853, | |
| "ĠGuinea": 14854, | |
| "fashioned": 14855, | |
| "PA": 14856, | |
| "Ġbum": 14857, | |
| "aines": 14858, | |
| "Ġarc": 14859, | |
| "Ġtrim": 14860, | |
| "Ġrunner": 14861, | |
| "Ġhalfway": 14862, | |
| "prints": 14863, | |
| "Ġremainder": 14864, | |
| "Ġmarrying": 14865, | |
| "Ġunpleasant": 14866, | |
| "grand": 14867, | |
| "hales": 14868, | |
| "Ġbarrier": 14869, | |
| "ĠMickey": 14870, | |
| "Ġpaths": 14871, | |
| "ĠGregory": 14872, | |
| "Ġdinosaurs": 14873, | |
| "Ġmurmured": 14874, | |
| "ĠNapoleon": 14875, | |
| "Answer": 14876, | |
| "front": 14877, | |
| "ĠPly": 14878, | |
| "Ġcomrades": 14879, | |
| "Ġproven": 14880, | |
| "Ġswung": 14881, | |
| "Ġremembering": 14882, | |
| "Ġtemples": 14883, | |
| "ĠGlobal": 14884, | |
| "casting": 14885, | |
| "ÏĦ": 14886, | |
| "aris": 14887, | |
| "ĠSig": 14888, | |
| "olia": 14889, | |
| "Ġearning": 14890, | |
| "Ġskirt": 14891, | |
| "Ġsorted": 14892, | |
| "ĠTHEM": 14893, | |
| "Ġreceipt": 14894, | |
| "Ġsailors": 14895, | |
| "Ġhastily": 14896, | |
| "ĠOperation": 14897, | |
| "Ġelevator": 14898, | |
| "Ġskiing": 14899, | |
| "Ġappetite": 14900, | |
| "mir": 14901, | |
| "ource": 14902, | |
| "Ġchant": 14903, | |
| "ĠEmmy": 14904, | |
| "ÃŃs": 14905, | |
| "ĠBelarus": 14906, | |
| "Ġtourists": 14907, | |
| "ĠMontgomery": 14908, | |
| "Ġprevented": 14909, | |
| "Ġsqueeze": 14910, | |
| "Much": 14911, | |
| "eur": 14912, | |
| "gow": 14913, | |
| "houses": 14914, | |
| "Ġtops": 14915, | |
| "Ġpand": 14916, | |
| "upon": 14917, | |
| "Ġmars": 14918, | |
| "attering": 14919, | |
| "Ġhypothesis": 14920, | |
| "songwriter": 14921, | |
| "inence": 14922, | |
| "Ġhaste": 14923, | |
| "ĠTab": 14924, | |
| "ĠSet": 14925, | |
| "Ġoutstanding": 14926, | |
| "Ġlever": 14927, | |
| "Ġchased": 14928, | |
| "Ġfactories": 14929, | |
| "Ġsquirrel": 14930, | |
| "Ġenterprise": 14931, | |
| "Ġwidespread": 14932, | |
| "even": 14933, | |
| "ĠMis": 14934, | |
| "ĠHob": 14935, | |
| "ĠCommer": 14936, | |
| "Ġmathematic": 14937, | |
| "asped": 14938, | |
| "Ġgor": 14939, | |
| "etta": 14940, | |
| "Ġrecoll": 14941, | |
| "Ġpursuit": 14942, | |
| "Ġconspiracy": 14943, | |
| "ĠElinor": 14944, | |
| "soever": 14945, | |
| "Ġbacked": 14946, | |
| "auer": 14947, | |
| "ORT": 14948, | |
| "Ġagenda": 14949, | |
| "umbo": 14950, | |
| "ĠAmanda": 14951, | |
| "ĠSenior": 14952, | |
| "ĠFilip": 14953, | |
| "Ġstruggled": 14954, | |
| "ĠJessica": 14955, | |
| "ĠIndependence": 14956, | |
| "ĠPLAYING": 14957, | |
| "DA": 14958, | |
| "Ġwaking": 14959, | |
| "acer": 14960, | |
| "high": 14961, | |
| "Yesterday": 14962, | |
| "Ġpressing": 14963, | |
| "Ġoxid": 14964, | |
| "Ġswiftly": 14965, | |
| "Fre": 14966, | |
| "angel": 14967, | |
| "Ġtoll": 14968, | |
| "ĠSout": 14969, | |
| "ctive": 14970, | |
| "ĠFranz": 14971, | |
| "liga": 14972, | |
| "OPLE": 14973, | |
| "ĠPhillips": 14974, | |
| "Jane": 14975, | |
| "lee": 14976, | |
| "ĠTru": 14977, | |
| "ĠCand": 14978, | |
| "Ġtheirs": 14979, | |
| "Ġdisability": 14980, | |
| "ONS": 14981, | |
| "Ġposts": 14982, | |
| "Surely": 14983, | |
| "Ġregardless": 14984, | |
| "ĠRocky": 14985, | |
| "Ġcrocod": 14986, | |
| "Ġscrub": 14987, | |
| "Ġpersuade": 14988, | |
| "ĠPolitical": 14989, | |
| "Ġendeav": 14990, | |
| "%,": 14991, | |
| "daughter": 14992, | |
| "damn": 14993, | |
| "Ġcavalry": 14994, | |
| "Ġpharm": 14995, | |
| "ĠCode": 14996, | |
| "Ġascend": 14997, | |
| "blem": 14998, | |
| "into": 14999, | |
| "Ġbrace": 15000, | |
| "lington": 15001, | |
| "aired": 15002, | |
| "char": 15003, | |
| "ĠMist": 15004, | |
| "ĠEva": 15005, | |
| "Ġmetaph": 15006, | |
| "Ġtriple": 15007, | |
| "Ġpraying": 15008, | |
| "Ġcomplaints": 15009, | |
| "Kim": 15010, | |
| "MM": 15011, | |
| "Ġwaving": 15012, | |
| "ĠPav": 15013, | |
| "ĠObs": 15014, | |
| "Ġvault": 15015, | |
| "ĠIsab": 15016, | |
| "Ġranch": 15017, | |
| "Ġvariation": 15018, | |
| "ĠSyrian": 15019, | |
| "ĠFarm": 15020, | |
| "Ġcalculate": 15021, | |
| "Ġdolph": 15022, | |
| "holes": 15023, | |
| "esy": 15024, | |
| "ĠHope": 15025, | |
| "ĠInvest": 15026, | |
| "Ġpartially": 15027, | |
| "Ġburial": 15028, | |
| "insky": 15029, | |
| "Stupid": 15030, | |
| "Ġskip": 15031, | |
| "Ġcorpse": 15032, | |
| "heads": 15033, | |
| "amba": 15034, | |
| "fielder": 15035, | |
| "Ġsubmitted": 15036, | |
| "NER": 15037, | |
| "igi": 15038, | |
| "cio": 15039, | |
| "erers": 15040, | |
| "Ġammunition": 15041, | |
| "Ġreliable": 15042, | |
| "ĠDeep": 15043, | |
| "Ġattempting": 15044, | |
| "Ġcooperation": 15045, | |
| "Ġresignation": 15046, | |
| "Ġgazed": 15047, | |
| "ĠSak": 15048, | |
| "amil": 15049, | |
| "Ġmelt": 15050, | |
| "Ġmakeup": 15051, | |
| "Ġreserved": 15052, | |
| "ĠSheriff": 15053, | |
| "Ġdesires": 15054, | |
| "Ġnamely": 15055, | |
| "Ġlimbs": 15056, | |
| "Land": 15057, | |
| "ĠSey": 15058, | |
| "Ġramp": 15059, | |
| "inee": 15060, | |
| "Ġintimate": 15061, | |
| "Ġcluster": 15062, | |
| "Ġvaried": 15063, | |
| "Ġexplaining": 15064, | |
| "Ġmoonlight": 15065, | |
| "bourg": 15066, | |
| "Lots": 15067, | |
| "Ret": 15068, | |
| "Ġdum": 15069, | |
| "Ġhier": 15070, | |
| "ĠSM": 15071, | |
| "Ġstare": 15072, | |
| "ĠBrew": 15073, | |
| "ĠFight": 15074, | |
| "ema": 15075, | |
| "Ġsucks": 15076, | |
| "Ġreserv": 15077, | |
| "ĠÃĸ": 15078, | |
| "Ġtorped": 15079, | |
| "Ġproposals": 15080, | |
| "Ġwandered": 15081, | |
| "Ġoccasional": 15082, | |
| "Ġmit": 15083, | |
| "ĠBristol": 15084, | |
| "cht": 15085, | |
| "Ġnothin": 15086, | |
| "Ġcathedral": 15087, | |
| "laus": 15088, | |
| "Ġsculpture": 15089, | |
| "ĠOrganization": 15090, | |
| "Ra": 15091, | |
| "gio": 15092, | |
| "Ġeve": 15093, | |
| "step": 15094, | |
| "ĠPle": 15095, | |
| "ĠPerform": 15096, | |
| "heimer": 15097, | |
| "anthrop": 15098, | |
| "ITH": 15099, | |
| "cons": 15100, | |
| "ĠBeck": 15101, | |
| "Ġnotably": 15102, | |
| "ĠOblast": 15103, | |
| "Ġgrasp": 15104, | |
| "boards": 15105, | |
| "Ġphysic": 15106, | |
| "Ġfeedback": 15107, | |
| "ĠPrefecture": 15108, | |
| "ĠDelaware": 15109, | |
| "Ġgrip": 15110, | |
| "ĠElectric": 15111, | |
| "Ġadaptation": 15112, | |
| "isle": 15113, | |
| "Ġlust": 15114, | |
| "ĠCyn": 15115, | |
| "ĠBUT": 15116, | |
| "Ġvs": 15117, | |
| "ERY": 15118, | |
| "Ġcustoms": 15119, | |
| "ĠMagic": 15120, | |
| "Ġhouseholds": 15121, | |
| "ĠCurtis": 15122, | |
| "mid": 15123, | |
| "wig": 15124, | |
| "ĠTELL": 15125, | |
| "amation": 15126, | |
| "ĠBoeing": 15127, | |
| "istocr": 15128, | |
| "Ġquack": 15129, | |
| "Ġpersec": 15130, | |
| "Ġindul": 15131, | |
| "ĠAlban": 15132, | |
| "uffled": 15133, | |
| "Ġgenerate": 15134, | |
| "Ġcaf": 15135, | |
| "ĠWithin": 15136, | |
| "Ġresponsibilities": 15137, | |
| "Ġconstitutional": 15138, | |
| "BL": 15139, | |
| "amo": 15140, | |
| "ĠNegro": 15141, | |
| "Ġspac": 15142, | |
| "assic": 15143, | |
| "Ġstartled": 15144, | |
| "Ġdefended": 15145, | |
| "Ġrested": 15146, | |
| "Ġdealer": 15147, | |
| "ĠEmil": 15148, | |
| "reshold": 15149, | |
| "ĠArabia": 15150, | |
| "Ġwebsites": 15151, | |
| "Ġupdate": 15152, | |
| "Ġassessment": 15153, | |
| "Been": 15154, | |
| "Ġlions": 15155, | |
| "Ġheating": 15156, | |
| "lyde": 15157, | |
| "Ġsworn": 15158, | |
| "Ġmodest": 15159, | |
| "Ġdefendant": 15160, | |
| "Ġautomobile": 15161, | |
| "Ġachievement": 15162, | |
| "Ġsul": 15163, | |
| "Ġaltered": 15164, | |
| "ĠKeep": 15165, | |
| "Ġenqu": 15166, | |
| "ĠSalv": 15167, | |
| "ĠAmbassador": 15168, | |
| "ĠMarianne": 15169, | |
| "à¦": 15170, | |
| "Ġtips": 15171, | |
| "Ġbachelor": 15172, | |
| "Ġplague": 15173, | |
| "weed": 15174, | |
| "ixed": 15175, | |
| "Ġopponents": 15176, | |
| "ĠColombia": 15177, | |
| "Cal": 15178, | |
| "Woman": 15179, | |
| "both": 15180, | |
| "rator": 15181, | |
| "asi": 15182, | |
| "Ġnig": 15183, | |
| "Ġchaos": 15184, | |
| "ĠZone": 15185, | |
| "ervatory": 15186, | |
| "ĠFlight": 15187, | |
| "ĠChad": 15188, | |
| "Ġ°": 15189, | |
| "Ġcereal": 15190, | |
| "ĠSomething": 15191, | |
| "Ġracial": 15192, | |
| "Ġannoying": 15193, | |
| "minded": 15194, | |
| "Ba": 15195, | |
| "green": 15196, | |
| "ĠBaptist": 15197, | |
| "elic": 15198, | |
| "ĠJar": 15199, | |
| "Ġprejud": 15200, | |
| "Ġflank": 15201, | |
| "Ġcouples": 15202, | |
| "Ġfreezing": 15203, | |
| "regular": 15204, | |
| "OHN": 15205, | |
| "ĠThank": 15206, | |
| "Ġsocieties": 15207, | |
| "ĠMiguel": 15208, | |
| "Ġcertificate": 15209, | |
| "ĠPrest": 15210, | |
| "Ġarbit": 15211, | |
| "Ġcheering": 15212, | |
| "ĠBlood": 15213, | |
| "helm": 15214, | |
| "Ġauto": 15215, | |
| "Ġgrades": 15216, | |
| "spring": 15217, | |
| "Ġmortgage": 15218, | |
| "ĠNEED": 15219, | |
| "ĠCabinet": 15220, | |
| "Ġwretched": 15221, | |
| "Ġbind": 15222, | |
| "aters": 15223, | |
| "ĠDOWN": 15224, | |
| "ivier": 15225, | |
| "uba": 15226, | |
| "oyle": 15227, | |
| "Ġshaft": 15228, | |
| "Ġmonastery": 15229, | |
| "Ġbreeding": 15230, | |
| "Ġdeposit": 15231, | |
| "Bus": 15232, | |
| "rice": 15233, | |
| "onial": 15234, | |
| "Ġbol": 15235, | |
| "amas": 15236, | |
| "Ġcannon": 15237, | |
| "Ġharbour": 15238, | |
| "ĠAmazon": 15239, | |
| "forward": 15240, | |
| "Ġawareness": 15241, | |
| "Ġsodium": 15242, | |
| "ĠSpeaker": 15243, | |
| "Ty": 15244, | |
| "pop": 15245, | |
| "Ġwolves": 15246, | |
| "Ġcrab": 15247, | |
| "Ġpoo": 15248, | |
| "Ġdeed": 15249, | |
| "Ġtraces": 15250, | |
| "airo": 15251, | |
| "Ġsolic": 15252, | |
| "Ġreceives": 15253, | |
| "Ġconsumer": 15254, | |
| "Ġsarah": 15255, | |
| "itus": 15256, | |
| "lle": 15257, | |
| "Ġdumped": 15258, | |
| "stall": 15259, | |
| "eca": 15260, | |
| "oding": 15261, | |
| "Ġvivid": 15262, | |
| "ĠKoh": 15263, | |
| "ructor": 15264, | |
| "Ġreferences": 15265, | |
| "ĠChester": 15266, | |
| "Ġpassionate": 15267, | |
| "ât": 15268, | |
| "UP": 15269, | |
| "bag": 15270, | |
| "tree": 15271, | |
| "leen": 15272, | |
| "ĠSierra": 15273, | |
| "ĠPit": 15274, | |
| "Ġovernight": 15275, | |
| "ovan": 15276, | |
| "Ġethan": 15277, | |
| "Ġcontribute": 15278, | |
| "Ġcorresponding": 15279, | |
| "Ġparliamentary": 15280, | |
| "Darling": 15281, | |
| "erals": 15282, | |
| "Ġhealing": 15283, | |
| "Ġshipping": 15284, | |
| "Ġbackup": 15285, | |
| "Ġbrack": 15286, | |
| "Ġinfluences": 15287, | |
| "Ġcredited": 15288, | |
| "onomous": 15289, | |
| "Hum": 15290, | |
| "fol": 15291, | |
| "sor": 15292, | |
| "Ġmock": 15293, | |
| "enance": 15294, | |
| "Ġpent": 15295, | |
| "ĠOLD": 15296, | |
| "Ġcarrier": 15297, | |
| "Ġfighters": 15298, | |
| "ĠBeijing": 15299, | |
| "Ġmechanics": 15300, | |
| "pm": 15301, | |
| "Ġpork": 15302, | |
| "ilib": 15303, | |
| "Ġconsole": 15304, | |
| "Ġdeeds": 15305, | |
| "Ġwholly": 15306, | |
| "icker": 15307, | |
| "Ġorganism": 15308, | |
| "Ġsuccession": 15309, | |
| "Ġlegislature": 15310, | |
| "Ġelephants": 15311, | |
| "Ġprivilege": 15312, | |
| "eals": 15313, | |
| "Ġcad": 15314, | |
| "Ġgrid": 15315, | |
| "Ġbasin": 15316, | |
| "Ġadvantages": 15317, | |
| "Ġducks": 15318, | |
| "Ġvirtually": 15319, | |
| "ĠUsually": 15320, | |
| "ĠFinnish": 15321, | |
| "ĠUniversal": 15322, | |
| "énées": 15323, | |
| "Ġcompassion": 15324, | |
| "Ġlaundry": 15325, | |
| "Tur": 15326, | |
| "cap": 15327, | |
| "ku": 15328, | |
| "rene": 15329, | |
| "isations": 15330, | |
| "Ġcunning": 15331, | |
| "ĠBot": 15332, | |
| "Ġorchard": 15333, | |
| "elected": 15334, | |
| "Ġslender": 15335, | |
| "Ġdemonstration": 15336, | |
| "Ġdistinguish": 15337, | |
| "penter": 15338, | |
| "ĠBurns": 15339, | |
| "cies": 15340, | |
| "count": 15341, | |
| "ĠBorough": 15342, | |
| "ĠJupiter": 15343, | |
| "Ġupright": 15344, | |
| "Ġdiscl": 15345, | |
| "Ġlively": 15346, | |
| "egend": 15347, | |
| "Ġangles": 15348, | |
| "Ġcandles": 15349, | |
| "profit": 15350, | |
| "Ġsanct": 15351, | |
| "ipedia": 15352, | |
| "Ġcloak": 15353, | |
| "Ġpicnic": 15354, | |
| "CAR": 15355, | |
| "Ġnaima": 15356, | |
| "ĠFoster": 15357, | |
| "abouts": 15358, | |
| "occhio": 15359, | |
| "Ġpredecess": 15360, | |
| "ymph": 15361, | |
| "Ġelaborate": 15362, | |
| "Ġhedge": 15363, | |
| "rint": 15364, | |
| "Ġiv": 15365, | |
| "Ġheck": 15366, | |
| "Ġdiscount": 15367, | |
| "ĠCHR": 15368, | |
| "ĠDaily": 15369, | |
| "Ġcondemned": 15370, | |
| "Ġwiped": 15371, | |
| "Ġlump": 15372, | |
| "idal": 15373, | |
| "eredith": 15374, | |
| "Ġcalculated": 15375, | |
| "ĠGabriel": 15376, | |
| "ĠBuc": 15377, | |
| "ĠGir": 15378, | |
| "Ġsaus": 15379, | |
| "Ġmonk": 15380, | |
| "Ġmetropolitan": 15381, | |
| "Ġprofits": 15382, | |
| "Ġmessed": 15383, | |
| "ĠRomanian": 15384, | |
| "ĠCHAR": 15385, | |
| "Ġaltar": 15386, | |
| "Ġpistol": 15387, | |
| "Ele": 15388, | |
| "Mil": 15389, | |
| "Nick": 15390, | |
| "Ġpuff": 15391, | |
| "Ġants": 15392, | |
| "Ġsafer": 15393, | |
| "ako": 15394, | |
| "Lovely": 15395, | |
| "Steve": 15396, | |
| "ĠContinues": 15397, | |
| "ĠMethod": 15398, | |
| "sized": 15399, | |
| "Ġgut": 15400, | |
| "ĠJung": 15401, | |
| "Ġclaws": 15402, | |
| "orns": 15403, | |
| "Ġdepict": 15404, | |
| "ĠTOM": 15405, | |
| "ĠMichelle": 15406, | |
| "Ġparticipation": 15407, | |
| "Ġcontrolling": 15408, | |
| "Ġnomi": 15409, | |
| "ĠNobody": 15410, | |
| "Ġemphasis": 15411, | |
| "ĠIsaac": 15412, | |
| "Roman": 15413, | |
| "gence": 15414, | |
| "hoo": 15415, | |
| "iu": 15416, | |
| "Ġion": 15417, | |
| "Ġdart": 15418, | |
| "Ġdual": 15419, | |
| "Ġinterface": 15420, | |
| "print": 15421, | |
| "ĠEngineering": 15422, | |
| "Ġrebellion": 15423, | |
| "kill": 15424, | |
| "eta": 15425, | |
| "uture": 15426, | |
| "Ġexile": 15427, | |
| "ĠKrist": 15428, | |
| "ĠIns": 15429, | |
| "Ġampl": 15430, | |
| "Ġaccustomed": 15431, | |
| "Ġidi": 15432, | |
| "Ahh": 15433, | |
| "Ġcellar": 15434, | |
| "Ġscholarship": 15435, | |
| "Ġdialogue": 15436, | |
| "Ġhorizontal": 15437, | |
| "Calais": 15438, | |
| "ĠRivers": 15439, | |
| "Ġconception": 15440, | |
| "ĠMurphy": 15441, | |
| "Ġwithdrew": 15442, | |
| "great": 15443, | |
| "ĠEVERY": 15444, | |
| "ondo": 15445, | |
| "oya": 15446, | |
| "ĠVII": 15447, | |
| "ĠAlong": 15448, | |
| "Ġhunted": 15449, | |
| "Ġchatter": 15450, | |
| "ĠLucas": 15451, | |
| "Ġbulk": 15452, | |
| "ĠMotor": 15453, | |
| "moon": 15454, | |
| "Ġfountain": 15455, | |
| "Ġthieves": 15456, | |
| "ĠMake": 15457, | |
| "eston": 15458, | |
| "Ġinteraction": 15459, | |
| "Ġapology": 15460, | |
| "Professor": 15461, | |
| "Ġhaw": 15462, | |
| "ĠTalk": 15463, | |
| "enders": 15464, | |
| "Ġharass": 15465, | |
| "ieties": 15466, | |
| "Ġriot": 15467, | |
| "ĠChristine": 15468, | |
| "Ġstorms": 15469, | |
| "Ġloudly": 15470, | |
| "ĠFerr": 15471, | |
| "Ġreinforce": 15472, | |
| "Ġreleases": 15473, | |
| "GS": 15474, | |
| "GER": 15475, | |
| "uber": 15476, | |
| "Ġgau": 15477, | |
| "aying": 15478, | |
| "hers": 15479, | |
| "ĠHood": 15480, | |
| "ĠWord": 15481, | |
| "Ġplacing": 15482, | |
| "Ġvest": 15483, | |
| "ĠStef": 15484, | |
| "Ġdeserved": 15485, | |
| "ĠPortland": 15486, | |
| "Ġdefeating": 15487, | |
| "ña": 15488, | |
| "Ġconfessed": 15489, | |
| "Death": 15490, | |
| "Ġnavy": 15491, | |
| "ĠTAL": 15492, | |
| "terior": 15493, | |
| "ĠGay": 15494, | |
| "thia": 15495, | |
| "nex": 15496, | |
| "ĠMarion": 15497, | |
| "ĠAlliance": 15498, | |
| "Ġviewers": 15499, | |
| "ĠCulture": 15500, | |
| "Course": 15501, | |
| "ĠKel": 15502, | |
| "Ġoriginated": 15503, | |
| "Ġnatives": 15504, | |
| "Ġdiabetes": 15505, | |
| "Ġignored": 15506, | |
| "ĠFreedom": 15507, | |
| "Ġunlikely": 15508, | |
| "Hands": 15509, | |
| "km": 15510, | |
| "ĠMull": 15511, | |
| "ĠWatch": 15512, | |
| "Ġspear": 15513, | |
| "Ġpresidency": 15514, | |
| "Ġimpulse": 15515, | |
| "ĠPradesh": 15516, | |
| "Ġplatforms": 15517, | |
| "Ġgrabbed": 15518, | |
| "Ġvolcano": 15519, | |
| "elligence": 15520, | |
| "faced": 15521, | |
| "Ġaster": 15522, | |
| "alysis": 15523, | |
| "eeves": 15524, | |
| "THERE": 15525, | |
| "ĠReich": 15526, | |
| "ĠSymphony": 15527, | |
| "Ġhistorians": 15528, | |
| "Ġfloat": 15529, | |
| "Ġaxe": 15530, | |
| "iology": 15531, | |
| "nde": 15532, | |
| "Ġferry": 15533, | |
| "Ġfairies": 15534, | |
| "Ġtowers": 15535, | |
| "Ġyer": 15536, | |
| "Ġrender": 15537, | |
| "ĠGÃ": 15538, | |
| "eland": 15539, | |
| "Ġimperial": 15540, | |
| "Ġtouches": 15541, | |
| "Ġpregnancy": 15542, | |
| "Ġlantern": 15543, | |
| "Mac": 15544, | |
| "Rose": 15545, | |
| "ãģ": 15546, | |
| "ĠMul": 15547, | |
| "ĠRaw": 15548, | |
| "Ġuncon": 15549, | |
| "Ġscrat": 15550, | |
| "Ġtraitor": 15551, | |
| "Ġkeyboard": 15552, | |
| "Ġsettlers": 15553, | |
| "Ġvoters": 15554, | |
| "Left": 15555, | |
| "selling": 15556, | |
| "ĠBrandon": 15557, | |
| "Ġvocals": 15558, | |
| "ĠMaurice": 15559, | |
| "%.\"": 15560, | |
| "bath": 15561, | |
| "rina": 15562, | |
| "Ġreleg": 15563, | |
| "ĠTas": 15564, | |
| "ĠBened": 15565, | |
| "Ġinvaded": 15566, | |
| "Ġhotels": 15567, | |
| "Ġrebels": 15568, | |
| "Ġcrucial": 15569, | |
| "Ġconnecting": 15570, | |
| "Ġcousins": 15571, | |
| "Ġliquor": 15572, | |
| "Ġignorant": 15573, | |
| "inge": 15574, | |
| "Ġpel": 15575, | |
| "ĠTroy": 15576, | |
| "ĠPearl": 15577, | |
| "ĠDim": 15578, | |
| "ĠRot": 15579, | |
| "ĠNBA": 15580, | |
| "ovsky": 15581, | |
| "plus": 15582, | |
| "Ġtramp": 15583, | |
| "Ġfinals": 15584, | |
| "Ġconservation": 15585, | |
| "Ġfails": 15586, | |
| "Ġorient": 15587, | |
| "Atlant": 15588, | |
| "ĠKenneth": 15589, | |
| "ĠPlymouth": 15590, | |
| "Ġaha": 15591, | |
| "Ġsway": 15592, | |
| "Ġdances": 15593, | |
| "acular": 15594, | |
| "ĠJeremy": 15595, | |
| "Ġhandy": 15596, | |
| "Ġrespects": 15597, | |
| "Ġtroop": 15598, | |
| "Ġambassador": 15599, | |
| "ĠJacques": 15600, | |
| "written": 15601, | |
| "Ġsurveillance": 15602, | |
| "%)": 15603, | |
| "eros": 15604, | |
| "Ġmour": 15605, | |
| "imeter": 15606, | |
| "ĠAF": 15607, | |
| "ĠAction": 15608, | |
| "ĠRhod": 15609, | |
| "ĠLear": 15610, | |
| "Ġabbre": 15611, | |
| "Ġsergeant": 15612, | |
| "Ġinfantry": 15613, | |
| "ĠHugo": 15614, | |
| "Ġsubmarine": 15615, | |
| "Mummy": 15616, | |
| "Ġecc": 15617, | |
| "ĠDow": 15618, | |
| "ĠDerek": 15619, | |
| "ĠJae": 15620, | |
| "Ġaristocr": 15621, | |
| "ĠVIII": 15622, | |
| "Ġchall": 15623, | |
| "Ġincon": 15624, | |
| "ĠMaggie": 15625, | |
| "ĠThanksgiving": 15626, | |
| "Ġserm": 15627, | |
| "Ġthreshold": 15628, | |
| "ĠTournament": 15629, | |
| "ĠPath": 15630, | |
| "ĠOP": 15631, | |
| "Ġrestless": 15632, | |
| "ĠQU": 15633, | |
| "ORD": 15634, | |
| "Ġfixing": 15635, | |
| "ĠDenver": 15636, | |
| "ĠEverything": 15637, | |
| "Ġpuppet": 15638, | |
| "Queen": 15639, | |
| "Fore": 15640, | |
| "LI": 15641, | |
| "Sign": 15642, | |
| "ĠName": 15643, | |
| "akin": 15644, | |
| "Ġoverhead": 15645, | |
| "Ġblah": 15646, | |
| "Ġchorus": 15647, | |
| "Ġministry": 15648, | |
| "ĠFranco": 15649, | |
| "urope": 15650, | |
| "Ġvert": 15651, | |
| "Ġqualification": 15652, | |
| "ĠSanders": 15653, | |
| "ĠLoren": 15654, | |
| "little": 15655, | |
| "liness": 15656, | |
| "Ġcope": 15657, | |
| "eton": 15658, | |
| "aceae": 15659, | |
| "ĠCond": 15660, | |
| "thon": 15661, | |
| "Ġvolleyball": 15662, | |
| "ĠVers": 15663, | |
| "resses": 15664, | |
| "eez": 15665, | |
| "Ġreadily": 15666, | |
| "ĠBlacky": 15667, | |
| "Ġmagnitude": 15668, | |
| "Rad": 15669, | |
| "laughing": 15670, | |
| "oan": 15671, | |
| "Ġgent": 15672, | |
| "Ġguts": 15673, | |
| "ĠSang": 15674, | |
| "ĠMUSIC": 15675, | |
| "ĠWait": 15676, | |
| "Ġblamed": 15677, | |
| "ORN": 15678, | |
| "Ġequipped": 15679, | |
| "Ġadmired": 15680, | |
| "Ġexpectations": 15681, | |
| "ĠGlas": 15682, | |
| "impse": 15683, | |
| "Ġrebuilt": 15684, | |
| "ĠMeadows": 15685, | |
| "ĠLET": 15686, | |
| "Ġallies": 15687, | |
| "Ġoffense": 15688, | |
| "ruce": 15689, | |
| "Ġerrors": 15690, | |
| "Ġmissions": 15691, | |
| "Ġforgiveness": 15692, | |
| "Ġsickness": 15693, | |
| "glass": 15694, | |
| "ĠPlayStation": 15695, | |
| "ĠVenezuela": 15696, | |
| "sn": 15697, | |
| "utton": 15698, | |
| "ĠAPP": 15699, | |
| "ĠMoney": 15700, | |
| "umer": 15701, | |
| "Ġshrie": 15702, | |
| "Ġamazed": 15703, | |
| "Ġheadache": 15704, | |
| "Ġglimpse": 15705, | |
| "Ġspecially": 15706, | |
| "Ġsingers": 15707, | |
| "Ġpatri": 15708, | |
| "ISE": 15709, | |
| "Ġthanked": 15710, | |
| "Ġrespectable": 15711, | |
| "ĠStein": 15712, | |
| "ĠJudy": 15713, | |
| "Ġjewels": 15714, | |
| "ĠLOVE": 15715, | |
| "Funny": 15716, | |
| "Kat": 15717, | |
| "cos": 15718, | |
| "rity": 15719, | |
| "Ġshan": 15720, | |
| "Ġmarty": 15721, | |
| "Ġpseud": 15722, | |
| "ERING": 15723, | |
| "Ġelbow": 15724, | |
| "ARY": 15725, | |
| "ĠPerkins": 15726, | |
| "Ġantib": 15727, | |
| "Ġpursued": 15728, | |
| "Day": 15729, | |
| "bad": 15730, | |
| "lk": 15731, | |
| "ln": 15732, | |
| "rust": 15733, | |
| "rots": 15734, | |
| "Ġlobby": 15735, | |
| "Ġatomic": 15736, | |
| "ĠWa": 15737, | |
| "Ġanyhow": 15738, | |
| "ĠYears": 15739, | |
| "landers": 15740, | |
| "Ġcurrency": 15741, | |
| "ĠSoccer": 15742, | |
| "Ġhath": 15743, | |
| "Ġthankful": 15744, | |
| "Ġfreight": 15745, | |
| "castle": 15746, | |
| "Ġrenov": 15747, | |
| "Ġnarrative": 15748, | |
| "German": 15749, | |
| "course": 15750, | |
| "Ġbureau": 15751, | |
| "Ġmorn": 15752, | |
| "Ġdimin": 15753, | |
| "rien": 15754, | |
| "ĠLamb": 15755, | |
| "istle": 15756, | |
| "oys": 15757, | |
| "Ġaccidents": 15758, | |
| "Ġsubmit": 15759, | |
| "Ġspecialist": 15760, | |
| "Ġhostile": 15761, | |
| "Ġchallenged": 15762, | |
| "Ġharmony": 15763, | |
| "Ġpilots": 15764, | |
| "Ġsnapped": 15765, | |
| "Ġpromptly": 15766, | |
| "ĠJennifer": 15767, | |
| "Ġschemes": 15768, | |
| "и": 15769, | |
| "Ġmend": 15770, | |
| "ĠPack": 15771, | |
| "ĠFac": 15772, | |
| "Ġpublish": 15773, | |
| "Ġintercept": 15774, | |
| "Ġrespir": 15775, | |
| "Ġdiaper": 15776, | |
| "Ġcirculation": 15777, | |
| "Ġqualify": 15778, | |
| "ĠSharon": 15779, | |
| "Jess": 15780, | |
| "Ġbunk": 15781, | |
| "Ġlined": 15782, | |
| "lected": 15783, | |
| "ĠPi": 15784, | |
| "ĠLiving": 15785, | |
| "Ġsuite": 15786, | |
| "hedron": 15787, | |
| "forest": 15788, | |
| "Ġtracking": 15789, | |
| "Ġparticipants": 15790, | |
| "Ġcease": 15791, | |
| "||||||||": 15792, | |
| "ovakia": 15793, | |
| "Suppose": 15794, | |
| "Ġlouder": 15795, | |
| "Ġgrammar": 15796, | |
| "Ġjurisdiction": 15797, | |
| "//": 15798, | |
| "Free": 15799, | |
| "Ġwishing": 15800, | |
| "Ġongoing": 15801, | |
| "ĠAires": 15802, | |
| "Ġsperm": 15803, | |
| "Ġslim": 15804, | |
| "Book": 15805, | |
| "Peek": 15806, | |
| "Ġsib": 15807, | |
| "Ġcens": 15808, | |
| "Ġlent": 15809, | |
| "oween": 15810, | |
| "Ġsubdiv": 15811, | |
| "Ġinterrog": 15812, | |
| "ĠNoah": 15813, | |
| "Ġcivilians": 15814, | |
| "etti": 15815, | |
| "Ġapplies": 15816, | |
| "Ġdoubts": 15817, | |
| "Fat": 15818, | |
| "Ġpence": 15819, | |
| "lem": 15820, | |
| "ĠMow": 15821, | |
| "illian": 15822, | |
| "ĠDisc": 15823, | |
| "Ġunbelievable": 15824, | |
| "rowing": 15825, | |
| "ĠProf": 15826, | |
| "ĠWhich": 15827, | |
| "Ġcamping": 15828, | |
| "ĠDavy": 15829, | |
| "ĠSatan": 15830, | |
| "orporated": 15831, | |
| "Promise": 15832, | |
| "cock": 15833, | |
| "oton": 15834, | |
| "ĠBark": 15835, | |
| "Ġram": 15836, | |
| "ishna": 15837, | |
| "Ġdisabled": 15838, | |
| "Ġmarvell": 15839, | |
| "ENS": 15840, | |
| "Ġveil": 15841, | |
| "Ġpenis": 15842, | |
| "Ġmadness": 15843, | |
| "Ġfortnight": 15844, | |
| "Ġinvestigating": 15845, | |
| "ĠCornwall": 15846, | |
| "Ġdimensions": 15847, | |
| "Ġpreparations": 15848, | |
| "ĠFleet": 15849, | |
| "Ġpresumably": 15850, | |
| "Ġtv": 15851, | |
| "hee": 15852, | |
| "Ġdiverse": 15853, | |
| "Ġstrand": 15854, | |
| "ĠCrist": 15855, | |
| "ĠMol": 15856, | |
| "Ġplaint": 15857, | |
| "Ġscope": 15858, | |
| "Ġintervention": 15859, | |
| "rising": 15860, | |
| "Ġtechnologies": 15861, | |
| "Shouldn": 15862, | |
| "Ġfulfill": 15863, | |
| "Ġtheorem": 15864, | |
| "Ġobservations": 15865, | |
| "Mc": 15866, | |
| "language": 15867, | |
| "ĠMend": 15868, | |
| "ĠRA": 15869, | |
| "Ġridge": 15870, | |
| "Ġherd": 15871, | |
| "ĠVel": 15872, | |
| "Ġfools": 15873, | |
| "Ġscreenwriter": 15874, | |
| "ĠWoody": 15875, | |
| "Ġambition": 15876, | |
| "Ġcomposers": 15877, | |
| "Grab": 15878, | |
| "ede": 15879, | |
| "ĠBess": 15880, | |
| "ĠGas": 15881, | |
| "Ġrecalled": 15882, | |
| "Stra": 15883, | |
| "ĠSteel": 15884, | |
| "Ġslightest": 15885, | |
| "ĠPlayer": 15886, | |
| "Ġcorporation": 15887, | |
| "ĠHughes": 15888, | |
| "Children": 15889, | |
| "Wha": 15890, | |
| "Ġpose": 15891, | |
| "ollar": 15892, | |
| "Ġappar": 15893, | |
| "Ġobed": 15894, | |
| "Ġfridge": 15895, | |
| "Ġprovisions": 15896, | |
| "wyn": 15897, | |
| "inement": 15898, | |
| "Ġbung": 15899, | |
| "arians": 15900, | |
| "icus": 15901, | |
| "imi": 15902, | |
| "ĠKath": 15903, | |
| "cium": 15904, | |
| "Ġscent": 15905, | |
| "ignated": 15906, | |
| "Ġraped": 15907, | |
| "Ġcupboard": 15908, | |
| "ĠBuenos": 15909, | |
| "Ġamusement": 15910, | |
| "Luc": 15911, | |
| "Sing": 15912, | |
| "Ġay": 15913, | |
| "ĠChes": 15914, | |
| "ĠOber": 15915, | |
| "ĠMinor": 15916, | |
| "anni": 15917, | |
| "Ġbroadcasting": 15918, | |
| "ĠArchbishop": 15919, | |
| "Ġintentions": 15920, | |
| "Ġlegitimate": 15921, | |
| "Ġelegant": 15922, | |
| "Ġcorridor": 15923, | |
| "XT": 15924, | |
| "ben": 15925, | |
| "jar": 15926, | |
| "semble": 15927, | |
| "ĠBever": 15928, | |
| "antha": 15929, | |
| "ĠWR": 15930, | |
| "ĠJes": 15931, | |
| "ĠEsp": 15932, | |
| "ĠVideo": 15933, | |
| "Ġaccus": 15934, | |
| "ANCE": 15935, | |
| "ĠNoel": 15936, | |
| "ĠBuddhist": 15937, | |
| "LAUGHS": 15938, | |
| "South": 15939, | |
| "lS": 15940, | |
| "sil": 15941, | |
| "Ġrides": 15942, | |
| "ĠKin": 15943, | |
| "Ġfraction": 15944, | |
| "Ġlegally": 15945, | |
| "chet": 15946, | |
| "Ġprayed": 15947, | |
| "Ġtalented": 15948, | |
| "Ġimprisoned": 15949, | |
| "ilibrium": 15950, | |
| "Done": 15951, | |
| "school": 15952, | |
| "Ġá": 15953, | |
| "Ġling": 15954, | |
| "icating": 15955, | |
| "ĠMonsieur": 15956, | |
| "ĠBoss": 15957, | |
| "ĠHi": 15958, | |
| "Ġaliens": 15959, | |
| "Ġsuited": 15960, | |
| "Ġroar": 15961, | |
| "ĠYa": 15962, | |
| "Ġquestioning": 15963, | |
| "ĠFourth": 15964, | |
| "ĠShiva": 15965, | |
| "graduate": 15966, | |
| "ĠRugby": 15967, | |
| "\"--": 15968, | |
| "Ġtran": 15969, | |
| "Ġlingu": 15970, | |
| "Ġgover": 15971, | |
| "olan": 15972, | |
| "ĠGosp": 15973, | |
| "emed": 15974, | |
| "Ġwhatsoever": 15975, | |
| "Ġoutl": 15976, | |
| "inton": 15977, | |
| "Ġinval": 15978, | |
| "ĠOthers": 15979, | |
| "Ġspelling": 15980, | |
| "Ġconventional": 15981, | |
| "Ġloser": 15982, | |
| "ĠBuffalo": 15983, | |
| "Pri": 15984, | |
| "pi": 15985, | |
| "ĠPubl": 15986, | |
| "agi": 15987, | |
| "formed": 15988, | |
| "ĠHerbert": 15989, | |
| "ĠAbu": 15990, | |
| "Ġexhaust": 15991, | |
| "ĠCONT": 15992, | |
| "Ġastonished": 15993, | |
| "GET": 15994, | |
| "lC": 15995, | |
| "Ġwept": 15996, | |
| "ĠSweet": 15997, | |
| "ĠDiam": 15998, | |
| "being": 15999, | |
| "oki": 16000, | |
| "ICH": 16001, | |
| "Ġconnects": 16002, | |
| "Ġdescendants": 16003, | |
| "wheel": 16004, | |
| "belt": 16005, | |
| "onso": 16006, | |
| "respect": 16007, | |
| "Ġclergy": 16008, | |
| "ocy": 16009, | |
| "Ġinstances": 16010, | |
| "Ġfilter": 16011, | |
| "Ġranking": 16012, | |
| "Ġexpressions": 16013, | |
| "Ġrescued": 16014, | |
| "Ġanthrop": 16015, | |
| "Ġmotherfucker": 16016, | |
| "Him": 16017, | |
| "Sen": 16018, | |
| "iated": 16019, | |
| "sch": 16020, | |
| "asury": 16021, | |
| "ĠBog": 16022, | |
| "ĠGiant": 16023, | |
| "udent": 16024, | |
| "Ġoverd": 16025, | |
| "Ġidle": 16026, | |
| "Ġpromot": 16027, | |
| "ĠConcer": 16028, | |
| "Ġquicker": 16029, | |
| "Chris": 16030, | |
| "Ġsuitcase": 16031, | |
| "ĠMiranda": 16032, | |
| "mal": 16033, | |
| "ĠâĢ": 16034, | |
| "Ġtones": 16035, | |
| "ĠSpeed": 16036, | |
| "ĠPick": 16037, | |
| "Ġleak": 16038, | |
| "ĠHercules": 16039, | |
| "ĠCoach": 16040, | |
| "Ġkilometres": 16041, | |
| "Ġtemporarily": 16042, | |
| "AK": 16043, | |
| "Fight": 16044, | |
| "French": 16045, | |
| "San": 16046, | |
| "human": 16047, | |
| "ĠDrive": 16048, | |
| "ĠKap": 16049, | |
| "Ġresid": 16050, | |
| "ggs": 16051, | |
| "Ġdistances": 16052, | |
| "Ġemig": 16053, | |
| "Ġsharks": 16054, | |
| "rieve": 16055, | |
| "Ġmeasurement": 16056, | |
| "Ġtimber": 16057, | |
| "Ġmolecule": 16058, | |
| "Ġswallowed": 16059, | |
| "ĠCroatia": 16060, | |
| "Ġfertil": 16061, | |
| "ĠPalestine": 16062, | |
| "Boom": 16063, | |
| "FO": 16064, | |
| "SN": 16065, | |
| "Ġresumed": 16066, | |
| "Ġpassport": 16067, | |
| "ĠWarri": 16068, | |
| "Ġfreeze": 16069, | |
| "Ġspecialized": 16070, | |
| "Ġdevotion": 16071, | |
| "ACT": 16072, | |
| "Ġurged": 16073, | |
| "CAA": 16074, | |
| "DOOR": 16075, | |
| "titles": 16076, | |
| "Japan": 16077, | |
| "Ġreorgan": 16078, | |
| "Ġforcing": 16079, | |
| "ĠCott": 16080, | |
| "ĠMade": 16081, | |
| "oland": 16082, | |
| "ĠLil": 16083, | |
| "Thomas": 16084, | |
| "Ġdraws": 16085, | |
| "Carl": 16086, | |
| "Girls": 16087, | |
| "Ġinevitable": 16088, | |
| "Top": 16089, | |
| "vous": 16090, | |
| "zan": 16091, | |
| "Ġsciences": 16092, | |
| "hage": 16093, | |
| "style": 16094, | |
| "ĠCA": 16095, | |
| "ĠEun": 16096, | |
| "Ġwarfare": 16097, | |
| "Ġcombine": 16098, | |
| "Ġwatches": 16099, | |
| "Johnny": 16100, | |
| "ĠNevertheless": 16101, | |
| "ĠMercury": 16102, | |
| "wic": 16103, | |
| "Ġfist": 16104, | |
| "Ġginger": 16105, | |
| "imen": 16106, | |
| "ĠSalt": 16107, | |
| "Ġclam": 16108, | |
| "ĠStarr": 16109, | |
| "xton": 16110, | |
| "ĠAllan": 16111, | |
| "Ġradar": 16112, | |
| "Ġnurses": 16113, | |
| "ĠLegislative": 16114, | |
| "ĠTibet": 16115, | |
| "Ang": 16116, | |
| "ĠTyler": 16117, | |
| "ĠMORE": 16118, | |
| "Ġtwelf": 16119, | |
| "ĠMarx": 16120, | |
| "ĠMonica": 16121, | |
| "ĠAndrews": 16122, | |
| "communes": 16123, | |
| "Met": 16124, | |
| "Ġpudding": 16125, | |
| "ĠBasketball": 16126, | |
| "Ġabdom": 16127, | |
| "ĠUlt": 16128, | |
| "ucking": 16129, | |
| "ĠGuild": 16130, | |
| "Ġpremises": 16131, | |
| "ĠRailroad": 16132, | |
| "TC": 16133, | |
| "dro": 16134, | |
| "nor": 16135, | |
| "Ġcherry": 16136, | |
| "aration": 16137, | |
| "etition": 16138, | |
| "ĠBub": 16139, | |
| "Ġsupplement": 16140, | |
| "Ġretiring": 16141, | |
| "Ġswinging": 16142, | |
| "ĠAllied": 16143, | |
| "ĠMission": 16144, | |
| "Ġillusion": 16145, | |
| "Ġvoluntary": 16146, | |
| "ĠMorocc": 16147, | |
| "Ġwhales": 16148, | |
| "ĠModel": 16149, | |
| "Understand": 16150, | |
| "Ġpouring": 16151, | |
| "Ġgrill": 16152, | |
| "ĠEmb": 16153, | |
| "ountered": 16154, | |
| "Ġrecur": 16155, | |
| "ĠConrad": 16156, | |
| "Ġrainbow": 16157, | |
| "Ġreducing": 16158, | |
| "yrus": 16159, | |
| "Ġwrestler": 16160, | |
| "rimination": 16161, | |
| "family": 16162, | |
| "iott": 16163, | |
| "Ġcush": 16164, | |
| "Ġsheer": 16165, | |
| "Ġafterward": 16166, | |
| "Ġchronic": 16167, | |
| "Ġswore": 16168, | |
| "Ġcracked": 16169, | |
| "Ġwitnessed": 16170, | |
| "Ġastronaut": 16171, | |
| "ĠBrigade": 16172, | |
| "ĠGeoffrey": 16173, | |
| "ĠPyrénées": 16174, | |
| "ĠLithuan": 16175, | |
| "Mill": 16176, | |
| "rip": 16177, | |
| "ĠBowser": 16178, | |
| "reated": 16179, | |
| "avi": 16180, | |
| "Ġsymmet": 16181, | |
| "ĠMaya": 16182, | |
| "Ġemployer": 16183, | |
| "Ġrobots": 16184, | |
| "Ġwelcom": 16185, | |
| "ulsion": 16186, | |
| "sar": 16187, | |
| "Ġlame": 16188, | |
| "ĠFisher": 16189, | |
| "Heh": 16190, | |
| "actic": 16191, | |
| "Ġprick": 16192, | |
| "ĠYale": 16193, | |
| "Ġassert": 16194, | |
| "Ġencountered": 16195, | |
| "ĠFreddie": 16196, | |
| "ĠTwenty": 16197, | |
| "ĠAhmed": 16198, | |
| "enesis": 16199, | |
| "Ġfossils": 16200, | |
| "Mo": 16201, | |
| "Ted": 16202, | |
| "ĠED": 16203, | |
| "iaz": 16204, | |
| "ĠWestminster": 16205, | |
| "ĠOriginally": 16206, | |
| "ĠTAKE": 16207, | |
| "Ġsor": 16208, | |
| "ĠCind": 16209, | |
| "ĠHoff": 16210, | |
| "agles": 16211, | |
| "âϬ": 16212, | |
| "Ġboiling": 16213, | |
| "ĠDani": 16214, | |
| "ĠGrandpa": 16215, | |
| "ĠChancellor": 16216, | |
| "Ġexclusively": 16217, | |
| "\"-": 16218, | |
| "Ġmol": 16219, | |
| "ĠCox": 16220, | |
| "ĠLag": 16221, | |
| "ĠFM": 16222, | |
| "Ġthereby": 16223, | |
| "ĠEff": 16224, | |
| "ĠKash": 16225, | |
| "Ġovers": 16226, | |
| "Ġadds": 16227, | |
| "ĠIsabel": 16228, | |
| "Ġexplicit": 16229, | |
| "Ġpublications": 16230, | |
| "Ġwidth": 16231, | |
| "Ġignorance": 16232, | |
| "Made": 16233, | |
| "PE": 16234, | |
| "Ġ\"\".": 16235, | |
| "Ġfitting": 16236, | |
| "ĠCarson": 16237, | |
| "ĠRilla": 16238, | |
| "Ġabe": 16239, | |
| "Ġcompromise": 16240, | |
| "ĠVi": 16241, | |
| "urned": 16242, | |
| "Ġcoloured": 16243, | |
| "Ġacceptable": 16244, | |
| "ĠÃģ": 16245, | |
| "Ġillustrated": 16246, | |
| "Ġvoiced": 16247, | |
| "Ġchirping": 16248, | |
| "Ġunnecessary": 16249, | |
| "Jump": 16250, | |
| "née": 16251, | |
| "won": 16252, | |
| "ĠBranch": 16253, | |
| "ĠDonna": 16254, | |
| "ĠDarling": 16255, | |
| "Ġnoisy": 16256, | |
| "Ġmeteor": 16257, | |
| "Ġfragments": 16258, | |
| "Ġpumpkin": 16259, | |
| "oubted": 16260, | |
| "¡": 16261, | |
| "Ġgam": 16262, | |
| "ĠSure": 16263, | |
| "Ġarena": 16264, | |
| "Ġsoda": 16265, | |
| "ibal": 16266, | |
| "Ġmissile": 16267, | |
| "ĠBrus": 16268, | |
| "Ġteaches": 16269, | |
| "Ġsufficiently": 16270, | |
| "Trying": 16271, | |
| "Ġdiplomatic": 16272, | |
| "Ġportrayed": 16273, | |
| "Ġsophistic": 16274, | |
| "iently": 16275, | |
| "ĠSul": 16276, | |
| "riving": 16277, | |
| "ĠCelt": 16278, | |
| "ĠPool": 16279, | |
| "ulates": 16280, | |
| "Ġarrows": 16281, | |
| "Ġbarr": 16282, | |
| "ĠVictorian": 16283, | |
| "Ġhabitat": 16284, | |
| "ĠSongs": 16285, | |
| "Ġrestricted": 16286, | |
| "Ġsummary": 16287, | |
| "rimin": 16288, | |
| "ĠTag": 16289, | |
| "seen": 16290, | |
| "ĠFO": 16291, | |
| "Ġ().": 16292, | |
| "ĠNova": 16293, | |
| "issors": 16294, | |
| "Ġhardest": 16295, | |
| "eresting": 16296, | |
| "Ġconfusing": 16297, | |
| "Ġobjection": 16298, | |
| "books": 16299, | |
| "Ġowl": 16300, | |
| "Ġwarriors": 16301, | |
| "Ġrecipe": 16302, | |
| "ĠBundes": 16303, | |
| "CHUCKLES": 16304, | |
| "GRO": 16305, | |
| "Ġbald": 16306, | |
| "Ġyog": 16307, | |
| "Ġgy": 16308, | |
| "ĠSony": 16309, | |
| "roe": 16310, | |
| "ĠHunt": 16311, | |
| "ĠPom": 16312, | |
| "ĠPage": 16313, | |
| "ĠLanguage": 16314, | |
| "ĠSpart": 16315, | |
| "ĠManager": 16316, | |
| "scap": 16317, | |
| "Ġstepping": 16318, | |
| "Ġcalmly": 16319, | |
| "Ġpersuaded": 16320, | |
| "intendent": 16321, | |
| "dict": 16322, | |
| "ãĥ": 16323, | |
| "Ġauction": 16324, | |
| "Ġstool": 16325, | |
| "Ġoutbreak": 16326, | |
| "Ġsphere": 16327, | |
| "Ġbacking": 16328, | |
| "plant": 16329, | |
| "Ġscorn": 16330, | |
| "anya": 16331, | |
| "ĠClara": 16332, | |
| "Ġwarmth": 16333, | |
| ")\\": 16334, | |
| "iago": 16335, | |
| "ĠSebastian": 16336, | |
| "ellar": 16337, | |
| "ucks": 16338, | |
| "Ġsuburbs": 16339, | |
| "ĠWeather": 16340, | |
| "Ġhyster": 16341, | |
| "ĠCricket": 16342, | |
| "Ġbothering": 16343, | |
| "boys": 16344, | |
| "Ġcrawl": 16345, | |
| "Ġcripp": 16346, | |
| "usters": 16347, | |
| "Ġnob": 16348, | |
| "ĠUg": 16349, | |
| "Ġoverth": 16350, | |
| "Ġerrand": 16351, | |
| "Ġfunded": 16352, | |
| "Ġgraphics": 16353, | |
| "ĠEssex": 16354, | |
| "ĠBooks": 16355, | |
| "Ġspoiled": 16356, | |
| "ĠNASA": 16357, | |
| "ĠDawson": 16358, | |
| "tar": 16359, | |
| "Ġapt": 16360, | |
| "Ġsiege": 16361, | |
| "Ġft": 16362, | |
| "Ġrally": 16363, | |
| "udder": 16364, | |
| "Ġflock": 16365, | |
| "ĠUnit": 16366, | |
| "Ġelig": 16367, | |
| "Ġfilthy": 16368, | |
| "Ġcontinually": 16369, | |
| "ĠFlag": 16370, | |
| "Ġepid": 16371, | |
| "Ġtickle": 16372, | |
| "Knock": 16373, | |
| "Ġmoderate": 16374, | |
| "Offic": 16375, | |
| "rics": 16376, | |
| "Ġpope": 16377, | |
| "arre": 16378, | |
| "Ġheated": 16379, | |
| "Ġalgebra": 16380, | |
| "text": 16381, | |
| "aji": 16382, | |
| "ĠScots": 16383 | |
| } | |
| } | |
| } |