Sentiment analysis with TFLearn

In this notebook, we'll continue Andrew Trask's work by building a network for sentiment analysis on the movie review data. Instead of a network written with Numpy, we'll be using TFLearn, a high-level library built on top of TensorFlow. TFLearn makes it simpler to build networks just by defining the layers. It takes care of most of the details for you.

We'll start off by importing all the modules we'll need, then load and prepare the data.


In [1]:
import pandas as pd
import numpy as np
import tensorflow as tf
import tflearn
from tflearn.data_utils import to_categorical

Preparing the data

Following along with Andrew, our goal here is to convert our reviews into word vectors. The word vectors will have elements representing words in the total vocabulary. If the second position represents the word 'the', for each review we'll count up the number of times 'the' appears in the text and set the second position to that count. I'll show you examples as we build the input data from the reviews data. Check out Andrew's notebook and video for more about this.

Read the data

Use the pandas library to read the reviews and postive/negative labels from comma-separated files. The data we're using has already been preprocessed a bit and we know it uses only lower case characters. If we were working from raw data, where we didn't know it was all lower case, we would want to add a step here to convert it. That's so we treat different variations of the same word, like The, the, and THE, all the same way.


In [2]:
reviews = pd.read_csv('reviews.txt', header=None)
labels = pd.read_csv('labels.txt', header=None)

Counting word frequency

To start off we'll need to count how often each word appears in the data. We'll use this count to create a vocabulary we'll use to encode the review data. This resulting count is known as a bag of words. We'll use it to select our vocabulary and build the word vectors. You should have seen how to do this in Andrew's lesson. Try to implement it here using the Counter class.

Exercise: Create the bag of words from the reviews data and assign it to total_counts. The reviews are stores in the reviews Pandas DataFrame. If you want the reviews as a Numpy array, use reviews.values. You can iterate through the rows in the DataFrame with for idx, row in reviews.iterrows(): (documentation). When you break up the reviews into words, use .split(' ') instead of .split() so your results match ours.


In [14]:
from collections import Counter

total_counts = Counter()
for i, row in reviews.iterrows():
    review = row[0]
    words = review.split(' ')
    total_counts.update(words)

print("Total words in data set: ", len(total_counts))


Total words in data set:  74074

Let's keep the first 10000 most frequent words. As Andrew noted, most of the words in the vocabulary are rarely used so they will have little effect on our predictions. Below, we'll sort vocab by the count value and keep the 10000 most frequent words.


In [15]:
vocab = sorted(total_counts, key=total_counts.get, reverse=True)[:10000]
print(vocab[:60])


['', 'the', '.', 'and', 'a', 'of', 'to', 'is', 'br', 'it', 'in', 'i', 'this', 'that', 's', 'was', 'as', 'for', 'with', 'movie', 'but', 'film', 'you', 'on', 't', 'not', 'he', 'are', 'his', 'have', 'be', 'one', 'all', 'at', 'they', 'by', 'an', 'who', 'so', 'from', 'like', 'there', 'her', 'or', 'just', 'about', 'out', 'if', 'has', 'what', 'some', 'good', 'can', 'more', 'she', 'when', 'very', 'up', 'time', 'no']

What's the last word in our vocabulary? We can use this to judge if 10000 is too few. If the last word is pretty common, we probably need to keep more words.


In [16]:
print(vocab[-1], ': ', total_counts[vocab[-1]])


fulfilled :  30

The last word in our vocabulary shows up 30 times in 25000 reviews. I think it's fair to say this is a tiny proportion. We are probably fine with this number of words.

Note: When you run, you may see a different word from the one shown above, but it will also have the value 30. That's because there are many words tied for that number of counts, and the Counter class does not guarantee which one will be returned in the case of a tie.

Now for each review in the data, we'll make a word vector. First we need to make a mapping of word to index, pretty easy to do with a dictionary comprehension.

Exercise: Create a dictionary called word2idx that maps each word in the vocabulary to an index. The first word in vocab has index 0, the second word has index 1, and so on.


In [20]:
word2idx = {word: i for i, word in enumerate(vocab)}
print(word2idx)


{'': 0, 'the': 1, '.': 2, 'and': 3, 'a': 4, 'of': 5, 'to': 6, 'is': 7, 'br': 8, 'it': 9, 'in': 10, 'i': 11, 'this': 12, 'that': 13, 's': 14, 'was': 15, 'as': 16, 'for': 17, 'with': 18, 'movie': 19, 'but': 20, 'film': 21, 'you': 22, 'on': 23, 't': 24, 'not': 25, 'he': 26, 'are': 27, 'his': 28, 'have': 29, 'be': 30, 'one': 31, 'all': 32, 'at': 33, 'they': 34, 'by': 35, 'an': 36, 'who': 37, 'so': 38, 'from': 39, 'like': 40, 'there': 41, 'her': 42, 'or': 43, 'just': 44, 'about': 45, 'out': 46, 'if': 47, 'has': 48, 'what': 49, 'some': 50, 'good': 51, 'can': 52, 'more': 53, 'she': 54, 'when': 55, 'very': 56, 'up': 57, 'time': 58, 'no': 59, 'even': 60, 'my': 61, 'would': 62, 'which': 63, 'story': 64, 'only': 65, 'really': 66, 'see': 67, 'their': 68, 'had': 69, 'we': 70, 'were': 71, 'me': 72, 'well': 73, 'than': 74, 'much': 75, 'get': 76, 'bad': 77, 'been': 78, 'people': 79, 'will': 80, 'do': 81, 'other': 82, 'also': 83, 'into': 84, 'first': 85, 'great': 86, 'because': 87, 'how': 88, 'him': 89, 'don': 90, 'most': 91, 'made': 92, 'its': 93, 'then': 94, 'make': 95, 'way': 96, 'them': 97, 'could': 98, 'too': 99, 'movies': 100, 'any': 101, 'after': 102, 'think': 103, 'characters': 104, 'character': 105, 'watch': 106, 'two': 107, 'films': 108, 'seen': 109, 'many': 110, 'life': 111, 'being': 112, 'plot': 113, 'acting': 114, 'never': 115, 'love': 116, 'little': 117, 'best': 118, 'where': 119, 'over': 120, 'did': 121, 'show': 122, 'know': 123, 'off': 124, 'ever': 125, 'man': 126, 'does': 127, 'here': 128, 'better': 129, 'your': 130, 'end': 131, 'still': 132, 'these': 133, 'say': 134, 'scene': 135, 'why': 136, 'while': 137, 'scenes': 138, 'go': 139, 've': 140, 'such': 141, 'something': 142, 'should': 143, 'm': 144, 'back': 145, 'through': 146, 'real': 147, 'those': 148, 'watching': 149, 'now': 150, 'though': 151, 'doesn': 152, 'thing': 153, 'old': 154, 'years': 155, 're': 156, 'actors': 157, 'director': 158, 'work': 159, 'another': 160, 'before': 161, 'didn': 162, 'new': 163, 'nothing': 164, 'funny': 165, 'actually': 166, 'makes': 167, 'look': 168, 'find': 169, 'going': 170, 'few': 171, 'same': 172, 'part': 173, 'again': 174, 'every': 175, 'lot': 176, 'world': 177, 'cast': 178, 'us': 179, 'quite': 180, 'down': 181, 'want': 182, 'things': 183, 'pretty': 184, 'young': 185, 'seems': 186, 'around': 187, 'horror': 188, 'got': 189, 'however': 190, 'fact': 191, 'take': 192, 'big': 193, 'enough': 194, 'long': 195, 'thought': 196, 'series': 197, 'both': 198, 'between': 199, 'may': 200, 'give': 201, 'original': 202, 'action': 203, 'own': 204, 'right': 205, 'without': 206, 'must': 207, 'comedy': 208, 'always': 209, 'times': 210, 'point': 211, 'gets': 212, 'family': 213, 'come': 214, 'role': 215, 'isn': 216, 'saw': 217, 'almost': 218, 'interesting': 219, 'least': 220, 'done': 221, 'whole': 222, 'd': 223, 'bit': 224, 'music': 225, 'guy': 226, 'script': 227, 'far': 228, 'making': 229, 'minutes': 230, 'feel': 231, 'anything': 232, 'last': 233, 'might': 234, 'since': 235, 'performance': 236, 'll': 237, 'girl': 238, 'probably': 239, 'am': 240, 'woman': 241, 'kind': 242, 'tv': 243, 'away': 244, 'yet': 245, 'day': 246, 'rather': 247, 'worst': 248, 'fun': 249, 'sure': 250, 'hard': 251, 'anyone': 252, 'played': 253, 'each': 254, 'found': 255, 'having': 256, 'although': 257, 'especially': 258, 'our': 259, 'course': 260, 'believe': 261, 'screen': 262, 'comes': 263, 'looking': 264, 'trying': 265, 'set': 266, 'goes': 267, 'book': 268, 'looks': 269, 'place': 270, 'actor': 271, 'different': 272, 'put': 273, 'money': 274, 'year': 275, 'ending': 276, 'dvd': 277, 'maybe': 278, 'let': 279, 'someone': 280, 'true': 281, 'once': 282, 'sense': 283, 'everything': 284, 'reason': 285, 'wasn': 286, 'shows': 287, 'three': 288, 'worth': 289, 'job': 290, 'main': 291, 'together': 292, 'play': 293, 'watched': 294, 'american': 295, 'everyone': 296, 'plays': 297, 'john': 298, 'effects': 299, 'later': 300, 'audience': 301, 'said': 302, 'takes': 303, 'instead': 304, 'house': 305, 'beautiful': 306, 'seem': 307, 'night': 308, 'high': 309, 'himself': 310, 'version': 311, 'wife': 312, 'during': 313, 'left': 314, 'father': 315, 'special': 316, 'seeing': 317, 'half': 318, 'star': 319, 'excellent': 320, 'war': 321, 'shot': 322, 'idea': 323, 'black': 324, 'nice': 325, 'less': 326, 'else': 327, 'mind': 328, 'simply': 329, 'read': 330, 'second': 331, 'fan': 332, 'men': 333, 'death': 334, 'hollywood': 335, 'poor': 336, 'help': 337, 'completely': 338, 'used': 339, 'home': 340, 'dead': 341, 'line': 342, 'short': 343, 'either': 344, 'given': 345, 'top': 346, 'kids': 347, 'budget': 348, 'try': 349, 'classic': 350, 'wrong': 351, 'performances': 352, 'women': 353, 'enjoy': 354, 'boring': 355, 'need': 356, 'use': 357, 'rest': 358, 'low': 359, 'friends': 360, 'production': 361, 'full': 362, 'camera': 363, 'until': 364, 'along': 365, 'truly': 366, 'video': 367, 'awful': 368, 'couple': 369, 'tell': 370, 'next': 371, 'remember': 372, 'stupid': 373, 'start': 374, 'stars': 375, 'perhaps': 376, 'sex': 377, 'mean': 378, 'won': 379, 'came': 380, 'recommend': 381, 'moments': 382, 'school': 383, 'episode': 384, 'wonderful': 385, 'small': 386, 'face': 387, 'understand': 388, 'terrible': 389, 'playing': 390, 'getting': 391, 'written': 392, 'early': 393, 'name': 394, 'doing': 395, 'often': 396, 'style': 397, 'keep': 398, 'perfect': 399, 'human': 400, 'others': 401, 'person': 402, 'definitely': 403, 'gives': 404, 'itself': 405, 'boy': 406, 'lines': 407, 'lost': 408, 'live': 409, 'become': 410, 'dialogue': 411, 'head': 412, 'piece': 413, 'finally': 414, 'case': 415, 'yes': 416, 'felt': 417, 'mother': 418, 'liked': 419, 'supposed': 420, 'children': 421, 'title': 422, 'couldn': 423, 'cinema': 424, 'white': 425, 'absolutely': 426, 'picture': 427, 'against': 428, 'sort': 429, 'worse': 430, 'certainly': 431, 'went': 432, 'entire': 433, 'waste': 434, 'killer': 435, 'problem': 436, 'oh': 437, 'mr': 438, 'hope': 439, 'evil': 440, 'entertaining': 441, 'friend': 442, 'overall': 443, 'called': 444, 'based': 445, 'loved': 446, 'fans': 447, 'several': 448, 'drama': 449, 'beginning': 450, 'lives': 451, 'direction': 452, 'care': 453, 'already': 454, 'dark': 455, 'becomes': 456, 'laugh': 457, 'example': 458, 'under': 459, 'despite': 460, 'seemed': 461, 'throughout': 462, 'turn': 463, 'son': 464, 'unfortunately': 465, 'wanted': 466, 'michael': 467, 'history': 468, 'heart': 469, 'final': 470, 'fine': 471, 'child': 472, 'sound': 473, 'amazing': 474, 'guess': 475, 'lead': 476, 'humor': 477, 'totally': 478, 'writing': 479, 'guys': 480, 'quality': 481, 'close': 482, 'art': 483, 'wants': 484, 'game': 485, 'behind': 486, 'works': 487, 'town': 488, 'side': 489, 'tries': 490, 'days': 491, 'past': 492, 'viewer': 493, 'able': 494, 'flick': 495, 'hand': 496, 'genre': 497, 'turns': 498, 'act': 499, 'enjoyed': 500, 'today': 501, 'kill': 502, 'favorite': 503, 'car': 504, 'soon': 505, 'starts': 506, 'run': 507, 'actress': 508, 'sometimes': 509, 'gave': 510, 'eyes': 511, 'b': 512, 'late': 513, 'girls': 514, 'etc': 515, 'god': 516, 'directed': 517, 'horrible': 518, 'kid': 519, 'city': 520, 'brilliant': 521, 'parts': 522, 'hour': 523, 'blood': 524, 'self': 525, 'themselves': 526, 'stories': 527, 'thinking': 528, 'expect': 529, 'stuff': 530, 'obviously': 531, 'decent': 532, 'voice': 533, 'writer': 534, 'fight': 535, 'highly': 536, 'myself': 537, 'feeling': 538, 'daughter': 539, 'slow': 540, 'except': 541, 'matter': 542, 'type': 543, 'age': 544, 'anyway': 545, 'roles': 546, 'moment': 547, 'killed': 548, 'heard': 549, 'says': 550, 'leave': 551, 'brother': 552, 'took': 553, 'strong': 554, 'cannot': 555, 'police': 556, 'violence': 557, 'hit': 558, 'stop': 559, 'happens': 560, 'known': 561, 'particularly': 562, 'involved': 563, 'happened': 564, 'chance': 565, 'extremely': 566, 'james': 567, 'obvious': 568, 'murder': 569, 'told': 570, 'living': 571, 'coming': 572, 'alone': 573, 'experience': 574, 'lack': 575, 'hero': 576, 'wouldn': 577, 'including': 578, 'attempt': 579, 'please': 580, 'happen': 581, 'gore': 582, 'crap': 583, 'wonder': 584, 'cut': 585, 'group': 586, 'complete': 587, 'ago': 588, 'interest': 589, 'none': 590, 'score': 591, 'husband': 592, 'hell': 593, 'save': 594, 'david': 595, 'simple': 596, 'ok': 597, 'looked': 598, 'song': 599, 'career': 600, 'number': 601, 'seriously': 602, 'possible': 603, 'annoying': 604, 'sad': 605, 'exactly': 606, 'shown': 607, 'king': 608, 'running': 609, 'musical': 610, 'yourself': 611, 'serious': 612, 'scary': 613, 'reality': 614, 'taken': 615, 'whose': 616, 'released': 617, 'cinematography': 618, 'english': 619, 'ends': 620, 'hours': 621, 'usually': 622, 'opening': 623, 'jokes': 624, 'light': 625, 'hilarious': 626, 'across': 627, 'cool': 628, 'body': 629, 'somewhat': 630, 'usual': 631, 'happy': 632, 'relationship': 633, 'ridiculous': 634, 'view': 635, 'level': 636, 'started': 637, 'change': 638, 'opinion': 639, 'wish': 640, 'novel': 641, 'middle': 642, 'talking': 643, 'taking': 644, 'documentary': 645, 'ones': 646, 'robert': 647, 'order': 648, 'shots': 649, 'finds': 650, 'power': 651, 'saying': 652, 'female': 653, 'huge': 654, 'room': 655, 'mostly': 656, 'episodes': 657, 'country': 658, 'five': 659, 'talent': 660, 'important': 661, 'rating': 662, 'modern': 663, 'earth': 664, 'strange': 665, 'major': 666, 'word': 667, 'turned': 668, 'call': 669, 'jack': 670, 'apparently': 671, 'single': 672, 'disappointed': 673, 'events': 674, 'four': 675, 'due': 676, 'songs': 677, 'basically': 678, 'attention': 679, 'television': 680, 'comic': 681, 'knows': 682, 'future': 683, 'non': 684, 'supporting': 685, 'clearly': 686, 'knew': 687, 'british': 688, 'fast': 689, 'thriller': 690, 'paul': 691, 'class': 692, 'easily': 693, 'cheap': 694, 'silly': 695, 'problems': 696, 'aren': 697, 'words': 698, 'miss': 699, 'tells': 700, 'entertainment': 701, 'local': 702, 'sequence': 703, 'rock': 704, 'bring': 705, 'beyond': 706, 'george': 707, 'straight': 708, 'oscar': 709, 'o': 710, 'upon': 711, 'romantic': 712, 'whether': 713, 'predictable': 714, 'moving': 715, 'sets': 716, 'similar': 717, 'review': 718, 'eye': 719, 'falls': 720, 'mystery': 721, 'lady': 722, 'richard': 723, 'talk': 724, 'enjoyable': 725, 'appears': 726, 'needs': 727, 'giving': 728, 'within': 729, 'message': 730, 'theater': 731, 'ten': 732, 'animation': 733, 'near': 734, 'team': 735, 'above': 736, 'sequel': 737, 'red': 738, 'sister': 739, 'dull': 740, 'theme': 741, 'stand': 742, 'nearly': 743, 'lee': 744, 'bunch': 745, 'points': 746, 'mention': 747, 'add': 748, 'york': 749, 'feels': 750, 'herself': 751, 'haven': 752, 'release': 753, 'ways': 754, 'storyline': 755, 'easy': 756, 'surprised': 757, 'using': 758, 'named': 759, 'fantastic': 760, 'lots': 761, 'begins': 762, 'working': 763, 'die': 764, 'actual': 765, 'effort': 766, 'feature': 767, 'tale': 768, 'french': 769, 'minute': 770, 'hate': 771, 'stay': 772, 'follow': 773, 'viewers': 774, 'clear': 775, 'tom': 776, 'elements': 777, 'among': 778, 'comments': 779, 'typical': 780, 'editing': 781, 'avoid': 782, 'showing': 783, 'tried': 784, 'season': 785, 'famous': 786, 'sorry': 787, 'fall': 788, 'dialog': 789, 'check': 790, 'peter': 791, 'period': 792, 'form': 793, 'certain': 794, 'general': 795, 'filmed': 796, 'buy': 797, 'soundtrack': 798, 'parents': 799, 'weak': 800, 'means': 801, 'material': 802, 'realistic': 803, 'figure': 804, 'doubt': 805, 'somehow': 806, 'crime': 807, 'space': 808, 'gone': 809, 'disney': 810, 'kept': 811, 'viewing': 812, 'leads': 813, 'greatest': 814, 'th': 815, 'dance': 816, 'lame': 817, 'suspense': 818, 'zombie': 819, 'third': 820, 'brought': 821, 'imagine': 822, 'atmosphere': 823, 'hear': 824, 'whatever': 825, 'particular': 826, 'de': 827, 'america': 828, 'sequences': 829, 'move': 830, 'indeed': 831, 'rent': 832, 'eventually': 833, 'average': 834, 'learn': 835, 'wait': 836, 'forget': 837, 'reviews': 838, 'deal': 839, 'note': 840, 'japanese': 841, 'surprise': 842, 'stage': 843, 'sexual': 844, 'poorly': 845, 'okay': 846, 'premise': 847, 'believable': 848, 'sit': 849, 'nature': 850, 'possibly': 851, 'subject': 852, 'decided': 853, 'expected': 854, 'truth': 855, 'imdb': 856, 'dr': 857, 'street': 858, 'free': 859, 'became': 860, 'screenplay': 861, 'difficult': 862, 'romance': 863, 'killing': 864, 'baby': 865, 'joe': 866, 'dog': 867, 'nor': 868, 'hot': 869, 'reading': 870, 'question': 871, 'needed': 872, 'leaves': 873, 'begin': 874, 'meets': 875, 'society': 876, 'directors': 877, 'unless': 878, 'credits': 879, 'shame': 880, 'superb': 881, 'otherwise': 882, 'write': 883, 'situation': 884, 'meet': 885, 'dramatic': 886, 'male': 887, 'memorable': 888, 'open': 889, 'badly': 890, 'earlier': 891, 'writers': 892, 'weird': 893, 'dream': 894, 'forced': 895, 'fi': 896, 'acted': 897, 'sci': 898, 'crazy': 899, 'laughs': 900, 'emotional': 901, 'jane': 902, 'older': 903, 'monster': 904, 'beauty': 905, 'realize': 906, 'comment': 907, 'deep': 908, 'footage': 909, 'forward': 910, 'interested': 911, 'ask': 912, 'fantasy': 913, 'whom': 914, 'plus': 915, 'sounds': 916, 'mark': 917, 'directing': 918, 'keeps': 919, 'development': 920, 'features': 921, 'mess': 922, 'air': 923, 'quickly': 924, 'creepy': 925, 'box': 926, 'towards': 927, 'girlfriend': 928, 'perfectly': 929, 'worked': 930, 'cheesy': 931, 'unique': 932, 'setting': 933, 'effect': 934, 'plenty': 935, 'total': 936, 'hands': 937, 'bill': 938, 'result': 939, 'previous': 940, 'fire': 941, 'brings': 942, 'personal': 943, 'incredibly': 944, 'rate': 945, 'business': 946, 'joke': 947, 'doctor': 948, 'casting': 949, 'return': 950, 'apart': 951, 'christmas': 952, 'leading': 953, 'e': 954, 'admit': 955, 'powerful': 956, 'appear': 957, 'cop': 958, 'background': 959, 'boys': 960, 'ben': 961, 'present': 962, 'meant': 963, 'era': 964, 'telling': 965, 'battle': 966, 'hardly': 967, 'break': 968, 'create': 969, 'masterpiece': 970, 'potential': 971, 'secret': 972, 'pay': 973, 'political': 974, 'gay': 975, 'fighting': 976, 'dumb': 977, 'fails': 978, 'twist': 979, 'various': 980, 'co': 981, 'portrayed': 982, 'inside': 983, 'villain': 984, 'western': 985, 'nudity': 986, 'outside': 987, 'reasons': 988, 'william': 989, 'ideas': 990, 'front': 991, 'match': 992, 'missing': 993, 'deserves': 994, 'married': 995, 'expecting': 996, 'rich': 997, 'fairly': 998, 'talented': 999, 'list': 1000, 'success': 1001, 'unlike': 1002, 'scott': 1003, 'attempts': 1004, 'manages': 1005, 'remake': 1006, 'odd': 1007, 'social': 1008, 'cute': 1009, 'recently': 1010, 'flat': 1011, 'spoilers': 1012, 'copy': 1013, 'c': 1014, 'further': 1015, 'wrote': 1016, 'sadly': 1017, 'agree': 1018, 'sweet': 1019, 'cold': 1020, 'crew': 1021, 'plain': 1022, 'office': 1023, 'mary': 1024, 'filmmakers': 1025, 'following': 1026, 'missed': 1027, 'public': 1028, 'mentioned': 1029, 'incredible': 1030, 'gun': 1031, 'pure': 1032, 'wasted': 1033, 'brothers': 1034, 'ended': 1035, 'large': 1036, 'produced': 1037, 'caught': 1038, 'revenge': 1039, 'members': 1040, 'pace': 1041, 'la': 1042, 'filled': 1043, 'popular': 1044, 'party': 1045, 'waiting': 1046, 'science': 1047, 'water': 1048, 'cat': 1049, 'decides': 1050, 'cartoon': 1051, 'hold': 1052, 'considering': 1053, 'spirit': 1054, 'tension': 1055, 'created': 1056, 'slightly': 1057, 'uses': 1058, 'fear': 1059, 'convincing': 1060, 'compared': 1061, 'familiar': 1062, 'suddenly': 1063, 'neither': 1064, 'escape': 1065, 'spent': 1066, 'sees': 1067, 'island': 1068, 'cause': 1069, 'intelligent': 1070, 'clever': 1071, 'state': 1072, 'entirely': 1073, 'dancing': 1074, 'language': 1075, 'bored': 1076, 'moves': 1077, 'credit': 1078, 'choice': 1079, 'kills': 1080, 'band': 1081, 'laughing': 1082, 'century': 1083, 'italian': 1084, 'cover': 1085, 'value': 1086, 'violent': 1087, 'visual': 1088, 'successful': 1089, 'tony': 1090, 'speak': 1091, 'trouble': 1092, 'ultimately': 1093, 'basic': 1094, 'concept': 1095, 'singing': 1096, 'store': 1097, 'positive': 1098, 'studio': 1099, 'zombies': 1100, 'german': 1101, 'animated': 1102, 'biggest': 1103, 'company': 1104, 'exciting': 1105, 'force': 1106, 'runs': 1107, 'consider': 1108, 'died': 1109, 'effective': 1110, 'control': 1111, 'depth': 1112, 'recent': 1113, 'adult': 1114, 'walk': 1115, 'adventure': 1116, 'former': 1117, 'amusing': 1118, 'common': 1119, 'law': 1120, 'portrayal': 1121, 'spend': 1122, 'focus': 1123, 'appreciate': 1124, 'rated': 1125, 'pointless': 1126, 'books': 1127, 'hair': 1128, 'trash': 1129, 'solid': 1130, 'younger': 1131, 'planet': 1132, 'impressive': 1133, 'super': 1134, 'tone': 1135, 'mad': 1136, 'bizarre': 1137, 'respect': 1138, 'follows': 1139, 'college': 1140, 'amount': 1141, 'culture': 1142, 'van': 1143, 'impossible': 1144, 'smith': 1145, 'prison': 1146, 'trip': 1147, 'heavy': 1148, 'project': 1149, 'producers': 1150, 'dad': 1151, 'win': 1152, 'weren': 1153, 'slasher': 1154, 'makers': 1155, 'chemistry': 1156, 'recommended': 1157, 'conclusion': 1158, 'showed': 1159, 'fit': 1160, 'sick': 1161, 'situations': 1162, 'jim': 1163, 'starring': 1164, 'accent': 1165, 'disturbing': 1166, 'u': 1167, 'awesome': 1168, 'considered': 1169, 'ghost': 1170, 'changed': 1171, 'steve': 1172, 'failed': 1173, 'cult': 1174, 'post': 1175, 'somewhere': 1176, 'barely': 1177, 'decide': 1178, 'honest': 1179, 'leaving': 1180, 'questions': 1181, 'anti': 1182, 'shooting': 1183, 'tough': 1184, 'longer': 1185, 'audiences': 1186, 'fiction': 1187, 'west': 1188, 'brain': 1189, 'aside': 1190, 'fake': 1191, 'meaning': 1192, 'touch': 1193, 'south': 1194, 'thanks': 1195, 'images': 1196, 'charming': 1197, 'computer': 1198, 'magic': 1199, 'pathetic': 1200, 'ex': 1201, 'stewart': 1202, 'generally': 1203, 'stick': 1204, 'literally': 1205, 'values': 1206, 'likes': 1207, 'surprisingly': 1208, 'alive': 1209, 'involving': 1210, 'natural': 1211, 'camp': 1212, 'immediately': 1213, 'yeah': 1214, 'military': 1215, 'harry': 1216, 'grade': 1217, 'detective': 1218, 'shoot': 1219, 'garbage': 1220, 'london': 1221, 'week': 1222, 'bought': 1223, 'frank': 1224, 'normal': 1225, 'sam': 1226, 'aspect': 1227, 'fair': 1228, 'honestly': 1229, 'pictures': 1230, 'ability': 1231, 'utterly': 1232, 'adaptation': 1233, 'master': 1234, 'army': 1235, 'genius': 1236, 'pick': 1237, 'nobody': 1238, 'sitting': 1239, 'appearance': 1240, 'explain': 1241, 'glad': 1242, 'motion': 1243, 'attack': 1244, 'standard': 1245, 'drive': 1246, 'appeal': 1247, 'catch': 1248, 'personally': 1249, 'knowing': 1250, 'sexy': 1251, 'nowhere': 1252, 'channel': 1253, 'rare': 1254, 'edge': 1255, 'humour': 1256, 'added': 1257, 'thank': 1258, 'comedies': 1259, 'walking': 1260, 'charlie': 1261, 'journey': 1262, 'silent': 1263, 'purpose': 1264, 'remains': 1265, 'chase': 1266, 'loud': 1267, 'naked': 1268, 'twists': 1269, 'taste': 1270, 'thinks': 1271, 'producer': 1272, 'beautifully': 1273, 'dreams': 1274, 'road': 1275, 'touching': 1276, 'date': 1277, 'unbelievable': 1278, 'subtle': 1279, 'terrific': 1280, 'terms': 1281, 'wow': 1282, 'equally': 1283, 'mood': 1284, 'club': 1285, 'wild': 1286, 'door': 1287, 'blue': 1288, 'drawn': 1289, 'kelly': 1290, 'batman': 1291, 'g': 1292, 'complex': 1293, 'mistake': 1294, 'key': 1295, 'fully': 1296, 'managed': 1297, 'narrative': 1298, 'pieces': 1299, 'lovely': 1300, 'laughable': 1301, 'bottom': 1302, 'government': 1303, 'themes': 1304, 'likely': 1305, 'plan': 1306, 'climax': 1307, 'soldiers': 1308, 'gang': 1309, 'chris': 1310, 'vampire': 1311, 'f': 1312, 'disappointing': 1313, 'pass': 1314, 'soul': 1315, 'award': 1316, 'issues': 1317, 'excuse': 1318, 'noir': 1319, 'outstanding': 1320, 'justice': 1321, 'painful': 1322, 'marriage': 1323, 'surely': 1324, 'boss': 1325, 'constantly': 1326, 'innocent': 1327, 'victim': 1328, 'thus': 1329, 'costumes': 1330, 'presented': 1331, 'christopher': 1332, 'ride': 1333, 'slowly': 1334, 'cinematic': 1335, 'finish': 1336, 'central': 1337, 'hey': 1338, 'train': 1339, 'contains': 1340, 'everybody': 1341, 'presence': 1342, 'besides': 1343, 'places': 1344, 'manner': 1345, 'details': 1346, 'spoiler': 1347, 'thrown': 1348, 'r': 1349, 'historical': 1350, 'charles': 1351, 'animals': 1352, 'photography': 1353, 'stunning': 1354, 'charm': 1355, 'scenery': 1356, 'hoping': 1357, 'henry': 1358, 'indian': 1359, 'smart': 1360, 'jones': 1361, 'church': 1362, 'speaking': 1363, 'mysterious': 1364, 'impression': 1365, 'paris': 1366, 'allen': 1367, 'loves': 1368, 'expectations': 1369, 'green': 1370, 'developed': 1371, 'disappointment': 1372, 'drug': 1373, 'numbers': 1374, 'color': 1375, 'exception': 1376, 'throw': 1377, 'ahead': 1378, 'minor': 1379, 'double': 1380, 'woods': 1381, 'track': 1382, 'cry': 1383, 'festival': 1384, 'critics': 1385, 'boyfriend': 1386, 'stands': 1387, 'aspects': 1388, 'lover': 1389, 'million': 1390, 'suppose': 1391, 'hotel': 1392, 'emotion': 1393, 'bother': 1394, 'opera': 1395, 'feelings': 1396, 'sent': 1397, 'brief': 1398, 'building': 1399, 'acts': 1400, 'opportunity': 1401, 'serial': 1402, 'mainly': 1403, 'bruce': 1404, 'filming': 1405, 'support': 1406, 'student': 1407, 'forever': 1408, 'element': 1409, 'names': 1410, 'held': 1411, 'page': 1412, 'fascinating': 1413, 'emotions': 1414, 'intended': 1415, 'available': 1416, 'k': 1417, 'twice': 1418, 'dies': 1419, 'j': 1420, 'changes': 1421, 'bar': 1422, 'born': 1423, 'compelling': 1424, 'shock': 1425, 'bed': 1426, 'zero': 1427, 'six': 1428, 'happening': 1429, 'likable': 1430, 'falling': 1431, 'lived': 1432, 'hurt': 1433, 'puts': 1434, 'tired': 1435, 'jerry': 1436, 'giant': 1437, 'spot': 1438, 'image': 1439, 'pain': 1440, 'thats': 1441, 'st': 1442, 'offer': 1443, 'confused': 1444, 'trailer': 1445, 'suggest': 1446, 'victims': 1447, 'ray': 1448, 'adults': 1449, 'include': 1450, 'fresh': 1451, 'difference': 1452, 'al': 1453, 'billy': 1454, 'summer': 1455, 'impact': 1456, 'step': 1457, 'followed': 1458, 'event': 1459, 'alien': 1460, 'christian': 1461, 'arthur': 1462, 'fellow': 1463, 'hasn': 1464, 'approach': 1465, 'sub': 1466, 'appeared': 1467, 'park': 1468, 'system': 1469, 'putting': 1470, 'gorgeous': 1471, 'actresses': 1472, 'mix': 1473, 'laughed': 1474, 'notice': 1475, 'share': 1476, 'murders': 1477, 'martin': 1478, 'confusing': 1479, 'mediocre': 1480, 'mom': 1481, 'content': 1482, 'direct': 1483, 'moral': 1484, 'porn': 1485, 'lacks': 1486, 'holes': 1487, 'race': 1488, 'supposedly': 1489, 'rape': 1490, 'americans': 1491, 'wall': 1492, 'flaws': 1493, 'land': 1494, 'worthy': 1495, 'tragedy': 1496, 'creative': 1497, 'latter': 1498, 'l': 1499, 'students': 1500, 'relationships': 1501, 'lighting': 1502, 'agent': 1503, 'clich': 1504, 'gem': 1505, 'helps': 1506, 'thin': 1507, 'answer': 1508, 'random': 1509, 'merely': 1510, 'wondering': 1511, 'proves': 1512, 'ii': 1513, 'funniest': 1514, 'paid': 1515, 'seven': 1516, 'wise': 1517, 'finding': 1518, 'flying': 1519, 'hospital': 1520, 'damn': 1521, 'flicks': 1522, 'stone': 1523, 'delivers': 1524, 'imagination': 1525, 'childhood': 1526, 'davis': 1527, 'forgotten': 1528, 'x': 1529, 'ugly': 1530, 'standards': 1531, 'beat': 1532, 'ground': 1533, 'attractive': 1534, 'brian': 1535, 'count': 1536, 'impressed': 1537, 'absolute': 1538, 'negative': 1539, 'extreme': 1540, 'alan': 1541, 'jean': 1542, 'ms': 1543, 'thoroughly': 1544, 'seconds': 1545, 'provides': 1546, 'stuck': 1547, 'lord': 1548, 'becoming': 1549, 'seemingly': 1550, 'tragic': 1551, 'winning': 1552, 'reminded': 1553, 'inspired': 1554, 'folks': 1555, 'ship': 1556, 'addition': 1557, 'queen': 1558, 'soldier': 1559, 'offers': 1560, 'affair': 1561, 'fell': 1562, 'faces': 1563, 'lose': 1564, 'industry': 1565, 'williams': 1566, 'turning': 1567, 'intense': 1568, 'afraid': 1569, 'detail': 1570, 'collection': 1571, 'design': 1572, 'pull': 1573, 'hidden': 1574, 'nasty': 1575, 'animal': 1576, 'fashion': 1577, 'bond': 1578, 'teen': 1579, 'games': 1580, 'apartment': 1581, 'quick': 1582, 'artistic': 1583, 'shocking': 1584, 'creature': 1585, 'castle': 1586, 'jackson': 1587, 'shouldn': 1588, 'personality': 1589, 'roll': 1590, 'lets': 1591, 'adds': 1592, 'rented': 1593, 'location': 1594, 'area': 1595, 'chinese': 1596, 'scientist': 1597, 'length': 1598, 'ready': 1599, 'dirty': 1600, 'states': 1601, 'angry': 1602, 'fox': 1603, 'information': 1604, 'professional': 1605, 'uncle': 1606, 'therefore': 1607, 'filmmaker': 1608, 'anymore': 1609, 'food': 1610, 'wars': 1611, 'mouth': 1612, 'news': 1613, 'listen': 1614, 'artist': 1615, 'jason': 1616, 'wooden': 1617, 'led': 1618, 'picked': 1619, 'describe': 1620, 'danny': 1621, 'favourite': 1622, 'deliver': 1623, 'clothes': 1624, 'onto': 1625, 'asks': 1626, 'grace': 1627, 'martial': 1628, 'struggle': 1629, 'intelligence': 1630, 'member': 1631, 'carry': 1632, 'captain': 1633, 'wearing': 1634, 'redeeming': 1635, 'stephen': 1636, 'criminal': 1637, 'ed': 1638, 'cross': 1639, 'teenage': 1640, 'allowed': 1641, 'sleep': 1642, 'compare': 1643, 'drugs': 1644, 'necessary': 1645, 'desperate': 1646, 'helped': 1647, 'machine': 1648, 'tears': 1649, 'wonderfully': 1650, 'cgi': 1651, 'rip': 1652, 'plane': 1653, 'moved': 1654, 'sight': 1655, 'witch': 1656, 'trust': 1657, 'phone': 1658, 'deeply': 1659, 'sky': 1660, 'station': 1661, 'disaster': 1662, 'heaven': 1663, 'whatsoever': 1664, 'willing': 1665, 'includes': 1666, 'treat': 1667, 'mid': 1668, 'began': 1669, 'theatre': 1670, 'humans': 1671, 'andy': 1672, 'nightmare': 1673, 'heroes': 1674, 'epic': 1675, 'build': 1676, 'accident': 1677, 'commentary': 1678, 'energy': 1679, 'pop': 1680, 'realized': 1681, 'powers': 1682, 'pre': 1683, 'suicide': 1684, 'loving': 1685, 'extra': 1686, 'comedic': 1687, 'rarely': 1688, 'taylor': 1689, 'douglas': 1690, 'dying': 1691, 'independent': 1692, 'teacher': 1693, 'devil': 1694, 'introduced': 1695, 'engaging': 1696, 'superior': 1697, 'johnny': 1698, 'actions': 1699, 'suit': 1700, 'ring': 1701, 'warning': 1702, 'anybody': 1703, 'unusual': 1704, 'religious': 1705, 'arts': 1706, 'eddie': 1707, 'mental': 1708, 'apparent': 1709, 'tim': 1710, 'pleasure': 1711, 'remarkable': 1712, 'superman': 1713, 'p': 1714, 'allow': 1715, 'unnecessary': 1716, 'physical': 1717, 'returns': 1718, 'watchable': 1719, 'continue': 1720, 'grand': 1721, 'absurd': 1722, 'memory': 1723, 'keaton': 1724, 'technical': 1725, 'provide': 1726, 'wedding': 1727, 'england': 1728, 'vision': 1729, 'normally': 1730, 'scared': 1731, 'desire': 1732, 'anywhere': 1733, 'skip': 1734, 'media': 1735, 'ford': 1736, 'brutal': 1737, 'limited': 1738, 'adam': 1739, 'fred': 1740, 'finished': 1741, 'surprising': 1742, 'jr': 1743, 'bloody': 1744, 'joan': 1745, 'russian': 1746, 'process': 1747, 'intriguing': 1748, 'kate': 1749, 'suspect': 1750, 'cops': 1751, 'pilot': 1752, 'exist': 1753, 'torture': 1754, 'jump': 1755, 'accept': 1756, 'legend': 1757, 'player': 1758, 'holds': 1759, 'prince': 1760, 'jeff': 1761, 'twenty': 1762, 'nicely': 1763, 'somebody': 1764, 'hitler': 1765, 'paced': 1766, 'horse': 1767, 'search': 1768, 'wanting': 1769, 'growing': 1770, 'academy': 1771, 'reminds': 1772, 'faith': 1773, 'soft': 1774, 'shakespeare': 1775, 'according': 1776, 'pacing': 1777, 'hated': 1778, 'passion': 1779, 'moon': 1780, 'clichs': 1781, 'gold': 1782, 'cage': 1783, 'price': 1784, 'asked': 1785, 'ladies': 1786, 'dick': 1787, 'ill': 1788, 'bits': 1789, 'sat': 1790, 'dressed': 1791, 'joy': 1792, 'nick': 1793, 'drunk': 1794, 'japan': 1795, 'dangerous': 1796, 'constant': 1797, 'deserved': 1798, 'lovers': 1799, 'lies': 1800, 'tarzan': 1801, 'blame': 1802, 'n': 1803, 'field': 1804, 'explanation': 1805, 'originally': 1806, 'ball': 1807, 'community': 1808, 'heroine': 1809, 'smile': 1810, 'heads': 1811, 'higher': 1812, 'river': 1813, 'instance': 1814, 'kevin': 1815, 'freddy': 1816, 'ann': 1817, 'candy': 1818, 'jesus': 1819, 'issue': 1820, 'mixed': 1821, 'deserve': 1822, 'met': 1823, 'nonsense': 1824, 'capture': 1825, 'players': 1826, 'unknown': 1827, 'gotten': 1828, 'toward': 1829, 'fights': 1830, 'fail': 1831, 'plots': 1832, 'explained': 1833, 'soap': 1834, 'radio': 1835, 'knowledge': 1836, 'accurate': 1837, 'creating': 1838, 'record': 1839, 'quiet': 1840, 'guns': 1841, 'friendship': 1842, 'starting': 1843, 'european': 1844, 'vhs': 1845, 'humanity': 1846, 'ice': 1847, 'whilst': 1848, 'mike': 1849, 'floor': 1850, 'fu': 1851, 'spanish': 1852, 'wide': 1853, 'sucks': 1854, 'hadn': 1855, 'officer': 1856, 'cable': 1857, 'judge': 1858, 'memories': 1859, 'cars': 1860, 'realism': 1861, 'broken': 1862, 'finest': 1863, 'loose': 1864, 'villains': 1865, 'eating': 1866, 'lynch': 1867, 'lacking': 1868, 'partner': 1869, 'featuring': 1870, 'monsters': 1871, 'aware': 1872, 'gene': 1873, 'saving': 1874, 'saved': 1875, 'responsible': 1876, 'keeping': 1877, 'lewis': 1878, 'santa': 1879, 'understanding': 1880, 'youth': 1881, 'mine': 1882, 'treated': 1883, 'empty': 1884, 'fat': 1885, 'rubbish': 1886, 'kinda': 1887, 'eat': 1888, 'below': 1889, 'bland': 1890, 'results': 1891, 'cuts': 1892, 'jimmy': 1893, 'wind': 1894, 'pulled': 1895, 'sign': 1896, 'terribly': 1897, 'morgan': 1898, 'author': 1899, 'singer': 1900, 'delightful': 1901, 'bright': 1902, 'hopes': 1903, 'conflict': 1904, 'vs': 1905, 'witty': 1906, 'hits': 1907, 'noticed': 1908, 'washington': 1909, 'included': 1910, 'manage': 1911, 'brown': 1912, 'forces': 1913, 'months': 1914, 'werewolf': 1915, 'simon': 1916, 'wood': 1917, 'loss': 1918, 'screaming': 1919, 'gary': 1920, 'sing': 1921, 'private': 1922, 'kong': 1923, 'fate': 1924, 'whenever': 1925, 'driving': 1926, 'blonde': 1927, 'numerous': 1928, 'streets': 1929, 'pretentious': 1930, 'concerned': 1931, 'talents': 1932, 'ordinary': 1933, 'scream': 1934, 'bigger': 1935, 'dealing': 1936, 'dated': 1937, 'skills': 1938, 'naturally': 1939, 'discovered': 1940, 'finale': 1941, 'reviewers': 1942, 'ass': 1943, 'v': 1944, 'eric': 1945, 'unfunny': 1946, 'psychological': 1947, 'perspective': 1948, 'discover': 1949, 'international': 1950, 'regular': 1951, 'ups': 1952, 'opposite': 1953, 'morning': 1954, 'bob': 1955, 'prove': 1956, 'kick': 1957, 'bank': 1958, 'sea': 1959, 'portray': 1960, 'albert': 1961, 'loses': 1962, 'shop': 1963, 'anthony': 1964, 'locations': 1965, 'visit': 1966, 'owner': 1967, 'humorous': 1968, 'grant': 1969, 'dan': 1970, 'mission': 1971, 'blind': 1972, 'luck': 1973, 'curious': 1974, 'received': 1975, 'edited': 1976, 'gags': 1977, 'sean': 1978, 'satire': 1979, 'behavior': 1980, 'magnificent': 1981, 'captured': 1982, 'continues': 1983, 'survive': 1984, 'howard': 1985, 'miles': 1986, 'murdered': 1987, 'debut': 1988, 'calls': 1989, 'mrs': 1990, 'context': 1991, 'golden': 1992, 'core': 1993, 'existence': 1994, 'foot': 1995, 'opens': 1996, 'gangster': 1997, 'visually': 1998, 'shallow': 1999, 'advice': 2000, 'cameo': 2001, 'breaks': 2002, 'jennifer': 2003, 'connection': 2004, 'remembered': 2005, 'traditional': 2006, 'lucky': 2007, 'corny': 2008, 'buddy': 2009, 'deals': 2010, 'luke': 2011, 'current': 2012, 'essentially': 2013, 'window': 2014, 'revealed': 2015, 'lesson': 2016, 'identity': 2017, 'occasionally': 2018, 'frankly': 2019, 'genuine': 2020, 'trek': 2021, 'harris': 2022, 'decade': 2023, 'dimensional': 2024, 'stock': 2025, 'national': 2026, 'village': 2027, 'african': 2028, 'thomas': 2029, 'learned': 2030, 'anne': 2031, 'efforts': 2032, 'segment': 2033, 'versions': 2034, 'boat': 2035, 'h': 2036, 'program': 2037, 'marie': 2038, 'grown': 2039, 'visuals': 2040, 'allows': 2041, 'develop': 2042, 'formula': 2043, 'rob': 2044, 'anna': 2045, 'genuinely': 2046, 'references': 2047, 'sucked': 2048, 'welles': 2049, 'board': 2050, 'logic': 2051, 'study': 2052, 'grew': 2053, 'desert': 2054, 'lake': 2055, 'bear': 2056, 'unexpected': 2057, 'suffering': 2058, 'comparison': 2059, 'favor': 2060, 'overly': 2061, 'reaction': 2062, 'proved': 2063, 'meanwhile': 2064, 'speed': 2065, 'ages': 2066, 'president': 2067, 'standing': 2068, 'spectacular': 2069, 'robin': 2070, 'psycho': 2071, 'sudden': 2072, 'brilliantly': 2073, 'awkward': 2074, 'leader': 2075, 'ultimate': 2076, 'steal': 2077, 'flesh': 2078, 'parody': 2079, 'reach': 2080, 'failure': 2081, 'unable': 2082, 'types': 2083, 'sheer': 2084, 'vampires': 2085, 'evening': 2086, 'killers': 2087, 'frame': 2088, 'passed': 2089, 'travel': 2090, 'stereotypes': 2091, 'sake': 2092, 'technology': 2093, 'awards': 2094, 'strength': 2095, 'creates': 2096, 'gordon': 2097, 'sinatra': 2098, 'drew': 2099, 'bet': 2100, 'site': 2101, 'rose': 2102, 'round': 2103, 'sheriff': 2104, 'halloween': 2105, 'kung': 2106, 'hill': 2107, 'delivered': 2108, 'clean': 2109, 'broadway': 2110, 'barbara': 2111, 'parker': 2112, 'laughter': 2113, 'relief': 2114, 'crappy': 2115, 'freedom': 2116, 'insane': 2117, 'model': 2118, 'executed': 2119, 'emotionally': 2120, 'pair': 2121, 'steven': 2122, 'gonna': 2123, 'flashbacks': 2124, 'painfully': 2125, 'woody': 2126, 'dreadful': 2127, 'utter': 2128, 'discovers': 2129, 'fault': 2130, 'decision': 2131, 'reviewer': 2132, 'anime': 2133, 'hunter': 2134, 'driven': 2135, 'families': 2136, 'commercial': 2137, 'graphic': 2138, 'ran': 2139, 'code': 2140, 'majority': 2141, 'protagonist': 2142, 'native': 2143, 'religion': 2144, 'entertained': 2145, 'caused': 2146, 'seasons': 2147, 'meeting': 2148, 'foreign': 2149, 'built': 2150, 'individual': 2151, 'asian': 2152, 'gratuitous': 2153, 'attitude': 2154, 'daniel': 2155, 'bomb': 2156, 'underrated': 2157, 'vehicle': 2158, 'nevertheless': 2159, 'victor': 2160, 'feet': 2161, 'test': 2162, 'wayne': 2163, 'cash': 2164, 'generation': 2165, 'endless': 2166, 'rise': 2167, 'relate': 2168, 'obsessed': 2169, 'treatment': 2170, 'levels': 2171, 'tape': 2172, 'practically': 2173, 'wit': 2174, 'range': 2175, 'costs': 2176, 'pleasant': 2177, 'gory': 2178, 'france': 2179, 'classics': 2180, 'aged': 2181, 'ancient': 2182, 'described': 2183, 'victoria': 2184, 'chick': 2185, 'cinderella': 2186, 'winner': 2187, 'seat': 2188, 'chosen': 2189, 'product': 2190, 'center': 2191, 'sell': 2192, 'fly': 2193, 'jackie': 2194, 'joseph': 2195, 'exploitation': 2196, 'rescue': 2197, 'fill': 2198, 'irritating': 2199, 'hearing': 2200, 'rules': 2201, 'breaking': 2202, 'send': 2203, 'combination': 2204, 'angel': 2205, 'alex': 2206, 'excited': 2207, 'dry': 2208, 'stopped': 2209, 'chief': 2210, 'uk': 2211, 'pity': 2212, 'fame': 2213, 'portrays': 2214, 'proper': 2215, 'theaters': 2216, 'assume': 2217, 'sympathetic': 2218, 'haunting': 2219, 'produce': 2220, 'theatrical': 2221, 'cares': 2222, 'asking': 2223, 'capable': 2224, 'believes': 2225, 'roy': 2226, 'w': 2227, 'sports': 2228, 'handsome': 2229, 'largely': 2230, 'safe': 2231, 'contrived': 2232, 'portraying': 2233, 'ruined': 2234, 'warm': 2235, 'germany': 2236, 'nancy': 2237, 'choose': 2238, 'moore': 2239, 'embarrassing': 2240, 'paper': 2241, 'canadian': 2242, 'unrealistic': 2243, 'crowd': 2244, 'learns': 2245, 'marry': 2246, 'recall': 2247, 'depressing': 2248, 'par': 2249, 'extras': 2250, 'priest': 2251, 'cant': 2252, 'louis': 2253, 'dubbed': 2254, 'appealing': 2255, 'matt': 2256, 'sequels': 2257, 'hearted': 2258, 'matters': 2259, 'facts': 2260, 'grow': 2261, 'involves': 2262, 'clue': 2263, 'ryan': 2264, 'contrast': 2265, 'correct': 2266, 'patrick': 2267, 'evidence': 2268, 'costume': 2269, 'vote': 2270, 'nominated': 2271, 'anderson': 2272, 'hunt': 2273, 'research': 2274, 'strongly': 2275, 'mask': 2276, 'claim': 2277, 'teenager': 2278, 'heck': 2279, 'walter': 2280, 'hall': 2281, 'disgusting': 2282, 'appropriate': 2283, 'football': 2284, 'losing': 2285, 'excitement': 2286, 'saturday': 2287, 'cost': 2288, 'lousy': 2289, 'talks': 2290, 'eight': 2291, 'oliver': 2292, 'substance': 2293, 'promise': 2294, 'destroy': 2295, 'thoughts': 2296, 'fool': 2297, 'scare': 2298, 'factor': 2299, 'com': 2300, 'circumstances': 2301, 'naive': 2302, 'market': 2303, 'training': 2304, 'voices': 2305, 'tedious': 2306, 'bodies': 2307, 'haunted': 2308, 'teenagers': 2309, 'universal': 2310, 'europe': 2311, 'robot': 2312, 'convinced': 2313, 'captures': 2314, 'trilogy': 2315, 'satisfying': 2316, 'bringing': 2317, 'united': 2318, 'amateurish': 2319, 'amateur': 2320, 'tend': 2321, 'hanging': 2322, 'fits': 2323, 'creatures': 2324, 'baseball': 2325, 'max': 2326, 'welcome': 2327, 'danger': 2328, 'hopefully': 2329, 'lower': 2330, 'spoil': 2331, 'horribly': 2332, 'rental': 2333, 'asleep': 2334, 'virtually': 2335, 'tiny': 2336, 'fairy': 2337, 'till': 2338, 'north': 2339, 'relatively': 2340, 'insult': 2341, 'reporter': 2342, 'mini': 2343, 'walks': 2344, 'murphy': 2345, 'powell': 2346, 'che': 2347, 'steals': 2348, 'continuity': 2349, 'skin': 2350, 'cowboy': 2351, 'covered': 2352, 'hat': 2353, 'africa': 2354, 'drag': 2355, 'offensive': 2356, 'category': 2357, 'unlikely': 2358, 'contemporary': 2359, 'influence': 2360, 'lawyer': 2361, 'fare': 2362, 'inner': 2363, 'semi': 2364, 'witness': 2365, 'handled': 2366, 'target': 2367, 'depicted': 2368, 'viewed': 2369, 'cutting': 2370, 'hide': 2371, 'scale': 2372, 'texas': 2373, 'hitchcock': 2374, 'unfortunate': 2375, 'initial': 2376, 'shocked': 2377, 'remain': 2378, 'service': 2379, 'holding': 2380, 'kim': 2381, 'believed': 2382, 'surreal': 2383, 'professor': 2384, 'politics': 2385, 'russell': 2386, 'provided': 2387, 'weekend': 2388, 'presents': 2389, 'movement': 2390, 'promising': 2391, 'section': 2392, 'qualities': 2393, 'sisters': 2394, 'pile': 2395, 'closer': 2396, 'angles': 2397, 'touches': 2398, 'refreshing': 2399, 'structure': 2400, 'australian': 2401, 'liners': 2402, 'source': 2403, 'sharp': 2404, 'peace': 2405, 'columbo': 2406, 'designed': 2407, 'drop': 2408, 'claims': 2409, 'cartoons': 2410, 'deaths': 2411, 'lesbian': 2412, 'display': 2413, 'makeup': 2414, 'forgettable': 2415, 'chan': 2416, 'spy': 2417, 'previously': 2418, 'surprises': 2419, 'adventures': 2420, 'edward': 2421, 'degree': 2422, 'clark': 2423, 'faced': 2424, 'plans': 2425, 'caine': 2426, 'repeated': 2427, 'focused': 2428, 'ruin': 2429, 'enemy': 2430, 'roger': 2431, 'propaganda': 2432, 'weeks': 2433, 'accents': 2434, 'serves': 2435, 'treasure': 2436, 'blow': 2437, 'speaks': 2438, 'chose': 2439, 'related': 2440, 'supernatural': 2441, 'whoever': 2442, 'emma': 2443, 'highlight': 2444, 'mainstream': 2445, 'brave': 2446, 'prime': 2447, 'pacino': 2448, 'deadly': 2449, 'latest': 2450, 'rain': 2451, 'veteran': 2452, 'routine': 2453, 'granted': 2454, 'erotic': 2455, 'suffers': 2456, 'crash': 2457, 'wilson': 2458, 'harsh': 2459, 'dollars': 2460, 'experiences': 2461, 'speech': 2462, 'print': 2463, 'mistakes': 2464, 'invisible': 2465, 'accidentally': 2466, 'alice': 2467, 'sympathy': 2468, 'colors': 2469, 'notch': 2470, 'teens': 2471, 'aliens': 2472, 'twisted': 2473, 'realizes': 2474, 'dogs': 2475, 'mgm': 2476, 'uninteresting': 2477, 'friday': 2478, 'nude': 2479, 'security': 2480, 'guilty': 2481, 'draw': 2482, 'combined': 2483, 'ted': 2484, 'princess': 2485, 'struggling': 2486, 'terror': 2487, 'matrix': 2488, 'convince': 2489, 'path': 2490, 'dozen': 2491, 'universe': 2492, 'gritty': 2493, 'enter': 2494, 'mountain': 2495, 'birth': 2496, 'blah': 2497, 'appreciated': 2498, 'atrocious': 2499, 'gas': 2500, 'walked': 2501, 'committed': 2502, 'irish': 2503, 'technically': 2504, 'frightening': 2505, 'recognize': 2506, 'sword': 2507, 'driver': 2508, 'changing': 2509, 'aka': 2510, 'magical': 2511, 'sun': 2512, 'lugosi': 2513, 'sarah': 2514, 'directly': 2515, 'darkness': 2516, 'false': 2517, 'occasional': 2518, 'explains': 2519, 'friendly': 2520, 'department': 2521, 'pitt': 2522, 'court': 2523, 'prior': 2524, 'anger': 2525, 'suspenseful': 2526, 'abuse': 2527, 'narration': 2528, 'legendary': 2529, 'offered': 2530, 'experienced': 2531, 'performed': 2532, 'massive': 2533, 'paint': 2534, 'vietnam': 2535, 'theory': 2536, 'featured': 2537, 'surface': 2538, 'demons': 2539, 'variety': 2540, 'beach': 2541, 'johnson': 2542, 'hong': 2543, 'reputation': 2544, 'crying': 2545, 'subtitles': 2546, 'passing': 2547, 'figures': 2548, 'kinds': 2549, 'donald': 2550, 'forest': 2551, 'sullivan': 2552, 'titanic': 2553, 'everywhere': 2554, 'sorts': 2555, 'junk': 2556, 'un': 2557, 'multiple': 2558, 'statement': 2559, 'forth': 2560, 'required': 2561, 'sunday': 2562, 'network': 2563, 'nazi': 2564, 'bbc': 2565, 'bourne': 2566, 'melodrama': 2567, 'reveal': 2568, 'stolen': 2569, 'regret': 2570, 'california': 2571, 'metal': 2572, 'china': 2573, 'conversation': 2574, 'urban': 2575, 'exact': 2576, 'express': 2577, 'remotely': 2578, 'grave': 2579, 'rachel': 2580, 'execution': 2581, 'scares': 2582, 'trapped': 2583, 'jon': 2584, 'spends': 2585, 'lonely': 2586, 'belief': 2587, 'fictional': 2588, 'hired': 2589, 'freeman': 2590, 'downright': 2591, 'revolution': 2592, 'proud': 2593, 'dean': 2594, 'jungle': 2595, 'placed': 2596, 'julia': 2597, 'san': 2598, 'hoffman': 2599, 'rule': 2600, 'grim': 2601, 'insight': 2602, 'abandoned': 2603, 'blockbuster': 2604, 'worthwhile': 2605, 'figured': 2606, 'effectively': 2607, 'listening': 2608, 'bus': 2609, 'bothered': 2610, 'afternoon': 2611, 'crude': 2612, 'beast': 2613, 'susan': 2614, 'branagh': 2615, 'lisa': 2616, 'lifetime': 2617, 'account': 2618, 'nation': 2619, 'rough': 2620, 'wear': 2621, 'unconvincing': 2622, 'favorites': 2623, 'jobs': 2624, 'happiness': 2625, 'dragon': 2626, 'alright': 2627, 'mexico': 2628, 'rings': 2629, 'angle': 2630, 'minds': 2631, 'imagery': 2632, 'idiot': 2633, 'foster': 2634, 'cultural': 2635, 'blown': 2636, 'paying': 2637, 'ha': 2638, 'pulls': 2639, 'buying': 2640, 'rights': 2641, 'von': 2642, 'sir': 2643, 'larry': 2644, 'quest': 2645, 'scenario': 2646, 'reveals': 2647, 'rolling': 2648, 'delivery': 2649, 'starred': 2650, 'mexican': 2651, 'amazed': 2652, 'productions': 2653, 'dude': 2654, 'ron': 2655, 'demon': 2656, 'stays': 2657, 'handed': 2658, 'artists': 2659, 'status': 2660, 'focuses': 2661, 'views': 2662, 'shadow': 2663, 'tight': 2664, 'thankfully': 2665, 'mature': 2666, 'significant': 2667, 'christ': 2668, 'stayed': 2669, 'ned': 2670, 'dress': 2671, 'lights': 2672, 'teeth': 2673, 'interview': 2674, 'mere': 2675, 'table': 2676, 'studios': 2677, 'examples': 2678, 'device': 2679, 'indie': 2680, 'bore': 2681, 'cruel': 2682, 'con': 2683, 'hip': 2684, 'ghosts': 2685, 'sensitive': 2686, 'necessarily': 2687, 'gross': 2688, 'heavily': 2689, 'india': 2690, 'clichd': 2691, 'burns': 2692, 'skill': 2693, 'suffer': 2694, 'mst': 2695, 'sleeping': 2696, 'achieve': 2697, 'spite': 2698, 'campy': 2699, 'understood': 2700, 'murderer': 2701, 'bound': 2702, 'seek': 2703, 'format': 2704, 'position': 2705, 'sidney': 2706, 'initially': 2707, 'faithful': 2708, 'desperately': 2709, 'forgot': 2710, 'fabulous': 2711, 'beloved': 2712, 'destroyed': 2713, 'complicated': 2714, 'summary': 2715, 'closing': 2716, 'midnight': 2717, 'hardy': 2718, 'flight': 2719, 'decades': 2720, 'pregnant': 2721, 'deeper': 2722, 'warner': 2723, 'racist': 2724, 'renting': 2725, 'facial': 2726, 'wing': 2727, 'ignore': 2728, 'stereotypical': 2729, 'breath': 2730, 'slapstick': 2731, 'intellectual': 2732, 'ludicrous': 2733, 'flashback': 2734, 'fourth': 2735, 'calling': 2736, 'cell': 2737, 'raw': 2738, 'league': 2739, 'dennis': 2740, 'helping': 2741, 'answers': 2742, 'lincoln': 2743, 'drinking': 2744, 'disbelief': 2745, 'critical': 2746, 'elizabeth': 2747, 'learning': 2748, 'expert': 2749, 'suck': 2750, 'arms': 2751, 'description': 2752, 'sounded': 2753, 'environment': 2754, 'inept': 2755, 'buck': 2756, 'prefer': 2757, 'reminiscent': 2758, 'encounter': 2759, 'tree': 2760, 'musicals': 2761, 'brad': 2762, 'cabin': 2763, 'maria': 2764, 'julie': 2765, 'quirky': 2766, 'truck': 2767, 'task': 2768, 'settings': 2769, 'regarding': 2770, 'criminals': 2771, 'greater': 2772, 'daughters': 2773, 'underground': 2774, 'amazingly': 2775, 'mildly': 2776, 'ain': 2777, 'sandler': 2778, 'screening': 2779, 'leslie': 2780, 'funnier': 2781, 'criticism': 2782, 'honor': 2783, 'warned': 2784, 'storytelling': 2785, 'wave': 2786, 'punch': 2787, 'extraordinary': 2788, 'base': 2789, 'throwing': 2790, 'halfway': 2791, 'aunt': 2792, 'turkey': 2793, 'claire': 2794, 'michelle': 2795, 'praise': 2796, 'jail': 2797, 'notorious': 2798, 'depiction': 2799, 'entertain': 2800, 'choices': 2801, 'originality': 2802, 'prepared': 2803, 'comical': 2804, 'extent': 2805, 'convey': 2806, 'titles': 2807, 'kiss': 2808, 'expression': 2809, 'trick': 2810, 'spoof': 2811, 'east': 2812, 'experiment': 2813, 'touched': 2814, 'rogers': 2815, 'raised': 2816, 'lane': 2817, 'jessica': 2818, 'brooks': 2819, 'toy': 2820, 'chilling': 2821, 'bollywood': 2822, 'graphics': 2823, 'miller': 2824, 'timing': 2825, 'inspiration': 2826, 'dollar': 2827, 'purely': 2828, 'picks': 2829, 'headed': 2830, 'basis': 2831, 'via': 2832, 'spoken': 2833, 'mirror': 2834, 'shut': 2835, 'introduction': 2836, 'breathtaking': 2837, 'novels': 2838, 'lazy': 2839, 'weapons': 2840, 'stanley': 2841, 'charge': 2842, 'bat': 2843, 'notable': 2844, 'mouse': 2845, 'succeeds': 2846, 'properly': 2847, 'term': 2848, 'nowadays': 2849, 'handle': 2850, 'lie': 2851, 'locked': 2852, 'everyday': 2853, 'stomach': 2854, 'throws': 2855, 'join': 2856, 'crafted': 2857, 'maker': 2858, 'serve': 2859, 'blair': 2860, 'guard': 2861, 'strangely': 2862, 'burt': 2863, 'reference': 2864, 'caring': 2865, 'authentic': 2866, 'causes': 2867, 'sitcom': 2868, 'wears': 2869, 'ratings': 2870, 'cooper': 2871, 'regard': 2872, 'provoking': 2873, 'laura': 2874, 'adding': 2875, 'pet': 2876, 'lion': 2877, 'fallen': 2878, 'challenge': 2879, 'workers': 2880, 'carrying': 2881, 'lesser': 2882, 'protect': 2883, 'tales': 2884, 'tracy': 2885, 'southern': 2886, 'established': 2887, 'nonetheless': 2888, 'determined': 2889, 'jewish': 2890, 'daily': 2891, 'amongst': 2892, 'bitter': 2893, 'obnoxious': 2894, 'usa': 2895, 'sleazy': 2896, 'wins': 2897, 'westerns': 2898, 'raise': 2899, 'carries': 2900, 'confusion': 2901, 'attempting': 2902, 'alas': 2903, 'cases': 2904, 'embarrassed': 2905, 'remote': 2906, 'carried': 2907, 'gruesome': 2908, 'escapes': 2909, 'reed': 2910, 'sinister': 2911, 'holmes': 2912, 'bettie': 2913, 'inspector': 2914, 'navy': 2915, 'obsession': 2916, 'madness': 2917, 'risk': 2918, 'mass': 2919, 'replaced': 2920, 'arrives': 2921, 'sold': 2922, 'clips': 2923, 'tradition': 2924, 'ironic': 2925, 'hood': 2926, 'needless': 2927, 'hole': 2928, 'interpretation': 2929, 'essential': 2930, 'minded': 2931, 'enjoying': 2932, 'rival': 2933, 'philip': 2934, 'per': 2935, 'successfully': 2936, 'busy': 2937, 'nine': 2938, 'intentions': 2939, 'flow': 2940, 'seeking': 2941, 'exists': 2942, 'screenwriter': 2943, 'mansion': 2944, 'balance': 2945, 'stanwyck': 2946, 'carpenter': 2947, 'existent': 2948, 'retarded': 2949, 'angels': 2950, 'goofy': 2951, 'legs': 2952, 'marvelous': 2953, 'oddly': 2954, 'mentally': 2955, 'jumps': 2956, 'presentation': 2957, 'attacked': 2958, 'laid': 2959, 'lucy': 2960, 'jake': 2961, 'sutherland': 2962, 'horrific': 2963, 'comedian': 2964, 'shape': 2965, 'brando': 2966, 'vacation': 2967, 'shower': 2968, 'fortunately': 2969, 'manager': 2970, 'em': 2971, 'topic': 2972, 'cook': 2973, 'jay': 2974, 'cheese': 2975, 'upper': 2976, 'intensity': 2977, 'thief': 2978, 'patient': 2979, 'stylish': 2980, 'interviews': 2981, 'stupidity': 2982, 'text': 2983, 'served': 2984, 'grey': 2985, 'stops': 2986, 'wanna': 2987, 'attacks': 2988, 'remind': 2989, 'mob': 2990, 'thrilling': 2991, 'sin': 2992, 'ashamed': 2993, 'frequently': 2994, 'bridge': 2995, 'packed': 2996, 'delight': 2997, 'sides': 2998, 'tongue': 2999, 'chair': 3000, 'albeit': 3001, 'personalities': 3002, 'glass': 3003, 'wwii': 3004, 'fish': 3005, 'matthau': 3006, 'flawed': 3007, 'poignant': 3008, 'suspects': 3009, 'contain': 3010, 'seagal': 3011, 'sum': 3012, 'bo': 3013, 'opened': 3014, 'baker': 3015, 'hence': 3016, 'expressions': 3017, 'bette': 3018, 'pitch': 3019, 'stranger': 3020, 'widmark': 3021, 'riding': 3022, 'internet': 3023, 'struggles': 3024, 'drives': 3025, 'rochester': 3026, 'torn': 3027, 'dinner': 3028, 'mindless': 3029, 'franchise': 3030, 'spielberg': 3031, 'overcome': 3032, 'cynical': 3033, 'greatly': 3034, 'upset': 3035, 'adapted': 3036, 'refuses': 3037, 'revolves': 3038, 'credibility': 3039, 'elvis': 3040, 'innocence': 3041, 'tour': 3042, 'wishes': 3043, 'racism': 3044, 'dubbing': 3045, 'hills': 3046, 'storm': 3047, 'thousands': 3048, 'wealthy': 3049, 'warn': 3050, 'noble': 3051, 'credible': 3052, 'pool': 3053, 'corner': 3054, 'fbi': 3055, 'lessons': 3056, 'elvira': 3057, 'advantage': 3058, 'catholic': 3059, 'italy': 3060, 'tense': 3061, 'crisis': 3062, 'broke': 3063, 'trite': 3064, 'burton': 3065, 'pack': 3066, 'spin': 3067, 'bugs': 3068, 'helen': 3069, 'dentist': 3070, 'controversial': 3071, 'happily': 3072, 'nelson': 3073, 'arm': 3074, 'snow': 3075, 'streisand': 3076, 'pride': 3077, 'physically': 3078, 'carter': 3079, 'medical': 3080, 'contact': 3081, 'thrillers': 3082, 'guessing': 3083, 'andrews': 3084, 'trial': 3085, 'alike': 3086, 'countries': 3087, 'hundreds': 3088, 'derek': 3089, 'reunion': 3090, 'succeed': 3091, 'sexuality': 3092, 'bag': 3093, 'suffered': 3094, 'gripping': 3095, 'wasting': 3096, 'dislike': 3097, 'perform': 3098, 'card': 3099, 'performers': 3100, 'technique': 3101, 'enjoyment': 3102, 'chaplin': 3103, 'dancer': 3104, 'ourselves': 3105, 'hundred': 3106, 'flash': 3107, 'millions': 3108, 'neat': 3109, 'whereas': 3110, 'separate': 3111, 'tied': 3112, 'glimpse': 3113, 'uncomfortable': 3114, 'britain': 3115, 'sings': 3116, 'ensemble': 3117, 'sons': 3118, 'shines': 3119, 'month': 3120, 'courage': 3121, 'karloff': 3122, 'exceptional': 3123, 'shorts': 3124, 'assistant': 3125, 'hint': 3126, 'infamous': 3127, 'proof': 3128, 'drink': 3129, 'plastic': 3130, 'weapon': 3131, 'virgin': 3132, 'kurt': 3133, 'irony': 3134, 'holiday': 3135, 'atmospheric': 3136, 'searching': 3137, 'oscars': 3138, 'scripts': 3139, 'cube': 3140, 'andrew': 3141, 'curse': 3142, 'knife': 3143, 'cousin': 3144, 'connected': 3145, 'flynn': 3146, 'glory': 3147, 'ralph': 3148, 'lying': 3149, 'host': 3150, 'dear': 3151, 'pg': 3152, 'letting': 3153, 'nose': 3154, 'sentimental': 3155, 'plague': 3156, 'protagonists': 3157, 'cameos': 3158, 'aired': 3159, 'ad': 3160, 'steps': 3161, 'troubled': 3162, 'zone': 3163, 'entry': 3164, 'tune': 3165, 'thousand': 3166, 'quote': 3167, 'meaningful': 3168, 'suggests': 3169, 'horses': 3170, 'portrait': 3171, 'chasing': 3172, 'nd': 3173, 'massacre': 3174, 'vincent': 3175, 'idiotic': 3176, 'arnold': 3177, 'hamlet': 3178, 'lovable': 3179, 'stealing': 3180, 'accepted': 3181, 'noted': 3182, 'stretch': 3183, 'perfection': 3184, 'worlds': 3185, 'boll': 3186, 'colorful': 3187, 'consists': 3188, 'burning': 3189, 'hoped': 3190, 'hiding': 3191, 'fortune': 3192, 'split': 3193, 'unforgettable': 3194, 'develops': 3195, 'stan': 3196, 'strip': 3197, 'guts': 3198, 'gain': 3199, 'saves': 3200, 'annoyed': 3201, 'larger': 3202, 'hunting': 3203, 'basement': 3204, 'neighborhood': 3205, 'hang': 3206, 'attraction': 3207, 'equal': 3208, 'spots': 3209, 'redemption': 3210, 'miscast': 3211, 'condition': 3212, 'chases': 3213, 'chuck': 3214, 'concert': 3215, 'lucas': 3216, 'oil': 3217, 'belongs': 3218, 'terrifying': 3219, 'dialogs': 3220, 'catherine': 3221, 'destruction': 3222, 'repeat': 3223, 'worry': 3224, 'pro': 3225, 'dig': 3226, 'roberts': 3227, 'factory': 3228, 'shoots': 3229, 'pat': 3230, 'curtis': 3231, 'object': 3232, 'dorothy': 3233, 'guilt': 3234, 'glover': 3235, 'walken': 3236, 'thirty': 3237, 'boredom': 3238, 'eerie': 3239, 'appearing': 3240, 'denzel': 3241, 'neck': 3242, 'hudson': 3243, 'pie': 3244, 'homeless': 3245, 'dramas': 3246, 'concerns': 3247, 'closely': 3248, 'competent': 3249, 'ultra': 3250, 'flaw': 3251, 'scientists': 3252, 'bears': 3253, 'trade': 3254, 'segments': 3255, 'hanks': 3256, 'multi': 3257, 'civil': 3258, 'gag': 3259, 'eva': 3260, 'imaginative': 3261, 'wake': 3262, 'encounters': 3263, 'shark': 3264, 'library': 3265, 'expensive': 3266, 'knock': 3267, 'complaint': 3268, 'rush': 3269, 'stunts': 3270, 'achieved': 3271, 'virus': 3272, 'profound': 3273, 'elsewhere': 3274, 'loser': 3275, 'letter': 3276, 'hooked': 3277, 'crimes': 3278, 'checking': 3279, 'sends': 3280, 'silver': 3281, 'neighbor': 3282, 'canada': 3283, 'endearing': 3284, 'solve': 3285, 'lloyd': 3286, 'charisma': 3287, 'winter': 3288, 'bobby': 3289, 'fashioned': 3290, 'essence': 3291, 'ripped': 3292, 'rushed': 3293, 'rocks': 3294, 'appearances': 3295, 'tribute': 3296, 'tear': 3297, 'incoherent': 3298, 'eastwood': 3299, 'colour': 3300, 'dragged': 3301, 'beating': 3302, 'dare': 3303, 'carol': 3304, 'jeremy': 3305, 'secretary': 3306, 'goal': 3307, 'teach': 3308, 'tricks': 3309, 'weight': 3310, 'fest': 3311, 'hitting': 3312, 'health': 3313, 'huh': 3314, 'fitting': 3315, 'striking': 3316, 'spell': 3317, 'noise': 3318, 'dealt': 3319, 'slight': 3320, 'doc': 3321, 'birthday': 3322, 'believing': 3323, 'cusack': 3324, 'briefly': 3325, 'techniques': 3326, 'magazine': 3327, 'tea': 3328, 'scooby': 3329, 'gothic': 3330, 'thumbs': 3331, 'stunt': 3332, 'videos': 3333, 'attempted': 3334, 'countless': 3335, 'bride': 3336, 'painting': 3337, 'dawn': 3338, 'battles': 3339, 'bush': 3340, 'heston': 3341, 'sally': 3342, 'brand': 3343, 'kane': 3344, 'sexually': 3345, 'inspiring': 3346, 'charismatic': 3347, 'hearts': 3348, 'unintentionally': 3349, 'specific': 3350, 'pointed': 3351, 'strikes': 3352, 'covers': 3353, 'iii': 3354, 'ritter': 3355, 'mild': 3356, 'godfather': 3357, 'smoking': 3358, 'hype': 3359, 'importance': 3360, 'reactions': 3361, 'surrounding': 3362, 'bible': 3363, 'surrounded': 3364, 'admittedly': 3365, 'carefully': 3366, 'neil': 3367, 'barry': 3368, 'horrendous': 3369, 'jerk': 3370, 'grows': 3371, 'revelation': 3372, 'relevant': 3373, 'comics': 3374, 'homage': 3375, 'spending': 3376, 'stood': 3377, 'corrupt': 3378, 'fired': 3379, 'poverty': 3380, 'stronger': 3381, 'eyed': 3382, 'spike': 3383, 'walls': 3384, 'kicks': 3385, 'chances': 3386, 'guest': 3387, 'tons': 3388, 'shall': 3389, 'stated': 3390, 'lily': 3391, 'stiff': 3392, 'executive': 3393, 'row': 3394, 'cox': 3395, 'easier': 3396, 'duke': 3397, 'monkey': 3398, 'medium': 3399, 'represents': 3400, 'miike': 3401, 'le': 3402, 'killings': 3403, 'intention': 3404, 'enters': 3405, 'attached': 3406, 'ian': 3407, 'astaire': 3408, 'performing': 3409, 'increasingly': 3410, 'exercise': 3411, 'associated': 3412, 'strike': 3413, 'inevitable': 3414, 'projects': 3415, 'occurs': 3416, 'dropped': 3417, 'requires': 3418, 'cardboard': 3419, 'mafia': 3420, 'messages': 3421, 'disagree': 3422, 'gift': 3423, 'korean': 3424, 'university': 3425, 'forgive': 3426, 'carrey': 3427, 'cole': 3428, 'lab': 3429, 'resolution': 3430, 'dawson': 3431, 'silence': 3432, 'typically': 3433, 'acceptable': 3434, 'toilet': 3435, 'identify': 3436, 'jesse': 3437, 'drags': 3438, 'kubrick': 3439, 'contract': 3440, 'luckily': 3441, 'nights': 3442, 'reynolds': 3443, 'bakshi': 3444, 'worker': 3445, 'selling': 3446, 'fisher': 3447, 'investigation': 3448, 'thrills': 3449, 'shining': 3450, 'hire': 3451, 'brilliance': 3452, 'creation': 3453, 'sophisticated': 3454, 'vague': 3455, 'strictly': 3456, 'savage': 3457, 'gotta': 3458, 'depression': 3459, 'davies': 3460, 'nuclear': 3461, 'estate': 3462, 'heat': 3463, 'jamie': 3464, 'continued': 3465, 'useless': 3466, 'fifteen': 3467, 'breasts': 3468, 'instantly': 3469, 'struck': 3470, 'overlooked': 3471, 'cruise': 3472, 'smooth': 3473, 'disease': 3474, 'beings': 3475, 'insulting': 3476, 'joey': 3477, 'union': 3478, 'satan': 3479, 'rex': 3480, 'allowing': 3481, 'ego': 3482, 'brosnan': 3483, 'burn': 3484, 'commit': 3485, 'partly': 3486, 'wreck': 3487, 'handful': 3488, 'spirited': 3489, 'afterwards': 3490, 'presumably': 3491, 'press': 3492, 'kidnapped': 3493, 'importantly': 3494, 'evident': 3495, 'pleased': 3496, 'digital': 3497, 'sacrifice': 3498, 'pushed': 3499, 'persona': 3500, 'competition': 3501, 'meat': 3502, 'tremendous': 3503, 'creators': 3504, 'grandmother': 3505, 'norman': 3506, 'realise': 3507, 'worthless': 3508, 'wondered': 3509, 'talked': 3510, 'ambitious': 3511, 'arrested': 3512, 'threatening': 3513, 'fears': 3514, 'photographed': 3515, 'kudos': 3516, 'relative': 3517, 'menacing': 3518, 'buried': 3519, 'returning': 3520, 'superbly': 3521, 'ward': 3522, 'raped': 3523, 'aforementioned': 3524, 'individuals': 3525, 'australia': 3526, 'ho': 3527, 'boxing': 3528, 'conspiracy': 3529, 'doors': 3530, 'citizen': 3531, 'guide': 3532, 'nurse': 3533, 'size': 3534, 'jumping': 3535, 'diamond': 3536, 'frustrated': 3537, 'flawless': 3538, 'highlights': 3539, 'spiritual': 3540, 'wonders': 3541, 'twin': 3542, 'corpse': 3543, 'drivel': 3544, 'jet': 3545, 'appalling': 3546, 'listed': 3547, 'mitchell': 3548, 'regardless': 3549, 'shy': 3550, 'samurai': 3551, 'abc': 3552, 'curiosity': 3553, 'planning': 3554, 'characterization': 3555, 'rap': 3556, 'ticket': 3557, 'string': 3558, 'bullets': 3559, 'achievement': 3560, 'narrator': 3561, 'fatal': 3562, 'push': 3563, 'admire': 3564, 'empire': 3565, 'bucks': 3566, 'distant': 3567, 'trap': 3568, 'spring': 3569, 'lou': 3570, 'generous': 3571, 'spooky': 3572, 'cup': 3573, 'horrors': 3574, 'border': 3575, 'beaten': 3576, 'pleasantly': 3577, 'mann': 3578, 'miserably': 3579, 'outrageous': 3580, 'cagney': 3581, 'piano': 3582, 'accomplished': 3583, 'critic': 3584, 'accused': 3585, 'uninspired': 3586, 'goldberg': 3587, 'repetitive': 3588, 'notes': 3589, 'beer': 3590, 'spoiled': 3591, 'consequences': 3592, 'ironically': 3593, 'splendid': 3594, 'picking': 3595, 'prevent': 3596, 'perry': 3597, 'territory': 3598, 'mile': 3599, 'francisco': 3600, 'clues': 3601, 'butt': 3602, 'attracted': 3603, 'temple': 3604, 'cia': 3605, 'ken': 3606, 'slap': 3607, 'throat': 3608, 'motivation': 3609, 'indians': 3610, 'blows': 3611, 'revealing': 3612, 'response': 3613, 'logical': 3614, 'opposed': 3615, 'melodramatic': 3616, 'watches': 3617, 'morality': 3618, 'emily': 3619, 'dire': 3620, 'farce': 3621, 'slightest': 3622, 'mate': 3623, 'chain': 3624, 'blank': 3625, 'craig': 3626, 'alexander': 3627, 'souls': 3628, 'root': 3629, 'psychiatrist': 3630, 'falk': 3631, 'shortly': 3632, 'turner': 3633, 'ellen': 3634, 'modesty': 3635, 'blob': 3636, 'gandhi': 3637, 'lacked': 3638, 'directorial': 3639, 'doo': 3640, 'duo': 3641, 'cameron': 3642, 'pulling': 3643, 'hatred': 3644, 'ruth': 3645, 'cared': 3646, 'timeless': 3647, 'manhattan': 3648, 'subsequent': 3649, 'liberal': 3650, 'los': 3651, 'precious': 3652, 'suits': 3653, 'installment': 3654, 'subplot': 3655, 'documentaries': 3656, 'jealous': 3657, 'tall': 3658, 'felix': 3659, 'fay': 3660, 'laurel': 3661, 'shoes': 3662, 'gray': 3663, 'wes': 3664, 'convoluted': 3665, 'wells': 3666, 'editor': 3667, 'intrigued': 3668, 'poster': 3669, 'marks': 3670, 'sole': 3671, 'overdone': 3672, 'forbidden': 3673, 'ignored': 3674, 'dracula': 3675, 'aimed': 3676, 'fx': 3677, 'exaggerated': 3678, 'wolf': 3679, 'titled': 3680, 'warrior': 3681, 'remaining': 3682, 'conceived': 3683, 'futuristic': 3684, 'psychotic': 3685, 'progress': 3686, 'repeatedly': 3687, 'mel': 3688, 'restaurant': 3689, 'elderly': 3690, 'notably': 3691, 'ah': 3692, 'tunes': 3693, 'fancy': 3694, 'parent': 3695, 'failing': 3696, 'bleak': 3697, 'explicit': 3698, 'disc': 3699, 'drunken': 3700, 'obscure': 3701, 'captivating': 3702, 'smoke': 3703, 'reasonably': 3704, 'scientific': 3705, 'bug': 3706, 'superhero': 3707, 'minimal': 3708, 'paulie': 3709, 'idiots': 3710, 'distance': 3711, 'dignity': 3712, 'discussion': 3713, 'argument': 3714, 'outcome': 3715, 'draws': 3716, 'kitchen': 3717, 'providing': 3718, 'gradually': 3719, 'loosely': 3720, 'explore': 3721, 'verhoeven': 3722, 'rid': 3723, 'pushing': 3724, 'scripted': 3725, 'reduced': 3726, 'misses': 3727, 'shirt': 3728, 'soviet': 3729, 'wicked': 3730, 'elaborate': 3731, 'timothy': 3732, 'dont': 3733, 'giallo': 3734, 'photographer': 3735, 'glenn': 3736, 'craven': 3737, 'warren': 3738, 'worried': 3739, 'connect': 3740, 'kenneth': 3741, 'sunshine': 3742, 'walker': 3743, 'returned': 3744, 'cried': 3745, 'childish': 3746, 'translation': 3747, 'hysterical': 3748, 'reasonable': 3749, 'screams': 3750, 'intent': 3751, 'sloppy': 3752, 'sticks': 3753, 'slave': 3754, 'eve': 3755, 'wannabe': 3756, 'freak': 3757, 'dave': 3758, 'definite': 3759, 'romero': 3760, 'exposed': 3761, 'darker': 3762, 'shadows': 3763, 'stiller': 3764, 'annie': 3765, 'carrie': 3766, 'discovery': 3767, 'absence': 3768, 'contrary': 3769, 'load': 3770, 'commercials': 3771, 'unbearable': 3772, 'areas': 3773, 'folk': 3774, 'panic': 3775, 'unbelievably': 3776, 'wallace': 3777, 'imagined': 3778, 'whale': 3779, 'gentle': 3780, 'birds': 3781, 'thick': 3782, 'tortured': 3783, 'purple': 3784, 'yesterday': 3785, 'horrid': 3786, 'threat': 3787, 'brazil': 3788, 'fever': 3789, 'vicious': 3790, 'danes': 3791, 'donna': 3792, 'reached': 3793, 'arrive': 3794, 'complain': 3795, 'im': 3796, 'stole': 3797, 'broad': 3798, 'improved': 3799, 'heroic': 3800, 'ireland': 3801, 'twelve': 3802, 'rd': 3803, 'differences': 3804, 'concerning': 3805, 'choreography': 3806, 'eyre': 3807, 'matthew': 3808, 'dancers': 3809, 'extended': 3810, 'incident': 3811, 'farm': 3812, 'tap': 3813, 'landscape': 3814, 'karen': 3815, 'movements': 3816, 'mildred': 3817, 'prom': 3818, 'bathroom': 3819, 'rambo': 3820, 'existed': 3821, 'overrated': 3822, 'drawing': 3823, 'anyways': 3824, 'occurred': 3825, 'triumph': 3826, 'bite': 3827, 'involvement': 3828, 'bone': 3829, 'web': 3830, 'symbolism': 3831, 'kirk': 3832, 'displays': 3833, 'burned': 3834, 'bare': 3835, 'styles': 3836, 'broadcast': 3837, 'margaret': 3838, 'daring': 3839, 'altman': 3840, 'nazis': 3841, 'ought': 3842, 'cheek': 3843, 'builds': 3844, 'affected': 3845, 'recognized': 3846, 'secrets': 3847, 'hollow': 3848, 'bird': 3849, 'contained': 3850, 'kapoor': 3851, 'genres': 3852, 'blend': 3853, 'swear': 3854, 'newspaper': 3855, 'machines': 3856, 'population': 3857, 'greek': 3858, 'craft': 3859, 'holy': 3860, 'antics': 3861, 'audio': 3862, 'resembles': 3863, 'block': 3864, 'ranks': 3865, 'currently': 3866, 'tommy': 3867, 'fulci': 3868, 'nicholson': 3869, 'apes': 3870, 'demands': 3871, 'hamilton': 3872, 'beatty': 3873, 'leg': 3874, 'pretend': 3875, 'swedish': 3876, 'cliff': 3877, 'seventies': 3878, 'harder': 3879, 'neo': 3880, 'merit': 3881, 'receive': 3882, 'investigate': 3883, 'proceedings': 3884, 'sadistic': 3885, 'sadness': 3886, 'journalist': 3887, 'hugh': 3888, 'altogether': 3889, 'dynamic': 3890, 'enjoys': 3891, 'threw': 3892, 'argue': 3893, 'explosion': 3894, 'bell': 3895, 'adequate': 3896, 'pseudo': 3897, 'occur': 3898, 'superficial': 3899, 'ridiculously': 3900, 'todd': 3901, 'trio': 3902, 'website': 3903, 'synopsis': 3904, 'terry': 3905, 'foul': 3906, 'thrill': 3907, 'popcorn': 3908, 'thugs': 3909, 'beats': 3910, 'pulp': 3911, 'hammer': 3912, 'aging': 3913, 'atlantis': 3914, 'tame': 3915, 'rage': 3916, 'lawrence': 3917, 'fighter': 3918, 'selfish': 3919, 'composed': 3920, 'staged': 3921, 'li': 3922, 'dinosaurs': 3923, 'cameras': 3924, 'suited': 3925, 'voight': 3926, 'leonard': 3927, 'robots': 3928, 'fonda': 3929, 'madonna': 3930, 'escaped': 3931, 'ease': 3932, 'engaged': 3933, 'dialogues': 3934, 'innovative': 3935, 'comfortable': 3936, 'clint': 3937, 'snake': 3938, 'rural': 3939, 'prostitute': 3940, 'cats': 3941, 'clothing': 3942, 'blake': 3943, 'juvenile': 3944, 'conversations': 3945, 'mountains': 3946, 'unpleasant': 3947, 'lit': 3948, 'gadget': 3949, 'lemmon': 3950, 'brains': 3951, 'carl': 3952, 'vivid': 3953, 'lol': 3954, 'intrigue': 3955, 'eccentric': 3956, 'versus': 3957, 'bullet': 3958, 'wealth': 3959, 'coherent': 3960, 'overwhelming': 3961, 'offering': 3962, 'murderous': 3963, 'warming': 3964, 'conventional': 3965, 'nearby': 3966, 'kidding': 3967, 'staying': 3968, 'staff': 3969, 'orders': 3970, 'philosophy': 3971, 'bin': 3972, 'garden': 3973, 'shine': 3974, 'lips': 3975, 'combat': 3976, 'buddies': 3977, 'devoted': 3978, 'grab': 3979, 'jazz': 3980, 'odds': 3981, 'centered': 3982, 'brady': 3983, 'cuba': 3984, 'edie': 3985, 'bang': 3986, 'damage': 3987, 'disturbed': 3988, 'unintentional': 3989, 'implausible': 3990, 'mummy': 3991, 'producing': 3992, 'react': 3993, 'flop': 3994, 'waters': 3995, 'cringe': 3996, 'groups': 3997, 'detailed': 3998, 'mistaken': 3999, 'meaningless': 4000, 'liking': 4001, 'banned': 4002, 'cary': 4003, 'hbo': 4004, 'errors': 4005, 'abilities': 4006, 'blowing': 4007, 'explosions': 4008, 'possessed': 4009, 'lust': 4010, 'removed': 4011, 'sport': 4012, 'deliberately': 4013, 'palma': 4014, 'rat': 4015, 'kennedy': 4016, 'jeffrey': 4017, 'possibility': 4018, 'unwatchable': 4019, 'olivier': 4020, 'influenced': 4021, 'spare': 4022, 'masters': 4023, 'ingredients': 4024, 'defeat': 4025, 'causing': 4026, 'officers': 4027, 'explaining': 4028, 'distracting': 4029, 'nightmares': 4030, 'daddy': 4031, 'resemblance': 4032, 'uneven': 4033, 'careers': 4034, 'relies': 4035, 'bedroom': 4036, 'celluloid': 4037, 'undoubtedly': 4038, 'clown': 4039, 'roman': 4040, 'harvey': 4041, 'toys': 4042, 'mickey': 4043, 'subjects': 4044, 'dating': 4045, 'ginger': 4046, 'florida': 4047, 'holly': 4048, 'divorce': 4049, 'official': 4050, 'pays': 4051, 'succeeded': 4052, 'clumsy': 4053, 'crack': 4054, 'classes': 4055, 'catches': 4056, 'furthermore': 4057, 'explored': 4058, 'goodness': 4059, 'survival': 4060, 'scheme': 4061, 'signs': 4062, 'duty': 4063, 'primary': 4064, 'colonel': 4065, 'focusing': 4066, 'occasion': 4067, 'funeral': 4068, 'yellow': 4069, 'politically': 4070, 'highest': 4071, 'aid': 4072, 'discuss': 4073, 'coffee': 4074, 'satisfied': 4075, 'passes': 4076, 'punk': 4077, 'polanski': 4078, 'backdrop': 4079, 'wives': 4080, 'generic': 4081, 'sidekick': 4082, 'mysteries': 4083, 'smaller': 4084, 'houses': 4085, 'wont': 4086, 'tracks': 4087, 'financial': 4088, 'models': 4089, 'hal': 4090, 'chaos': 4091, 'sentence': 4092, 'trees': 4093, 'props': 4094, 'linda': 4095, 'flies': 4096, 'secondly': 4097, 'remarkably': 4098, 'rick': 4099, 'brooklyn': 4100, 'awake': 4101, 'hank': 4102, 'travels': 4103, 'maggie': 4104, 'ape': 4105, 'spirits': 4106, 'widow': 4107, 'winters': 4108, 'unfolds': 4109, 'desperation': 4110, 'companion': 4111, 'impress': 4112, 'devoid': 4113, 'endings': 4114, 'portion': 4115, 'exotic': 4116, 'measure': 4117, 'destiny': 4118, 'primarily': 4119, 'doomed': 4120, 'amy': 4121, 'notion': 4122, 'settle': 4123, 'decisions': 4124, 'afford': 4125, 'enterprise': 4126, 'lifestyle': 4127, 'recorded': 4128, 'hates': 4129, 'consistently': 4130, 'outer': 4131, 'surviving': 4132, 'beneath': 4133, 'instant': 4134, 'principal': 4135, 'lyrics': 4136, 'dutch': 4137, 'glorious': 4138, 'doll': 4139, 'hart': 4140, 'ties': 4141, 'offended': 4142, 'godzilla': 4143, 'mill': 4144, 'streep': 4145, 'blatant': 4146, 'fetched': 4147, 'directs': 4148, 'ocean': 4149, 'method': 4150, 'celebrity': 4151, 'motives': 4152, 'ya': 4153, 'hints': 4154, 'circle': 4155, 'forty': 4156, 'enemies': 4157, 'enormous': 4158, 'represent': 4159, 'dozens': 4160, 'performer': 4161, 'countryside': 4162, 'communist': 4163, 'frustration': 4164, 'rebel': 4165, 'revolutionary': 4166, 'mixture': 4167, 'pan': 4168, 'hideous': 4169, 'terrorist': 4170, 'montage': 4171, 'shelf': 4172, 'cheating': 4173, 'et': 4174, 'ideal': 4175, 'closet': 4176, 'diane': 4177, 'shirley': 4178, 'garbo': 4179, 'wrestling': 4180, 'grinch': 4181, 'pig': 4182, 'crush': 4183, 'reaches': 4184, 'tie': 4185, 'fond': 4186, 'akshay': 4187, 'trailers': 4188, 'judging': 4189, 'user': 4190, 'traveling': 4191, 'avoided': 4192, 'buff': 4193, 'developing': 4194, 'rocket': 4195, 'bold': 4196, 'stellar': 4197, 'topless': 4198, 'winds': 4199, 'painted': 4200, 'uwe': 4201, 'dances': 4202, 'disjointed': 4203, 'urge': 4204, 'describes': 4205, 'subtlety': 4206, 'relations': 4207, 'rank': 4208, 'coach': 4209, 'march': 4210, 'drops': 4211, 'hardcore': 4212, 'stinker': 4213, 'z': 4214, 'macy': 4215, 'homer': 4216, 'surfing': 4217, 'immensely': 4218, 'griffith': 4219, 'survivors': 4220, 'tender': 4221, 'planned': 4222, 'benefit': 4223, 'seed': 4224, 'backgrounds': 4225, 'ruthless': 4226, 'simplistic': 4227, 'awe': 4228, 'april': 4229, 'diana': 4230, 'eighties': 4231, 'saga': 4232, 'peoples': 4233, 'outfit': 4234, 'advance': 4235, 'angeles': 4236, 'practice': 4237, 'matches': 4238, 'emphasis': 4239, 'specifically': 4240, 'disappear': 4241, 'amanda': 4242, 'senseless': 4243, 'adorable': 4244, 'blew': 4245, 'authority': 4246, 'oz': 4247, 'soccer': 4248, 'cure': 4249, 'cinematographer': 4250, 'niro': 4251, 'melting': 4252, 'hartley': 4253, 'judy': 4254, 'pot': 4255, 'corruption': 4256, 'fix': 4257, 'faster': 4258, 'menace': 4259, 'loads': 4260, 'transformation': 4261, 'miserable': 4262, 'forms': 4263, 'shaw': 4264, 'claimed': 4265, 'commented': 4266, 'earned': 4267, 'blues': 4268, 'loyal': 4269, 'vast': 4270, 'link': 4271, 'babe': 4272, 'splatter': 4273, 'solo': 4274, 'lumet': 4275, 'unsettling': 4276, 'displayed': 4277, 'guessed': 4278, 'khan': 4279, 'dedicated': 4280, 'weakest': 4281, 'rooms': 4282, 'riveting': 4283, 'jonathan': 4284, 'disappeared': 4285, 'arrogant': 4286, 'hurts': 4287, 'tag': 4288, 'interaction': 4289, 'endure': 4290, 'racial': 4291, 'cards': 4292, 'trashy': 4293, 'elephant': 4294, 'bull': 4295, 'involve': 4296, 'limits': 4297, 'philosophical': 4298, 'introduces': 4299, 'ears': 4300, 'choreographed': 4301, 'command': 4302, 'hook': 4303, 'depressed': 4304, 'lasted': 4305, 'illogical': 4306, 'dinosaur': 4307, 'mario': 4308, 'chorus': 4309, 'honesty': 4310, 'passionate': 4311, 'sellers': 4312, 'lena': 4313, 'morris': 4314, 'isolated': 4315, 'sandra': 4316, 'hung': 4317, 'kicked': 4318, 'buffs': 4319, 'moody': 4320, 'realizing': 4321, 'cake': 4322, 'justify': 4323, 'abysmal': 4324, 'stress': 4325, 'wore': 4326, 'severe': 4327, 'similarities': 4328, 'thoughtful': 4329, 'nomination': 4330, 'grandfather': 4331, 'similarly': 4332, 'quotes': 4333, 'porno': 4334, 'represented': 4335, 'formulaic': 4336, 'cave': 4337, 'disappoint': 4338, 'nail': 4339, 'safety': 4340, 'stereotype': 4341, 'chased': 4342, 'adams': 4343, 'charlotte': 4344, 'possibilities': 4345, 'monkeys': 4346, 'franco': 4347, 'berlin': 4348, 'hopper': 4349, 'voiced': 4350, 'wendy': 4351, 'scarecrow': 4352, 'macarthur': 4353, 'domino': 4354, 'stinks': 4355, 'finger': 4356, 'bonus': 4357, 'preview': 4358, 'tad': 4359, 'leo': 4360, 'faults': 4361, 'treats': 4362, 'nervous': 4363, 'scope': 4364, 'improve': 4365, 'nostalgic': 4366, 'emperor': 4367, 'cliche': 4368, 'switch': 4369, 'trained': 4370, 'helicopter': 4371, 'blond': 4372, 'swimming': 4373, 'q': 4374, 'considerable': 4375, 'understandable': 4376, 'cd': 4377, 'promised': 4378, 'education': 4379, 'grasp': 4380, 'inventive': 4381, 'concern': 4382, 'thru': 4383, 'solely': 4384, 'snl': 4385, 'sounding': 4386, 'campbell': 4387, 'dalton': 4388, 'christy': 4389, 'myers': 4390, 'museum': 4391, 'facing': 4392, 'bergman': 4393, 'report': 4394, 'aids': 4395, 'lately': 4396, 'wet': 4397, 'dolls': 4398, 'horrifying': 4399, 'del': 4400, 'comparing': 4401, 'hyde': 4402, 'species': 4403, 'corporate': 4404, 'poetic': 4405, 'alert': 4406, 'dub': 4407, 'embarrassment': 4408, 'ignorant': 4409, 'mayor': 4410, 'clock': 4411, 'purchase': 4412, 'laws': 4413, 'kyle': 4414, 'consistent': 4415, 'agrees': 4416, 'button': 4417, 'orson': 4418, 'downhill': 4419, 'cg': 4420, 'chess': 4421, 'reaching': 4422, 'boot': 4423, 'edgar': 4424, 'amitabh': 4425, 'constructed': 4426, 'steel': 4427, 'plant': 4428, 'wished': 4429, 'rotten': 4430, 'photos': 4431, 'transfer': 4432, 'shelley': 4433, 'kingdom': 4434, 'letters': 4435, 'defend': 4436, 'inane': 4437, 'tonight': 4438, 'unhappy': 4439, 'shake': 4440, 'sits': 4441, 'fooled': 4442, 'wizard': 4443, 'confidence': 4444, 'taught': 4445, 'prize': 4446, 'blade': 4447, 'armed': 4448, 'simpson': 4449, 'roth': 4450, 'waited': 4451, 'motivations': 4452, 'vegas': 4453, 'pretending': 4454, 'stooges': 4455, 'hop': 4456, 'conservative': 4457, 'ruby': 4458, 'mall': 4459, 'montana': 4460, 'ollie': 4461, 'buildings': 4462, 'stevens': 4463, 'dickens': 4464, 'staring': 4465, 'useful': 4466, 'combine': 4467, 'namely': 4468, 'writes': 4469, 'artificial': 4470, 'wound': 4471, 'behave': 4472, 'iron': 4473, 'inferior': 4474, 'suitable': 4475, 'destroying': 4476, 'sappy': 4477, 'delivering': 4478, 'raising': 4479, 'bela': 4480, 'closest': 4481, 'gangsters': 4482, 'vengeance': 4483, 'cleverly': 4484, 'virginia': 4485, 'eager': 4486, 'pants': 4487, 'carradine': 4488, 'miracle': 4489, 'humble': 4490, 'global': 4491, 'latin': 4492, 'pearl': 4493, 'agents': 4494, 'crocodile': 4495, 'paltrow': 4496, 'relation': 4497, 'jenny': 4498, 'ballet': 4499, 'dixon': 4500, 'connery': 4501, 'blunt': 4502, 'gundam': 4503, 'timon': 4504, 'valuable': 4505, 'airport': 4506, 'affect': 4507, 'lay': 4508, 'paranoia': 4509, 'reads': 4510, 'square': 4511, 'climactic': 4512, 'arrived': 4513, 'slick': 4514, 'engage': 4515, 'mm': 4516, 'elegant': 4517, 'robinson': 4518, 'boom': 4519, 'pokemon': 4520, 'chest': 4521, 'alcoholic': 4522, 'airplane': 4523, 'waves': 4524, 'tiresome': 4525, 'bands': 4526, 'stilted': 4527, 'conflicts': 4528, 'sirk': 4529, 'secretly': 4530, 'mars': 4531, 'couples': 4532, 'scottish': 4533, 'scrooge': 4534, 'convincingly': 4535, 'september': 4536, 'maintain': 4537, 'civilization': 4538, 'iran': 4539, 'frankenstein': 4540, 'bath': 4541, 'jumped': 4542, 'wrapped': 4543, 'misery': 4544, 'exploration': 4545, 'reflect': 4546, 'creator': 4547, 'whats': 4548, 'yelling': 4549, 'beliefs': 4550, 'kicking': 4551, 'catching': 4552, 'lowest': 4553, 'access': 4554, 'closed': 4555, 'christians': 4556, 'willis': 4557, 'balls': 4558, 'robbery': 4559, 'cheated': 4560, 'chicago': 4561, 'poetry': 4562, 'witches': 4563, 'ethan': 4564, 'nicholas': 4565, 'lundgren': 4566, 'gerard': 4567, 'richardson': 4568, 'spock': 4569, 'desired': 4570, 'potentially': 4571, 'guarantee': 4572, 'min': 4573, 'nostalgia': 4574, 'literature': 4575, 'greedy': 4576, 'catchy': 4577, 'firstly': 4578, 'abusive': 4579, 'spread': 4580, 'survived': 4581, 'transition': 4582, 'spoke': 4583, 'bottle': 4584, 'questionable': 4585, 'dust': 4586, 'centers': 4587, 'plight': 4588, 'messed': 4589, 'pal': 4590, 'vulnerable': 4591, 'advertising': 4592, 'sue': 4593, 'progresses': 4594, 'creep': 4595, 'remarks': 4596, 'scores': 4597, 'raymond': 4598, 'construction': 4599, 'germans': 4600, 'simplicity': 4601, 'invasion': 4602, 'designs': 4603, 'francis': 4604, 'richards': 4605, 'junior': 4606, 'taxi': 4607, 'intentionally': 4608, 'gabriel': 4609, 'careful': 4610, 'understated': 4611, 'homosexual': 4612, 'bacall': 4613, 'depicts': 4614, 'doom': 4615, 'restored': 4616, 'purchased': 4617, 'gender': 4618, 'demand': 4619, 'rubber': 4620, 'inappropriate': 4621, 'vaguely': 4622, 'kay': 4623, 'advise': 4624, 'arguably': 4625, 'advanced': 4626, 'recognition': 4627, 'mail': 4628, 'june': 4629, 'y': 4630, 'illegal': 4631, 'joined': 4632, 'alongside': 4633, 'complexity': 4634, 'operation': 4635, 'copies': 4636, 'jaw': 4637, 'hello': 4638, 'experiments': 4639, 'acid': 4640, 'louise': 4641, 'amounts': 4642, 'eaten': 4643, 'wandering': 4644, 'persons': 4645, 'lengthy': 4646, 'brutally': 4647, 'attitudes': 4648, 'rendition': 4649, 'showcase': 4650, 'vice': 4651, 'hunters': 4652, 'frankie': 4653, 'molly': 4654, 'descent': 4655, 'online': 4656, 'opinions': 4657, 'relatives': 4658, 'demented': 4659, 'signed': 4660, 'capital': 4661, 'phantom': 4662, 'resort': 4663, 'matched': 4664, 'rising': 4665, 'justin': 4666, 'bay': 4667, 'floating': 4668, 'terrorists': 4669, 'mankind': 4670, 'parallel': 4671, 'chicks': 4672, 'betty': 4673, 'newly': 4674, 'stallone': 4675, 'attorney': 4676, 'visible': 4677, 'resources': 4678, 'grayson': 4679, 'prisoners': 4680, 'illness': 4681, 'troops': 4682, 'visits': 4683, 'likewise': 4684, 'unit': 4685, 'slaughter': 4686, 'twilight': 4687, 'incomprehensible': 4688, 'pops': 4689, 'prisoner': 4690, 'patients': 4691, 'neighbors': 4692, 'wisdom': 4693, 'witnesses': 4694, 'edition': 4695, 'intimate': 4696, 'ashley': 4697, 'drake': 4698, 'marty': 4699, 'farrell': 4700, 'biko': 4701, 'en': 4702, 'worn': 4703, 'alternate': 4704, 'appreciation': 4705, 'solution': 4706, 'assault': 4707, 'responsibility': 4708, 'lively': 4709, 'fascinated': 4710, 'tomatoes': 4711, 'manipulative': 4712, 'agreed': 4713, 'challenging': 4714, 'accompanied': 4715, 'ridden': 4716, 'ensues': 4717, 'pit': 4718, 'tiger': 4719, 'capturing': 4720, 'cities': 4721, 'damon': 4722, 'rabbit': 4723, 'chapter': 4724, 'proceeds': 4725, 'keith': 4726, 'reel': 4727, 'viewings': 4728, 'mistress': 4729, 'nuts': 4730, 'carell': 4731, 'analysis': 4732, 'dreary': 4733, 'suspicious': 4734, 'witnessed': 4735, 'classical': 4736, 'austen': 4737, 'barrymore': 4738, 'losers': 4739, 'basketball': 4740, 'antwone': 4741, 'defined': 4742, 'wrap': 4743, 'sink': 4744, 'excessive': 4745, 'mighty': 4746, 'stale': 4747, 'jaws': 4748, 'arrival': 4749, 'masterful': 4750, 'lone': 4751, 'smiling': 4752, 'butler': 4753, 'owen': 4754, 'legal': 4755, 'equivalent': 4756, 'widely': 4757, 'overacting': 4758, 'royal': 4759, 'subplots': 4760, 'frequent': 4761, 'satisfy': 4762, 'compelled': 4763, 'plausible': 4764, 'incompetent': 4765, 'parties': 4766, 'spider': 4767, 'earl': 4768, 'feed': 4769, 'counter': 4770, 'randy': 4771, 'property': 4772, 'rooney': 4773, 'othello': 4774, 'rats': 4775, 'belushi': 4776, 'alison': 4777, 'exceptionally': 4778, 'photo': 4779, 'seeks': 4780, 'despair': 4781, 'waitress': 4782, 'sincere': 4783, 'dropping': 4784, 'historically': 4785, 'dressing': 4786, 'priceless': 4787, 'overlook': 4788, 'warmth': 4789, 'crucial': 4790, 'domestic': 4791, 'channels': 4792, 'tends': 4793, 'tooth': 4794, 'ninja': 4795, 'bargain': 4796, 'enthusiasm': 4797, 'marion': 4798, 'rocky': 4799, 'mtv': 4800, 'graham': 4801, 'ear': 4802, 'calm': 4803, 'mundane': 4804, 'der': 4805, 'rukh': 4806, 'serving': 4807, 'nyc': 4808, 'greed': 4809, 'rangers': 4810, 'walsh': 4811, 'psychic': 4812, 'defense': 4813, 'hilariously': 4814, 'landscapes': 4815, 'novak': 4816, 'julian': 4817, 'reid': 4818, 'iraq': 4819, 'loaded': 4820, 'survivor': 4821, 'generated': 4822, 'poem': 4823, 'belong': 4824, 'heights': 4825, 'randomly': 4826, 'fianc': 4827, 'irrelevant': 4828, 'methods': 4829, 'assassin': 4830, 'pink': 4831, 'bumbling': 4832, 'improvement': 4833, 'opportunities': 4834, 'alfred': 4835, 'chooses': 4836, 'orange': 4837, 'mechanical': 4838, 'creativity': 4839, 'specially': 4840, 'imitation': 4841, 'orleans': 4842, 'spain': 4843, 'resident': 4844, 'pursuit': 4845, 'thompson': 4846, 'fed': 4847, 'instinct': 4848, 'polished': 4849, 'muslim': 4850, 'pamela': 4851, 'monk': 4852, 'willie': 4853, 'watson': 4854, 'omen': 4855, 'wishing': 4856, 'recording': 4857, 'prequel': 4858, 'masterpieces': 4859, 'israel': 4860, 'mentioning': 4861, 'angela': 4862, 'dolph': 4863, 'ww': 4864, 'abraham': 4865, 'cassidy': 4866, 'carla': 4867, 'zizek': 4868, 'whoopi': 4869, 'showdown': 4870, 'promises': 4871, 'unreal': 4872, 'suspend': 4873, 'minimum': 4874, 'palace': 4875, 'album': 4876, 'introduce': 4877, 'caliber': 4878, 'ruins': 4879, 'gentleman': 4880, 'ham': 4881, 'marketing': 4882, 'purposes': 4883, 'tribe': 4884, 'wacky': 4885, 'nerd': 4886, 'performs': 4887, 'empathy': 4888, 'maid': 4889, 'dana': 4890, 'distinct': 4891, 'awfully': 4892, 'alcohol': 4893, 'suffice': 4894, 'equipment': 4895, 'map': 4896, 'troubles': 4897, 'gifted': 4898, 'hippie': 4899, 'wounded': 4900, 'punishment': 4901, 'feminist': 4902, 'nephew': 4903, 'scotland': 4904, 'damme': 4905, 'mentions': 4906, 'simmons': 4907, 'household': 4908, 'meryl': 4909, 'phony': 4910, 'resist': 4911, 'sneak': 4912, 'cannibal': 4913, 'brenda': 4914, 'icon': 4915, 'borrowed': 4916, 'elm': 4917, 'sabrina': 4918, 'fido': 4919, 'businessman': 4920, 'petty': 4921, 'masses': 4922, 'trail': 4923, 'stretched': 4924, 'contest': 4925, 'josh': 4926, 'spacey': 4927, 'swim': 4928, 'receives': 4929, 'moronic': 4930, 'unoriginal': 4931, 'respected': 4932, 'eastern': 4933, 'unaware': 4934, 'kissing': 4935, 'stargate': 4936, 'travesty': 4937, 'fury': 4938, 'inducing': 4939, 'definition': 4940, 'expressed': 4941, 'fuller': 4942, 'activities': 4943, 'rolled': 4944, 'dud': 4945, 'clip': 4946, 'unseen': 4947, 'deaf': 4948, 'championship': 4949, 'educational': 4950, 'bud': 4951, 'quit': 4952, 'quinn': 4953, 'popularity': 4954, 'testament': 4955, 'absent': 4956, 'greg': 4957, 'maniac': 4958, 'les': 4959, 'dimension': 4960, 'attend': 4961, 'furious': 4962, 'kurosawa': 4963, 'pin': 4964, 'assigned': 4965, 'eugene': 4966, 'peters': 4967, 'crystal': 4968, 'sixties': 4969, 'ramones': 4970, 'mclaglen': 4971, 'darren': 4972, 'soderbergh': 4973, 'miyazaki': 4974, 'ustinov': 4975, 'teaching': 4976, 'sissy': 4977, 'inevitably': 4978, 'tarantino': 4979, 'underlying': 4980, 'stunned': 4981, 'hopeless': 4982, 'composer': 4983, 'biography': 4984, 'resulting': 4985, 'wholly': 4986, 'shed': 4987, 'assumed': 4988, 'nonsensical': 4989, 'roots': 4990, 'distribution': 4991, 'deceased': 4992, 'package': 4993, 'exposure': 4994, 'ross': 4995, 'retired': 4996, 'warriors': 4997, 'tech': 4998, 'laughably': 4999, 'depicting': 5000, 'interests': 5001, 'valley': 5002, 'rave': 5003, 'integrity': 5004, 'doubts': 5005, 'unpredictable': 5006, 'austin': 5007, 'nathan': 5008, 'edgy': 5009, 'buffalo': 5010, 'crawford': 5011, 'firm': 5012, 'nicole': 5013, 'correctly': 5014, 'dee': 5015, 'deniro': 5016, 'yard': 5017, 'antonioni': 5018, 'pierce': 5019, 'din': 5020, 'reflection': 5021, 'merits': 5022, 'directions': 5023, 'confess': 5024, 'alec': 5025, 'patience': 5026, 'metaphor': 5027, 'dreck': 5028, 'wang': 5029, 'supported': 5030, 'brutality': 5031, 'sid': 5032, 'uplifting': 5033, 'romp': 5034, 'strangers': 5035, 'puppet': 5036, 'trademark': 5037, 'twins': 5038, 'murray': 5039, 'accuracy': 5040, 'leon': 5041, 'buster': 5042, 'suggested': 5043, 'greatness': 5044, 'fought': 5045, 'joel': 5046, 'shanghai': 5047, 'landing': 5048, 'compassion': 5049, 'expedition': 5050, 'indulgent': 5051, 'pete': 5052, 'files': 5053, 'kumar': 5054, 'unfair': 5055, 'tank': 5056, 'stuart': 5057, 'femme': 5058, 'pressure': 5059, 'coast': 5060, 'conditions': 5061, 'shaky': 5062, 'loyalty': 5063, 'significance': 5064, 'immediate': 5065, 'legacy': 5066, 'exchange': 5067, 'resemble': 5068, 'woo': 5069, 'checked': 5070, 'malone': 5071, 'passable': 5072, 'preston': 5073, 'seldom': 5074, 'harm': 5075, 'peak': 5076, 'slice': 5077, 'invented': 5078, 'grabs': 5079, 'generations': 5080, 'comfort': 5081, 'reader': 5082, 'chicken': 5083, 'glasses': 5084, 'adaptations': 5085, 'technicolor': 5086, 'phil': 5087, 'companies': 5088, 'rita': 5089, 'claus': 5090, 'marshall': 5091, 'victory': 5092, 'baldwin': 5093, 'wilderness': 5094, 'valentine': 5095, 'robbins': 5096, 'singers': 5097, 'ships': 5098, 'millionaire': 5099, 'subjected': 5100, 'billed': 5101, 'tube': 5102, 'respectively': 5103, 'unexpectedly': 5104, 'husbands': 5105, 'astonishing': 5106, 'da': 5107, 'demise': 5108, 'senses': 5109, 'confrontation': 5110, 'masks': 5111, 'ps': 5112, 'alicia': 5113, 'milk': 5114, 'tacky': 5115, 'lackluster': 5116, 'inability': 5117, 'gregory': 5118, 'examination': 5119, 'ambiguous': 5120, 'blast': 5121, 'spark': 5122, 'disliked': 5123, 'newman': 5124, 'vance': 5125, 'downey': 5126, 'frustrating': 5127, 'vulgar': 5128, 'conscious': 5129, 'logan': 5130, 'grief': 5131, 'marc': 5132, 'crazed': 5133, 'fathers': 5134, 'wretched': 5135, 'experimental': 5136, 'andre': 5137, 'rises': 5138, 'christianity': 5139, 'fields': 5140, 'hawke': 5141, 'objective': 5142, 'cracking': 5143, 'stack': 5144, 'russia': 5145, 'boyle': 5146, 'palance': 5147, 'raines': 5148, 'tripe': 5149, 'parade': 5150, 'rates': 5151, 'dysfunctional': 5152, 'foxx': 5153, 'basinger': 5154, 'fishing': 5155, 'fascination': 5156, 'sunny': 5157, 'replace': 5158, 'deranged': 5159, 'alternative': 5160, 'ordered': 5161, 'refused': 5162, 'females': 5163, 'infected': 5164, 'addicted': 5165, 'simultaneously': 5166, 'poison': 5167, 'stumbled': 5168, 'difficulties': 5169, 'tastes': 5170, 'skull': 5171, 'flair': 5172, 'cream': 5173, 'relax': 5174, 'amused': 5175, 'shoulders': 5176, 'hears': 5177, 'premiere': 5178, 'prey': 5179, 'sugar': 5180, 'remained': 5181, 'frightened': 5182, 'gather': 5183, 'bridget': 5184, 'karl': 5185, 'sentiment': 5186, 'desires': 5187, 'bunny': 5188, 'sopranos': 5189, 'kansas': 5190, 'sharon': 5191, 'kolchak': 5192, 'wwe': 5193, 'sentinel': 5194, 'teachers': 5195, 'cannon': 5196, 'abused': 5197, 'raises': 5198, 'lock': 5199, 'wagner': 5200, 'joins': 5201, 'wakes': 5202, 'require': 5203, 'challenged': 5204, 'fog': 5205, 'filling': 5206, 'sung': 5207, 'paramount': 5208, 'rude': 5209, 'agenda': 5210, 'interactions': 5211, 'silliness': 5212, 'lands': 5213, 'function': 5214, 'awhile': 5215, 'phrase': 5216, 'complaints': 5217, 'presenting': 5218, 'musicians': 5219, 'primitive': 5220, 'pun': 5221, 'favour': 5222, 'ish': 5223, 'underneath': 5224, 'caricatures': 5225, 'framed': 5226, 'paradise': 5227, 'musician': 5228, 'hungry': 5229, 'fingers': 5230, 'wildly': 5231, 'minus': 5232, 'noises': 5233, 'fifty': 5234, 'precisely': 5235, 'amusement': 5236, 'appropriately': 5237, 'accomplish': 5238, 'grotesque': 5239, 'comedians': 5240, 'exposition': 5241, 'remakes': 5242, 'bacon': 5243, 'rifle': 5244, 'items': 5245, 'stark': 5246, 'complaining': 5247, 'quietly': 5248, 'discovering': 5249, 'straightforward': 5250, 'hackneyed': 5251, 'absurdity': 5252, 'hopkins': 5253, 'asylum': 5254, 'knight': 5255, 'servant': 5256, 'designer': 5257, 'teaches': 5258, 'iv': 5259, 'murdering': 5260, 'adolescent': 5261, 'misleading': 5262, 'leigh': 5263, 'edit': 5264, 'choppy': 5265, 'prepare': 5266, 'pitiful': 5267, 'weakness': 5268, 'conscience': 5269, 'roof': 5270, 'saint': 5271, 'visiting': 5272, 'region': 5273, 'aspiring': 5274, 'roommate': 5275, 'unfold': 5276, 'electric': 5277, 'charged': 5278, 'breed': 5279, 'knocked': 5280, 'posters': 5281, 'releases': 5282, 'fantasies': 5283, 'babies': 5284, 'penn': 5285, 'literary': 5286, 'celebration': 5287, 'riot': 5288, 'sums': 5289, 'policeman': 5290, 'coincidence': 5291, 'dirt': 5292, 'duvall': 5293, 'esther': 5294, 'tomorrow': 5295, 'beverly': 5296, 'credited': 5297, 'loneliness': 5298, 'unlikable': 5299, 'muddled': 5300, 'clarke': 5301, 'curly': 5302, 'posey': 5303, 'chavez': 5304, 'shared': 5305, 'acclaimed': 5306, 'adopted': 5307, 'automatically': 5308, 'laurence': 5309, 'invites': 5310, 'mode': 5311, 'imaginable': 5312, 'bernard': 5313, 'shoddy': 5314, 'heartfelt': 5315, 'haired': 5316, 'cue': 5317, 'handling': 5318, 'preposterous': 5319, 'provocative': 5320, 'dresses': 5321, 'rely': 5322, 'blacks': 5323, 'moreover': 5324, 'inexplicably': 5325, 'visited': 5326, 'industrial': 5327, 'trend': 5328, 'nemesis': 5329, 'active': 5330, 'occasions': 5331, 'shoulder': 5332, 'devices': 5333, 'behaviour': 5334, 'reign': 5335, 'conviction': 5336, 'ethnic': 5337, 'citizens': 5338, 'bread': 5339, 'cancer': 5340, 'encourage': 5341, 'biased': 5342, 'lindsay': 5343, 'nolan': 5344, 'swing': 5345, 'cattle': 5346, 'amazon': 5347, 'quaid': 5348, 'roller': 5349, 'el': 5350, 'realised': 5351, 'objects': 5352, 'dose': 5353, 'boxer': 5354, 'attenborough': 5355, 'mccoy': 5356, 'tierney': 5357, 'penny': 5358, 'profanity': 5359, 'ratso': 5360, 'springer': 5361, 'translated': 5362, 'rod': 5363, 'referred': 5364, 'poe': 5365, 'squad': 5366, 'paxton': 5367, 'heartbreaking': 5368, 'sketch': 5369, 'outfits': 5370, 'tracking': 5371, 'option': 5372, 'accepts': 5373, 'freaks': 5374, 'er': 5375, 'nut': 5376, 'hopelessly': 5377, 'secondary': 5378, 'ignorance': 5379, 'controlled': 5380, 'beatles': 5381, 'guitar': 5382, 'hughes': 5383, 'naughty': 5384, 'yeti': 5385, 'ladder': 5386, 'chills': 5387, 'hk': 5388, 'counts': 5389, 'skits': 5390, 'uncut': 5391, 'heist': 5392, 'regarded': 5393, 'tyler': 5394, 'canyon': 5395, 'tasteless': 5396, 'additional': 5397, 'positively': 5398, 'bye': 5399, 'rosemary': 5400, 'vader': 5401, 'jess': 5402, 'realm': 5403, 'lip': 5404, 'bike': 5405, 'pages': 5406, 'morbid': 5407, 'screens': 5408, 'bitch': 5409, 'bow': 5410, 'fade': 5411, 'outs': 5412, 'rejected': 5413, 'deserted': 5414, 'admirable': 5415, 'suspension': 5416, 'martha': 5417, 'youngest': 5418, 'refer': 5419, 'patricia': 5420, 'gambling': 5421, 'labor': 5422, 'abrupt': 5423, 'meg': 5424, 'chainsaw': 5425, 'darn': 5426, 'challenges': 5427, 'betrayal': 5428, 'glowing': 5429, 'jews': 5430, 'daniels': 5431, 'recommendation': 5432, 'insurance': 5433, 'lush': 5434, 'respective': 5435, 'nod': 5436, 'corpses': 5437, 'renaissance': 5438, 'affection': 5439, 'backs': 5440, 'historic': 5441, 'chuckle': 5442, 'coaster': 5443, 'minister': 5444, 'gillian': 5445, 'severely': 5446, 'bronson': 5447, 'christine': 5448, 'gina': 5449, 'muppet': 5450, 'brendan': 5451, 'peck': 5452, 'kline': 5453, 'kitty': 5454, 'preminger': 5455, 'deleted': 5456, 'guests': 5457, 'hyped': 5458, 'filler': 5459, 'invited': 5460, 'hammy': 5461, 'guaranteed': 5462, 'indication': 5463, 'shares': 5464, 'tail': 5465, 'lester': 5466, 'lois': 5467, 'reluctant': 5468, 'ta': 5469, 'evidently': 5470, 'sassy': 5471, 'mayhem': 5472, 'anticipation': 5473, 'fist': 5474, 'underworld': 5475, 'aim': 5476, 'circus': 5477, 'eternal': 5478, 'disappears': 5479, 'barrel': 5480, 'thread': 5481, 'praised': 5482, 'sooner': 5483, 'inconsistent': 5484, 'artsy': 5485, 'address': 5486, 'conventions': 5487, 'psychology': 5488, 'prejudice': 5489, 'selection': 5490, 'gal': 5491, 'sympathize': 5492, 'farmer': 5493, 'hepburn': 5494, 'rome': 5495, 'kidman': 5496, 'fontaine': 5497, 'wilder': 5498, 'angst': 5499, 'investigating': 5500, 'previews': 5501, 'harmless': 5502, 'weaknesses': 5503, 'outing': 5504, 'steady': 5505, 'bent': 5506, 'beside': 5507, 'overlong': 5508, 'iconic': 5509, 'burst': 5510, 'bros': 5511, 'hack': 5512, 'threatens': 5513, 'misguided': 5514, 'nicolas': 5515, 'www': 5516, 'conveys': 5517, 'acceptance': 5518, 'oldest': 5519, 'venture': 5520, 'reflects': 5521, 'heading': 5522, 'depending': 5523, 'net': 5524, 'tip': 5525, 'drove': 5526, 'popping': 5527, 'snakes': 5528, 'receiving': 5529, 'gut': 5530, 'uh': 5531, 'affairs': 5532, 'cruelty': 5533, 'bully': 5534, 'marvel': 5535, 'fifties': 5536, 'stages': 5537, 'posted': 5538, 'nails': 5539, 'behold': 5540, 'stopping': 5541, 'soup': 5542, 'insipid': 5543, 'reeves': 5544, 'visions': 5545, 'banal': 5546, 'dates': 5547, 'boston': 5548, 'grudge': 5549, 'trivia': 5550, 'cope': 5551, 'housewife': 5552, 'promote': 5553, 'fluff': 5554, 'shades': 5555, 'filth': 5556, 'agency': 5557, 'macho': 5558, 'gere': 5559, 'scorsese': 5560, 'stalker': 5561, 'sox': 5562, 'tenant': 5563, 'muppets': 5564, 'lifted': 5565, 'entitled': 5566, 'hokey': 5567, 'rhythm': 5568, 'completed': 5569, 'exceptions': 5570, 'portrayals': 5571, 'beware': 5572, 'widescreen': 5573, 'cushing': 5574, 'schlock': 5575, 'firing': 5576, 'demonstrates': 5577, 'difficulty': 5578, 'terrified': 5579, 'commander': 5580, 'grainy': 5581, 'disguise': 5582, 'morally': 5583, 'preachy': 5584, 'confident': 5585, 'gear': 5586, 'campaign': 5587, 'obligatory': 5588, 'emerges': 5589, 'remade': 5590, 'studying': 5591, 'records': 5592, 'vein': 5593, 'studies': 5594, 'connections': 5595, 'understands': 5596, 'explores': 5597, 'triple': 5598, 'pole': 5599, 'absorbed': 5600, 'harold': 5601, 'runner': 5602, 'employed': 5603, 'route': 5604, 'yawn': 5605, 'strongest': 5606, 'nolte': 5607, 'ants': 5608, 'naschy': 5609, 'unexplained': 5610, 'cassavetes': 5611, 'locals': 5612, 'denis': 5613, 'alvin': 5614, 'steele': 5615, 'zombi': 5616, 'paintings': 5617, 'sending': 5618, 'clueless': 5619, 'redeem': 5620, 'phenomenon': 5621, 'duck': 5622, 'flashy': 5623, 'hapless': 5624, 'raj': 5625, 'attract': 5626, 'gate': 5627, 'height': 5628, 'zane': 5629, 'recognizable': 5630, 'prominent': 5631, 'vital': 5632, 'repeating': 5633, 'rapist': 5634, 'unrelated': 5635, 'stores': 5636, 'interestingly': 5637, 'assured': 5638, 'ebert': 5639, 'partners': 5640, 'couch': 5641, 'politician': 5642, 'shortcomings': 5643, 'rounded': 5644, 'predict': 5645, 'conclude': 5646, 'casual': 5647, 'despicable': 5648, 'stairs': 5649, 'suitably': 5650, 'legends': 5651, 'someday': 5652, 'bitten': 5653, 'representation': 5654, 'physics': 5655, 'insists': 5656, 'wings': 5657, 'clan': 5658, 'offs': 5659, 'cohen': 5660, 'disgusted': 5661, 'communicate': 5662, 'melody': 5663, 'mentality': 5664, 'recycled': 5665, 'hara': 5666, 'assuming': 5667, 'mothers': 5668, 'slimy': 5669, 'pounds': 5670, 'comparisons': 5671, 'danish': 5672, 'spinal': 5673, 'ariel': 5674, 'champion': 5675, 'mol': 5676, 'norm': 5677, 'elite': 5678, 'inexplicable': 5679, 'ingenious': 5680, 'charms': 5681, 'pleasing': 5682, 'http': 5683, 'phillips': 5684, 'claiming': 5685, 'discussing': 5686, 'mins': 5687, 'screw': 5688, 'timberlake': 5689, 'dylan': 5690, 'heartwarming': 5691, 'marlon': 5692, 'befriends': 5693, 'rendered': 5694, 'defeated': 5695, 'marries': 5696, 'delicate': 5697, 'loretta': 5698, 'gems': 5699, 'shopping': 5700, 'neill': 5701, 'garner': 5702, 'globe': 5703, 'flowers': 5704, 'clad': 5705, 'considerably': 5706, 'shouting': 5707, 'carey': 5708, 'eats': 5709, 'ace': 5710, 'tempted': 5711, 'scoop': 5712, 'forcing': 5713, 'independence': 5714, 'lukas': 5715, 'cookie': 5716, 'kathryn': 5717, 'jordan': 5718, 'phillip': 5719, 'wig': 5720, 'colin': 5721, 'eternity': 5722, 'feeding': 5723, 'genie': 5724, 'limit': 5725, 'vibrant': 5726, 'claustrophobic': 5727, 'info': 5728, 'corbett': 5729, 'corman': 5730, 'tunnel': 5731, 'europa': 5732, 'doctors': 5733, 'guinness': 5734, 'coup': 5735, 'pickford': 5736, 'cher': 5737, 'melissa': 5738, 'bondage': 5739, 'harrison': 5740, 'traffic': 5741, 'ritchie': 5742, 'publicity': 5743, 'deserving': 5744, 'depends': 5745, 'ton': 5746, 'item': 5747, 'wire': 5748, 'glamorous': 5749, 'rope': 5750, 'screwed': 5751, 'inhabitants': 5752, 'sharing': 5753, 'transformed': 5754, 'salt': 5755, 'belt': 5756, 'toronto': 5757, 'camcorder': 5758, 'lift': 5759, 'shaking': 5760, 'bridges': 5761, 'surgery': 5762, 'backwards': 5763, 'incidentally': 5764, 'blatantly': 5765, 'static': 5766, 'claude': 5767, 'organized': 5768, 'strings': 5769, 'georges': 5770, 'symbolic': 5771, 'towers': 5772, 'immature': 5773, 'weather': 5774, 'election': 5775, 'hilarity': 5776, 'mathieu': 5777, 'vanessa': 5778, 'pixar': 5779, 'anton': 5780, 'institution': 5781, 'christie': 5782, 'uma': 5783, 'winchester': 5784, 'wendigo': 5785, 'programs': 5786, 'insightful': 5787, 'schools': 5788, 'departure': 5789, 'outdated': 5790, 'shorter': 5791, 'messy': 5792, 'cheer': 5793, 'punches': 5794, 'casts': 5795, 'centre': 5796, 'bombs': 5797, 'goers': 5798, 'exploring': 5799, 'frames': 5800, 'excess': 5801, 'authorities': 5802, 'threatened': 5803, 'coupled': 5804, 'differently': 5805, 'affleck': 5806, 'partially': 5807, 'oriented': 5808, 'swept': 5809, 'concepts': 5810, 'leather': 5811, 'voted': 5812, 'natives': 5813, 'ambition': 5814, 'stumbles': 5815, 'id': 5816, 'satirical': 5817, 'keen': 5818, 'debate': 5819, 'vocal': 5820, 'minority': 5821, 'smiles': 5822, 'charlton': 5823, 'lasting': 5824, 'spree': 5825, 'audrey': 5826, 'destined': 5827, 'dvds': 5828, 'mermaid': 5829, 'computers': 5830, 'thrilled': 5831, 'alley': 5832, 'nope': 5833, 'feat': 5834, 'dandy': 5835, 'chamberlain': 5836, 'remove': 5837, 'bend': 5838, 'assassination': 5839, 'breakfast': 5840, 'mirrors': 5841, 'knightley': 5842, 'damaged': 5843, 'continually': 5844, 'dudley': 5845, 'disorder': 5846, 'wax': 5847, 'pc': 5848, 'layers': 5849, 'boyer': 5850, 'detectives': 5851, 'gunga': 5852, 'profession': 5853, 'inspire': 5854, 'triangle': 5855, 'neurotic': 5856, 'hides': 5857, 'racing': 5858, 'handles': 5859, 'token': 5860, 'commenting': 5861, 'bates': 5862, 'northern': 5863, 'accurately': 5864, 'trials': 5865, 'mercy': 5866, 'btw': 5867, 'lifeless': 5868, 'formed': 5869, 'suggestion': 5870, 'bars': 5871, 'fifth': 5872, 'hangs': 5873, 'holocaust': 5874, 'landed': 5875, 'mannerisms': 5876, 'hum': 5877, 'preferred': 5878, 'duration': 5879, 'pacific': 5880, 'razor': 5881, 'milo': 5882, 'wanders': 5883, 'natalie': 5884, 'windows': 5885, 'uniformly': 5886, 'newer': 5887, 'proving': 5888, 'sorely': 5889, 'huston': 5890, 'mon': 5891, 'niece': 5892, 'trier': 5893, 'braveheart': 5894, 'bogus': 5895, 'mitch': 5896, 'alexandre': 5897, 'deer': 5898, 'tara': 5899, 'moe': 5900, 'goldsworthy': 5901, 'fishburne': 5902, 'carlito': 5903, 'mutual': 5904, 'ripping': 5905, 'buzz': 5906, 'demanding': 5907, 'hulk': 5908, 'setup': 5909, 'heels': 5910, 'tops': 5911, 'nations': 5912, 'undead': 5913, 'neatly': 5914, 'helpful': 5915, 'bowl': 5916, 'brooding': 5917, 'predecessor': 5918, 'entered': 5919, 'exquisite': 5920, 'cartoonish': 5921, 'insanity': 5922, 'randolph': 5923, 'clara': 5924, 'sleeps': 5925, 'sleaze': 5926, 'gods': 5927, 'wtf': 5928, 'altered': 5929, 'errol': 5930, 'outright': 5931, 'ie': 5932, 'justified': 5933, 'myth': 5934, 'forgiven': 5935, 'speeches': 5936, 'creek': 5937, 'earn': 5938, 'vile': 5939, 'eleven': 5940, 'choosing': 5941, 'arc': 5942, 'dj': 5943, 'healthy': 5944, 'evolution': 5945, 'biblical': 5946, 'elevator': 5947, 'jared': 5948, 'obtain': 5949, 'cbs': 5950, 'sincerely': 5951, 'engrossing': 5952, 'audition': 5953, 'conrad': 5954, 'rear': 5955, 'demonic': 5956, 'refuse': 5957, 'armstrong': 5958, 'firmly': 5959, 'reliable': 5960, 'seeming': 5961, 'skit': 5962, 'spies': 5963, 'tapes': 5964, 'kazan': 5965, 'gilliam': 5966, 'lex': 5967, 'disastrous': 5968, 'liu': 5969, 'containing': 5970, 'nina': 5971, 'einstein': 5972, 'evelyn': 5973, 'mcqueen': 5974, 'contempt': 5975, 'highway': 5976, 'topics': 5977, 'guards': 5978, 'boris': 5979, 'emerge': 5980, 'dim': 5981, 'shell': 5982, 'cerebral': 5983, 'miniseries': 5984, 'sometime': 5985, 'crossing': 5986, 'poker': 5987, 'realities': 5988, 'kent': 5989, 'owners': 5990, 'regards': 5991, 'carmen': 5992, 'approaches': 5993, 'akin': 5994, 'restrained': 5995, 'stare': 5996, 'artwork': 5997, 'destroys': 5998, 'frontal': 5999, 'label': 6000, 'mason': 6001, 'startling': 6002, 'ol': 6003, 'injured': 6004, 'leaders': 6005, 'describing': 6006, 'error': 6007, 'goldblum': 6008, 'educated': 6009, 'statue': 6010, 'disgrace': 6011, 'bsg': 6012, 'helpless': 6013, 'mixing': 6014, 'hats': 6015, 'casino': 6016, 'grateful': 6017, 'cons': 6018, 'homicide': 6019, 'tower': 6020, 'truman': 6021, 'deny': 6022, 'rampage': 6023, 'addict': 6024, 'lampoon': 6025, 'shaped': 6026, 'rooting': 6027, 'critique': 6028, 'seedy': 6029, 'mesmerizing': 6030, 'sergeant': 6031, 'insights': 6032, 'preparing': 6033, 'radical': 6034, 'candidate': 6035, 'gable': 6036, 'potter': 6037, 'boasts': 6038, 'activity': 6039, 'survives': 6040, 'luis': 6041, 'walt': 6042, 'shepherd': 6043, 'bloom': 6044, 'judd': 6045, 'bachelor': 6046, 'paula': 6047, 'subtly': 6048, 'vain': 6049, 'deliverance': 6050, 'cemetery': 6051, 'antonio': 6052, 'joker': 6053, 'salman': 6054, 'conan': 6055, 'capote': 6056, 'exploits': 6057, 'affects': 6058, 'lauren': 6059, 'lean': 6060, 'unlikeable': 6061, 'rapidly': 6062, 'washed': 6063, 'cinemas': 6064, 'gimmick': 6065, 'owes': 6066, 'relentless': 6067, 'votes': 6068, 'banter': 6069, 'terminator': 6070, 'masterfully': 6071, 'photographs': 6072, 'hers': 6073, 'applaud': 6074, 'grounds': 6075, 'freeze': 6076, 'compete': 6077, 'dazzling': 6078, 'jacket': 6079, 'sg': 6080, 'disgust': 6081, 'hugely': 6082, 'wardrobe': 6083, 'located': 6084, 'thirties': 6085, 'bravo': 6086, 'crashes': 6087, 'mum': 6088, 'disguised': 6089, 'advertised': 6090, 'homes': 6091, 'giants': 6092, 'wrenching': 6093, 'linear': 6094, 'vastly': 6095, 'refers': 6096, 'contribution': 6097, 'repulsive': 6098, 'dubious': 6099, 'growth': 6100, 'narrow': 6101, 'scariest': 6102, 'weaker': 6103, 'bach': 6104, 'las': 6105, 'inspirational': 6106, 'nominations': 6107, 'puppets': 6108, 'internal': 6109, 'ingrid': 6110, 'jill': 6111, 'scarface': 6112, 'tokyo': 6113, 'corporation': 6114, 'modest': 6115, 'jedi': 6116, 'miami': 6117, 'des': 6118, 'caricature': 6119, 'masterson': 6120, 'cain': 6121, 'origin': 6122, 'coat': 6123, 'rides': 6124, 'monty': 6125, 'bulk': 6126, 'hackman': 6127, 'thunderbirds': 6128, 'reeve': 6129, 'hi': 6130, 'corn': 6131, 'youthful': 6132, 'se': 6133, 'origins': 6134, 'homosexuality': 6135, 'motive': 6136, 'headache': 6137, 'vehicles': 6138, 'natured': 6139, 'detract': 6140, 'hires': 6141, 'reward': 6142, 'males': 6143, 'butcher': 6144, 'insults': 6145, 'missile': 6146, 'expertly': 6147, 'strengths': 6148, 'gained': 6149, 'decline': 6150, 'arab': 6151, 'standout': 6152, 'galaxy': 6153, 'unsuspecting': 6154, 'convinces': 6155, 'abruptly': 6156, 'mates': 6157, 'dread': 6158, 'swallow': 6159, 'christina': 6160, 'ally': 6161, 'authenticity': 6162, 'continuing': 6163, 'sniper': 6164, 'spine': 6165, 'bones': 6166, 'factors': 6167, 'perception': 6168, 'limitations': 6169, 'stunningly': 6170, 'excellently': 6171, 'undeniably': 6172, 'unsure': 6173, 'chronicles': 6174, 'damned': 6175, 'screenwriters': 6176, 'harlow': 6177, 'convicted': 6178, 'sophie': 6179, 'lasts': 6180, 'cecil': 6181, 'youtube': 6182, 'macabre': 6183, 'sale': 6184, 'gates': 6185, 'scifi': 6186, 'casper': 6187, 'inaccurate': 6188, 'wonderland': 6189, 'cents': 6190, 'mabel': 6191, 'painter': 6192, 'porter': 6193, 'underwear': 6194, 'amrita': 6195, 'crosby': 6196, 'parsons': 6197, 'mitchum': 6198, 'soylent': 6199, 'beowulf': 6200, 'supply': 6201, 'sinking': 6202, 'toni': 6203, 'anil': 6204, 'nerves': 6205, 'earnest': 6206, 'lend': 6207, 'residents': 6208, 'literal': 6209, 'rookie': 6210, 'playboy': 6211, 'users': 6212, 'juliet': 6213, 'owned': 6214, 'underwater': 6215, 'longest': 6216, 'feast': 6217, 'stalking': 6218, 'burke': 6219, 'netflix': 6220, 'energetic': 6221, 'suburban': 6222, 'clash': 6223, 'polly': 6224, 'dominated': 6225, 'buys': 6226, 'spit': 6227, 'yep': 6228, 'cliches': 6229, 'lance': 6230, 'implied': 6231, 'mobile': 6232, 'colours': 6233, 'tossed': 6234, 'colleagues': 6235, 'definitive': 6236, 'confront': 6237, 'bruno': 6238, 'disabled': 6239, 'exterior': 6240, 'divorced': 6241, 'teams': 6242, 'referring': 6243, 'repressed': 6244, 'derivative': 6245, 'puerto': 6246, 'entering': 6247, 'lighter': 6248, 'resolved': 6249, 'unimaginative': 6250, 'misfortune': 6251, 'siblings': 6252, 'sgt': 6253, 'dealer': 6254, 'judgment': 6255, 'pray': 6256, 'endlessly': 6257, 'uniform': 6258, 'pirate': 6259, 'jarring': 6260, 'published': 6261, 'unattractive': 6262, 'span': 6263, 'lennon': 6264, 'witchcraft': 6265, 'vividly': 6266, 'mutant': 6267, 'enhanced': 6268, 'confronted': 6269, 'delicious': 6270, 'magician': 6271, 'wander': 6272, 'salvation': 6273, 'accessible': 6274, 'promptly': 6275, 'mice': 6276, 'kinnear': 6277, 'slide': 6278, 'fatale': 6279, 'servants': 6280, 'entirety': 6281, 'garland': 6282, 'stardom': 6283, 'ronald': 6284, 'cheadle': 6285, 'gypo': 6286, 'yokai': 6287, 'dilemma': 6288, 'yours': 6289, 'bubble': 6290, 'estranged': 6291, 'sized': 6292, 'scratch': 6293, 'wounds': 6294, 'senior': 6295, 'dismal': 6296, 'assembled': 6297, 'hindi': 6298, 'separated': 6299, 'depths': 6300, 'characteristics': 6301, 'victorian': 6302, 'cleaning': 6303, 'approaching': 6304, 'devastating': 6305, 'asia': 6306, 'exorcist': 6307, 'exit': 6308, 'butch': 6309, 'readers': 6310, 'snuff': 6311, 'cyborg': 6312, 'pale': 6313, 'blooded': 6314, 'races': 6315, 'habit': 6316, 'stranded': 6317, 'depict': 6318, 'biting': 6319, 'spencer': 6320, 'mama': 6321, 'nerve': 6322, 'tax': 6323, 'belly': 6324, 'eventual': 6325, 'filthy': 6326, 'expects': 6327, 'inherent': 6328, 'irene': 6329, 'sensible': 6330, 'severed': 6331, 'cries': 6332, 'wong': 6333, 'offbeat': 6334, 'improbable': 6335, 'owns': 6336, 'interact': 6337, 'bashing': 6338, 'sticking': 6339, 'astounding': 6340, 'laurie': 6341, 'meandering': 6342, 'grass': 6343, 'principle': 6344, 'glued': 6345, 'loy': 6346, 'dragons': 6347, 'foolish': 6348, 'crisp': 6349, 'breathing': 6350, 'identical': 6351, 'harriet': 6352, 'imo': 6353, 'respectable': 6354, 'cypher': 6355, 'jules': 6356, 'nbc': 6357, 'anyhow': 6358, 'drinks': 6359, 'tormented': 6360, 'lola': 6361, 'caron': 6362, 'erika': 6363, 'jodie': 6364, 'syndrome': 6365, 'passengers': 6366, 'chopped': 6367, 'fragile': 6368, 'incapable': 6369, 'isolation': 6370, 'quentin': 6371, 'deliberate': 6372, 'sought': 6373, 'numbing': 6374, 'stylized': 6375, 'tremendously': 6376, 'expectation': 6377, 'possess': 6378, 'promoted': 6379, 'spectacle': 6380, 'judged': 6381, 'breakdown': 6382, 'pattern': 6383, 'demonstrate': 6384, 'sublime': 6385, 'basket': 6386, 'pocket': 6387, 'plotting': 6388, 'exploit': 6389, 'rider': 6390, 'reminder': 6391, 'tool': 6392, 'turd': 6393, 'ugh': 6394, 'principals': 6395, 'zorro': 6396, 'sf': 6397, 'escaping': 6398, 'odyssey': 6399, 'conveyed': 6400, 'dump': 6401, 'esquire': 6402, 'laden': 6403, 'flashes': 6404, 'enthusiastic': 6405, 'lightning': 6406, 'budgets': 6407, 'quarter': 6408, 'flimsy': 6409, 'hippies': 6410, 'classy': 6411, 'berkeley': 6412, 'wisely': 6413, 'glaring': 6414, 'subway': 6415, 'dustin': 6416, 'sand': 6417, 'jan': 6418, 'connor': 6419, 'concentrate': 6420, 'psychopath': 6421, 'worms': 6422, 'noticeable': 6423, 'lo': 6424, 'answered': 6425, 'deanna': 6426, 'toby': 6427, 'franklin': 6428, 'immortal': 6429, 'adore': 6430, 'filmmaking': 6431, 'packs': 6432, 'decidedly': 6433, 'axe': 6434, 'cheaply': 6435, 'troma': 6436, 'appeals': 6437, 'steam': 6438, 'werewolves': 6439, 'informed': 6440, 'balanced': 6441, 'nightclub': 6442, 'hayworth': 6443, 'minnelli': 6444, 'clay': 6445, 'barbra': 6446, 'miranda': 6447, 'timmy': 6448, 'pegg': 6449, 'thurman': 6450, 'pumbaa': 6451, 'sidewalk': 6452, 'celebrated': 6453, 'rescued': 6454, 'reports': 6455, 'excruciatingly': 6456, 'debt': 6457, 'reviewing': 6458, 'voyage': 6459, 'copied': 6460, 'romeo': 6461, 'cal': 6462, 'divine': 6463, 'conveniently': 6464, 'rewarding': 6465, 'sydney': 6466, 'combines': 6467, 'contribute': 6468, 'absorbing': 6469, 'longing': 6470, 'whiny': 6471, 'expose': 6472, 'stephanie': 6473, 'intricate': 6474, 'embrace': 6475, 'vintage': 6476, 'crown': 6477, 'pound': 6478, 'moron': 6479, 'arguing': 6480, 'jealousy': 6481, 'goods': 6482, 'cape': 6483, 'clone': 6484, 'samantha': 6485, 'selected': 6486, 'outline': 6487, 'volume': 6488, 'gentlemen': 6489, 'updated': 6490, 'fiance': 6491, 'accepting': 6492, 'spaghetti': 6493, 'downs': 6494, 'collect': 6495, 'freaky': 6496, 'messing': 6497, 'busey': 6498, 'melvyn': 6499, 'attacking': 6500, 'accounts': 6501, 'robertson': 6502, 'ominous': 6503, 'ensure': 6504, 'karate': 6505, 'revolt': 6506, 'shepard': 6507, 'pause': 6508, 'destructive': 6509, 'colored': 6510, 'europeans': 6511, 'advised': 6512, 'frontier': 6513, 'ultimatum': 6514, 'seymour': 6515, 'kidnapping': 6516, 'sentimentality': 6517, 'experiencing': 6518, 'addiction': 6519, 'crippled': 6520, 'pierre': 6521, 'cunningham': 6522, 'gamera': 6523, 'quantum': 6524, 'crashing': 6525, 'sanders': 6526, 'fleshed': 6527, 'whining': 6528, 'collette': 6529, 'sucker': 6530, 'turmoil': 6531, 'establish': 6532, 'bikini': 6533, 'fright': 6534, 'dashing': 6535, 'anticipated': 6536, 'bachchan': 6537, 'rainy': 6538, 'slip': 6539, 'aussie': 6540, 'stroke': 6541, 'unsatisfying': 6542, 'pursue': 6543, 'jaded': 6544, 'dukes': 6545, 'tendency': 6546, 'resulted': 6547, 'furniture': 6548, 'thieves': 6549, 'knocks': 6550, 'theories': 6551, 'delighted': 6552, 'distract': 6553, 'goals': 6554, 'aggressive': 6555, 'taboo': 6556, 'cliffhanger': 6557, 'intentional': 6558, 'sarcastic': 6559, 'arguments': 6560, 'niven': 6561, 'longoria': 6562, 'ricky': 6563, 'remembering': 6564, 'peaceful': 6565, 'aided': 6566, 'august': 6567, 'jewel': 6568, 'salesman': 6569, 'jury': 6570, 'horny': 6571, 'swearing': 6572, 'indiana': 6573, 'comprehend': 6574, 'dame': 6575, 'havoc': 6576, 'incorrect': 6577, 'adaption': 6578, 'morals': 6579, 'tourist': 6580, 'daisy': 6581, 'overblown': 6582, 'immense': 6583, 'fassbinder': 6584, 'suspected': 6585, 'fairbanks': 6586, 'stella': 6587, 'parallels': 6588, 'herman': 6589, 'grandma': 6590, 'stones': 6591, 'juliette': 6592, 'inmates': 6593, 'obsessive': 6594, 'liam': 6595, 'hadley': 6596, 'hannah': 6597, 'vanilla': 6598, 'switched': 6599, 'chill': 6600, 'vince': 6601, 'taped': 6602, 'cutter': 6603, 'deputy': 6604, 'bounty': 6605, 'establishment': 6606, 'arquette': 6607, 'jenna': 6608, 'ghetto': 6609, 'wine': 6610, 'hybrid': 6611, 'establishing': 6612, 'consideration': 6613, 'angie': 6614, 'insomnia': 6615, 'tolerable': 6616, 'mouthed': 6617, 'approached': 6618, 'alleged': 6619, 'didnt': 6620, 'collective': 6621, 'lethal': 6622, 'peculiar': 6623, 'gilbert': 6624, 'subtext': 6625, 'commitment': 6626, 'distress': 6627, 'graveyard': 6628, 'shift': 6629, 'alter': 6630, 'cultures': 6631, 'fills': 6632, 'lang': 6633, 'begging': 6634, 'routines': 6635, 'carnage': 6636, 'adrian': 6637, 'demonstrated': 6638, 'afterward': 6639, 'lavish': 6640, 'virtual': 6641, 'arrest': 6642, 'define': 6643, 'traits': 6644, 'hyper': 6645, 'trace': 6646, 'jolie': 6647, 'apply': 6648, 'shootout': 6649, 'admired': 6650, 'bogart': 6651, 'polish': 6652, 'predictably': 6653, 'jersey': 6654, 'puzzle': 6655, 'redundant': 6656, 'stream': 6657, 'spice': 6658, 'climb': 6659, 'goodbye': 6660, 'boiled': 6661, 'exploding': 6662, 'aiming': 6663, 'slaves': 6664, 'psychologist': 6665, 'realization': 6666, 'thelma': 6667, 'avoiding': 6668, 'fascist': 6669, 'optimistic': 6670, 'backed': 6671, 'canceled': 6672, 'dumber': 6673, 'demille': 6674, 'overboard': 6675, 'morons': 6676, 'rebellious': 6677, 'wielding': 6678, 'rivers': 6679, 'sixth': 6680, 'ae': 6681, 'herbert': 6682, 'clive': 6683, 'papers': 6684, 'passage': 6685, 'korea': 6686, 'rowlands': 6687, 'mystical': 6688, 'jacques': 6689, 'arranged': 6690, 'serum': 6691, 'dramatically': 6692, 'brainless': 6693, 'schneider': 6694, 'mormon': 6695, 'debbie': 6696, 'clooney': 6697, 'sarandon': 6698, 'slugs': 6699, 'vega': 6700, 'gielgud': 6701, 'chiba': 6702, 'smash': 6703, 'reviewed': 6704, 'arriving': 6705, 'achieves': 6706, 'skinny': 6707, 'hateful': 6708, 'tuned': 6709, 'fools': 6710, 'remembers': 6711, 'kathy': 6712, 'commits': 6713, 'horrified': 6714, 'exploited': 6715, 'consciousness': 6716, 'settled': 6717, 'courtroom': 6718, 'mentor': 6719, 'shoe': 6720, 'respects': 6721, 'phenomenal': 6722, 'olds': 6723, 'enhance': 6724, 'borders': 6725, 'puppy': 6726, 'document': 6727, 'mythology': 6728, 'populated': 6729, 'wiped': 6730, 'explodes': 6731, 'pad': 6732, 'scored': 6733, 'newcomer': 6734, 'sources': 6735, 'seasoned': 6736, 'anytime': 6737, 'leap': 6738, 'crosses': 6739, 'sickening': 6740, 'poses': 6741, 'marilyn': 6742, 'verdict': 6743, 'sammo': 6744, 'diverse': 6745, 'insist': 6746, 'monologue': 6747, 'relentlessly': 6748, 'pirates': 6749, 'upside': 6750, 'slapped': 6751, 'contributed': 6752, 'mouths': 6753, 'sang': 6754, 'lunch': 6755, 'ritual': 6756, 'feminine': 6757, 'wheel': 6758, 'cuban': 6759, 'strict': 6760, 'duel': 6761, 'excuses': 6762, 'madsen': 6763, 'whites': 6764, 'sunrise': 6765, 'sht': 6766, 'verbal': 6767, 'distraction': 6768, 'medieval': 6769, 'vanity': 6770, 'iturbi': 6771, 'pedestrian': 6772, 'acquired': 6773, 'python': 6774, 'trains': 6775, 'freaking': 6776, 'arkin': 6777, 'skilled': 6778, 'gibson': 6779, 'rea': 6780, 'anthology': 6781, 'georgia': 6782, 'elliott': 6783, 'dahmer': 6784, 'gershwin': 6785, 'update': 6786, 'haines': 6787, 'chong': 6788, 'colman': 6789, 'hooper': 6790, 'lionel': 6791, 'owl': 6792, 'mole': 6793, 'sailor': 6794, 'unsympathetic': 6795, 'pathos': 6796, 'denise': 6797, 'sheen': 6798, 'sundance': 6799, 'symbol': 6800, 'hoot': 6801, 'phase': 6802, 'meantime': 6803, 'controlling': 6804, 'defies': 6805, 'lowe': 6806, 'introducing': 6807, 'employee': 6808, 'attending': 6809, 'satisfaction': 6810, 'circles': 6811, 'drab': 6812, 'shockingly': 6813, 'encountered': 6814, 'ranch': 6815, 'awakening': 6816, 'pfeiffer': 6817, 'olivia': 6818, 'hooker': 6819, 'motorcycle': 6820, 'amidst': 6821, 'professionals': 6822, 'posing': 6823, 'themed': 6824, 'immigrant': 6825, 'tactics': 6826, 'foundation': 6827, 'readily': 6828, 'covering': 6829, 'romances': 6830, 'wash': 6831, 'sells': 6832, 'explosive': 6833, 'pushes': 6834, 'possesses': 6835, 'serials': 6836, 'coke': 6837, 'ira': 6838, 'deliciously': 6839, 'mysteriously': 6840, 'contestants': 6841, 'meal': 6842, 'forties': 6843, 'flower': 6844, 'invention': 6845, 'cliched': 6846, 'mortal': 6847, 'delightfully': 6848, 'mute': 6849, 'keys': 6850, 'vomit': 6851, 'guinea': 6852, 'novelty': 6853, 'regularly': 6854, 'instincts': 6855, 'seductive': 6856, 'psyche': 6857, 'bonnie': 6858, 'cigarette': 6859, 'cooking': 6860, 'doyle': 6861, 'flavor': 6862, 'legitimate': 6863, 'suggesting': 6864, 'lucille': 6865, 'feeble': 6866, 'penelope': 6867, 'expense': 6868, 'nun': 6869, 'planes': 6870, 'nuances': 6871, 'republic': 6872, 'clerk': 6873, 'fluid': 6874, 'beckinsale': 6875, 'cannes': 6876, 'dynamics': 6877, 'policy': 6878, 'wheelchair': 6879, 'weary': 6880, 'fried': 6881, 'gooding': 6882, 'possession': 6883, 'diary': 6884, 'predator': 6885, 'moss': 6886, 'dillinger': 6887, 'flock': 6888, 'israeli': 6889, 'otto': 6890, 'martian': 6891, 'laputa': 6892, 'fallon': 6893, 'deciding': 6894, 'truths': 6895, 'produces': 6896, 'noteworthy': 6897, 'rosario': 6898, 'auto': 6899, 'fanatic': 6900, 'forgetting': 6901, 'dumped': 6902, 'admitted': 6903, 'inaccuracies': 6904, 'narrated': 6905, 'gloria': 6906, 'stern': 6907, 'um': 6908, 'void': 6909, 'shifts': 6910, 'deed': 6911, 'intact': 6912, 'fuzzy': 6913, 'tho': 6914, 'wider': 6915, 'columbia': 6916, 'biker': 6917, 'arrow': 6918, 'rapid': 6919, 'economic': 6920, 'steer': 6921, 'shah': 6922, 'lends': 6923, 'viewpoint': 6924, 'motions': 6925, 'instances': 6926, 'followers': 6927, 'consist': 6928, 'cameraman': 6929, 'neglected': 6930, 'excruciating': 6931, 'agony': 6932, 'parking': 6933, 'anxious': 6934, 'swinging': 6935, 'darth': 6936, 'wastes': 6937, 'pros': 6938, 'july': 6939, 'degrees': 6940, 'centuries': 6941, 'assignment': 6942, 'screwball': 6943, 'abandon': 6944, 'statements': 6945, 'tickets': 6946, 'alot': 6947, 'releasing': 6948, 'aftermath': 6949, 'frog': 6950, 'goldie': 6951, 'arty': 6952, 'pursued': 6953, 'tcm': 6954, 'ordeal': 6955, 'indifferent': 6956, 'unusually': 6957, 'juan': 6958, 'discussed': 6959, 'attended': 6960, 'embarrassingly': 6961, 'convention': 6962, 'medicine': 6963, 'beg': 6964, 'detroit': 6965, 'gwyneth': 6966, 'vera': 6967, 'cindy': 6968, 'targets': 6969, 'products': 6970, 'reverse': 6971, 'starters': 6972, 'additionally': 6973, 'dumbest': 6974, 'idol': 6975, 'debra': 6976, 'kris': 6977, 'meteor': 6978, 'sondra': 6979, 'tomei': 6980, 'creasy': 6981, 'sided': 6982, 'daylight': 6983, 'slim': 6984, 'factual': 6985, 'stabbed': 6986, 'pains': 6987, 'ambitions': 6988, 'wayans': 6989, 'edison': 6990, 'abound': 6991, 'criticize': 6992, 'informative': 6993, 'distracted': 6994, 'compliment': 6995, 'sarcasm': 6996, 'edith': 6997, 'goodman': 6998, 'cycle': 6999, 'click': 7000, 'flames': 7001, 'unanswered': 7002, 'indicate': 7003, 'begun': 7004, 'breast': 7005, 'frantic': 7006, 'muslims': 7007, 'mick': 7008, 'trigger': 7009, 'scripting': 7010, 'invite': 7011, 'misunderstood': 7012, 'ny': 7013, 'casablanca': 7014, 'tomb': 7015, 'soprano': 7016, 'originals': 7017, 'intro': 7018, 'inclusion': 7019, 'warns': 7020, 'consequently': 7021, 'stating': 7022, 'funding': 7023, 'crossed': 7024, 'executives': 7025, 'geek': 7026, 'cody': 7027, 'incidents': 7028, 'brow': 7029, 'obstacles': 7030, 'kidnap': 7031, 'eli': 7032, 'hostel': 7033, 'macdonald': 7034, 'jose': 7035, 'session': 7036, 'begs': 7037, 'cap': 7038, 'artistry': 7039, 'grip': 7040, 'manners': 7041, 'roughly': 7042, 'enigmatic': 7043, 'toned': 7044, 'controversy': 7045, 'cab': 7046, 'corey': 7047, 'rice': 7048, 'phoenix': 7049, 'shaggy': 7050, 'suspicion': 7051, 'graduate': 7052, 'simpsons': 7053, 'galactica': 7054, 'fleet': 7055, 'dominic': 7056, 'northam': 7057, 'rejects': 7058, 'wright': 7059, 'ruining': 7060, 'sentences': 7061, 'rational': 7062, 'campus': 7063, 'likeable': 7064, 'coffin': 7065, 'greene': 7066, 'meyer': 7067, 'gallery': 7068, 'godard': 7069, 'snipes': 7070, 'visconti': 7071, 'snowman': 7072, 'flavia': 7073, 'kathleen': 7074, 'maureen': 7075, 'relevance': 7076, 'sweden': 7077, 'guardian': 7078, 'bait': 7079, 'plodding': 7080, 'blamed': 7081, 'frances': 7082, 'frozen': 7083, 'gap': 7084, 'realistically': 7085, 'denouement': 7086, 'mock': 7087, 'rambling': 7088, 'depictions': 7089, 'seats': 7090, 'hayes': 7091, 'festivals': 7092, 'coma': 7093, 'uniforms': 7094, 'cow': 7095, 'determination': 7096, 'robbers': 7097, 'county': 7098, 'bosses': 7099, 'grabbed': 7100, 'stink': 7101, 'murky': 7102, 'envy': 7103, 'relating': 7104, 'destination': 7105, 'antagonist': 7106, 'sly': 7107, 'brat': 7108, 'generate': 7109, 'investigator': 7110, 'apt': 7111, 'therapy': 7112, 'protest': 7113, 'translate': 7114, 'duh': 7115, 'hmmm': 7116, 'chamber': 7117, 'pen': 7118, 'stance': 7119, 'pans': 7120, 'paranoid': 7121, 'momentum': 7122, 'playwright': 7123, 'exclusively': 7124, 'sterling': 7125, 'alliance': 7126, 'mccarthy': 7127, 'replies': 7128, 'pointing': 7129, 'convict': 7130, 'saloon': 7131, 'enchanted': 7132, 'geisha': 7133, 'dreamy': 7134, 'intensely': 7135, 'consequence': 7136, 'varied': 7137, 'surroundings': 7138, 'sweat': 7139, 'schedule': 7140, 'iranian': 7141, 'mandy': 7142, 'delirious': 7143, 'collins': 7144, 'combs': 7145, 'foil': 7146, 'stalked': 7147, 'rips': 7148, 'heath': 7149, 'fellini': 7150, 'eagerly': 7151, 'shore': 7152, 'abortion': 7153, 'paints': 7154, 'uncanny': 7155, 'apple': 7156, 'redneck': 7157, 'johansson': 7158, 'stiles': 7159, 'reiser': 7160, 'stardust': 7161, 'vonnegut': 7162, 'beckham': 7163, 'dafoe': 7164, 'lurking': 7165, 'parrot': 7166, 'replacement': 7167, 'burnt': 7168, 'services': 7169, 'gaps': 7170, 'necessity': 7171, 'shotgun': 7172, 'lastly': 7173, 'midst': 7174, 'scenarios': 7175, 'gigantic': 7176, 'isabelle': 7177, 'diner': 7178, 'collector': 7179, 'veterans': 7180, 'paths': 7181, 'talky': 7182, 'awareness': 7183, 'quasi': 7184, 'politicians': 7185, 'glimpses': 7186, 'rounds': 7187, 'participants': 7188, 'bennett': 7189, 'overs': 7190, 'ignoring': 7191, 'periods': 7192, 'capacity': 7193, 'communication': 7194, 'randall': 7195, 'sunset': 7196, 'comeback': 7197, 'sketches': 7198, 'goat': 7199, 'du': 7200, 'sonny': 7201, 'composition': 7202, 'warden': 7203, 'brett': 7204, 'lens': 7205, 'launch': 7206, 'apocalyptic': 7207, 'traps': 7208, 'characterisation': 7209, 'rehash': 7210, 'resembling': 7211, 'injury': 7212, 'ambiguity': 7213, 'hawn': 7214, 'precise': 7215, 'phones': 7216, 'sights': 7217, 'faux': 7218, 'battlestar': 7219, 'revolving': 7220, 'entrance': 7221, 'myrtle': 7222, 'bauer': 7223, 'hysterically': 7224, 'resume': 7225, 'gus': 7226, 'bleed': 7227, 'foremost': 7228, 'linked': 7229, 'imaginary': 7230, 'widowed': 7231, 'sensibility': 7232, 'hmm': 7233, 'natali': 7234, 'curiously': 7235, 'occult': 7236, 'rewarded': 7237, 'brides': 7238, 'handicapped': 7239, 'fruit': 7240, 'resistance': 7241, 'lunatic': 7242, 'brooke': 7243, 'barney': 7244, 'gestures': 7245, 'sebastian': 7246, 'dismiss': 7247, 'bats': 7248, 'baron': 7249, 'omar': 7250, 'glance': 7251, 'russo': 7252, 'giovanna': 7253, 'rohmer': 7254, 'loren': 7255, 'coburn': 7256, 'scarlet': 7257, 'october': 7258, 'lopez': 7259, 'adele': 7260, 'finney': 7261, 'blaise': 7262, 'slater': 7263, 'rupert': 7264, 'feinstone': 7265, 'gackt': 7266, 'sho': 7267, 'nightmarish': 7268, 'substantial': 7269, 'trauma': 7270, 'blockbusters': 7271, 'platform': 7272, 'cheers': 7273, 'studied': 7274, 'fuel': 7275, 'whore': 7276, 'voyager': 7277, 'gathering': 7278, 'iq': 7279, 'ins': 7280, 'unclear': 7281, 'brien': 7282, 'qualify': 7283, 'payoff': 7284, 'masked': 7285, 'misty': 7286, 'addressed': 7287, 'safely': 7288, 'ample': 7289, 'overbearing': 7290, 'applied': 7291, 'psychedelic': 7292, 'avid': 7293, 'joking': 7294, 'imagining': 7295, 'targeted': 7296, 'complications': 7297, 'pilots': 7298, 'benefits': 7299, 'angelina': 7300, 'pivotal': 7301, 'popped': 7302, 'tightly': 7303, 'gosh': 7304, 'slashers': 7305, 'haunt': 7306, 'smell': 7307, 'apocalypse': 7308, 'upcoming': 7309, 'nuanced': 7310, 'meredith': 7311, 'hinted': 7312, 'jar': 7313, 'sins': 7314, 'supreme': 7315, 'eh': 7316, 'sparks': 7317, 'epics': 7318, 'vignettes': 7319, 'marisa': 7320, 'bearing': 7321, 'ferrell': 7322, 'characterizations': 7323, 'maintains': 7324, 'massey': 7325, 'rodriguez': 7326, 'girlfriends': 7327, 'pressed': 7328, 'sufficient': 7329, 'jude': 7330, 'convent': 7331, 'jagger': 7332, 'laboratory': 7333, 'applies': 7334, 'benjamin': 7335, 'gloomy': 7336, 'offend': 7337, 'reflected': 7338, 'existing': 7339, 'extensive': 7340, 'rolls': 7341, 'incest': 7342, 'prophecy': 7343, 'ignores': 7344, 'stake': 7345, 'brent': 7346, 'watcher': 7347, 'cena': 7348, 'dynamite': 7349, 'hostage': 7350, 'biopic': 7351, 'hating': 7352, 'locke': 7353, 'je': 7354, 'blandings': 7355, 'silverman': 7356, 'stadium': 7357, 'unstable': 7358, 'revival': 7359, 'homicidal': 7360, 'diego': 7361, 'anita': 7362, 'kristofferson': 7363, 'evans': 7364, 'martino': 7365, 'kells': 7366, 'olsen': 7367, 'shin': 7368, 'hines': 7369, 'shahid': 7370, 'aaron': 7371, 'grendel': 7372, 'ajay': 7373, 'orchestra': 7374, 'interior': 7375, 'fart': 7376, 'caretaker': 7377, 'mannered': 7378, 'observation': 7379, 'doug': 7380, 'clunky': 7381, 'stereotyped': 7382, 'fortunate': 7383, 'skeptical': 7384, 'witnessing': 7385, 'sour': 7386, 'nauseating': 7387, 'observe': 7388, 'invested': 7389, 'disco': 7390, 'repeats': 7391, 'rebels': 7392, 'profile': 7393, 'protection': 7394, 'excellence': 7395, 'plate': 7396, 'interviewed': 7397, 'acknowledge': 7398, 'beard': 7399, 'visitor': 7400, 'reunite': 7401, 'weekly': 7402, 'tire': 7403, 'outlandish': 7404, 'bernsen': 7405, 'marcel': 7406, 'marked': 7407, 'bonanza': 7408, 'flag': 7409, 'announced': 7410, 'courtesy': 7411, 'valid': 7412, 'boundaries': 7413, 'thailand': 7414, 'stations': 7415, 'baddies': 7416, 'versa': 7417, 'enchanting': 7418, 'murderers': 7419, 'nutshell': 7420, 'reserved': 7421, 'relying': 7422, 'exploitative': 7423, 'controls': 7424, 'divided': 7425, 'observations': 7426, 'organization': 7427, 'favourites': 7428, 'peril': 7429, 'pose': 7430, 'resolve': 7431, 'drowned': 7432, 'diversity': 7433, 'turkish': 7434, 'madeleine': 7435, 'collar': 7436, 'boo': 7437, 'sheets': 7438, 'coward': 7439, 'engine': 7440, 'boots': 7441, 'marine': 7442, 'choir': 7443, 'interpretations': 7444, 'maximum': 7445, 'vivian': 7446, 'novelist': 7447, 'merry': 7448, 'unfolding': 7449, 'slower': 7450, 'gorilla': 7451, 'turtle': 7452, 'aime': 7453, 'mash': 7454, 'pornography': 7455, 'bias': 7456, 'stabbing': 7457, 'assure': 7458, 'interrupted': 7459, 'russ': 7460, 'questioning': 7461, 'frost': 7462, 'array': 7463, 'candle': 7464, 'rourke': 7465, 'carlos': 7466, 'boogie': 7467, 'upstairs': 7468, 'phantasm': 7469, 'artemisia': 7470, 'gannon': 7471, 'brashear': 7472, 'unnatural': 7473, 'blazing': 7474, 'ripoff': 7475, 'harrowing': 7476, 'evokes': 7477, 'monotonous': 7478, 'tones': 7479, 'commendable': 7480, 'chuckles': 7481, 'customers': 7482, 'landmark': 7483, 'spotlight': 7484, 'wrestler': 7485, 'fundamental': 7486, 'finishes': 7487, 'famed': 7488, 'arrogance': 7489, 'enduring': 7490, 'insert': 7491, 'manipulation': 7492, 'rightly': 7493, 'villainous': 7494, 'magically': 7495, 'substitute': 7496, 'trivial': 7497, 'sheep': 7498, 'similarity': 7499, 'thrust': 7500, 'shocks': 7501, 'chandler': 7502, 'deemed': 7503, 'entries': 7504, 'thunder': 7505, 'progressed': 7506, 'samuel': 7507, 'smug': 7508, 'cocaine': 7509, 'wartime': 7510, 'chew': 7511, 'seduce': 7512, 'sholay': 7513, 'chewing': 7514, 'displaying': 7515, 'peggy': 7516, 'sara': 7517, 'palm': 7518, 'strung': 7519, 'obscurity': 7520, 'criticized': 7521, 'climbing': 7522, 'madison': 7523, 'ursula': 7524, 'needing': 7525, 'chaotic': 7526, 'colleague': 7527, 'counting': 7528, 'bittersweet': 7529, 'spade': 7530, 'crushed': 7531, 'understatement': 7532, 'thereby': 7533, 'vargas': 7534, 'confined': 7535, 'slavery': 7536, 'waking': 7537, 'nora': 7538, 'admits': 7539, 'inter': 7540, 'commanding': 7541, 'sincerity': 7542, 'conductor': 7543, 'ninety': 7544, 'bonham': 7545, 'satanic': 7546, 'sanity': 7547, 'garfield': 7548, 'accidental': 7549, 'janet': 7550, 'unhinged': 7551, 'sherlock': 7552, 'daytime': 7553, 'realises': 7554, 'inadvertently': 7555, 'somethings': 7556, 'riff': 7557, 'neal': 7558, 'portuguese': 7559, 'unappealing': 7560, 'bust': 7561, 'travis': 7562, 'preaching': 7563, 'raging': 7564, 'pecker': 7565, 'cedric': 7566, 'gino': 7567, 'duchovny': 7568, 'reagan': 7569, 'ernie': 7570, 'jackman': 7571, 'projected': 7572, 'govinda': 7573, 'guevara': 7574, 'luzhin': 7575, 'scarecrows': 7576, 'characteristic': 7577, 'reminding': 7578, 'celebrities': 7579, 'penned': 7580, 'shred': 7581, 'ala': 7582, 'tashan': 7583, 'kirsten': 7584, 'wee': 7585, 'atlantic': 7586, 'comparable': 7587, 'stumble': 7588, 'dreaming': 7589, 'explode': 7590, 'recover': 7591, 'climatic': 7592, 'glossy': 7593, 'spontaneous': 7594, 'article': 7595, 'contestant': 7596, 'scheming': 7597, 'reluctantly': 7598, 'motel': 7599, 'flame': 7600, 'traditions': 7601, 'forgiveness': 7602, 'devotion': 7603, 'hostile': 7604, 'unfamiliar': 7605, 'goings': 7606, 'deeds': 7607, 'voodoo': 7608, 'protective': 7609, 'herd': 7610, 'zodiac': 7611, 'perverted': 7612, 'takashi': 7613, 'finishing': 7614, 'testing': 7615, 'eagle': 7616, 'segal': 7617, 'egyptian': 7618, 'seattle': 7619, 'rendering': 7620, 'pizza': 7621, 'spoiling': 7622, 'remark': 7623, 'wholesome': 7624, 'cancelled': 7625, 'hardened': 7626, 'convenient': 7627, 'chip': 7628, 'barker': 7629, 'dallas': 7630, 'fetish': 7631, 'scarlett': 7632, 'charges': 7633, 'transparent': 7634, 'filmography': 7635, 'participate': 7636, 'elsa': 7637, 'howling': 7638, 'belle': 7639, 'sylvia': 7640, 'shameless': 7641, 'krueger': 7642, 'camping': 7643, 'dangerously': 7644, 'discipline': 7645, 'quintessential': 7646, 'tits': 7647, 'aesthetic': 7648, 'yell': 7649, 'file': 7650, 'cheerful': 7651, 'burial': 7652, 'forgets': 7653, 'sitcoms': 7654, 'chloe': 7655, 'subsequently': 7656, 'myrna': 7657, 'achievements': 7658, 'clarity': 7659, 'traumatic': 7660, 'kaufman': 7661, 'liotta': 7662, 'beers': 7663, 'jo': 7664, 'understandably': 7665, 'layered': 7666, 'castro': 7667, 'incestuous': 7668, 'seth': 7669, 'accompanying': 7670, 'district': 7671, 'tide': 7672, 'suzanne': 7673, 'sophia': 7674, 'bert': 7675, 'stuffed': 7676, 'hugo': 7677, 'ram': 7678, 'crooks': 7679, 'despise': 7680, 'dreyfuss': 7681, 'laying': 7682, 'lara': 7683, 'redford': 7684, 'bean': 7685, 'caprica': 7686, 'harron': 7687, 'hobgoblins': 7688, 'serbian': 7689, 'deathtrap': 7690, 'sack': 7691, 'warehouse': 7692, 'captivated': 7693, 'fraud': 7694, 'restraint': 7695, 'faded': 7696, 'drift': 7697, 'cells': 7698, 'practical': 7699, 'pee': 7700, 'surround': 7701, 'sunk': 7702, 'salvage': 7703, 'monks': 7704, 'ruled': 7705, 'sexist': 7706, 'gangs': 7707, 'abundance': 7708, 'grandpa': 7709, 'fades': 7710, 'admission': 7711, 'proceed': 7712, 'verge': 7713, 'coolest': 7714, 'shameful': 7715, 'hallmark': 7716, 'awry': 7717, 'semblance': 7718, 'grin': 7719, 'raid': 7720, 'admirer': 7721, 'temper': 7722, 'hunted': 7723, 'implies': 7724, 'flashing': 7725, 'tools': 7726, 'fires': 7727, 'desk': 7728, 'defining': 7729, 'earliest': 7730, 'orphan': 7731, 'constraints': 7732, 'monica': 7733, 'inserted': 7734, 'unnecessarily': 7735, 'taut': 7736, 'miraculously': 7737, 'juice': 7738, 'relaxed': 7739, 'betrayed': 7740, 'excels': 7741, 'distributed': 7742, 'prop': 7743, 'flip': 7744, 'oblivious': 7745, 'rampant': 7746, 'runaway': 7747, 'flows': 7748, 'sickness': 7749, 'rebellion': 7750, 'infinitely': 7751, 'dragging': 7752, 'whimsical': 7753, 'monroe': 7754, 'booth': 7755, 'cheering': 7756, 'almighty': 7757, 'facility': 7758, 'creations': 7759, 'mamet': 7760, 'letdown': 7761, 'kindly': 7762, 'drowning': 7763, 'affecting': 7764, 'conclusions': 7765, 'melancholy': 7766, 'imho': 7767, 'sales': 7768, 'slut': 7769, 'faye': 7770, 'espionage': 7771, 'license': 7772, 'ideals': 7773, 'regime': 7774, 'ernest': 7775, 'cracks': 7776, 'ealing': 7777, 'joint': 7778, 'titular': 7779, 'babes': 7780, 'byron': 7781, 'tess': 7782, 'kinski': 7783, 'busby': 7784, 'digging': 7785, 'shannon': 7786, 'henchmen': 7787, 'gena': 7788, 'pm': 7789, 'raunchy': 7790, 'bronte': 7791, 'preacher': 7792, 'beforehand': 7793, 'considers': 7794, 'philo': 7795, 'unconventional': 7796, 'summed': 7797, 'sheridan': 7798, 'holt': 7799, 'annoy': 7800, 'wesley': 7801, 'pornographic': 7802, 'oprah': 7803, 'han': 7804, 'fritz': 7805, 'pia': 7806, 'depardieu': 7807, 'polar': 7808, 'gypsy': 7809, 'val': 7810, 'informer': 7811, 'meadows': 7812, 'bloodbath': 7813, 'melbourne': 7814, 'lubitsch': 7815, 'senator': 7816, 'redgrave': 7817, 'jabba': 7818, 'fashions': 7819, 'fiend': 7820, 'demeanor': 7821, 'permanent': 7822, 'reject': 7823, 'meek': 7824, 'criticisms': 7825, 'engineer': 7826, 'outrageously': 7827, 'caper': 7828, 'complained': 7829, 'liner': 7830, 'hometown': 7831, 'unleashed': 7832, 'norton': 7833, 'bout': 7834, 'encouraged': 7835, 'uneasy': 7836, 'payne': 7837, 'grease': 7838, 'travolta': 7839, 'switching': 7840, 'ensue': 7841, 'adapt': 7842, 'dominate': 7843, 'sporting': 7844, 'clouds': 7845, 'borrow': 7846, 'detached': 7847, 'aniston': 7848, 'assistance': 7849, 'faint': 7850, 'ghostly': 7851, 'plug': 7852, 'inclined': 7853, 'snap': 7854, 'fodder': 7855, 'screened': 7856, 'committing': 7857, 'assumes': 7858, 'seuss': 7859, 'irritated': 7860, 'censorship': 7861, 'theodore': 7862, 'mister': 7863, 'superstar': 7864, 'heap': 7865, 'programme': 7866, 'remainder': 7867, 'awaiting': 7868, 'vapid': 7869, 'robotic': 7870, 'ambiance': 7871, 'ghastly': 7872, 'motivated': 7873, 'deepest': 7874, 'joining': 7875, 'pitched': 7876, 'sh': 7877, 'egypt': 7878, 'mart': 7879, 'robbed': 7880, 'overtones': 7881, 'shirts': 7882, 'presidential': 7883, 'mud': 7884, 'luc': 7885, 'quaint': 7886, 'openly': 7887, 'wherever': 7888, 'evoke': 7889, 'blondell': 7890, 'sane': 7891, 'lindy': 7892, 'listened': 7893, 'spiral': 7894, 'occupied': 7895, 'searched': 7896, 'rivals': 7897, 'pursuing': 7898, 'edmund': 7899, 'battlefield': 7900, 'sucking': 7901, 'upbeat': 7902, 'failures': 7903, 'variation': 7904, 'lil': 7905, 'alarm': 7906, 'croc': 7907, 'hes': 7908, 'madman': 7909, 'sixteen': 7910, 'avoids': 7911, 'gretchen': 7912, 'toxic': 7913, 'englund': 7914, 'networks': 7915, 'compensate': 7916, 'automatic': 7917, 'colony': 7918, 'radiation': 7919, 'buffy': 7920, 'marvin': 7921, 'crowe': 7922, 'chops': 7923, 'zelah': 7924, 'pauline': 7925, 'spaceship': 7926, 'gandolfini': 7927, 'paycheck': 7928, 'cloak': 7929, 'benny': 7930, 'underdeveloped': 7931, 'solved': 7932, 'circa': 7933, 'shrek': 7934, 'coop': 7935, 'sergio': 7936, 'intend': 7937, 'martians': 7938, 'submarine': 7939, 'dictator': 7940, 'macmurray': 7941, 'dunst': 7942, 'arnie': 7943, 'vcr': 7944, 'dwight': 7945, 'cheech': 7946, 'forrest': 7947, 'scratching': 7948, 'surf': 7949, 'mega': 7950, 'awarded': 7951, 'policemen': 7952, 'deck': 7953, 'fairness': 7954, 'experts': 7955, 'distinction': 7956, 'dante': 7957, 'prologue': 7958, 'progression': 7959, 'darkly': 7960, 'abomination': 7961, 'pretends': 7962, 'connie': 7963, 'helmet': 7964, 'surrender': 7965, 'happenings': 7966, 'atrocity': 7967, 'wu': 7968, 'electronic': 7969, 'midget': 7970, 'revolver': 7971, 'garage': 7972, 'vincenzo': 7973, 'mediocrity': 7974, 'nineties': 7975, 'idealistic': 7976, 'transport': 7977, 'defending': 7978, 'poet': 7979, 'bodyguard': 7980, 'britney': 7981, 'drum': 7982, 'gig': 7983, 'flowing': 7984, 'cassie': 7985, 'impending': 7986, 'sensual': 7987, 'prone': 7988, 'peckinpah': 7989, 'ninjas': 7990, 'whip': 7991, 'data': 7992, 'pigs': 7993, 'enormously': 7994, 'admiration': 7995, 'stoned': 7996, 'sharks': 7997, 'client': 7998, 'badness': 7999, 'buttons': 8000, 'diving': 8001, 'sections': 8002, 'dash': 8003, 'carpet': 8004, 'knees': 8005, 'sober': 8006, 'avenge': 8007, 'battling': 8008, 'peers': 8009, 'disappearance': 8010, 'prostitutes': 8011, 'noting': 8012, 'brit': 8013, 'fitzgerald': 8014, 'epitome': 8015, 'clyde': 8016, 'bartender': 8017, 'marijuana': 8018, 'stepmother': 8019, 'egg': 8020, 'principles': 8021, 'disregard': 8022, 'edges': 8023, 'loner': 8024, 'courageous': 8025, 'confuse': 8026, 'mack': 8027, 'crashed': 8028, 'vet': 8029, 'incidental': 8030, 'brazilian': 8031, 'farrah': 8032, 'coppola': 8033, 'vigilante': 8034, 'suave': 8035, 'notices': 8036, 'warrant': 8037, 'dom': 8038, 'investment': 8039, 'dern': 8040, 'slam': 8041, 'offense': 8042, 'mustache': 8043, 'roach': 8044, 'patty': 8045, 'myra': 8046, 'farnsworth': 8047, 'dyke': 8048, 'mira': 8049, 'everett': 8050, 'paz': 8051, 'vaughn': 8052, 'boogeyman': 8053, 'fagin': 8054, 'hanzo': 8055, 'worrying': 8056, 'sinks': 8057, 'interiors': 8058, 'baked': 8059, 'framing': 8060, 'kareena': 8061, 'mobster': 8062, 'asset': 8063, 'signature': 8064, 'combining': 8065, 'grating': 8066, 'conveying': 8067, 'respond': 8068, 'employees': 8069, 'socially': 8070, 'timed': 8071, 'effortlessly': 8072, 'economy': 8073, 'secure': 8074, 'sandy': 8075, 'labeled': 8076, 'influences': 8077, 'elephants': 8078, 'auteur': 8079, 'attic': 8080, 'annoyance': 8081, 'brush': 8082, 'categories': 8083, 'cohesive': 8084, 'curtain': 8085, 'qualifies': 8086, 'bastard': 8087, 'barnes': 8088, 'concentration': 8089, 'ostensibly': 8090, 'torment': 8091, 'spelled': 8092, 'boobs': 8093, 'reported': 8094, 'magazines': 8095, 'outset': 8096, 'parodies': 8097, 'bleeding': 8098, 'emmy': 8099, 'rodney': 8100, 'frat': 8101, 'unravel': 8102, 'budding': 8103, 'transforms': 8104, 'sync': 8105, 'cursed': 8106, 'believability': 8107, 'saints': 8108, 'banks': 8109, 'paragraph': 8110, 'breathe': 8111, 'prank': 8112, 'celebrate': 8113, 'december': 8114, 'division': 8115, 'counterparts': 8116, 'managing': 8117, 'tended': 8118, 'blames': 8119, 'programming': 8120, 'alba': 8121, 'queens': 8122, 'elected': 8123, 'clarence': 8124, 'sensitivity': 8125, 'liberty': 8126, 'drawings': 8127, 'marcus': 8128, 'tackle': 8129, 'billing': 8130, 'tacked': 8131, 'ma': 8132, 'acclaim': 8133, 'manipulated': 8134, 'bites': 8135, 'sammy': 8136, 'lin': 8137, 'norris': 8138, 'pairing': 8139, 'pickup': 8140, 'woefully': 8141, 'knights': 8142, 'ang': 8143, 'clinic': 8144, 'plummer': 8145, 'helena': 8146, 'tin': 8147, 'associate': 8148, 'stab': 8149, 'shield': 8150, 'bart': 8151, 'rivalry': 8152, 'vibe': 8153, 'spoofs': 8154, 'distinctive': 8155, 'padding': 8156, 'closure': 8157, 'symbols': 8158, 'wan': 8159, 'damsel': 8160, 'weirdness': 8161, 'riders': 8162, 'geoffrey': 8163, 'prostitution': 8164, 'reese': 8165, 'bimbo': 8166, 'classmates': 8167, 'dillon': 8168, 'irving': 8169, 'maurice': 8170, 'forsythe': 8171, 'shatner': 8172, 'della': 8173, 'palestinian': 8174, 'lindsey': 8175, 'beetle': 8176, 'harilal': 8177, 'panahi': 8178, 'distorted': 8179, 'culkin': 8180, 'chock': 8181, 'bless': 8182, 'officially': 8183, 'shelter': 8184, 'ads': 8185, 'gasp': 8186, 'morse': 8187, 'fiery': 8188, 'ali': 8189, 'slept': 8190, 'screenplays': 8191, 'retirement': 8192, 'guru': 8193, 'inform': 8194, 'boards': 8195, 'informs': 8196, 'terrorism': 8197, 'inconsistencies': 8198, 'attendant': 8199, 'shocker': 8200, 'joshua': 8201, 'heather': 8202, 'sustain': 8203, 'injustice': 8204, 'starship': 8205, 'troopers': 8206, 'armor': 8207, 'sites': 8208, 'collapse': 8209, 'tolerance': 8210, 'casted': 8211, 'manga': 8212, 'swiss': 8213, 'replacing': 8214, 'worship': 8215, 'perspectives': 8216, 'fabric': 8217, 'glenda': 8218, 'sensibilities': 8219, 'pompous': 8220, 'stirring': 8221, 'strained': 8222, 'monday': 8223, 'theatres': 8224, 'pam': 8225, 'katie': 8226, 'crypt': 8227, 'reasoning': 8228, 'examine': 8229, 'advances': 8230, 'uncertain': 8231, 'structured': 8232, 'mills': 8233, 'nest': 8234, 'burgess': 8235, 'confines': 8236, 'pepper': 8237, 'reunited': 8238, 'drain': 8239, 'hairy': 8240, 'funky': 8241, 'zu': 8242, 'tolerate': 8243, 'freed': 8244, 'blessed': 8245, 'dish': 8246, 'responds': 8247, 'anxiety': 8248, 'animator': 8249, 'brick': 8250, 'towns': 8251, 'ewoks': 8252, 'judgement': 8253, 'yells': 8254, 'spelling': 8255, 'abu': 8256, 'jam': 8257, 'worm': 8258, 'allan': 8259, 'butchered': 8260, 'laser': 8261, 'placement': 8262, 'hilton': 8263, 'latino': 8264, 'derived': 8265, 'hans': 8266, 'tramp': 8267, 'apollo': 8268, 'bogdanovich': 8269, 'manic': 8270, 'sibling': 8271, 'dwarf': 8272, 'seduction': 8273, 'systems': 8274, 'perverse': 8275, 'brandon': 8276, 'transplant': 8277, 'archer': 8278, 'pervert': 8279, 'retro': 8280, 'slash': 8281, 'lighthearted': 8282, 'downfall': 8283, 'mercifully': 8284, 'overshadowed': 8285, 'playful': 8286, 'seriousness': 8287, 'keanu': 8288, 'alexandra': 8289, 'gruff': 8290, 'parks': 8291, 'cockney': 8292, 'noam': 8293, 'clutter': 8294, 'mae': 8295, 'influential': 8296, 'daria': 8297, 'malden': 8298, 'apartheid': 8299, 'cruella': 8300, 'islands': 8301, 'reno': 8302, 'kalifornia': 8303, 'sacrifices': 8304, 'floriane': 8305, 'jigsaw': 8306, 'fawcett': 8307, 'kilmer': 8308, 'sammi': 8309, 'muni': 8310, 'midler': 8311, 'warhols': 8312, 'luxury': 8313, 'predecessors': 8314, 'amid': 8315, 'beth': 8316, 'tricked': 8317, 'bitchy': 8318, 'bombed': 8319, 'enthralling': 8320, 'ceremony': 8321, 'strain': 8322, 'determine': 8323, 'hypnotic': 8324, 'overwrought': 8325, 'rousing': 8326, 'stricken': 8327, 'drastically': 8328, 'imitate': 8329, 'sensational': 8330, 'henchman': 8331, 'uptight': 8332, 'sigh': 8333, 'rockets': 8334, 'spotted': 8335, 'depend': 8336, 'stabs': 8337, 'staging': 8338, 'scriptwriter': 8339, 'collaboration': 8340, 'thereof': 8341, 'cunning': 8342, 'fierce': 8343, 'plagued': 8344, 'powered': 8345, 'outlaw': 8346, 'hunky': 8347, 'justification': 8348, 'romania': 8349, 'euro': 8350, 'decency': 8351, 'villa': 8352, 'stripper': 8353, 'echoes': 8354, 'caution': 8355, 'superfluous': 8356, 'inexperienced': 8357, 'bing': 8358, 'aircraft': 8359, 'adultery': 8360, 'standpoint': 8361, 'transported': 8362, 'mythical': 8363, 'winners': 8364, 'locale': 8365, 'natasha': 8366, 'marrying': 8367, 'hale': 8368, 'mines': 8369, 'register': 8370, 'lanza': 8371, 'russians': 8372, 'communism': 8373, 'padded': 8374, 'allies': 8375, 'crowded': 8376, 'portions': 8377, 'anguish': 8378, 'reckless': 8379, 'lt': 8380, 'identified': 8381, 'entertains': 8382, 'undercover': 8383, 'kramer': 8384, 'jurassic': 8385, 'lurid': 8386, 'mostel': 8387, 'lions': 8388, 'tasty': 8389, 'correctness': 8390, 'czech': 8391, 'baddie': 8392, 'awfulness': 8393, 'lifts': 8394, 'bigfoot': 8395, 'captive': 8396, 'ceiling': 8397, 'barton': 8398, 'dealers': 8399, 'virtue': 8400, 'nearest': 8401, 'willingly': 8402, 'rant': 8403, 'stares': 8404, 'monologues': 8405, 'thereafter': 8406, 'cheesiness': 8407, 'kidnaps': 8408, 'emphasize': 8409, 'diaz': 8410, 'observed': 8411, 'jewelry': 8412, 'fur': 8413, 'drugged': 8414, 'plotted': 8415, 'surgeon': 8416, 'bliss': 8417, 'presume': 8418, 'impressions': 8419, 'toro': 8420, 'dunne': 8421, 'coal': 8422, 'toole': 8423, 'throne': 8424, 'confession': 8425, 'shoved': 8426, 'harbor': 8427, 'premiered': 8428, 'sorrow': 8429, 'todays': 8430, 'widower': 8431, 'shaun': 8432, 'muriel': 8433, 'shout': 8434, 'interplay': 8435, 'gen': 8436, 'functions': 8437, 'marines': 8438, 'vertigo': 8439, 'fiasco': 8440, 'supermarket': 8441, 'orlando': 8442, 'willy': 8443, 'scarier': 8444, 'fixed': 8445, 'berenger': 8446, 'tina': 8447, 'gladiator': 8448, 'representing': 8449, 'lingering': 8450, 'fighters': 8451, 'handy': 8452, 'lars': 8453, 'geniuses': 8454, 'drummer': 8455, 'cringing': 8456, 'anchors': 8457, 'bloodshed': 8458, 'lizard': 8459, 'scorpion': 8460, 'cowardly': 8461, 'sophistication': 8462, 'peaks': 8463, 'yarn': 8464, 'bio': 8465, 'hallucinations': 8466, 'condemned': 8467, 'pertwee': 8468, 'cannibals': 8469, 'ossessione': 8470, 'mixes': 8471, 'henderson': 8472, 'maintaining': 8473, 'opposition': 8474, 'varying': 8475, 'hawaii': 8476, 'kornbluth': 8477, 'brennan': 8478, 'kusturica': 8479, 'groove': 8480, 'luthor': 8481, 'rosenstrasse': 8482, 'forbes': 8483, 'chevy': 8484, 'chen': 8485, 'promoting': 8486, 'locate': 8487, 'conflicted': 8488, 'finely': 8489, 'confirmed': 8490, 'applause': 8491, 'arch': 8492, 'gravity': 8493, 'irrational': 8494, 'icy': 8495, 'trusted': 8496, 'developments': 8497, 'engagement': 8498, 'representative': 8499, 'liberties': 8500, 'missions': 8501, 'judges': 8502, 'millennium': 8503, 'disappoints': 8504, 'posh': 8505, 'mcdermott': 8506, 'maturity': 8507, 'artistically': 8508, 'scandal': 8509, 'profoundly': 8510, 'wrongly': 8511, 'crooked': 8512, 'gently': 8513, 'gusto': 8514, 'mac': 8515, 'pleasures': 8516, 'borrows': 8517, 'predictability': 8518, 'romanian': 8519, 'dedication': 8520, 'echo': 8521, 'nifty': 8522, 'ebay': 8523, 'garde': 8524, 'richly': 8525, 'lists': 8526, 'lays': 8527, 'censors': 8528, 'clockwork': 8529, 'showcases': 8530, 'horn': 8531, 'earns': 8532, 'launched': 8533, 'corbin': 8534, 'jerky': 8535, 'rogue': 8536, 'deborah': 8537, 'schwarzenegger': 8538, 'chemical': 8539, 'kings': 8540, 'torturing': 8541, 'rudd': 8542, 'officials': 8543, 'continuously': 8544, 'extraordinarily': 8545, 'intelligently': 8546, 'switches': 8547, 'capitalism': 8548, 'abstract': 8549, 'dodgy': 8550, 'identities': 8551, 'bald': 8552, 'proportions': 8553, 'dive': 8554, 'jew': 8555, 'grossly': 8556, 'loony': 8557, 'predicted': 8558, 'tsui': 8559, 'imprisoned': 8560, 'celeste': 8561, 'analyze': 8562, 'bills': 8563, 'significantly': 8564, 'sensation': 8565, 'contributes': 8566, 'rhyme': 8567, 'uninspiring': 8568, 'liar': 8569, 'pub': 8570, 'confronts': 8571, 'expresses': 8572, 'denying': 8573, 'maugham': 8574, 'airing': 8575, 'consumed': 8576, 'limp': 8577, 'penis': 8578, 'subdued': 8579, 'inhabit': 8580, 'downbeat': 8581, 'denial': 8582, 'zeta': 8583, 'fuss': 8584, 'mocking': 8585, 'athletic': 8586, 'hurry': 8587, 'spells': 8588, 'caruso': 8589, 'continent': 8590, 'paired': 8591, 'vienna': 8592, 'optimism': 8593, 'flew': 8594, 'laced': 8595, 'aura': 8596, 'theres': 8597, 'steaming': 8598, 'icons': 8599, 'stevenson': 8600, 'authors': 8601, 'fence': 8602, 'thorn': 8603, 'federal': 8604, 'vaudeville': 8605, 'groundbreaking': 8606, 'operate': 8607, 'tango': 8608, 'sleeper': 8609, 'potent': 8610, 'foreboding': 8611, 'gathered': 8612, 'intellectually': 8613, 'abroad': 8614, 'threads': 8615, 'weaver': 8616, 'genetic': 8617, 'mutants': 8618, 'photograph': 8619, 'bon': 8620, 'cradle': 8621, 'temptation': 8622, 'cheung': 8623, 'bishop': 8624, 'freaked': 8625, 'anonymous': 8626, 'mastroianni': 8627, 'robbing': 8628, 'hoover': 8629, 'mcdowell': 8630, 'ratio': 8631, 'accomplishment': 8632, 'animations': 8633, 'ledger': 8634, 'sleepy': 8635, 'lansbury': 8636, 'dopey': 8637, 'ballroom': 8638, 'grady': 8639, 'sorvino': 8640, 'sasquatch': 8641, 'moonstruck': 8642, 'granger': 8643, 'thug': 8644, 'melinda': 8645, 'honey': 8646, 'fanning': 8647, 'dukakis': 8648, 'penguin': 8649, 'lila': 8650, 'dickinson': 8651, 'simba': 8652, 'azumi': 8653, 'keeper': 8654, 'supportive': 8655, 'notwithstanding': 8656, 'autobiography': 8657, 'languages': 8658, 'bearable': 8659, 'percent': 8660, 'ravishing': 8661, 'scattered': 8662, 'penalty': 8663, 'cynicism': 8664, 'billion': 8665, 'aboard': 8666, 'sweeping': 8667, 'preferably': 8668, 'increase': 8669, 'reportedly': 8670, 'celine': 8671, 'throats': 8672, 'bloke': 8673, 'increasing': 8674, 'puzzled': 8675, 'lesbians': 8676, 'deservedly': 8677, 'conniving': 8678, 'gee': 8679, 'cinematographic': 8680, 'liz': 8681, 'mechanic': 8682, 'shiny': 8683, 'thumb': 8684, 'distinctly': 8685, 'explanations': 8686, 'shelves': 8687, 'alcoholism': 8688, 'fulfilling': 8689, 'zealand': 8690, 'prolific': 8691, 'illustrate': 8692, 'visceral': 8693, 'cloth': 8694, 'chop': 8695, 'muscle': 8696, 'valerie': 8697, 'transformers': 8698, 'doris': 8699, 'inch': 8700, 'mans': 8701, 'illustrated': 8702, 'appalled': 8703, 'lawn': 8704, 'oblivion': 8705, 'corridors': 8706, 'golf': 8707, 'hazzard': 8708, 'transitions': 8709, 'tedium': 8710, 'ongoing': 8711, 'sykes': 8712, 'lightweight': 8713, 'knocking': 8714, 'patriotic': 8715, 'blackmail': 8716, 'slaughtered': 8717, 'hustler': 8718, 'satisfactory': 8719, 'goo': 8720, 'thirds': 8721, 'legion': 8722, 'unwilling': 8723, 'spinning': 8724, 'violently': 8725, 'nonexistent': 8726, 'glow': 8727, 'illusion': 8728, 'shady': 8729, 'heavenly': 8730, 'idiocy': 8731, 'shifting': 8732, 'upbringing': 8733, 'kenny': 8734, 'defy': 8735, 'melt': 8736, 'behaving': 8737, 'sabu': 8738, 'ahmad': 8739, 'civilians': 8740, 'prefers': 8741, 'pavarotti': 8742, 'efficient': 8743, 'toss': 8744, 'brunette': 8745, 'carnival': 8746, 'rapture': 8747, 'manipulate': 8748, 'dogma': 8749, 'fewer': 8750, 'sore': 8751, 'bothers': 8752, 'holland': 8753, 'virginity': 8754, 'pond': 8755, 'swift': 8756, 'kingsley': 8757, 'whipped': 8758, 'welch': 8759, 'unnerving': 8760, 'tables': 8761, 'profit': 8762, 'bullies': 8763, 'rko': 8764, 'marx': 8765, 'elder': 8766, 'elmer': 8767, 'operating': 8768, 'shrill': 8769, 'simpler': 8770, 'heroin': 8771, 'ranger': 8772, 'owe': 8773, 'sloane': 8774, 'dani': 8775, 'herrings': 8776, 'boost': 8777, 'chang': 8778, 'lds': 8779, 'hogan': 8780, 'quirks': 8781, 'gung': 8782, 'snowy': 8783, 'righteous': 8784, 'rizzo': 8785, 'attributes': 8786, 'witted': 8787, 'booker': 8788, 'uncredited': 8789, 'elliot': 8790, 'michaels': 8791, 'agatha': 8792, 'atomic': 8793, 'mcadams': 8794, 'shawn': 8795, 'peterson': 8796, 'taker': 8797, 'izzard': 8798, 'cracker': 8799, 'greenaway': 8800, 'prophet': 8801, 'tolkien': 8802, 'ogre': 8803, 'cortez': 8804, 'lorre': 8805, 'mattei': 8806, 'zhang': 8807, 'gram': 8808, 'sarne': 8809, 'pals': 8810, 'teddy': 8811, 'urgency': 8812, 'chef': 8813, 'imitating': 8814, 'volumes': 8815, 'associates': 8816, 'rack': 8817, 'mastermind': 8818, 'leaps': 8819, 'hungarian': 8820, 'chat': 8821, 'prolonged': 8822, 'slips': 8823, 'bothering': 8824, 'irresistible': 8825, 'cheat': 8826, 'denver': 8827, 'passenger': 8828, 'pistol': 8829, 'gays': 8830, 'doses': 8831, 'fleeting': 8832, 'heir': 8833, 'mockery': 8834, 'prejudices': 8835, 'fulfill': 8836, 'ash': 8837, 'astonishingly': 8838, 'alienation': 8839, 'disasters': 8840, 'straw': 8841, 'deadpan': 8842, 'caesar': 8843, 'bonds': 8844, 'innuendo': 8845, 'notions': 8846, 'lommel': 8847, 'mo': 8848, 'believer': 8849, 'nt': 8850, 'breakthrough': 8851, 'compromise': 8852, 'association': 8853, 'maverick': 8854, 'flamboyant': 8855, 'happier': 8856, 'torch': 8857, 'comprised': 8858, 'afghanistan': 8859, 'zoom': 8860, 'knives': 8861, 'dental': 8862, 'conquest': 8863, 'hug': 8864, 'moderately': 8865, 'needlessly': 8866, 'muscular': 8867, 'animators': 8868, 'climate': 8869, 'unconscious': 8870, 'vulnerability': 8871, 'toe': 8872, 'seventh': 8873, 'recurring': 8874, 'recovering': 8875, 'healing': 8876, 'immigrants': 8877, 'annoyingly': 8878, 'insignificant': 8879, 'meanings': 8880, 'lure': 8881, 'korda': 8882, 'portman': 8883, 'elisha': 8884, 'hark': 8885, 'swords': 8886, 'priests': 8887, 'leno': 8888, 'numbingly': 8889, 'electricity': 8890, 'youngsters': 8891, 'coverage': 8892, 'marjorie': 8893, 'aztec': 8894, 'il': 8895, 'dangers': 8896, 'recipe': 8897, 'zany': 8898, 'purse': 8899, 'succession': 8900, 'amoral': 8901, 'fable': 8902, 'supports': 8903, 'cousins': 8904, 'shakespearean': 8905, 'grisly': 8906, 'traveled': 8907, 'relates': 8908, 'improvised': 8909, 'overtly': 8910, 'fleeing': 8911, 'tasks': 8912, 'retrieve': 8913, 'imply': 8914, 'backwoods': 8915, 'relaxing': 8916, 'perceived': 8917, 'ranging': 8918, 'heartless': 8919, 'theo': 8920, 'neeson': 8921, 'rapes': 8922, 'proudly': 8923, 'mandatory': 8924, 'examined': 8925, 'monastery': 8926, 'flipping': 8927, 'levy': 8928, 'keitel': 8929, 'architect': 8930, 'nerdy': 8931, 'subtitled': 8932, 'gi': 8933, 'coleman': 8934, 'rotting': 8935, 'compositions': 8936, 'trendy': 8937, 'lightly': 8938, 'harlin': 8939, 'delia': 8940, 'reruns': 8941, 'protecting': 8942, 'metropolis': 8943, 'darius': 8944, 'sematary': 8945, 'eddy': 8946, 'pasolini': 8947, 'encourages': 8948, 'mcgavin': 8949, 'cillian': 8950, 'maguire': 8951, 'angelo': 8952, 'crenna': 8953, 'barbarian': 8954, 'dietrich': 8955, 'wrath': 8956, 'tobe': 8957, 'claw': 8958, 'khouri': 8959, 'sleuth': 8960, 'durbin': 8961, 'hammerhead': 8962, 'meyers': 8963, 'christensen': 8964, 'ecstasy': 8965, 'dominick': 8966, 'lawyers': 8967, 'italians': 8968, 'muted': 8969, 'existential': 8970, 'shattering': 8971, 'saif': 8972, 'snatch': 8973, 'academic': 8974, 'assortment': 8975, 'guided': 8976, 'stature': 8977, 'impeccable': 8978, 'worldwide': 8979, 'rebecca': 8980, 'truthful': 8981, 'recreate': 8982, 'chocolate': 8983, 'crawl': 8984, 'steamy': 8985, 'stretches': 8986, 'welcomed': 8987, 'honeymoon': 8988, 'chapters': 8989, 'poke': 8990, 'placing': 8991, 'giggle': 8992, 'rico': 8993, 'farewell': 8994, 'custody': 8995, 'drivers': 8996, 'architecture': 8997, 'largest': 8998, 'borderline': 8999, 'treating': 9000, 'boxes': 9001, 'versatile': 9002, 'stumbling': 9003, 'expand': 9004, 'compassionate': 9005, 'intellect': 9006, 'continuous': 9007, 'naval': 9008, 'backdrops': 9009, 'dodge': 9010, 'locales': 9011, 'shamelessly': 9012, 'bombing': 9013, 'balloon': 9014, 'kiddie': 9015, 'downtown': 9016, 'theirs': 9017, 'adequately': 9018, 'janitor': 9019, 'overwhelmed': 9020, 'insects': 9021, 'hedy': 9022, 'orgy': 9023, 'crass': 9024, 'jock': 9025, 'daphne': 9026, 'interspersed': 9027, 'feared': 9028, 'inc': 9029, 'pour': 9030, 'shrink': 9031, 'concludes': 9032, 'temporary': 9033, 'smarmy': 9034, 'ss': 9035, 'behalf': 9036, 'roommates': 9037, 'nutty': 9038, 'tested': 9039, 'undertaker': 9040, 'wwi': 9041, 'seinfeld': 9042, 'frenzy': 9043, 'retelling': 9044, 'duff': 9045, 'rugged': 9046, 'gage': 9047, 'roads': 9048, 'distinguished': 9049, 'yearning': 9050, 'watered': 9051, 'bucket': 9052, 'harlem': 9053, 'opponents': 9054, 'burden': 9055, 'neglect': 9056, 'breathless': 9057, 'plants': 9058, 'irresponsible': 9059, 'irwin': 9060, 'jolly': 9061, 'inhabited': 9062, 'keeler': 9063, 'counted': 9064, 'backyard': 9065, 'heavens': 9066, 'administration': 9067, 'islam': 9068, 'expressing': 9069, 'astronauts': 9070, 'astronaut': 9071, 'unemployed': 9072, 'stimulating': 9073, 'kamal': 9074, 'rewrite': 9075, 'expanded': 9076, 'spitting': 9077, 'behaves': 9078, 'sans': 9079, 'rusty': 9080, 'induced': 9081, 'passions': 9082, 'connolly': 9083, 'darling': 9084, 'amok': 9085, 'concentrated': 9086, 'stalks': 9087, 'wolves': 9088, 'unlucky': 9089, 'micheal': 9090, 'tourists': 9091, 'climbs': 9092, 'limbs': 9093, 'management': 9094, 'counterpart': 9095, 'hopeful': 9096, 'jed': 9097, 'rene': 9098, 'lange': 9099, 'supremacy': 9100, 'pranks': 9101, 'slug': 9102, 'branch': 9103, 'passive': 9104, 'morgana': 9105, 'benoit': 9106, 'corky': 9107, 'hector': 9108, 'cristina': 9109, 'deathstalker': 9110, 'sailors': 9111, 'callahan': 9112, 'carface': 9113, 'zabriskie': 9114, 'philadelphia': 9115, 'danning': 9116, 'wai': 9117, 'batwoman': 9118, 'aweigh': 9119, 'mj': 9120, 'duryea': 9121, 'jameson': 9122, 'planted': 9123, 'loop': 9124, 'revelations': 9125, 'disdain': 9126, 'marathon': 9127, 'garcia': 9128, 'illiterate': 9129, 'concentrates': 9130, 'mpaa': 9131, 'converted': 9132, 'undeveloped': 9133, 'overacts': 9134, 'maiden': 9135, 'shaolin': 9136, 'choreographer': 9137, 'contemplate': 9138, 'loathing': 9139, 'casually': 9140, 'bash': 9141, 'incompetence': 9142, 'marred': 9143, 'customs': 9144, 'bonding': 9145, 'corleone': 9146, 'apprentice': 9147, 'condescending': 9148, 'entertainer': 9149, 'embarrass': 9150, 'inherited': 9151, 'leary': 9152, 'plantation': 9153, 'graves': 9154, 'apologize': 9155, 'denied': 9156, 'cheaper': 9157, 'palette': 9158, 'subtleties': 9159, 'confronting': 9160, 'stupidest': 9161, 'atrocities': 9162, 'suspended': 9163, 'slew': 9164, 'kindness': 9165, 'lovingly': 9166, 'cocktail': 9167, 'uber': 9168, 'prevalent': 9169, 'macbeth': 9170, 'skipping': 9171, 'wipe': 9172, 'glee': 9173, 'knack': 9174, 'honorable': 9175, 'hardest': 9176, 'enhances': 9177, 'conception': 9178, 'blink': 9179, 'creeps': 9180, 'screamed': 9181, 'drums': 9182, 'splitting': 9183, 'sessions': 9184, 'boyfriends': 9185, 'stereotyping': 9186, 'practices': 9187, 'lecture': 9188, 'disappearing': 9189, 'leia': 9190, 'elevate': 9191, 'approximately': 9192, 'january': 9193, 'cocky': 9194, 'gimmicks': 9195, 'poo': 9196, 'woven': 9197, 'fugitive': 9198, 'lamarr': 9199, 'hayward': 9200, 'dime': 9201, 'promotion': 9202, 'hispanic': 9203, 'fleming': 9204, 'revolting': 9205, 'choke': 9206, 'discussions': 9207, 'mutated': 9208, 'conduct': 9209, 'sleeve': 9210, 'doesnt': 9211, 'crouse': 9212, 'tucker': 9213, 'opener': 9214, 'jessie': 9215, 'rehearsal': 9216, 'consisted': 9217, 'evolved': 9218, 'grandparents': 9219, 'alienate': 9220, 'footsteps': 9221, 'classified': 9222, 'dreadfully': 9223, 'arizona': 9224, 'cbc': 9225, 'sheila': 9226, 'waving': 9227, 'premises': 9228, 'knox': 9229, 'villagers': 9230, 'infidelity': 9231, 'waits': 9232, 'discernible': 9233, 'traumatized': 9234, 'azaria': 9235, 'restless': 9236, 'kinky': 9237, 'cloud': 9238, 'joanna': 9239, 'bravery': 9240, 'woke': 9241, 'bury': 9242, 'lyrical': 9243, 'seal': 9244, 'relied': 9245, 'intruder': 9246, 'brits': 9247, 'stoltz': 9248, 'mold': 9249, 'logo': 9250, 'smoothly': 9251, 'bursts': 9252, 'submit': 9253, 'speechless': 9254, 'wits': 9255, 'allison': 9256, 'puzzling': 9257, 'hare': 9258, 'pauses': 9259, 'regrets': 9260, 'hesitate': 9261, 'lieutenant': 9262, 'platoon': 9263, 'psychiatric': 9264, 'perceive': 9265, 'benson': 9266, 'gardens': 9267, 'fairytale': 9268, 'collecting': 9269, 'shack': 9270, 'usage': 9271, 'dripping': 9272, 'saddest': 9273, 'barman': 9274, 'nailed': 9275, 'lung': 9276, 'witherspoon': 9277, 'candidates': 9278, 'carole': 9279, 'bw': 9280, 'historians': 9281, 'eater': 9282, 'bruckheimer': 9283, 'flea': 9284, 'vault': 9285, 'smarter': 9286, 'pets': 9287, 'archive': 9288, 'capsule': 9289, 'slows': 9290, 'rhys': 9291, 'revive': 9292, 'forgivable': 9293, 'levant': 9294, 'switzerland': 9295, 'jackass': 9296, 'stir': 9297, 'alligator': 9298, 'vic': 9299, 'telly': 9300, 'grounded': 9301, 'carson': 9302, 'supporters': 9303, 'viggo': 9304, 'democracy': 9305, 'stubborn': 9306, 'bolivia': 9307, 'tel': 9308, 'askey': 9309, 'aiello': 9310, 'marlene': 9311, 'goofs': 9312, 'hamill': 9313, 'rainer': 9314, 'ella': 9315, 'vivah': 9316, 'mcintire': 9317, 'dahl': 9318, 'pita': 9319, 'kriemhild': 9320, 'immersed': 9321, 'request': 9322, 'stepped': 9323, 'hiv': 9324, 'chains': 9325, 'phrases': 9326, 'wolverine': 9327, 'crowds': 9328, 'sentenced': 9329, 'render': 9330, 'goof': 9331, 'surpasses': 9332, 'dense': 9333, 'drifter': 9334, 'til': 9335, 'friendships': 9336, 'stripped': 9337, 'societies': 9338, 'outrage': 9339, 'equals': 9340, 'adopt': 9341, 'psychologically': 9342, 'overt': 9343, 'operas': 9344, 'alternately': 9345, 'scantily': 9346, 'sparse': 9347, 'btk': 9348, 'oddball': 9349, 'matching': 9350, 'organs': 9351, 'grain': 9352, 'insanely': 9353, 'argento': 9354, 'underdog': 9355, 'capt': 9356, 'misplaced': 9357, 'hubby': 9358, 'vengeful': 9359, 'kerr': 9360, 'hunk': 9361, 'obscene': 9362, 'manufactured': 9363, 'thinner': 9364, 'anchorman': 9365, 'witless': 9366, 'noah': 9367, 'vanishing': 9368, 'bathing': 9369, 'crow': 9370, 'bass': 9371, 'miracles': 9372, 'participation': 9373, 'beau': 9374, 'butterfly': 9375, 'overseas': 9376, 'lap': 9377, 'springs': 9378, 'lucio': 9379, 'prevented': 9380, 'clumsily': 9381, 'strikingly': 9382, 'satellite': 9383, 'monstrous': 9384, 'spears': 9385, 'adventurous': 9386, 'incarnation': 9387, 'delve': 9388, 'untrue': 9389, 'intestines': 9390, 'superiors': 9391, 'rests': 9392, 'mindset': 9393, 'monstrosity': 9394, 'proverbial': 9395, 'snappy': 9396, 'admirably': 9397, 'nuance': 9398, 'interpret': 9399, 'confirm': 9400, 'thankful': 9401, 'norwegian': 9402, 'lamas': 9403, 'travelling': 9404, 'draft': 9405, 'mourning': 9406, 'betrays': 9407, 'email': 9408, 'apartments': 9409, 'regal': 9410, 'duties': 9411, 'creepiness': 9412, 'garnered': 9413, 'virtues': 9414, 'stoic': 9415, 'rushes': 9416, 'reception': 9417, 'gym': 9418, 'oriental': 9419, 'squeeze': 9420, 'rightfully': 9421, 'replay': 9422, 'sixty': 9423, 'dusty': 9424, 'regain': 9425, 'companions': 9426, 'locks': 9427, 'empathize': 9428, 'cathy': 9429, 'oppressive': 9430, 'reincarnation': 9431, 'sacrificed': 9432, 'spectrum': 9433, 'streak': 9434, 'blaine': 9435, 'tensions': 9436, 'haha': 9437, 'backing': 9438, 'dung': 9439, 'documents': 9440, 'spectacularly': 9441, 'diabolical': 9442, 'suggestive': 9443, 'winston': 9444, 'eliminate': 9445, 'brink': 9446, 'crook': 9447, 'fanatics': 9448, 'acknowledged': 9449, 'basil': 9450, 'vets': 9451, 'pulse': 9452, 'requisite': 9453, 'gifts': 9454, 'connecting': 9455, 'weirdo': 9456, 'slipped': 9457, 'criminally': 9458, 'sant': 9459, 'whacked': 9460, 'dane': 9461, 'beaver': 9462, 'horizon': 9463, 'kentucky': 9464, 'partial': 9465, 'swamp': 9466, 'eliminated': 9467, 'listing': 9468, 'sr': 9469, 'documented': 9470, 'lombard': 9471, 'itchy': 9472, 'technological': 9473, 'werner': 9474, 'surfers': 9475, 'montages': 9476, 'lotr': 9477, 'deception': 9478, 'assist': 9479, 'snippets': 9480, 'napoleon': 9481, 'mining': 9482, 'merrill': 9483, 'foch': 9484, 'november': 9485, 'liza': 9486, 'schumacher': 9487, 'longtime': 9488, 'grumpy': 9489, 'byrne': 9490, 'looney': 9491, 'leopold': 9492, 'wellington': 9493, 'diver': 9494, 'michel': 9495, 'marquis': 9496, 'zatoichi': 9497, 'radar': 9498, 'blackie': 9499, 'maclean': 9500, 'daisies': 9501, 'munchies': 9502, 'baseketball': 9503, 'darkman': 9504, 'newcombe': 9505, 'shadowy': 9506, 'achieving': 9507, 'grips': 9508, 'polite': 9509, 'surrogate': 9510, 'willem': 9511, 'krishna': 9512, 'attributed': 9513, 'crummy': 9514, 'fireworks': 9515, 'chore': 9516, 'voting': 9517, 'voters': 9518, 'ewan': 9519, 'iceberg': 9520, 'recalls': 9521, 'chairman': 9522, 'recreation': 9523, 'aristocrat': 9524, 'interpreted': 9525, 'stills': 9526, 'realist': 9527, 'edits': 9528, 'societal': 9529, 'operatic': 9530, 'affections': 9531, 'gamut': 9532, 'frenetic': 9533, 'inflicted': 9534, 'misfire': 9535, 'sacred': 9536, 'ideology': 9537, 'finch': 9538, 'keyboard': 9539, 'eponymous': 9540, 'turgid': 9541, 'topped': 9542, 'colourful': 9543, 'teamed': 9544, 'shakes': 9545, 'showtime': 9546, 'universally': 9547, 'gardner': 9548, 'inheritance': 9549, 'disgruntled': 9550, 'planets': 9551, 'siege': 9552, 'apologies': 9553, 'endured': 9554, 'variations': 9555, 'phyllis': 9556, 'outta': 9557, 'sealed': 9558, 'marital': 9559, 'cleveland': 9560, 'nana': 9561, 'stepping': 9562, 'booze': 9563, 'albums': 9564, 'townsend': 9565, 'raving': 9566, 'downside': 9567, 'primal': 9568, 'expertise': 9569, 'gaining': 9570, 'wondrous': 9571, 'bum': 9572, 'schemes': 9573, 'insulted': 9574, 'stud': 9575, 'roaring': 9576, 'sorta': 9577, 'sheet': 9578, 'forum': 9579, 'nuns': 9580, 'solving': 9581, 'anchor': 9582, 'occurring': 9583, 'exhibit': 9584, 'kermit': 9585, 'celebrating': 9586, 'harmony': 9587, 'offerings': 9588, 'rigid': 9589, 'piper': 9590, 'adapting': 9591, 'exposing': 9592, 'gesture': 9593, 'throwaway': 9594, 'bake': 9595, 'floors': 9596, 'hurting': 9597, 'crop': 9598, 'prototype': 9599, 'allegedly': 9600, 'camps': 9601, 'sweetheart': 9602, 'episodic': 9603, 'positions': 9604, 'monumental': 9605, 'skywalker': 9606, 'presumed': 9607, 'practicing': 9608, 'poppins': 9609, 'allied': 9610, 'honour': 9611, 'babysitter': 9612, 'orphanage': 9613, 'stable': 9614, 'tremors': 9615, 'flee': 9616, 'exaggeration': 9617, 'coarse': 9618, 'renowned': 9619, 'undertones': 9620, 'retain': 9621, 'praying': 9622, 'bee': 9623, 'strangest': 9624, 'unimpressive': 9625, 'tasteful': 9626, 'unfinished': 9627, 'greta': 9628, 'shouts': 9629, 'eleanor': 9630, 'holden': 9631, 'catastrophe': 9632, 'mischievous': 9633, 'circuit': 9634, 'emerged': 9635, 'exudes': 9636, 'integrated': 9637, 'supplies': 9638, 'illustrates': 9639, 'addressing': 9640, 'darkest': 9641, 'tepid': 9642, 'marvellous': 9643, 'hiring': 9644, 'underused': 9645, 'runtime': 9646, 'extremes': 9647, 'goer': 9648, 'locker': 9649, 'rocker': 9650, 'compound': 9651, 'shaq': 9652, 'townspeople': 9653, 'wal': 9654, 'nerds': 9655, 'holidays': 9656, 'unrated': 9657, 'grail': 9658, 'tigerland': 9659, 'ferry': 9660, 'risks': 9661, 'caroline': 9662, 'competently': 9663, 'malcolm': 9664, 'employ': 9665, 'fantastically': 9666, 'skinned': 9667, 'raft': 9668, 'eggs': 9669, 'quarters': 9670, 'indifference': 9671, 'renoir': 9672, 'shue': 9673, 'bryan': 9674, 'desolate': 9675, 'smitten': 9676, 'colonial': 9677, 'unborn': 9678, 'shootings': 9679, 'fernando': 9680, 'rub': 9681, 'norma': 9682, 'ppv': 9683, 'masturbation': 9684, 'hockey': 9685, 'allegory': 9686, 'cambodia': 9687, 'kei': 9688, 'atwill': 9689, 'soles': 9690, 'stefan': 9691, 'venezuela': 9692, 'flamenco': 9693, 'nielsen': 9694, 'paperhouse': 9695, 'trelkovsky': 9696, 'interminable': 9697, 'amuse': 9698, 'nell': 9699, 'smallest': 9700, 'ounce': 9701, 'outsider': 9702, 'somber': 9703, 'enthralled': 9704, 'approved': 9705, 'winslet': 9706, 'daft': 9707, 'ka': 9708, 'jumbo': 9709, 'overnight': 9710, 'unsuccessful': 9711, 'contacts': 9712, 'chow': 9713, 'transform': 9714, 'transcends': 9715, 'boarding': 9716, 'hrs': 9717, 'gladly': 9718, 'kerry': 9719, 'pbs': 9720, 'misogynistic': 9721, 'edged': 9722, 'twenties': 9723, 'transferred': 9724, 'wb': 9725, 'yea': 9726, 'exhausted': 9727, 'wheels': 9728, 'ensuing': 9729, 'rewind': 9730, 'slack': 9731, 'socialist': 9732, 'complains': 9733, 'prehistoric': 9734, 'governor': 9735, 'integral': 9736, 'tanks': 9737, 'menu': 9738, 'blends': 9739, 'neutral': 9740, 'misfits': 9741, 'researched': 9742, 'coincidences': 9743, 'washing': 9744, 'ichi': 9745, 'balcony': 9746, 'council': 9747, 'opponent': 9748, 'stealth': 9749, 'skipped': 9750, 'spreading': 9751, 'shenanigans': 9752, 'spliced': 9753, 'iowa': 9754, 'perfected': 9755, 'pokes': 9756, 'overweight': 9757, 'exposes': 9758, 'mcdonald': 9759, 'olympic': 9760, 'rumors': 9761, 'groan': 9762, 'declares': 9763, 'gilligan': 9764, 'erik': 9765, 'sentiments': 9766, 'hitch': 9767, 'prevents': 9768, 'grabbing': 9769, 'orchestral': 9770, 'baffled': 9771, 'weaves': 9772, 'capitalize': 9773, 'amateurs': 9774, 'yourselves': 9775, 'mismatched': 9776, 'preserved': 9777, 'abominable': 9778, 'approval': 9779, 'lam': 9780, 'decapitated': 9781, 'punchline': 9782, 'motif': 9783, 'consisting': 9784, 'infant': 9785, 'amusingly': 9786, 'bava': 9787, 'unfairly': 9788, 'arbitrary': 9789, 'addresses': 9790, 'foley': 9791, 'secluded': 9792, 'mercilessly': 9793, 'patch': 9794, 'owning': 9795, 'geeks': 9796, 'answering': 9797, 'charity': 9798, 'currie': 9799, 'hanna': 9800, 'raping': 9801, 'starving': 9802, 'redeemed': 9803, 'wray': 9804, 'tent': 9805, 'unremarkable': 9806, 'botched': 9807, 'ate': 9808, 'hayden': 9809, 'jaffar': 9810, 'blinded': 9811, 'bagdad': 9812, 'instruments': 9813, 'unforgivable': 9814, 'employs': 9815, 'devastated': 9816, 'geeky': 9817, 'spawned': 9818, 'calculated': 9819, 'speaker': 9820, 'spaces': 9821, 'thirteen': 9822, 'elementary': 9823, 'insisted': 9824, 'canon': 9825, 'closeups': 9826, 'decoration': 9827, 'retrospect': 9828, 'adored': 9829, 'pursues': 9830, 'resurrection': 9831, 'avant': 9832, 'distributor': 9833, 'halt': 9834, 'skimpy': 9835, 'kisses': 9836, 'deformed': 9837, 'roeg': 9838, 'indulge': 9839, 'rabid': 9840, 'tease': 9841, 'retains': 9842, 'texture': 9843, 'options': 9844, 'maniacal': 9845, 'aunts': 9846, 'jeep': 9847, 'binoche': 9848, 'coen': 9849, 'nanny': 9850, 'cassel': 9851, 'projection': 9852, 'wicker': 9853, 'capshaw': 9854, 'wtc': 9855, 'aspirations': 9856, 'budgeted': 9857, 'hardships': 9858, 'vacuous': 9859, 'therapist': 9860, 'invent': 9861, 'bullying': 9862, 'exceedingly': 9863, 'rainbow': 9864, 'frenchman': 9865, 'competing': 9866, 'commando': 9867, 'uniquely': 9868, 'blessing': 9869, 'aims': 9870, 'threats': 9871, 'insecure': 9872, 'bickering': 9873, 'sherry': 9874, 'zenia': 9875, 'lithgow': 9876, 'librarian': 9877, 'sybil': 9878, 'culminating': 9879, 'irs': 9880, 'stakes': 9881, 'cowboys': 9882, 'cos': 9883, 'stalk': 9884, 'salem': 9885, 'postman': 9886, 'blaxploitation': 9887, 'holm': 9888, 'talentless': 9889, 'soulless': 9890, 'awakens': 9891, 'banana': 9892, 'singin': 9893, 'pianist': 9894, 'rathbone': 9895, 'archie': 9896, 'unnamed': 9897, 'costner': 9898, 'stray': 9899, 'trent': 9900, 'maya': 9901, 'stooge': 9902, 'hickock': 9903, 'gertrude': 9904, 'enlightenment': 9905, 'mortensen': 9906, 'wallach': 9907, 'olympia': 9908, 'ashraf': 9909, 'aviv': 9910, 'romano': 9911, 'frye': 9912, 'celie': 9913, 'sleepwalkers': 9914, 'jovi': 9915, 'eustache': 9916, 'mcbain': 9917, 'sullavan': 9918, 'minions': 9919, 'yoda': 9920, 'sabretooth': 9921, 'hagar': 9922, 'robbie': 9923, 'hilliard': 9924, 'pronounced': 9925, 'abducted': 9926, 'declared': 9927, 'impressively': 9928, 'acquire': 9929, 'defines': 9930, 'recruits': 9931, 'fort': 9932, 'reeks': 9933, 'warnings': 9934, 'worries': 9935, 'posed': 9936, 'separation': 9937, 'outbreak': 9938, 'pollack': 9939, 'blanks': 9940, 'therein': 9941, 'grandson': 9942, 'assembly': 9943, 'hesitation': 9944, 'peek': 9945, 'accompany': 9946, 'bicycle': 9947, 'marginally': 9948, 'ivy': 9949, 'transvestite': 9950, 'heritage': 9951, 'canvas': 9952, 'opposing': 9953, 'notoriety': 9954, 'gadgets': 9955, 'infectious': 9956, 'scan': 9957, 'manor': 9958, 'bumps': 9959, 'resurrected': 9960, 'outdoor': 9961, 'quoting': 9962, 'blurred': 9963, 'connects': 9964, 'warped': 9965, 'abbott': 9966, 'om': 9967, 'maintained': 9968, 'triad': 9969, 'sordid': 9970, 'beery': 9971, 'duncan': 9972, 'smashed': 9973, 'gellar': 9974, 'cleaner': 9975, 'stunk': 9976, 'sorcery': 9977, 'spouse': 9978, 'traitor': 9979, 'hosts': 9980, 'boyish': 9981, 'megan': 9982, 'sacrificing': 9983, 'housewives': 9984, 'detracts': 9985, 'staple': 9986, 'liquor': 9987, 'ne': 9988, 'gossip': 9989, 'hartman': 9990, 'cent': 9991, 'smuggling': 9992, 'measures': 9993, 'elegance': 9994, 'announces': 9995, 'stereo': 9996, 'occupation': 9997, 'surpassed': 9998, 'fulfilled': 9999}

Text to vector function

Now we can write a function that converts a some text to a word vector. The function will take a string of words as input and return a vector with the words counted up. Here's the general algorithm to do this:

  • Initialize the word vector with np.zeros, it should be the length of the vocabulary.
  • Split the input string of text into a list of words with .split(' '). Again, if you call .split() instead, you'll get slightly different results than what we show here.
  • For each word in that list, increment the element in the index associated with that word, which you get from word2idx.

Note: Since all words aren't in the vocab dictionary, you'll get a key error if you run into one of those words. You can use the .get method of the word2idx dictionary to specify a default returned value when you make a key error. For example, word2idx.get(word, None) returns None if word doesn't exist in the dictionary.


In [31]:
def text_to_vector(text):
    vector = np.zeros(len(vocab))
    words = text.split(' ')
    for word in words:
        i = word2idx.get(word, None)
        if i != None:
            vector[i] += 1
            
    return vector

If you do this right, the following code should return

text_to_vector('The tea is for a party to celebrate '
               'the movie so she has no time for a cake')[:65]

array([0, 1, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0,
       0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
       0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0])

In [33]:
text_to_vector('The tea is for a party to celebrate '
               'the movie so she has no time for a cake')[:65]


Out[33]:
array([ 0.,  1.,  0.,  0.,  2.,  0.,  1.,  1.,  0.,  0.,  0.,  0.,  0.,
        0.,  0.,  0.,  0.,  2.,  0.,  1.,  0.,  0.,  0.,  0.,  0.,  0.,
        0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  1.,
        0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  1.,  0.,  0.,  0.,
        0.,  0.,  1.,  0.,  0.,  0.,  1.,  1.,  0.,  0.,  0.,  0.,  0.])

Now, run through our entire review data set and convert each review to a word vector.


In [34]:
word_vectors = np.zeros((len(reviews), len(vocab)), dtype=np.int_)
for ii, (_, text) in enumerate(reviews.iterrows()):
    word_vectors[ii] = text_to_vector(text[0])

In [35]:
# Printing out the first 5 word vectors
word_vectors[:5, :23]


Out[35]:
array([[ 18,   9,  27,   1,   4,   4,   6,   4,   0,   2,   2,   5,   0,
          4,   1,   0,   2,   0,   0,   0,   0,   0,   0],
       [  5,   4,   8,   1,   7,   3,   1,   2,   0,   4,   0,   0,   0,
          1,   2,   0,   0,   1,   3,   0,   0,   0,   1],
       [ 78,  24,  12,   4,  17,   5,  20,   2,   8,   8,   2,   1,   1,
          2,   8,   0,   5,   5,   4,   0,   2,   1,   4],
       [167,  53,  23,   0,  22,  23,  13,  14,   8,  10,   8,  12,   9,
          4,  11,   2,  11,   5,  11,   0,   5,   3,   0],
       [ 19,  10,  11,   4,   6,   2,   2,   5,   0,   1,   2,   3,   1,
          0,   0,   0,   3,   1,   0,   1,   0,   0,   0]])

Train, Validation, Test sets

Now that we have the word_vectors, we're ready to split our data into train, validation, and test sets. Remember that we train on the train data, use the validation data to set the hyperparameters, and at the very end measure the network performance on the test data. Here we're using the function to_categorical from TFLearn to reshape the target data so that we'll have two output units and can classify with a softmax activation function. We actually won't be creating the validation set here, TFLearn will do that for us later.


In [36]:
Y = (labels=='positive').astype(np.int_)
records = len(labels)

shuffle = np.arange(records)
np.random.shuffle(shuffle)
test_fraction = 0.9

train_split, test_split = shuffle[:int(records*test_fraction)], shuffle[int(records*test_fraction):]
trainX, trainY = word_vectors[train_split,:], to_categorical(Y.values[train_split], 2)
testX, testY = word_vectors[test_split,:], to_categorical(Y.values[test_split], 2)

In [37]:
trainY


Out[37]:
array([[ 0.,  1.],
       [ 1.,  0.],
       [ 0.,  1.],
       ..., 
       [ 0.,  1.],
       [ 1.,  0.],
       [ 0.,  1.]])

Building the network

TFLearn lets you build the network by defining the layers.

Input layer

For the input layer, you just need to tell it how many units you have. For example,

net = tflearn.input_data([None, 100])

would create a network with 100 input units. The first element in the list, None in this case, sets the batch size. Setting it to None here leaves it at the default batch size.

The number of inputs to your network needs to match the size of your data. For this example, we're using 10000 element long vectors to encode our input data, so we need 10000 input units.

Adding layers

To add new hidden layers, you use

net = tflearn.fully_connected(net, n_units, activation='ReLU')

This adds a fully connected layer where every unit in the previous layer is connected to every unit in this layer. The first argument net is the network you created in the tflearn.input_data call. It's telling the network to use the output of the previous layer as the input to this layer. You can set the number of units in the layer with n_units, and set the activation function with the activation keyword. You can keep adding layers to your network by repeated calling net = tflearn.fully_connected(net, n_units).

Output layer

The last layer you add is used as the output layer. Therefore, you need to set the number of units to match the target data. In this case we are predicting two classes, positive or negative sentiment. You also need to set the activation function so it's appropriate for your model. Again, we're trying to predict if some input data belongs to one of two classes, so we should use softmax.

net = tflearn.fully_connected(net, 2, activation='softmax')

Training

To set how you train the network, use

net = tflearn.regression(net, optimizer='sgd', learning_rate=0.1, loss='categorical_crossentropy')

Again, this is passing in the network you've been building. The keywords:

  • optimizer sets the training method, here stochastic gradient descent
  • learning_rate is the learning rate
  • loss determines how the network error is calculated. In this example, with the categorical cross-entropy.

Finally you put all this together to create the model with tflearn.DNN(net). So it ends up looking something like

net = tflearn.input_data([None, 10])                          # Input
net = tflearn.fully_connected(net, 5, activation='ReLU')      # Hidden
net = tflearn.fully_connected(net, 2, activation='softmax')   # Output
net = tflearn.regression(net, optimizer='sgd', learning_rate=0.1, loss='categorical_crossentropy')
model = tflearn.DNN(net)

Exercise: Below in the build_model() function, you'll put together the network using TFLearn. You get to choose how many layers to use, how many hidden units, etc.


In [62]:
# Network building
def build_model():
    # This resets all parameters and variables, leave this here
    tf.reset_default_graph()
    
    #### Your code ####
    net = tflearn.input_data([None, len(vocab)])
    net = tflearn.fully_connected(net, 200, activation='ReLU')
    net = tflearn.fully_connected(net, 25, activation='ReLU')
    net = tflearn.fully_connected(net, 2, activation='softmax')
    net = tflearn.regression(net, optimizer='sgd', learning_rate=0.1, loss='categorical_crossentropy')
    
    model = tflearn.DNN(net)
    return model

Intializing the model

Next we need to call the build_model() function to actually build the model. In my solution I haven't included any arguments to the function, but you can add arguments so you can change parameters in the model if you want.

Note: You might get a bunch of warnings here. TFLearn uses a lot of deprecated code in TensorFlow. Hopefully it gets updated to the new TensorFlow version soon.


In [63]:
model = build_model()

Training the network

Now that we've constructed the network, saved as the variable model, we can fit it to the data. Here we use the model.fit method. You pass in the training features trainX and the training targets trainY. Below I set validation_set=0.1 which reserves 10% of the data set as the validation set. You can also set the batch size and number of epochs with the batch_size and n_epoch keywords, respectively. Below is the code to fit our the network to our word vectors.

You can rerun model.fit to train the network further if you think you can increase the validation accuracy. Remember, all hyperparameter adjustments must be done using the validation set. Only use the test set after you're completely done training the network.


In [64]:
# Training
model.fit(trainX, trainY, validation_set=0.1, show_metric=True, batch_size=128, n_epoch=10)


Training Step: 1589  | total loss: 0.57932 | time: 6.947s
| SGD | epoch: 010 | loss: 0.57932 - acc: 0.7153 -- iter: 20224/20250
Training Step: 1590  | total loss: 0.58246 | time: 7.999s
| SGD | epoch: 010 | loss: 0.58246 - acc: 0.7001 | val_loss: 0.58398 - val_acc: 0.7644 -- iter: 20250/20250
--

Testing

After you're satisified with your hyperparameters, you can run the network on the test set to measure its performance. Remember, only do this after finalizing the hyperparameters.


In [56]:
predictions = (np.array(model.predict(testX))[:,0] >= 0.5).astype(np.int_)
test_accuracy = np.mean(predictions == testY[:,0], axis=0)
print("Test accuracy: ", test_accuracy)


Test accuracy:  0.7212

Try out your own text!


In [57]:
# Helper function that uses your model to predict sentiment
def test_sentence(sentence):
    positive_prob = model.predict([text_to_vector(sentence.lower())])[0][1]
    print('Sentence: {}'.format(sentence))
    print('P(positive) = {:.3f} :'.format(positive_prob), 
          'Positive' if positive_prob > 0.5 else 'Negative')

In [58]:
sentence = "Moonlight is by far the best movie of 2016."
test_sentence(sentence)

sentence = "It's amazing anyone could be talented enough to make something this spectacularly awful"
test_sentence(sentence)


Sentence: Moonlight is by far the best movie of 2016.
P(positive) = 0.538 : Positive
Sentence: It's amazing anyone could be talented enough to make something this spectacularly awful
P(positive) = 0.466 : Negative

In [ ]: