-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovie_test.txt
More file actions
1000 lines (1000 loc) · 96.4 KB
/
movie_test.txt
File metadata and controls
1000 lines (1000 loc) · 96.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 thirsty:1 adolescent:1 taking:1 seems:1 qualities:1 film:1 reflection:1
1 development:1 like:1 writing:1 secrets:1 character:1 except:1 one:1 better:1 movies:1 acting:1 lot:1 ya:2 another:1 overdose:1 divine:1 sisterhood:1 estrogen:1
1 good:1 romantic:1 offering:1 exceptionally:1 punch:1 sitcom:1 characters:1 breezy:1 well-detailed:1 comedy:1
1 eye:1 romantic:1 mores:1 manners:1 enriched:1 sharp:1 comedy:1
1 plot:1 remember:1 holes:1 images:1 likely:1 haunting:1 ring:1 viewers:1
1 delightful:1 story:1 coming-of-age:1
1 everyone:1 sees:1 energetic:1 almost:1 surprises:1 pleases:1 one:1 original:1
1 tale:1 exquisitely:1 acted:1 crafted:1
1 running:1 two-hour:1 psychological:1 moment:1 taut:1 time:1 waste:1 thriller:1
1 jones:1 charisma:1 form:1 brutal:1 offer:1
1 short:1 love:1 title:1 jabs:1 never:1 punch-drunk:1 placed:1 heavy-handed:1 dead-center:1 employs:1 despite:1 carefully:1
1 subversive:1 wickedly:1 bent:1 parts:1 birthday:1 girl:1 best:1
1 teenage:1 drum:1 viewer:1 memories:1 likely:1 expertly:1 repressed:1
1 performance:1 confirms:1 power:1
1 drama:1 well:1 tracking:1 magnificent:1 worth:1
1 work:1 good:1 often:1 piece:1
1 breadth:1 understands:1 pleasure:1 like:1 give:1 movie:1 act:1 meaning:1 depth:1 others:1 emotional:1 intimacy:1 physical:1
1 terrorist:1 consequences:1 distinguishes:1 fueling:1 emotions:1 favor:1 underlying:1 complicated:1 words:1 time:1 thrillers:1 concern:1 acts:1 countless:1
1 blisteringly:1 funny:1 provocative:1 smart:1
1 nothing:1 gut-buster:1 sacred:1
1 plot:1 unexpected:1 humor:1 grounded:1 always:1 movie:1 touch:1 back:1 edge:1 reality:1 twist:1 didactic:1 occasionally:1 characters:1 threatens:1 go:1 become:1 pulls:1
1 even:1 delhi:1 clashing:1 filmmakers:1 deftly:1 culture:1 mild:1 treasures:1 moods:1 new:1 comedy:1 change:1 marvels:1
1 failure:2 glorious:1 steven:1
1 heart:1 parable:1 family:1 mostly:1 light:1 modern:1 see:1 bright:1 sleeve:1 martha:1 day:1 wears:1
1 brilliant:1 scattershot:1 hits:1 mark:1 affair:1
1 even:1 romance:1 kind:1 underpinnings:1 entertains:1 intellectual:1 pleasant:1 enough:1 predictable:1 movie:1 maddeningly:1 turns:1
1 great:1 quills:1 sade:1 period:1 covers:1 results:1 auteuil:1 realistic:1 daniel:1 unsettlingly:1 dangerously:1 performance:1 featuring:1 seductive:1
1 experienced:1 around:1 film:1 globe:1 modern:1 spellbinding:1 state:1 condition:1 african:1 rootlessness:1 millions:1
1 control:1 improvise:1 medium:1 like:1 artist:1 jazzman:1 work:1 message:1
1 mystery:1 multi-dimensional:1 love:1 sci-fi:1 allows:1 story:1 imagination:1 seeds:1 thought-provoking:1 haunting:1 solaris:1 germinate:1 film:1 moody:1
1 funny:1 entertaining:1 picture:1 well-made:1
1 dialogue:1 susan:1 performances:1 oscar-winners:1 goldie:1 winning:1 snappy:1 unlikely:1 giggle-inducing:1 team:1 hawn:1 comedy:1 sarandon:1
1 jones:1 spielberg:1 giant:1 schlepping:1 around:1 ashtray:1 search:1 globe:1 since:1 two:1 much:1 steven:1 fun:1 indiana:1 decades:1 maker:1 misplaced:1
1 even:1 withstand:1 play:1 good:1 polished:1 earnest:1 importance:1 oscar:1 inept:1 century:1 school:1 movie:1 may:1 masterpiece:1 productions:1 adaptation:1 wit:1 oliver:1 relentless:1 best:1
1 major:1 good:1 movie:1 laying:1 life:1 job:1 journey:1 encounter:1 issues:1
1 heart:1 explores:1 demands:1 following:2 tradition:1 conflict:1 brilliantly:1
1 pacino:1 get:1 al:1 robin:1 promise:1 premise:1 remake:1 gets:1 loathing:1 peculiar:1 williams:1
1 godfather:1 generation:1 movie:1 three:1 next:1 part:2 low:1 mob:1 stooges:1 rent:1
1 lan:1 downright:1 love:1 look:1 moments:1 captures:1 yet:1 erotics:1 american:1 stories:1 makes:1 way:1 intimacy:1 times:1 yu:1 restrained:1 unfree:1
1 different:1 aspects:1 veiled:1 chinese:1 life:1 thinly:1 clashing:1 look:1
1 insurrection:1 light:1 equal:1 warp:1 better:1 say:1 levels:2 crystals:1 dilithium:1 several:1 pitiful:1 predecessors:1
1 delightfully:1 rendered:1
1 ingenious:1 story:1 angle:1 zone:1 --:2 indeed:1 grey:1 lauded:1 finding:1 new:1 must:2 retold:1 told:1
1 ago:1 king:1 success:1 seems:1 years:1 better:1 released:1 lion:1 eight:1 imax:1 roaring:1 bigger:1
1 gripping:1 played:1 movie:1 touching:1 understated:1 performances:1
1 actresses:1 plays:1 lead:1 well:1 three:1 large:1 thanks:1 measure:1 piece:1
1 screenplay:1 mike:1 end:1 rich:1 perhaps:1 inspirational:1 neatly:1 covers:1 much:1 together:1 lot:1 things:1 ties:1 ground:1
1 kind:1 suitable:1 mainstream:1 certain:1 fest:1 audience:1 american:1 charm:1 circuit:1 entry:1 appeal:1 makes:1 film:2
1 niccol:1 light:1 healthy:1 demonstrates:1 satire:1 andrew:1 understanding:1 director:1 quirks:1 sense:1 fun:1 fame:1 wry:1
1 satisfying:1 abusers:1 energetic:1 fights:1 back:1 manga-like:1 psychological:1 deep:1 heroine:1
1 interesting:1 confirming:1 comedy:1 amusing:1 human:1
1 within:1 well-established:1 artful:1 confines:1 stays:1 genre:1 intelligent:1 film:1
1 unconventional:1 beauty:1 capable:1 storyteller:1 depressing:1 places:1 finding:1 majidi:1
1 lane:1 oliver:1 richard:1 gere:1 performances:1 diane:1 french:1 martinez:1 actor:1 put:1 fine:1
1 urban:1 gritty:1 form:1 surrounding:1 figures:1 mosaic:1 minor:1
1 going:1 kind:1 look:1 room:1 brilliant:1 camera:1 none:1 one:1 surreal:1 lets:1 stuff:1 relation:1 wild:1 sits:1 next:1 like:1
1 muddled:1 guts:1 mess:1 open:1 celebrity:1 narrative:1 year:1 demented:1 much:1 video:1 although:1 digital:1 savvy:1 smeary:1 kitsch:1 energy:1 match:1
1 good:1 around:1 outstanding:1 sailors:1 likely:1 folks:1 enough:1 know:1 way:1 nothing:1 submarine:1 appreciated:1 film:1
1 tale:1 all-in-all:1 frankly:1 people:1 among:1 us:2 enjoyable:1 live:1 necessarily:1 film:1 told:1
1 cinematically:1 fairly:1 story:1 pertinent:1 missing:1 interesting:1 well:1 elusive:1 thing:1 finger:1 perfection:1 put:1 found:1 message:1 unique:1 struggling:1 scored:1 told:1
1 real:1 movie:1 anarchic:1 flair:1
1 ultimately:1 hard:1 mythic:1 sweet:1 welcome:1 story:1 one:1 try:1 movies:1 modest:1 baseball:1 relief:1 winning:1
1 perfect:1 drama:1 little:1 crisp:1 would:1 fascinating:1 psychological:1 old:1 zone:1 twilight:1 episode:1 thriller:1
1 challenging:1 moments:1 endlessly:1 moviegoing:1 remembered:1 enough:1 maze:1 fondly:1 insightful:1
1 screenplay:1 contrived:1 ends:1 opening:1 cliches:1 banter:1 loose:1 second:1 half:1 comes:1
1 lectures:1 universal:1 without:1 uncluttered:1 points:1 confrontations:1 resonant:1 relays:1 gem:1
1 subculture:1 provides:1 imaginable:1 window:1 way:1 every:1 expressing:1 hell-bent:1
1 story:1 movie:1 political:1 mix:1 coming-of-age:1 smart:1 steamy:1 satire:1 road:1
1 scandals:1 happily:1 ever:1 tales:1 married:1 political:1 live:1 royals:1 reason:1 modern-day:1 princesses:1 nothing:1 fairy:1 guys:1 comes:1
1 b:1 --:1 movie:1 terrific:1 fact:1 memory:1 best:1 recent:1
1 movie:1 girl:1 birthday:1 foremost:1 first:1
1 eyes:1 e:1 would:1 --:1 away:1 walked:1 hoped:1 moist:1 version:1 new:1
1 heaven:1 like:1 dying:1 cinema:1 celluloid:1 devotees:1 safe:1 period:1 french:1 going:1 rich:1 conduct:1 minutiae:1
1 resemblance:1 everyday:1 appealing:1 characters:1 children:1 really:1
1 even:1 eventually:1 cause:1 silliness:1 gags:1 prevail:1 shamelessly:1 energy:1 resorting:1 green:1 grimace:1 sight:1 tom:1 still:1 might:1 pee-related:1
1 web:1 absurdist:1 spider:1
1 slow:1 parade:1 watching:1 human:1 movies:1 right:1 listening:1 frailty:1 fascinates:1 film:1 happy:1
1 communal:1 moves:1 deeper:1 lived:1 yesteryear:1 nostalgia:1 experience:1 version:1 experiences:1 stand:1 realization:1 inability:1 beyond:1 true:1 film:1
1 sure:1 solaris:1 mention:1 memories:1 saw:1 share:1 together:1 years:1 five:1 movies:1 distant:1 opinion:1 become:1 blend:1
1 movie:1 funniest:1 likeable:1 years:1
1 made:1 d:1 film:1 days:1 early:1 silent:1 w:1 spectacle:1 griffith:1 glorious:1 like:1
1 derivative:1 comic:1 delightful:1 gem:1
1 timely:1 tale:1 quietly:1 extended:1 iran:1 ambiguous:1 food:1 dreamed:1 could:1 welcome:1 across:1 director:1 streamed:1 refugees:1 desperate:1 afghani:1 borders:1 work:1 ever:1 lyrical:1 probes:1
1 story:1 evocative:1 striking:1 shaped:1 condensed:1 signs:1 character:1 leaping:1 detail:1 director:1 traits:1 cutting:1 kosminsky:1 rich:1 impressions:1 images:1 sharp:1 line:1 peter:1 shows:1 slivers:1
1 jacquot:1 locations:1 richly:1 perspective:1 tenor:1 alone:1 principal:1 filmed:1 make:1 three:1 enough:2 distortions:1 diva:1 good-looking:1 excellent:1 singers:1 handsome:1 opera:1 wish:1 well:1 without:1 youthful:1 left:1
1 enormous:1 made:1 love:1 amount:1 production:1 characters:1 believe:1 affection:1
1 performances:1 certainly:1 worthwhile:1
1 ni:2 cabeza:1 la:4 duda:1 de:2 pero:1 entretiene:1 serie:1 que:1 es:1 mejor:2 brosnan:1 cabe:1 cinta:1 con:1
1 relationships:1 beautiful:1 high-concept:1 pat:1 candy-coat:1 insight:1 storylines:1 honest:1 films:1 revelatory:1 stars:1 winds:1 precious:1 circumstances:1 achieving:1 narcissistic:1
1 eccentrics:1 inspiring:1 joy:1 pure:1 watching:1
1 spielberg:1 brings:1 us:1 masterpiece:1 another:1 steven:1
1 understands:1 read:1 movie:1 lips:1 finally:1 characters:1 french-produced:1 first:1 come:1 must:1
1 characters:1 ms:1 seigner:1 bring:1 unforced:1 serrault:1 mr:1 fresh:1 naturalism:1
1 outgag:1 pictures:1 young:1 moving:1 making:1 whippersnappers:1 allen:1 today:1 shows:1
1 good:1 pedigree:1 solid:1 specifically:1 behind:1 camera:1 front:1 film:1
1 ultimately:1 sure:1 love:1 slam-dunk:1 means:1 dynamic:1 transcendent:1 act:1 moved:1 touching:1 fans:1 edge:1 story:1 seats:1 action:1 disappoint:1 still:1 comes:1 first:1
1 tale:1 old:1 see:1 classic:1 --:1 young:1 twist:1 encourage:1 alike:1 go:1 entertaining:1 unique:1 sorry:1
1 detective:2 story:2 literary:1 whodunit:1 still:1 disappointed:1 aficionados:1
1 combines:1 engage:1 help:1 disparate:1 freely:1 crimes:1 audience:1 high:1 movies:1 enough:1 types:1 films:1 steals:1
1 love:1 series:1 twice:1 see:1 fan:1 want:1 probably:1
1 hibiscus:1 grandly:1 light:1 back:1 called:1 playful:1 vividly:1 glancing:1 spark:1 celebrates:1 nonconformity:1
1 story:1 testament:1 also:1 industry:1 inspiring:1 record:1 revelatory:1 band:1 ironic:1 ridiculous:1 money-oriented:1 integrity:1 vision:1 really:1
1 tale:1 laced:1 humor:1 fascinating:1 solid:1 performances:1 photography:1 doses:1 little:1 dark:1 thing:1 exterior:1 gorgeous:1 liberal:1 stable-full:1
1 kathy:1 augustine:1 show:1 steal:1 creepy:1 public:1 boston:1 turn:1 much:1 channeling:1 mother:1 repressed:1 makes:1 meal:1
1 lightly:1 allows:1 character:1 nair:1 openly:1 honestly:1 treat:1 confront:1 problems:1 issues:1
1 real:1 unwary:1 horror:1 one:1 movies:1 silly:1 store:1 memory:1 shocks:1 viewers:1 best:1 recent:1
1 revealing:1 heart:1 story:1 knows:1 secrets:1 work:1 mind:1 filmmaker:1 viewer:1 strange:1 occurrences:1 buried:1 time:1 build:1 extreme:1 urgency:1 take:2
1 generates:1 fair:1 fascination:1 certain:1 excitement:1 ghoulish:1 amount:1 b-movie:1
1 familiar:1 delightful:1 utterly:1
1 pulpiness:1 fascinating:1 hooked:1 fiction:1 dark:1 delicious:1 keeps:1 thriller:1 lurid:1
1 funny:1 uplifting:1 succeeds:1 sometimes:1 aims:1 moving:1 extent:1 film:1 impressive:1
1 direction:1 intelligently:1 accomplished:1 characters:1 shines:1 film:1 brilliantly:1
1 funny:1 toward:1 often:1 film:1 irrelevancy:1 taste:1 national:1 direct-to-video:1 gross-out:1 collegiate:1 lampoon:1 way:1 every:1 long:2 goes:1 franchise:1 comedy:1 reduced:1 restoring:1 luster:1
1 screenplay:1 director:1 novak:1 observation:1 grounded:1 keeps:1 broad:1 work:1 social:1 cartoonish:1 undeniable:1 realism:1 frank:1 film:1 accuracy:1
1 sort:1 heartache:1 thoughtful:1 glimpse:1 rare:1 someday:1 addition:1 felt:1 powerful:1 clinic:1 drama:1 feel:1 acting:1 offers:1 everyone:1 rewarding:1
1 jeffrey:1 exterminator:1 jazz-playing:1 oscar-worthy:1 performance:1 intelligent:1
1 love:1 opening:1 feel:1 average:1 pieces:1 strains:1 pick:1 white:1
1 vibrant:1 instincts:1 creative:1 dolls:1 flicks:1 difference:1 guys:1 countless:1
1 summer:1 speaks:1 picture:1 season:2 mature:1 probably:1 comedy:1 best:1
1 heart:1 love:1 last:1 people:1 movie:1 earned:1 possible:1 anyone:1 enough:1 nicest:1 way:1 touch:1 old:2 friendship:1 orders:1 mean:1
1 provocative:1 called:1 evil:1 haphazardness:1 might:1 example:1 film:1
1 color:1 isolation:1 emphasizes:1 tian:1 confining:1 characters:1 backyard:1
1 funny:1 pretty:1 movie:1 without:1 way:1 demeaning:1 subjects:1
1 swedish:1 humor:1 scenario:1 far:1 gary:1 bergman:1 approaches:1 imagine:1 using:1 fatalism:1 side:1
1 pink:1 tickets:1 crowd:1 cheaper:1 better:1 floyd:1 damn:1 blacklight:1 way:1 pass:1 weird:1
1 startling:1 remarkable:1 breadth:1 achieves:1 despite:1 scope:1 intimacy:1 epic:1
1 great:1 monster:1 movie:1 price:1 guilty:1 paid:1 fun:1 chomp:2 big:1 popcorn:1 tub:1 matinee:1 bought:1
1 needs:1 suffers:1 zone:1 movies:1 story:1 grey:1 heard:1 difficulties:1 sea:1 holocaust:1 voice:1 film:1 gives:1
1 fun:1 nimble:1
1 urge:1 eyes:1 iconoclastic:1 maxim:1 creative:1 attuned:1 also:1 see:1 willing:1 uses:1 others:1 destroy:1 anarchist:1 technology:1 find:1 liberating:1
1 tension:1 little:1 noise:1 fuss:1 miller:1 plucking:1 quiet:1 tale:1 compelling:1 expertly:1 tells:1
1 term:1 associated:1 drama:1 pretension:1 without:1 time:1 existential:1
1 spirits:1 crowd:1 sweet:1 pleaser:1 well:1 laugh-a-minute:1 lifts:1 mouth:1 corners:1
1 employ:1 end:1 taylor:1 eye:1 ability:1 look:1 angst:1 fearless:1 jim:1 co-writer:1 payne:1 american:1 laughing:1 election:1 quirky:1 brilliantly:1 alexander:1
1 flaws:1 movie:1 make:1 insists:1 imperfection:1 virtue:1 best:1
1 watch:1 fantastic:1 tough:1 movie:1
1 ago:1 hit:1 beauty:1 since:1 feature:1 years:1 beast:1 theaters:1 animated:1 best:1
1 attention:1 deeply:1 merely:1 saves:1 detail:1 collection:1 wrenching:1 affecting:1 cases:1 film:1
1 funny:1 touching:1
1 marvelous:1 keener:1 best:1 pacino:1 years:1
1 entertainment:1 solid:1 spooky:1 price:1 worthy:1 ticket:1
1 grisly:1 turns:1 fanciful:1 quixotic:1 engagingly:1
1 enjoyable:1 funny:1
1 without:1 nails:1 intricately:1 themes:1 strange:1 adaptation:2 way:1 true:1 book:1 constructed:1
1 even:1 fairly:1 notice:1 straightforward:1 bride:1 father:1 enjoyable:1 purely:1 remake:1 hollywood:1 might:1 comedies:1
1 grief:1 sentimental:1 permits:1 feel:1 freedom:1 illogic:1 free:1 surrenders:1 moonlight:1 analytical:1 feels:1 mile:1 contradictory:1 characters:1 things:1 offend:1 laughter:1 yet:1 gives:1
1 real:1 philippe:1 oliver:1 better:1 matron:1 would:1 far:1 makes:1 lines:1 weirdly:1 triumphs:1 cruel:1 likable:1 interesting:1 suggest:1 come:1 wasp:1 sarandon:1 igby:1
1 sentimentality:1 darker:1 thankfully:1 favour:1 side:1 bicentennial:1 williams:1 altogether:1 man:1 robin:1 ditched:1 saccharine:1
1 infidelity:1 cheated:1 feel:1 high:1 willing:1 fun:1 unfaithful:1
1 beautiful:1 australia:2 big:1 weirdly:1 enjoyable:1 land:1 place:1 primarily:1 time:1 movie:1 beyond:1
1 performance:1 authentic:1 core:1
1 trounce:1 overly:1 comfortable:1 enough:1 proficiently:1 trappings:1 told:1
1 mystery:1 beauty:1 steeped:1 experience:1 one:1 aesthetic:1 enthralling:1 baroque:1 ravishing:1
1 heart:1 touches:1 energetic:1 surprising:1 always:1 rachel:1 funnybone:1 drama:1 thanks:1 performance:1 quirky:1 griffiths:1
1 story:1 captivating:1 may:1 age:1 informed:1 truly:1 wireless:1 also:1 coming-of-age:1 narrative:1 film:1 first:1
1 look:1 opera:1 could:1 young:1 daytime:1 actually:1 compelling:1 odyssey:1 tragic:1 soap:1
1 duvall:1 always:1 strong:1
1 cinematic:1 no-holds-barred:1 treat:1
1 drama:1 person:1 hard-hearted:1 moved:1
1 underestimated:1 goodies:1 lumps:1 coal:1 charm:1 delivers:1
1 predecessor:1 exceptional:1 like-themed:1 oscar-sweeping:1 thriller:1 practically:1 dragon:1 rates:1 silence:1 franchise:1 lambs:1 measured:1 film:1 red:1
1 exhilarating:1 movie:1 fluff:1 serving:1
1 different:1 maelstrom:1 humor:1 strange:1 twisted:1 tale:1 engrossing:1 moral:1 sense:1 compelling:1
1 small-budget:1 thoroughly:1 crew:1 cast:1 believed:1 believe:1 makes:1 enjoyed:1 film:1
1 dark:1 disturbing:1 watch:1 compelling:1 yet:1
1 often:1 predict:1 becomes:1 son:1 bride:1 moment:1 preordained:1 big:1 trying:1 occur:1 exercise:1
1 acknowledging:1 picture:1 story:1 humor:1 places:1 conviction:1 people:1 heartfelt:1 destination:1 life:1 also:1 whence:1 uses:1 discovering:1 tell:1 came:1
1 picture:1 draws:1 became:1 solid:1 deadly:1 work:1 political:1 foreign:1 journalistic:1 expedience:1 policy:1 piece:1 man:1
1 star-making:1 look:1 terrific:1 insider:1 machinery:1 tinseltown:1
1 enough:1 audience:1 diverting:1 family:1 hour-and-a-half:1
1 teen:1 flick:1 scalds:1 like:1 acid:1 party-hearty:1
1 giddy:1 whimsical:1 relevant:1 ago:1 years:1 today:1
1 premise:1 intriguing:1 offers:1 what-if:1 film:1
1 may:1 make:1 polanski:1 born:1 roman:1 pianist:1 film:1
1 justice:1 genre:1 stevenson:1 version:1 sci-fi:1
1 poignant:1 complex:1 delicately:1
1 pander:1 ultimately:1 unlike:1 desires:1 may:1 many:1 revenge:1 basest:1 enough:1 payback:1 delivers:1 fantasies:1
1 funny:1 set:1 one:1 stuff:1 damn:1 want:1 fresh:1 sharp:1 comic:1 still:1 latest:1
1 saying:1 wanted:1 obsessions:1 get:1 preoccupations:1 allows:1 long:1 polanski:1 say:1 way:1 nothing:1 pianist:1 confronting:1 roots:1
1 moving:1 shortcomings:1 stories:1 quietly:1 despite:1
1 love:1 improved:1 cinema:1 interesting:1 scenes:1 paradiso:1 movie:1 new:1 find:2
1 meddles:1 family:1 fights:1 laughs:1 eats:1 together:1 argues:1 see:1 delightful:1 go:1 comedy:1 come:1 kibbitzes:1
1 bracingly:1 clearasil:1 teenage:1 mixture:1 grandiosity:1 puberty:1 blemishes:1 slather:1 antidote:1 tend:1 youth:1 movies:1 characterize:1 inner:1 desperate:1 captures:1 loneliness:1 hollywood:1 truthful:1 combustible:1 chafing:1
1 le:1 sade:1 relationship:1 see:1 besco:1 reason:1 complex:1 lay:1 chemistry:1 emilie:1 auteil:1 marquis:1
1 summer:1 old-time:1 post-camp:1 good-bad:1 perfectly:1 legged:1 movies:1 diversion:1 made:1 eight:1 comprehension:1 freaks:1 entertaining:1 b:1 makes:1
1 serious:1 thoughtful:1
1 little:1 noyce:1 pertinent:1 remarkable:1 seems:1 allegory:1 political:1 different:1 strikes:1 fifty:1 reminds:1 remain:1 brings:1 situation:1 dynamics:1 years:1 skill:1 fact:1
1 picture:1 strength:1 fears:1 paints:1 larger:1 -:1 covers:1 culture:1 details:1 media-soaked:1 veneer:1 nationalism:1 deepest:1 conflict:1 thin:1
1 paranoid:1 speculative:1 sequel:1 creative:1 much:1 exploration:1 impulse:1 report:1 seen:1 warren:1 best:1 history:1
1 impression:1 kind:1 moore:1 unapologetic:1 leaves:1 mandy:1 sweetheart:1 faults:1 movie:1 positive:1
1 saigon:1 right:1 center:1 uneasy:1 brings:1 violence:1 quiet:1 us:1 mix:1 american:1 simmering:1 sensual:1 world:1 delights:1
1 swim:1 represents:1 shortcomings:1 talented:1 intimate:1 watch:1 worthy:1 girls:1 feature:1 french:1 engaging:1 coming-of-age:1 director:1 despite:1 genre:1 entry:1 first:1
1 performance:1 seeing:1 worth:1 flawed:1
1 control:1 acclaim:1 sense:1 filmmaking:1 deeds:1 caesar:1 international:1 stepped:1 screen:1 assurance:1 mainstream:1 tool:1 cinematic:1 driven:1 every:1 worthy:1 natural:1 --:1 well:1 david:1 dirty:1 works:1
1 perfect:1 humor:1 wedding:1 monsoon:1 balance:1 humanity:1
1 try:1 documents:1 christian:1 name:1 house:1 cautionary:1 american-style:1 spook-a-rama:1 hell:1 sin:1
1 picture:1 illustrates:1 motion:1 american:1 compelling:1 tragedy:1
1 c:1 comedic:1 spotlights:1 verbal:1 h:1 hits:1 o:1 marks:1 go:1 notorious:1
1 --:1 air:1 conditioning:1 popcorn:1 beach:1 day:1
1 director:1 different:1 titus:1 brings:1 king:1 many:1 garde:1 avant:1 romance:1 lion:1 much:1 film:1 sets:1 frida:1 hollywood:1 taymor:1 vision:1 apart:1
1 solid:1 dialogue:1 stevens:1 nicely:1 operates:1 large:1 cast:1 element:1 surprise:1 comedy:1 film:1 flair:1
1 easily:1 intended:1 movie:1 acted:1 well:1 primary:1 four:1 seriously:1 actors:1 forgotten:1 extremely:1
1 bitterly:1 seems:1 forsaken:1 urbane:1 film:1 woody:1 allen:1 sweetness:1 exudes:1
1 overlong:1 bombastic:1 --:1 widowmaker:1 surprisingly:1 derivative:1 entertaining:1 yet:1
1 good:1 nicely:1 hard-edged:1 street-smart:1 alert:1 also:1 violent:1 stuff:1 exploitative:1 morally:1 done:1 bit:1
1 style:1 pokes:1 bluff:1 verbal:1 everything:1 cineasts:1 harvey:1 stylistic:1 chief:1 dogma:1 revel:1 visual:1 personal:1 likes:1 miramax:1 in-jokes:1 rigors:1 movement:1
1 collaboration:1 window:1 rare:1 artistic:1
1 begins:1 plot:1 runs:1 aground:1 tangled:1 promise:1 snared:1
1 perhaps:1 movie:1 sports:1 seen:1 ever:1 best:1
1 timing:1 priceless:1
1 channel-style:1 conflicted:1 anthology:1 far:1 could:1 melodramatic:1 emotions:1 creates:1 carries:1 lives:1 sense:1 lifetime:1 visceral:1
1 work:1 sensitive:1 constructed:1 moving:1 brilliantly:1
1 punch:1 delivers:1 surprising:1 thriller:1 edgy:1
1 hit:1 family:1 may:1 credibility:1 reasonably:1 sequel:1 strain:1 adult:1 surprise:1 entertaining:1
1 incorporate:1 fashion:1 well-balanced:1 horror:1 manages:1 situation:1 delivers:1 absurdity:1 monologue:1
1 truth:1
1 great:1 work:1 emotionally:1 richly:1 acted:1 devastating:1 confident:1 piece:1 film:1 first:1
1 story:1 family:1 community:1 touching:1 responsibility:1 small-scale:1 care:1
1 casts:1 arteta:1 one:1 directs:1 year:1 ensemble:1 best:1
1 luckiest:1 von:1 sydow:1 casting:1 stroke:1
1 single-minded:1 smarter:1 sure:1 lot:1 sequels:1 john:1 original:1 unnerving:1
1 clever:1 romantic:1 turns:1 crime:1 unpredictable:1 amusing:1 comedy:1 gem:1
1 letting:1 intriguing:1 imagery:1 stands:1 movie:2 ponder:1 one:1 experiences:1 anew:1 forces:1 speak:1
1 funny:1 wickedly:1 captivating:1 solid:1 interesting:1 cool:1 insanely:1 visual:1 cinematic:1 twisted:1 cast:1 devices:1 part:1 thanks:1 sick:1 backmasking:1 humor:1 incredibly:1 film:1 first:1
1 someone:1 help:1 getting:1 movie:1 away:1 us:1 grinning:1 cannot:1 entertained:1 sight:1 got:1 part:1 something:1
1 slope:1 substance:1 disdain:1 old-fashioned:1 powerful:1 drama:1 slide:1 slippery:1 virtue:1 rich:1 nothing:1 dishonesty:1 encounter:1
1 like:1 song:1 movie:1 includes:1 line:1 mean:1
1 english-language:1 often:1 full:1 unsettling:1 teeming:1 complexity:1 version:1 characters:1 conflicted:1 honor:1 landscape:1
1 year-end:1 movies:1 afford:1 pleasures:1 occupied:1 amidst:1 keep:1 may:1 enough:1 concerns:1 many:1 moviegoers:1 serious-minded:1
1 timely:1 everyone:1 necessary:1 faithful:1 kissinger:1 trials:1 welcome:1 accept:1 one:1 portraiture:1 joins:1 henry:1 argue:1 debate:1
1 hollywood:1 effects:1 special:1 endings:1
1 raised:1 like:1 kiddie:1 notches:1 astringent:1 fantasy:1 version:1 wit:1 pablum:1 original:1
1 plot:1 tear-stained:1 hawaiian:1 script:1 moments:1 vintage:1 lilo:1 basic:1 rowdy:1 science-fiction:1 temple:1 setting:1 despite:1 shirley:1 slapstick:1 pulled:1 could:1 trimmings:1
1 others:1 refusal:1 family:1 shock:1 brutally:1 anticipated:1 culture:1 wrong:1 much:1 thanks:1 goes:1 reunion:1 honest:1 documentary:1 empathize:1
1 exceptional:1 performances:1 humanity:1 detail:1 honest:1 gentle:1 punch:1 dramatic:1 film:1 baran:1 haunting:1 ode:1 filled:1
1 wealth:1 seasoned:1 celebrityhood:1 deft:1 paranoia:1 gossip:1 sparkles:1 portrait:1 veterans:1
1 dry:1 danis:1 land:1 closely:1 jiri:1 forceful:1 way:1 trains:1 watched:1 message:1 delivers:1
1 near-masterpiece:1 one-of-a-kind:1
1 narratively:1 complex:1 emotionally:1 triumph:1 filmmaking:1
1 transcends:1 life:1 heaven:2 homage:1 far:1 allows:1 put:1 masterpiece:1 simply:1 imitation:1 films:1
1 effective:1 many:1 loneliness:1 environments:1 spend:1 chilly:1 much:1 us:1 time:1 anonymity:1 intense:1 film:1
1 fairly:1 end:1 although:1 anything:1 catholic:1 far:1 much:1 say:1 involving:1 goes:1 growing:1 fresh:1 film:1 really:1
1 undemanding:1 alacrity:1 make:1 filmmakers:1 mainly:1 counterparts:1 movies:1 proves:1 action:1 korean:1 hollywood:1 south:1
1 funny:1 furiously:1 romantic:1 relationship:1 fears:1 foibles:1 middle-agers:1 two:1 stumble:1 york:1 new:1 comedy:1 skittish:1 struggle:1
1 action:1 drama:1 powers:1 top-notch:1 romantic:1
1 heart:1 sentimental:1 humor:1 beresford:1 get:1 nicely:1 sweet:1 us:1 mixes:1 shame:1 much:1 embrace:1 take:1 small:1 opportunity:1 pathos:1 journey:1 really:1
1 mercy:1 good:1 thinking:2 urgently:1 reacting:1 -:1 locations:1 protagonists:1 started:1 visual:1 part:1 stopped:1 grand:1 nothing:1 struggled:1 feeling:2 gasping:1 inventiveness:1 delights:1
1 case:1 lewis:1 since:1 christianity:1 probably:1 best:1 chesterton:1
1 funny:1 good:1 false:1 sentiment:1 sweetly:1 feel:1 overmanipulative:1 hollywood:1 unconned:1 gently:1 say:1 practices:1 sharp:1 entirely:1 makes:1 adventurous:1 film:1 genuinely:1
1 magic:1 pure:1 would:1 witherspoon:1 old-fashioned:1 character:1 melanie:1 experience:1 hand:1 fantasy:1 viewing:1 massive:1 reese:1 yorker:1 infusion:1 new:1 unendurable:1 carmichael:1 ultra-provincial:1 hollywood:1 inject:1
1 duty:1 visually:1 often:1 fascinating:1 study:1 character:1 loyalty:1 sons:1 fathers:1 intense:1
1 metaphor:1 personal:1 self-discovery:1 little-remembered:1 cultural:1 world:1 lyrical:1 picaresque:1 view:1
1 faced:1 brecht:1 death:1 artist:1 interesting:1 life:1 days:1 drew:1 three:1 offers:1 dramatic:1 snapshot:1 close:1 bit:1 speculation:1 issues:1
1 melodrama:1 engrossing:1 slick:1
1 effective:1 off-beat:1 satire:1 project:1 quirky:1 subtle:1
1 rah-rah:1 picture:1 ultimately:1 tone:1 dramatizing:1 define:1 generation:1 object:1 idea:1 strategic:1 achieves:1 objective:1 vietnam:1 came:1 human:1 patriotic:1 soldiers:1 main:1 conflict:1 cost:1
1 even:1 enjoy:1 good:1 business:1 deal:1 heart:1 also:1 century:1 state:1 band:1 evolve:1 music:1 know:1 learn:1 seeing:1 songs:1
1 water:1 solid:1 convincing:1 mark:1 high:1 characters:1 filmmaking:1 genre:1 makes:1
1 loss:1 recovery:1 moonlight:1 nerve:1 light:1 days:1 valuable:1 grief:1 strike:1 mile:1 pretty:1 many:1 films:1 seen:1
1 savage:1 inventive:1 sickeningly:1 intelligent:1 consistently:1 endlessly:1
1 seeing:1 definitely:1 worth:1
1 study:1 impeccable:1 perversity:1
1 heaven:1 far:1 work:1 dazzling:1 drama:1 conceptual:1 enthralling:1 feat:1
1 heart:1 over-the-top:1 eye:1 movie:1 touches:1 way:1 thrills:1
1 instigator:1 stuffed:1 rambling:1 michael:1 ideas:1 gun:1 juxtaposition:1 culture:1 american:2 examination:1 modus:1 brim:1 uses:1 crucifixion:1 operandi:1 film:1 usual:1
1 huge:1 life:1 language:1 things:1 traced:1 back:1 us:1 reminds:1 stuff:1 affectionately:1 usually:1 little:1
1 leave:1 great:1 theater:1 power:1 drama:1 audience:1 believing:1 members:1 seen:1 comedy:1 yet:1
1 reefs:1 grown-up:1 life:1 everyone:1 large-frame:1 fish:1 gorgeous:1 teeming:1 filming:1 lovers:1 camera:1 imax:1 scientists:1 beautifully:1 making:1 must:1 junior:1 film:1 lends:1
1 depressing:1 boring:1 never:1 result:1 liberating:1
1 deals:1 story:1 love:1 sweetly:1 students:1 acted:1 school:1 high:1 also:2 seriously:1 beautifully:1 intelligent:1 first:1
1 picture:1 old:1 problems:1 unfamiliar:1 discourse:1 manages:1 new:1 avenues:1 find:1
1 worse:1 song:1 coulda:2 verse:1 better:1 second:1
1 technically:1 spielberg:1 flair:1 superb:1 talents:1 expertly:1 team:1 utilizing:1 usual:1 top-notch:1 creative:1 film:1 shining:1
1 great:1 movie:1 time:1 band:1 fans:1 converts:1 win:1 new:1 wilco:1
1 enhances:1 great:1 shot:1 cinema:1 tsai:1 performances:1 one:1 visual:1 reputation:1 every:1 film:1 excellent:1 stylists:1 well-deserved:1
1 made:1 would:1 movie:1 kafka:1 franz:1 date:1
1 even:1 longer:1 interviewees:1 seems:1 alive:1 likely:1 much:1 screen:1 fact:1
1 jones:1 uniformly:1 rest:1 superb:1 leguizamo:1 cast:1 excellent:1
1 liked:1 lot:1 film:1
1 distance:1 end:1 romantic:1 often:1 cinema:1 screens:1 originality:1 enough:1 paint-by-number:1 comedies:1 pack:1
1 solid:1 imbued:1 attitude:1 passion:1 moviemaking:1 refined:1 piece:1
1 romance:1 novel:1 nettelbeck:1 recipe:1 emotions:1 one:2 engaging:1 fantasy:1 flavours:1 part:2 crafted:1 book:1
1 love:1 destiny:1 storyteller:1 well:1 without:1 tale:1 wonderful:1 master:1 sex:1 told:1
1 play:1 clever:1 would:1 forgettable:1 scotland:1 surface:1 pa:1 silly:1 adaptation:1 tragic:1 comedy:1
1 arresting:1 weird:1 ride:1 little:1
1 would:1 better:1 stuck:1 stories:1 betty:1 lot:1 fisher:1 fine:1 film:1 left:1
1 run:1 movie:1 away:1 problems:1 proves:1 ego:1 go:1 home:1 first-class:1 road:1
1 rental:1 full:1 consider:1 pay:1 price:1 reality:1 simone:1 see:1 take:1 want:1 dvd:1 instead:1 ticket:1 might:1 check:1
1 directed:1 powerful:1 sardonic:1 well:2 -:1 keep:1 drama:1 cast:1 enough:1 wit:1 maudlin:1
1 true:1 fans:1 comedy:1 backstage:1 must-see:1
1 desire:1 dancing:1 inter-racial:1 back-stabbing:1 importantly:1 singing:1
1 perspective:1 story:1 like:1 interesting:1 study:1 melodrama:1 character:1 stuff:1 fact:1 sounds:1 told:1 makes:1 film:1 lurid:1
1 jones:1 impression:1 great:1 writer-director:1 huge:1 may:1 million:1 filmmaking:1 little:1 heart:1 indie:1 cutting-edge:1 charmer:1 makes:1
1 director:1 delivers:1 fontaine:1 family:1 angst:1 disturbingly:1 father:1 male-ridden:1 french:1 emotional:1 drama:1 blockage:1 involving:1 human:1 accompanies:1 dysfunctional:1 portrait:1 inspired:1 anne:1 killed:1 condition:1
1 mainstream:1 may:1 mark:1 remains:1 promise:1 mr:1 emergence:1 undiminished:1
1 interview:1 reason:1 assassin:1 miss:1
1 imagery:1 pummel:1 music:1 happily:1 phony:1 us:1 simple:1 spare:1 manner:1 stays:1 close:1 ground:1
1 sheer:1 dynamism:1 infectious:1
1 spielberg:1 noir:1 look:1 fascinating:1 flawed:1 presents:1 near:1 future:1 attempt:1 film:1 first:1
1 appealing:1 lightweight:1
1 heart:1 managed:1 make:1 somehow:1 past:1 radar:1 place:1 way:1 small:1 crappola:1 find:1
1 funny:1 level:1 perhaps:1 young:1 complicated:1 cliche:1 touching:1 call:1 smart:1 manhood:1 black:1 film:1 shows:1
1 idealism:1 counter-cultural:1 burning:1 give:1 taste:1 creativity:1 appealing:1 ethos:1 blend:1 hedonistic:1 man:1
1 limited:1 noir:1 also:1 movie:1 homages:1 dark:1 confined:1 spaces:1 classic:1 sets:1 small:1 low-budget:1 film:1
1 movie:1 slow:1 well:1 done:1
1 longing:1 love:1 tale:1 loopy:1 wonderfully:1 voting:1
1 react:1 life:1 fragile:1 accepts:1 power:1 fascination:1 character:1 larger:1 seems:1 huston:1 unable:1 quickly:1 finds:1 illness:1 way:1 news:1 ivan:1 performance:1 still:1 yet:1 comes:1
1 director:1 last:1 bitter:1 watch:1 scenes:1 koshashvili:1 anguished:1 mr:1 truthful:1 film:1
1 stylings:1 by-the-book:1 sumptuous:1 away:1 washed:1 cinematic:1 ocean:1 director:1 visuals:1 storyline:1 stockwell:1 predictable:1 john:1 scripting:1
1 antwone:1 certainly:1 cheap:1 stoops:1 manipulation:1 victories:1 us:1 conventions:1 trick:1 protagonist:1 corny:1 fisher:1 exceptions:1 making:1 rarely:1 celebrate:1 care:1
1 dimming:1 classics:1 openness:1 recalls:1 certain:1 neorealism:1 one:1 early:1 feels:1 place:1 ambition:1 emotional:1 clarity:1 sweetness:1 italian:1
1 art:1 like:1 oddity:1 modern:1 challenges:1 nervy:1
1 figured:1 whenever:1 throws:1 late:1 marriage:1 think:1 loop:1
1 pianist:1 film:1 best:1
1 survival:1 reconciled:1 quiet:1 common:1 testament:1 endurance:1 concern:1
1 orange:1 juice:1 fresh-squeezed:1 far:1
1 huge:1 symbolic:1 study:1 modern:1 character:1 sensitive:1 modest:1 economic:1 examination:1 sweeping:1 china:1 comic:1 works:1 changes:1 tragedy:1
1 engaging:1 highly:1
1 sort:1 knows:1 maybe:1 make:2 crimes:1 high:1 movies:1 bad:1 mistakes:1 determined:1 nobility:1
1 brilliant:1
1 imagination:1 make:1 knows:1 wonder:1
1 beguiling:1 story:1 key:1 emerges:1 jae-eun:1 brings:1 cinema:1 freshness:1 flow:1 cat:1 coming-of-age:1 take:1 another:1 buoyant:1 images:1 korean:1 contribution:1 expressive:1 flowering:1 south:1 care:1
1 fabric:1 moments:1 mattei:1 fosters:1 overall:1 hypnotic:1 mr:1 intimacy:1 spontaneous:1
1 use:1 made:1 evokes:1 phones:1 incessant:1 cell:1 disconnection:1 poignant:1 sense:1 palpable:1
1 malcolm:2 paul:2 mcdowell:2 bettany:2 playing:1 cool:3
1 major:1 like:1 family:1 almost:1 captures:1 seems:1 sophisticated:1 touching:1 changes:1 way:1 immigrant:1 documentary:1 brink:1 film:1 italian:1
1 little:1 trashy:1 performances:1 self-importance:1 fluff:1 enjoyable:1 stuffed:1 sense:1 bewildering:1 bit:1
1 inventive:1 absorbing:1 movie:1 hard:2 resist:1 classify:1
1 made-up:1 relationships:1 made:1 love:1 get:1 movie:1 thought:1 sisters:1 see:1 wonderful:1 want:1 go:1 comedy:1 funny:1
1 lost:1 admittedly:1 superb:1 middling:1 proves:1 caine:1 touch:1 performance:1 bringing:1 film:1
1 great:1 via:1 remarkable:1 puts:1 diplomacy:1 bogdanovich:1 young:1 generosity:1 woman:1 davies:1 perspective:1 showcases:1 performance:1 charm:1 kirsten:1 history:1
1 caper:1 incisive:1 movie:1 soulful:1 breezy:1 way:2 becomes:1 meditation:1
1 new:1 captivating:1 film:1
1 put:1 rewarding:1 austerity:1 find:1 capable:1
1 uncertainties:1 great:1 lived:1 ambiguity:1 nervous:1 energy:1 moral:1 intensely:1 time:1 portrait:1 clear-eyed:1 filled:1
1 reveals:1 draw:1 service:1 people:1 deeply:1 felt:1 walls:1 emotions:1 also:1 talents:1 important:1 together:1 separate:1 others:1 put:1 otherwise:1 might:1 across:1 special:1 shows:1
1 sort:1 prime:1 like:1 tremors:1 fare:1 legged:1 escapist:1 films:1 good-natured:1 eight:1 freaks:1 fun:1 found:1
1 cult:1 sharp:1 study:1 amusing:1 celebrity:1
1 sentimental:1 dog-tag:1 sequence:1 cliches:1 mel:1 powerful:1 brutal:1 everything:1 mar:1 issue:1 excellent:1 battle:1 performance:1 gibson:1 film:1 otherwise:1
1 shared:1 finest:1 nicely:1 sacrifice:1 understated:1 grief:1 courage:1 moving:1 new:1 graceful:1 tribute:1 nation:1 expression:1
1 zealand:1 whose:1 languid:1 deeply:1 felt:1 visual:1 boozy:1 air:1 tale:1 coming-of-age:1 board:1 rich:1 performances:1 balanced:1 new:1 clarity:1 across:1
1 made:1 money:1 flesh:1 festival:2 riviera:1 annual:1 charming:1 jaglomized:1 result:1 cannes:2 buzz:1 spree:1 blab:1 film:1
1 hoping:1 looking:1 something:2 new:1 entertaining:1 luck:1
1 bridget:1 enlightening:1 --:1 funeral:1 weddings:1 two:1 experience:1 four:1 rewarding:1 every:1 hugely:1 films:1 diary:1 bit:1 entertaining:1 best:1 insightful:1
1 hairs:1 chest:1 put:1 fest:1 rip-roaring:1 action:1 comedy:1
1 good:1 art:1 --:1 days:1 yarn:1 nothing:1 still:1 sneeze:1
1 heart-breaking:1 funny:1 simultaneously:1 performances:1 kiss:1 last:1 really:1
1 subversive:1 unexpected:1 element:1 providing:1 fizzability:1 cartoon:1 disney:1
1 look:1 family:1 omnibus:1 expectation:1 called:1 prism:1 marriage:1 social:1 unforgettable:1 tradition:1 morality:1
1 enjoyable:1 occasionally:1 experiment:1 flawed:1
1 wondrously:1 gifted:1 storytellers:1 miyazaki:1 one:1 artists:1 world:1
1 regimen:1 good:1 return:1 help:1 ayurveda:1 us:1 sleeping:1 thing:1 sane:1 contemplation:1 eating:1 clearly:1 stress-reducing:1
1 even:1 since:1 surprising:1 sequel:1 exceeding:1 strikes:1 expectations:1 astonishing:1 depth:1 achievement:1 back:1 grandeur:1 majestic:1 emotional:1 empire:1 epic:1 meeting:1 best:1
1 heart:1 leigh:1 cinema:1 almost:1 one:1 contributions:1 story:1 make:1 creative:1 acting:1 superbly:1 method:1 dialogue:1 never:1 fails:1 feels:1 members:1 rare:1 allows:1 soul:1 cast:1 directors:1 works:1
1 repetitive:1 overall:1 poetry:1 motion:1 informative:1 captured:1 bit:1 documentary:1 entertaining:1 film:1
1 sensational:1 decidedly:1 sure:1 steers:1 look:1 unflinching:1 clear:1 perverse:1 directing:1 hand:1 offers:1 objective:1 instead:1 pathology:1 measured:1
1 entire:1 mood:1 movie:1 creepy:1 wonderfully:1 establishes:1
1 sound:1 look:1 colorful:1 largely:1 absorbing:1 moderately:1 found:1 ring:1 elegantly:1
1 good:1 way:1 succeed:1 show:1 movie:1 filmmakers:1 cheap:1 us:1 else:1 b:1 want:1 time:1 nothing:1
1 fairly:1 little:1 full:1 package:1 moments:1 dressed:1 parable:1 amari:1 performances:1 memorable:1 privileged:1 irresistible:1
1 like:1 fence:1 feel:1 rabbit-proof:1 make:3 likely:1 way:1 sucker:1 probably:1 weep:1 angry:1
1 simple:1 heartwarming:1 tremendously:1 sytle:1 heartbreaking:1 done:1 fable:1 moving:1 artless:1
1 even:1 screenplay:1 atmosphere:1 short:1 somewhat:1 performances:1 creepy:1 falls:1 psychological:1 calibrated:1 taut:1 thrives:1 masterfully:1 thriller:1
1 strength:1 terrible:1 propelled:1 acting:1 imagery:1 sense:1 gives:1
1 regain:1 prevent:1 life:2 waste:1 madness:1 dignity:1 remembered:1 hopeful:1 tale:1 music:1 single:1 tragic:1 struggle:1 monument:1 divine:1 supremely:1 pianist:1 cautionary:1 today:1
1 delightfully:1 strange:1
1 mannered:1 elegant:1 teasing:1
1 twist:1 wholesome:1 average:1 homosexuality:1 elevated:1 tale:1 pesky:1 coming-of-age:1 mother:1 interfering:1 discovery:1
1 play:1 parker:1 ingenuity:1 almost:1 freshening:1 wilde:1 displays:1 class:1
1 beautiful:1 already:1 silent:1 dying:1 thing:1 many:1 black-and-white:1 newsreels:1 like:1 shower:1 movies:1 unexpected:1 decasia:1 quite:1 psychedelia:1 happened:1
1 pokes:1 star:1 pretension:1 price:1 popularity:1 lone:1 bitchy:1 droll:1 small-town:1 state:1 fun:1 frolic:1
1 life:1 onto:1 captures:1 protagonists:1 three:1 different:1 turn:1 moment:1 deep-seated:1 miller:1 need:1 emotional:1 path:1 eloquently:1
1 gosling:1 powerful:1 young:1 ryan:1 actor:1
1 closure:1 perseverance:1 potency:1 fleeting:1 work:1 hopeful:1 denying:1 strange:1 hopeless:1 brew:1 yet:1 minor:1
1 old:1 artist:1 introduction:1 influence:1 however:1 theories:1 derrida:1 inquisitive:1 useless:1 invaluable:1 portrait:1 endlessly:1 man:1
1 duel:1 verbal:1 performers:1 gifted:1 two:1 film:1
1 intriguing:1 imperfect:1 worthwhile:1 addition:1 also:1 legacy:1 honorable:1 yes:1 distinguished:1 film:1
1 enjoyable:1 whit:1 basic:1 minimum:1 get:1
1 units:1 great:1 spend:1 way:1 day:1
1 movie:1 work:1 mark:1 masterpiece:1 ms:1 time:1 hardly:1 best:1
1 simple:1 movie:2 trust:1 innocent:1 imagine:1
1 figures:1 irrational:1 helga:1 funny:1 movie:1 proceedings:1 keep:1 grown-ups:1 cruel:1 long-suffering:1 helps:1 rugrats:1 prominently:1 tarantula:1 passionate:1
1 image:1
1 feral:1 uncomfortable:1
1 fearlessness:1 conveys:1 captivating:1 colorful:1 --:1 creativity:1 nonconformist:1 one:1 drama:1 passion:1 us:1 controversial:1 artists:1 vividly:1 speak:1
1 show-stoppingly:1 nonetheless:1 ending:1 witty:1 scathingly:1 hilarious:1 hollywood:1
1 thomas:1 right:1 maybe:1 wolfe:1 go:1 home:1
1 one:1 compelling:1 ripping:1 yarn:1 quite:1
1 even:1 funny:1 punny:1 --:1 movie:1 girls:1 audience:1 fast:1 specifically:1 grade-school:1 gauge:1 aimed:1 granger:1 frenetic:1 powerpuff:1
1 performances:1 several:1 strong:1 film:1
1 telemarketers:1 never:1 movie:1 bought:2
1 insistently:1 closer:1 consuming:1 someplace:1 live:1 way:1 instead:1 schmidt:1 hope:1 expressing:1 far:1 perfectly:1 demanding:1 self-absorption:1 pitched:1 tragedy:1 comedy:1 --:1 many:2 otherness:1 us:1 movies:1 despair:1 comes:1
1 funny:1 contrived:1 mind:1 nonsense:1 thing:1 bit:1
1 body:1 count:1 head:1 emotionally:1 fills:1 turns:1 bruised:1 add:1 purpose:1 characters:1 goose-pimple:1 genre:1 spirit:1 empty:1
1 makes:1 set:1 based:1 compelling:1 always:1 somehow:1 events:1 drama:1 renaissance:1 fact:1 costume:1 sexy:1 entertaining:1 true:1 peculiar:1 spain:1
1 plays:1 immortal:1 written:1 arguments:1 freshly:1 somebody:1 entertaining:1 else:1 documentary:1 considers:1
1 neo-augustinian:1 imaginative:1 heaven:1 broaches:1 movie:1 creation:1 highly:1 spirited:1 stuck:1 best-known:1 afraid:1 god:1 theology:1
1 wonton:1 magic:1 degree:1 dignity:1 certain:1 reality:1 surrealism:1 wit:1 call:1 beyond:1 miss:1 realism:1 floats:1
1 story:1 big:1 spider-man:1 raimi:1 better:1 done:1 team:1 bringing:1 screen:1
1 reminiscent:1 story:1 explores:1 inquisitiveness:1 sensitivity:1 three:1 director:1 truffaut:1 sides:1
1 well-directed:1 moodiness:1 well-acted:1 pretentious:1
1 summer:1 satisfying:1 blockbuster:1 worth:1 look:1
1 good:1 kids:1 boomers:1 time:1 barrie:1
1 real:1 even:1 empowerment:1 wears:1 sleeve:1 performances:1 easy:1 curves:1 ferrera:1 worst:1 thanks:1 harangues:1 swallow:1 remarkable:1 ontiveros:1 women:1
1 delivery:1 rapid-fire:1 ultimately:1 succeeds:1 inspired:1 mib:1 due:1 dismissed:1 ii:1 enough:1 mindless:1 levity:1
1 dark:1 hit-man:1 sam:1 mendes:1 showcases:1 revenge:1 director:1 era:1 tom:1 hanks:1 tale:1 depression:1 stage:1
1 cinema:1 harbour:1 row:1 giant:1 though:1 two:1 tiny:1 camera:1 darling:1 australia:1 around:1 sitting:1 gliding:1 felt:1 plane:1 imax:1 sweeping:1 carried:1 third:1 sometimes:1 banking:1 hovering:1 seater:1
1 real:1 trifle:1 star:1 sly:1 deadpan:1 reno:1 face:1 sake:1 hot:1 charm:1 stallone:1 resembles:1 comic:1 jean:1 half-sleep:1
1 ingenious:1 twelve:1 hitchcock:1 talent:1 like:1 watching:2 movie:2 outrageous:1 brian:1 silly:1 alfred:1 fun:1 beers:1 drinking:1 depalma:1 thriller:1
1 movie:1 strip:1 four-star:1 unfocused:1 long:1 debris:1 excess:1
1 look:1 century:1 pop:1 entertaining:1 unsung:1 music:1 immensely:1 heroes:1
1 glamour:1 eyes:1 short:1 tenor:1 consequences:1 though:1 familiar:1 larger:1 long:1 times:1 tale:1 rise-and-fall:1 moralistic:1 sharp:1 ears:1 told:1
1 animated:1 dull:1 epic:1 never:1 beautifully:1
1 fairly:1 melodrama:1 turn:1 rather:1 photography:1 widescreen:1 brian:1 music:1 something:1 excellent:1 parochial:1 paul:1 really:1 special:1 handsome:1
1 compelling:1 viewing:1 makes:1 provocative:1 prescient:1
1 prevent:1 acidity:1 thoroughly:1 twist:1 uses:1 entertaining:1 comedy:1 succumbing:1 bathos:1
1 boy:1 theater:1 plot:1 provide:1 movie:1 freshness:1 injects:1 enjoyable:1 enough:1 proceedings:1 using:1 minutes:1 stock:1
1 revolutionary:1 schaeffer:1 may:1 strictly:1 never:1 qualify:1 accomplished:1 grain:1 defiantly:1 delightfully:1 eric:1 speaking:1
1 sensational:1 grant:1 absolutely:1 elegant:1 entertainment:1 down-to-earth:1 bullock:1 nonchalant:1 proves:1 meshes:1 everything:1 chemistry:1 hard-to-predict:1 essential:1
1 murder:1 thrilling:1 combination:1 opera:1 soap:1 betrayal:1 juicy:1 tragedy:1 shakespearean:1 ethnography:1 deceit:1 intrigue:1 positively:1
1 collaborators:1 prescription:1 disaster:1 entertainment:1 almost:1 commercial:1 critical:1 deep:1 bow:1 kaufman:1 engrossing:1 take:1 mr:2 clooney:1 fashioning:1 sure-fire:1 entitled:1
1 funny:1 definitely:1 variety:1 stuff:1
1 easily:1 ever:1 screen:1 fictional:1 thoughtful:1 anti-semitism:1 examination:1 seen:1 root:1 causes:1
1 drama:1 gripping:1
1 real:1 funny:1 --:1 winner:1 resonant:1 subtle:1 smart:1
1 rare:1 family:1 filmmaking:1 neurosis:1 promise:1 treat:1 digital:1 need:1 portrait:1 nervy:1 negativity:1 shows:1
1 beautiful:1 like:1 read:1 house:1 discarded:1 spread:1 pitch:1 must:1
1 among:1 uplifting:1 possibilities:1 worst:1 mankind:1 year:1 films:1 document:1 best:1
1 david:1 murderer:1 never:1 jacobson:1 director:1 game:1 victims:1 consideration:1 dahmer:1 gives:1
1 life:1 look:1 salma:1 feel:1 character:1 terrific:1 hayek:1 stages:1 film:1
1 real:1 decided:1 epiphanies:1 lack:1 dearth:1 spontaneity:1 poignancy:1 execution:1
1 performances:1 remarkable:1
1 plot:1 dialogue:1 waydowntown:1 punchy:1 visuals:1 characters:1 carry:1
1 enjoyable:1 kids:1 desecrations:1 forget:1 monday:1 entertainment:1 taste:1 developed:1 acceptable:1 though:1 literary:1 enough:1 occasionally:1 go:1 old:1 perfectly:1 makes:1
1 cheese:1 little:1 movie:1 light:1 par:1 one:1 say:1 stuart:1 fun:1 puff:1 first:1
1 brilliant:1 funny:1 macabre:1 strange:1 twisted:1
1 drama:1 unsentimental:1 wisely:1 moving:1 genuinely:1
1 haunting:1 dramatization:1 ascension:1 heaven:1 moral:1
1 illustrating:1 mothman:1 modern:1 demons:1 prophecies:1 journey:1 bedevilling:1 masculine:1 best:1
1 neil:1 intense:1 director:1 train:1 bullets:1 freight:1 silver:1 film:1
1 eventually:1 dogged:1 kids-and-family-oriented:1 would:1 many:1 make:1 winning:1 cable:1 plays:1 squareness:1 darling:1 channel:1
1 caper:1 hybrid:1 british:1 romance:1 quirky:1 entertaining:1 comedy:1 thrills:1
1 turmoil:1 portraying:1 sense:1 takes:1 funny:1 giving:1 unspool:1 barely:1 alain:1 three:1 stops:1 perpetual:1 hours:1 irritating:1 camera:1 moving:1 film:1 time:1 conduct:1 urgency:1 nearly:1
1 grub:1 feel:1 one:1 tasty:1 stomach:1 trifle:1 little:1 cut:1 would:1 martha:1 roll:1 pleasurable:1 notice:1 used:1 pain:1 mostly:1 credits:1 grumbling:1 --:2 could:2 trimming:1 minutes:1
1 great:1 love:1 moore:1 polemic:1 hardly:1 express:1 cinematic:1 admire:1 intensity:1 willing:1 objective:1 got:1 convictions:1 documentary:1 loathe:1
1 summer:1 genuine:1 unadulterated:1 mark:1 laughs:1 two:1 one:1 respectable:1 things:1 blockbuster:1 thrills:1
1 visually:1 funny:1 dazzling:1 depicted:1 dramatic:1 poignant:1 events:1 film:1
1 directorial:1 ivans:1 force:1 rose:1 de:1 one:1 bernard:1 tour:1 xtc:1 pictures:1 best:1
1 limited:1 work:1 forget:1 commitment:1 engaging:1 folk:1 movie:2 two:1 actually:1 way:1 extent:1 excellent:1 low-key:1 kind:1 performers:1 admittedly:1 lapaglia:1 allows:1 us:1 weaver:1 makes:1 genuinely:1
1 even:1 funny:1 digressions:1
1 enjoy:1 noble:1 spielberg:1 conned:1 succeed:1 company:1 merrily:1 without:1 want:1 mr:1 endeavor:1 feeling:1
1 message:1 melodrama:1
1 el:2 en:4 soberbio:1 su:1 pantalla:1 es:2 hacerlo:1 rey:1 teatral:1 la:1 cine:1 pero:1 contemplarse:1 de:1 montaje:1 experiencia:1 imax:1 colosal:1 digno:1 dvd:1 o:1 una:1 un:1 mismo:1
1 pleasant:1 pokey:1 perfectly:1 slightly:1 comedy:1
1 cinema:1 almost:1 humdrum:1 manages:1 still:1 film:1 slow:1 decent:1 character:1 least:1 incredibly:1 approach:1 development:1 fairly:1 stylistic:1 despite:1 meaningful:1 directorial:1 attempt:1 debut:1 layered:1 paced:1
1 even:1 reveals:1 artistry:1 inside:1 end:1 adults:1 computerized:1 may:1 ascends:1 quivering:1 cranky:1 life:1 teeming:1 martial:1 finally:1 kinetic:1 rediscover:1 yoda:1 film:1 kid:1
1 presents:1 glimpse:1 men:1 wang:1 fascinating:1 urban:1 young:1 xiaoshuai:1 structured:1 life:1 intricately:1 drama:1 embroils:1 directs:1 well-realized:1 class:1 two:1 warfare:1
1 equally:1 mood:1 zone:1 tear:1 movie:1 harrowing:1 hard:2 able:1 anybody:2 grey:1 started:1 eyes:1 imagine:2 screen:1 ever:1 away:1 painful:1 view:1
1 taps:1 reenacting:1 mystique:1 bogdanovich:1 deep:1 historic:1 scandal:1 hearst:1 entertainingly:1
1 unexamined:1 unexpected:1 love:1 places:1 tale:1 moving:1 lives:1 destruction:1
1 keeping:1 always:1 fantastic:1 directs:1 believable:1 clooney:1 balance:1 film:1
1 produced:1 beautifully:1
1 taut:1 smart:1
1 even:1 movie:1 discussion:1 reminded:1 hours:1 viewing:1 going:1 understand:1 earth:1 post:1 stimulate:1
1 lesson:1 prehistoric:1 hilarity:1
1 real:1 story:1 humor:1 sensuality:1 adolescent:1 boys:1 movie:1 fantastically:1 vital:1 two:1 sympathy:1 manages:1 invest:1
1 lawrence:1 personal:1 plumbs:1 also:1 human:1 comedy:1 tragedy:1
1 jettisoned:1 capable:1 somewhere:1 though:1 crucial:1 drama:1 way:1 along:1 thriller:1
1 surest:1 summer:1 good:1 all-around:1 movies:1 time:1 bet:1
1 great:1 disingenuous:1 would:1 movie:1 friday:1 diversion:1 reno:1 pleasant:1 excuse:1 say:1 call:1 multiplex:1 night:1 popcorn:1 moving:1 flicks:1 eat:1 film:1 distraction:1
1 barris:1 e:2 igualmente:1 charlie:1 de:1 chuck:1 kaufman:1 fascinantes:1 universos:1 os:1 complementares:1
1 always:1 may:1 certain:1 work:1 improvisation:1 nevertheless:1 compelling:1 sense:1 film:1 experimentation:1
1 exoticism:1 rewards:1 seas:1 feathers:1 scenes:1 four:1 sweeping:1 sand:1 battle:1 fierce:1 grandeur:1
1 screenplay:1 direction:1 gondry:1 movie:1 michael:1 terrific:1 fanciful:1 delicious:1 quirky:1
1 timely:1 story:2 watching:1 ends:1 older:1 seems:1 heartbreak:1 element:1 important:1 know:1 wiser:1 happen:1 still:1 eyes:1
1 function:1 funny:1 movie:1 bodily:1 jokes:1 stuff:1 expect:1 rich:1 veins:1
1 hits:1 amiable:1 often:1 performances:1 bullseye:1 committed:1 comedy:1
1 quieter:1 good:1 less:1 successful:1 movie:1 rollicking:1 part:1 time:2 hype:1 still:1 slightly:1 first:1
1 enjoy:1 --:1 part:1 thanks:1 plenty:1 small:1 lau:1
1 spell:1 story:1 manage:1 romantic:1 sleeve:1 plotline:1 straight:1 cinderella:1 ages:1 somehow:1 single:1 surprise:1 get:1 comedy:1
1 works:1 form:1 though:1 ranks:1 invincible:1 back:1 astoundingly:1 film:1 rich:1 argue:1 best:1 shows:1
1 spielberg:1 sentimental:1 star:1 power:1 capable:1 moments:1 pop-induced:1 masses:1 trademark:1 charming:1 feels:1 score:1 catch:1 become:1
1 great:1 means:1 movie:1 one:1 refreshingly:1 forthright:1
1 enhances:1 documentary:1 casting:1 raymond:1 barry:1 j:1 greatly:1 fake:1 neil:1 quality:1 impressive:1
1 huge:1 selling:1 tone:1 name:1 point:1 krawczyk:1 big:1 credit:1 thoroughly:1 winning:1 deserves:1 amount:1 doubt:1 despite:1 high-profile:1
1 lost:1 dazzling:1 back:1 got:1 remarkably:1 documentary:1 unpretentious:1 reminder:1
1 schemes:1 risk:1 consequences:1 movie:2 concerned:1 souls:1 actions:1 thoughtful:1
1 ago:1 tale:1 intriguing:1 tone:1 century:1 deadpan:1 stylistic:1 dour:1 satisfyingly:1 consistency:1 half:1 delightfully:1 odd:1
1 tedious:1 successful:1 methodical:1 brain:1 --:1 ballot:1 lodging:1 gently:1 may:1 secret:1 reductive:1 movie:1 purposefully:1 comedy:1 measured:1
1 outs:1 look:1 flawed:1 trenchant:1 unsentimental:1 modern:1 ins:1 witty:1 wildly:1 moviemaking:1
1 distance:1 picture:1 places:1 unsettling:1 ride:1 psyche:1 satisfyingly:1 provides:1 dark:1 national:1
1 funny:1 knucklehead:1 swill:1 standards:1 hot:1 pretty:1 chick:1 damned:1
1 adrenalized:1 unsubtle:1 shockers:1 since:1 evil:1 one:1 dead:1 gloriously:1 extreme:1
1 depths:1 believable:1 despair:1 heart-wrenching:1 wholly:1
1 absorbing:1 psychological:1 drama:1 unsettling:1
1 whose:1 life:1 america:1 awkwardness:1 artist:1 may:1 movie:1 work:1 history:1 generous:1 deep:1 one:1 production:1 values:1 human:1 seen:1 highest:1 ever:1 view:1
1 composed:1 edited:1 dialogue:1 shot:1 though:1 well:1 crudely:1 literal:1 score:1 insistent:1 waves:1 frequently:1 shatters:1 film:1 overwrought:1
1 entire:1 good:1 extraordinarily:1 cast:1
1 yakusho:1 always:1 sack:1 sad:1 wonderful:1 long-faced:1 believable:1 chemistry:1 shimizu:1
1 brash:1 promises:1 men:1 look:1 cell:1 phones:1 ride:1 ensues:1 young:1 laptops:1 sketchy:1 set:1 conquer:1 online:1 wild:1 world:1 delivers:1 business:1 film:1 plans:1
1 good:1 resemble:1 fisk:1 celebrity:1 work:1 young:1 bring:1 vaguely:1 camera:1 parents:1 looks:1 front:1 fresh:1 hanks:1 ease:1
-1 tedious:1 simplistic:1 silly:1
-1 funny:1 juvenile:1 possibly:1 could:1 laddish:1 teenage:1 boys:1 find:1
-1 graphic:1 crimes:1 would:1 largely:1 make:1 watching:1 sophistication:1 devoid:1 depth:1 exploitative:1 treatment:1 bearable:1
-1 discards:1 circumstantial:1 study:1 melodrama:1 exhuming:1 potential:1 situation:1 instead:1 skewed:1 pathological:1
-1 visually:1 style:1 emotionally:1 vapid:1 opaque:1 mystification:1 narratively:1 flashy:1 exercise:1
-1 count:1 story:1 already:1 recycled:1 unoriginal:1 times:1 also:1 come:1 care:1
-1 concept:1 grinder:1 meat:1 give:1 --:1 movie:1 bravado:1 one:1 thing:1 points:1 take:1 time:1 push:1 entirely:1 stale:1
-1 sour:1 much:1 farcical:1
-1 story:1 unfortunately:1 script:1 actors:1 hack:1 served:1
-1 falls:1 gore-free:1 subject:1 disquieting:1 attempts:1 humanize:1 serial:1 murders:1 allusions:1 relatively:1
-1 mess:1 true:1 sentimental:1 rings:1 never:1
-1 better:1 often:1 would:1 largely:1 tv:1 performances:1 loose:1 collection:1 engaging:1 numbers:1 improvised:1 probably:1 worked:1 documentary:1 one-hour:1
-1 interesting:1 compelling:1
-1 made:1 room:1 floor:1 somewhere:1 frustrating:1 footage:1 satire:1 lies:1 cultural:1 cutting:1 instead:1 ironic:1 trenchant:1 thing:1 might:1 misfire:1
-1 gained:1 barrels:1 notice:1 name:1 basis:1 lock:1 household:1 vehicle:1 two:1 snatch:1 player:1 unlikely:1 starring:1 become:1 smoking:1 guy:1 first:1 bod:1 ensemble:1 stock:1
-1 stupid:1 top:1 movies:2 courage:1 go:1 difference:1 care:1
-1 even:1 funny:1 goombah:1 de:1 seems:1 right-hand:1 viterelli:1 joe:1 nothing:1 analyze:1
-1 said:1 last:1 film:1 pogue:1 previously:1 skulls:1 overboard:1 enough:1 us:1 except:1 screenwriting:1 courtesy:1 master:1 rollerball:1 yale:1 john:1 grad:1 comes:1 gave:1
-1 flies:1 hit:1 none:1 hail:1 sascha:1 window:1 bullets:1 common:1 sense:1 along:1 ever:1 seem:1
-1 movie:1 material:1 minutes:1 decent:1
-1 comment:1 schneider:1 teenage:1 prissy:1 positive:1 make:1 convincing:1 actually:1 pedestrian:1 pretty:1 turns:1 performance:1 girl:1 execution:1 rob:1
-1 interesting:1 pale:1 imitation:1 remake:1
-1 studios:1 shoddy:1 ability:1 lost:1 people:1 girl-on-girl:1 forgive:1 long:1 think:1 product:1 action:1 little:1 believe:1 shows:1 firmly:1
-1 comparison:1 knowledge:1 farce:1 reality:1 much:1 premise:1 films:1 commentary:1 comedy:1 parody:1
-1 sound:1 lulled:1 exoticism:1 pax:1 rest:1 viewer:1 us:1 coma:1 exciting:1 might:1 typical:1
-1 tawdry:1 dudsville:1 deliver:1 scenes:1 rest:1 kicks:1 party:1 film:1
-1 toilet:1 burrito:1 headed:1 frozen:1 movie:1 tequila:1 all-night:1 culture:1 know:1 bender:1 seen:1 ferocity:1
-1 criticism:1 potshots:1 morally:1 bankrupt:1 cynical:1 characters:1 never:1 easy:1 rises:1
-1 wan:1 product:1 story:1 like:1 less:1 going:1 homage:1 well:1 thinly:1 killing:1 mere:1 excuse:1 feels:1 construction:1 time:1 sketched:1 something-borrowed:1 integrated:1 loving:1
-1 over-the-top:1 infantile:1 waking:1 back:1 redundant:1 sloppy:1 stupid:1 sleep:1 reno:1 go:1 yep:1 amateurish:1
-1 gems:1 dominates:1 field:1 somewhere:1 movie:1 compels:1 demme:1 middle:1 moment:1 experiments:1 roughage:1 harvests:1 film:1
-1 action:1 pile:1
-1 party:1 raise:1 film:1 process:1 political:1 electoral:1 broadcast:1 tries:1 result:1 subtle:1 serious:1 issues:1 payami:1
-1 underwear:1 zemeckis:1 cavorting:1 robert:1 assume:1 pictures:1 joel:1 director:1 agreed:1 produce:1 heavyweights:1 surprise:1 silver:1
-1 movie:1 recycling:1 brutal:1 sports:1 american:1 useless:1 another:1
-1 smile:1 survived:1 laugh:1
-1 someone:1 schaeffer:1 please:1 stop:1 another:1 makes:1 eric:1 film:1
-1 screenplay:1 derive:1 rather:1 performances:1 problems:1 actors:1 involved:1 mediocre:1 film:1
-1 mood:1 --:2 movie:1 matinee:1 catch:1 bad:1 want:1 fun:1 might:1 freaks:1
-1 sport:1 curling:1 may:1 men:1 distinctly:1 brooms:1 ordinary:1 unique:1
-1 sort:1 set:1 unsure:1 takes:1 mostly:1 though:1 opera:1 jacquot:1 seems:1 indoors:1 place:1 evoke:1 naturalism:1
-1 around:1 getting:1 --:1 revenge:1 revisited:1 nerds:1 fact:1
-1 hardly:1 sincere:1 results:1 honest:1 watchable:1 film:1 effort:1 bleak:1
-1 thrown:1 swings:1 regurgitates:1 successes:1 many:1 waters:1 new:1 analyze:1 previous:1
-1 continuity:1 incoherent:1 get:1 wins:1 flashbulb:1 time:1 cover:1 excuse:1 absence:1 nearly:1 narrative:1 impossible:1 closing:1 editing:1 bout:1 care:1 undisputed:1
-1 stinks:1 gloom:1 finish:1 burlap:1 like:1 sack:1 start:1 wet:1
-1 like:1 movie:1 ordeal:1 mind:1 civilized:1 vs:1 ballistic:1 amusement:1 ecks:1 sever:1
-1 could:1 equlibrium:1 totalitarian:1 themes:1 farenheit:1 book:1 pass:1 report:1
-1 pity:1 forced:1 everything:1 lack:1 naturalness:1 poetic:1 match:1 self-consciously:1 ambition:1 seem:1 makes:1 achievement:1
-1 everything:1
-1 theater:1 kool-aid:1 appeared:1 seagal:1 shout:1 stand:1 prison:1 orange:1 wanted:1 jumpsuit:1
-1 demeanour:1 lead:1 character:1 watch:1 except:1 easy:1 annoying:1
-1 story:1 romance-novel:1 ali:1 profanities:1 version:1 replaced:1 imagine:1 platitudes:1 cleanflicks:1
-1 suffers:1 pat:1 simplistic:1 fairy-tale:1 stability:1 pc:1 narrative:1 notwithstanding:1 film:1 conclusion:1
-1 unexplained:1 cameo:1 forget:1 title:1 misleading:1 baboon:1
-1 haphazard:1 comedy:1 odd:1 inconsequential:1 romantic:1
-1 funny:1 elsewhere:1 tickled:1 dollars:1 though:1 humor-seeking:1 spent:1 find:1 fans:1 others:1 bones:1 assuredly:1 best:1
-1 spiritual:1 fabuleux:1 e:1 provides:1 --:1 destin:1 audrey:1 quest:1 rom-com:1 another:1 tautou:1 banal:1 pascale:1
-1 interfaith:1 sugary:1 little:1 understanding:1 static:1 stretched:1 half-hour:1 minutes:1 special:1 after-school:1
-1 freeman:1 watching:1 almost:2 movie:1 however:1 judd:1 seeing:1 chemistry:1 makes:1 worth:1
-1 ultimately:1 woman:1 evil:1 pretentious:1 examination:1 sick:1 empty:1
-1 flat:1 unfortunately:1 bears:1 country:1 amuse:1 upset:1 scenes:1 young:1 almost:1 entertain:1 either:1 frighten:1 nothing:1 effort:1 viewers:1
-1 trifle:1 stonehenge:1 trots:1 end:1 like:1 family:1 watching:1 rather:1 cumulative:1 effect:1 long:1 took:1 relative:1 trapped:1 evening:1 video:1 vacation:1 desperate:1 weird:1
-1 sketches:1 leaves:1 never:1 reach:1 frustratingly:1 connection:1 identification:1 characters:1 emotional:1 true:1
-1 drama:1 self-examination:1 personalities:1 conveyor:1 --:1 convenient:1 camp:1 character:1 back:1 pretentious:1 underdeveloped:1 brooding:1 drowsy:1 coming:1 nothing:1 infatuated:1 stock:1 effort:1 parade:1 belt:1
-1 surprising:1 fence:1 rabbit-proof:1 authority:1 find:1 looking:1 shots:1 final:1
-1 cut:1 virtues:1 visual:1 despite:1 sharp:1 original:1
-1 even:1 badly:1 plays:1 like:2 edited:1 get:1 director:1 coherent:1 going:1 fact:1 rhythm:1 seem:2 trailer:1 tried:1
-1 baseball-playing:1 maybe:1 hey:1 thought:1 movie:1 leblanc:1 worse:1 monkey:1
-1 raised:1 bar:1 get:1 expectations:1 height:1 expect:1 assuming:1 sixth-grade:1
-1 barry:1 frank:1 pug:1 time:1 owes:1 big:1 sonnenfeld:1
-1 even:1 cut:1 anything:1 glory:1 mpaa:1 barely:3 uproar:1 made:1 roger:1 interesting:1 biggest:1 problem:1 shocking:1 film:1
-1 faith:1 plod:1 watch:1 unanswered:1 riddled:1 leaps:1 questions:1 along:1 requires:1 gargantuan:1
-1 said:1 approached:1 sit:1 usher:1 ask:1 raise:1
-1 earnest:1 heavy-handed:1
-1 plot:1 obstacles:1 way:1 would:1 ordeal:1 character:1 introduce:1 brain:1 five:1 goes:1 instead:1 minutes:1 stumble:1
-1 younger:1 slow:1 crowd:1 older:1 shallow:1 one:1
-1 advance:1 stinker:1 offer:1 big:1 adventures:1 pluto:1 reason:1 studio:1 screening:1 time:1 nash:1
-1 built:1 characters:1 joke:1 punch:1 musty:1 without:1 premise:1 memories:1 line:1 entirely:1 half-dimensional:1
-1 funny:1 like:1 puts:1 wills:1 character:1 one:1 another:1 battle:1 impossible:1 believe:1 care:1 takes:1
-1 fly:1 buy:1 get:1 things:1 audience:1 tries:1 movie:1 intelligent:1 viewers:1
-1 prospect:1 rendered:1 campus:1 film:1 even:2 enticing:1 story:1 would:1 deliberate:1 young:1 construct:1 actors:1 fade:1 depravity:1 ugliness:1 tiresome:1 tedious:1 lot:1 trace:1 failure:1 dramatic:1 amid:1 interest:1 nubile:1
-1 spoiler:1 four-year-old:1 last:1 significantly:1 exaggeration:1 sitting:1 taste:1 house:1 less:1 halloween:1 alert:1 haunted:1 listening:1 recount:1 charming:1 reel:1 trip:1
-1 desire:1 actresses:1 last:1 contorting:1 deserve:1 please:1 idea:1 expectation:1 thing:1 ultimate:1 characters:1 confuses:1 three:1 message:1
-1 deadly:1 hotel:1 gone-to-seed:1 losers:1 meditation:1 pointless:1 dull:1
-1 sentiment:1 robotic:1 overrun:1 rollerball:1 sense:1 new:1 sensibility:1 characterized:1
-1 different:1 star:1 waldo:1 bestowed:1 assume:1 attempt:1 gordy:1 brother:1 award:1 one:1 screenwriting:1 festival:1 sundance:1 pulling:1 something:1 honoring:1 jury:1 actually:1 salt:1
-1 visually:1 rhythms:1 room:1 prescribed:1 --:1 movie:1 waiting:1 soothing:1 recommended:1 predictable:1 cushion:1 narrative:1 bland:1 muzak:1 complete:1
-1 leave:1 ironically:1 toddler:1 boobs:1 lame:1 dog:1 becomes:1 never:2 mind:1 story:1 evade:1 sex:1 try:1 responsibilities:1 something:1 fantasti:1 alone:1 large:1 little:1 ever:1
-1 heavy:1 huge:1 insight:1 script:1 things:1 topics:1 offer:1 people:1 covers:1 instance:1 bad:1 good:1 way:1 bland:1 happen:1 surfacey:1
-1 perfect:1 certainly:1 succeed:1 alienation:1 alienating:1 portrait:1 viewers:1
-1 code:1 deserved:1 talkers:1 hollow:1 better:1 tribute:1
-1 buy:1 skip:1 cd:1 soundtrack:1 glass:1 philip:1 film:1
-1 old:1 like:1 feels:1 going:1 motions:1 cold:1 man:1
-1 tree:1 bear:1 rustic:1 dignified:1 pee:1 meet:1 laughter:1 retreat:1
-1 exhibit:1 like:1 museum:1 goofy:1 kinda:1 mechanical:1 dull:1
-1 prefeminist:1 interpretation:1 plenty:1 point:1 thinking:1 movie:1 make:1 contemporary:1 standards:1 reason:1 allow:1 nudity:1 plight:1 left:1 present:1 view:1
-1 sentimental:1 dime:1 humorous:1 beware:1 brit-com:1 oddly:1 turn:1 quirky:1 tediously:1
-1 moments:1 --:1 almost:1 subplots:1 many:1
-1 mixed:1 bag:1 gags:1 script:1
-1 grouchy:1 iranian:1 mosque:1 ayatollah:1 drama:1 fun:1 completely:1 much:1 awful:1 cold:1
-1 mess:1 plodding:1 narratively:1 every:1 trouble:1 day:1
-1 plot:1 point:1 purposes:1 romance:1 bland:1 bare:1 bones:1 hollywood:1 extracting:1
-1 little:1 vacuum:1 ron:1 space:1 muster:1 resonance:1 retina:1 able:1 behind:1 sparkling:1 musker:1 produced:1 directors:1 clements:1 lot:1 team:1 emotional:1 cold:1 john:1 candy:1 mermaid:1
-1 heart:1 needs:1 right:1 pull:1 may:1 head:1 place:1 adam:1 butt:1
-1 doubting:1 clumsy:1 personal:1 work:1 highly:1 project:1 also:1 feels:1 convoluted:1 ambitious:1 egoyan:1 one:1 next:1 best:1
-1 offbeat:1 touches:1 around:1 cast:1 seems:1 knockaround:1 fresh-faced:1 engaging:1 kicking:1 young-guns:1 interested:1 raison:1 despite:1 rarely:1 guys:1
-1 people:1 movie:1 offensive:1 expects:1 tame:1 thing:1 see:1 pretty:1 pay:1 hollywood:1
-1 mess:1 movie:1 finish:1 start:1
-1 modern:1 appear:1 maiden:1 rather:1 thoroughly:1 shallow:1 queen:1 also:1 likely:1 illness:1 victim:1 making:1 trouble:1 foolish:1 makes:1 mental:1
-1 saying:1 story:1 substance:1 fairly:1 pictures:1 age:1 give:1 life:1 ice:1 actually:1 enough:1 pretty:1
-1 story:1 untold:1 largely:1 familiar:1 chooses:1 produce:1 suspiciously:1 bui:1 something:1 ultimately:1 telling:1
-1 plot:1 finish:1 would:1 boilerplate:1 script:1 exact:1 subtlety:1 lost:1 times:1 movie:1 start:1 audience:1 stupid:1 also:1 nothing:1 seen:1 hundred:1 already:1 realize:1 assumes:1 target:1
-1 brain:1 production:1 dead:1 terminally:1
-1 episodes:1 work:1
-1 filmed:1 admittedly:1 acted:1 beautifully:1 well:1 narrative:1 specifics:1 problematic:1
-1 box:1 earn:1 perfectly:1 pretty:1 office:1 lo:1 clear:1 j:1 share:1 pie:1 one:1 thing:1 working:1 woman:1 although:1 movie:1 girl:1 holiday:1 makes:1
-1 --:1 deserve:1 pic:1 laughs:1 vampire:1 dead-undead:1 shrieky:1 proper:1 followers:1 effects:1 rymer:1 respect:1 genre:1 trust:1 whole:1 special:1 conjure:1
-1 unfunny:1 gags:1 sopranos:1 sequel:1 -doing-it-for:1 also:1 dated:1 desperate:1 demonstrate:1 incredibly:1 makers:1
-1 movie:1 wow:1 disappointed:1 long:1 time:1
-1 watstein:1 overlong:1 well-acted:1 credit:1 hook:1 adam:1 writer-producer-director:1 finishing:1
-1 little:1 woman:1 sees:1 working:2 --:2 nettelbeck:1 least:1 understanding:1 drag:1 shows:1 women:1
-1 death:1 little:1 light:1 ham:1 emotionally:1 watching:1 physically:1 movie:1 poignancy:1 else:1 offers:1 course:1 harris:1 disintegrating:1 certain:1 consequence:1 film:1 recent:1
-1 easily:1 like:1 similarly:1 antitrust:1 budget:1 ill-timed:1 note:1 also:1 bad:1 fraction:1 curious:1 film:1
-1 el:2 momentos:1 en:1 interesante:1 por:1 su:2 importa:1 aburrido:1 es:1 lo:1 pudo:1 de:2 talento:1 premisa:1 que:2 cinta:1 resultado:2 reparto:1 haber:1 o:1 una:1 francamente:1 pues:1 y:1 deplorable:1
-1 registering:1 movies:1 screen:1 barely:1 one:1 blip:1 radar:1 probably:1
-1 funny:2 little:1 old:1 wilder:1 material:1 actually:1 movies:1 plenty:1 van:1 recycle:1 derivative:1 problem:2 tropes:1
-1 nothing:1 interesting:1 unfaithful:1 whatsoever:1
-1 none:1 filmmakers:1 moving:1 half:1 seem:1 think:1
-1 chop:1 comedy:1 processed:1 suey:1
-1 even:1 trek:1 nemesis:1 star:1 surviving:1 show:1 --:1 series:1 screen:1 drink:1 spent:1 mixer:1 nothing:1 suggestive:1 eight:1 members:1 reunion:1 go:1 class:1
-1 even:1 fails:1 dystopian:1 retooling:1 movie:1 fahrenheit:1 rip-off:1 matrix:1
-1 kind:1 full:1 chitchat:1 neurotics:1 engage:1 self-aware:1 obnoxious:1
-1 erotic:2 thrilling:1 neither:1 thriller:1 either:1
-1 like:1 office:1 stiff:1 --:1 movie:1 extra-dry:1 seems:1 long:1 twice:1 something:1 comedy:1 minutes:1 bartleby:1
-1 parade:1 takes:1 almost:1 perpetually:1 hazy:1 like:1 high:1 feels:1 long:1 characters:1 shake:1 wasted:1 margarita:1
-1 seeing:1 rehash:1 money:1 avoid:1 time:1 clause:1 value:1 predictable:1 escape:1 trite:1 find:1
-1 whirl:1 intentions:1 good:1 appear:1 capable:1 age-inspired:1 caught:1 spell:1 heady:1 director:1 cast:2 least:1 new:1 bit:1 mesmerizing:1
-1 comedy:1 simplify:1 everything:1 york:1 new:1 pegged:1 dating:1 groove:1
-1 fluff:1 pat:1 dishonest:1 dramatic:1 hollywood:1 comedy:1 pleasantly:1
-1 spy:1 mike:1 myers:1 sequence:1 ruins:1 title:1 m:1 franchise:1 funniest:1 date:1 everything:1 cameo-packed:1 comedy:1 minutes:1 shows:1
-1 van:1 ba:1 giving:1 rest:1 black:1 comes:1 red:1 silly:1 surprised:1 seen:1 chase:1 murdock:1 a-team:1
-1 lovebirds:1 immature:1 care:1 unappealing:1
-1 genial:1 rare:1 hoping:1 script:1 conceit:1 pictures:1 screen:1 never:1 realized:1 one:1 fully:1 promise:1 rich:1 dearly:1 throughout:1 root:1
-1 even:1 dignity:1 hero:1 restless:1 young:1 possibilities:1 deserves:1 audience:1 something:1 summertime:1 action:1 motivated:1 franchise:1
-1 statements:1 dime-store:1 becomes:1 blanket:1 wisdom:1 ruminations:1 running:1 sudden:1 sermon:1 rich:1 time:1 worries:1 film:1 vanity:1
-1 lousy:1 movie:1 one:1
-1 bridge:1 fiendish:1 textbook:1 sense:1 huge:1 jeremy:1 clean-cut:1 title:1 remains:1 movie:1 make:1 acts:1 character:1 gamely:1 gap:1 earnest:1 tries:1 dahmer:1 psychologizing:1 creepy:1 amount:1 renner:1
-1 plodding:1 gimmicky:1 peevish:1
-1 knowing:1 horse:1 feathers:2 cinematic:1 four:1 fun:1 sandbox:1 definitely:1 go:1 might:1
-1 condescension:1 pore:1 every:1 oozes:1
-1 shapeless:1 work:1 solaris:1 viewer:1 move:1 inconsequential:1 relying:1
-1 direction:1 crackle:1 hard-bitten:1 hickenlooper:1 cynicism:1 snap:1 wiseacre:1 george:1
-1 hypnotically:1 dull:1
-1 would:1 though:1 saga:1 genius:1 screen:1 material:1 terrific:1 read:1 touch:1 dicey:1
-1 especially:1 laughs:1 else:1 much:1 moral:1 plenty:1 sense:1
-1 like:1 videos:1 --:1 pay:1 want:1 except:1 least:1 one:1 content:1 see:1 music:1 lot:1 awful:1 minutes:1 worse:1 goes:1
-1 especially:1 favourite:1 confusion:1 emotions:1 one:1 least:1 put:1 minutes:1
-1 remembered:1 hard:1 bled:1 complex:1 something:1 want:1 ia:1 soldiers:1 suffered:1 ground:1 bit:1 drang:1
-1 often:1 offensive:1 waking:1 gentle:1 occasionally:1 simply:1 coma:1 loud:1 lulls:1
-1 play:1 mush:1 mainstream:1 may:1 double:1 wedding:1 well:1 feature:1 fat:1 foreign:1 greek:1 big:1 like:1
-1 watching:1 finale:1 reach:1 strutting:1 likely:1 wondering:1 time:1 posturing:1
-1 journalistically:1 inept:1 dubious:1 lethally:1 dull:1 often:1
-1 box:1 cheesiest:1 primitive:1 gamut:1 murderer:1 unleashes:1 space:1 inside:1 station:1 putting:1 effects:1 cheesier:1 high-tech:1 run:1 cheesy:1 special:1
-1 heart:1 rambo-:1 ford:1 worst:1 meets-john:1 black:1 hawk:1 best:1
-1 named:1 guy:1 exactly:1 kaos:1 expect:1
-1 calculated:1 swill:1
-1 takes:1 movie:1 energy:1 describe:1 bad:1 deserve:1
-1 tanks:1 ford:1 without:1 low:1 harrison:1 ballast:1 sinks:1
-1 life:1 parker:1 importance:1 hard:1 two:1 director:1 earnest:1 oliver:1 labors:1 probably:1 muscle:1 pulled:1 whip:1
-1 real:1 life:1 boring:1 discover:1 shocked:1 might:1
-1 predecessor:1 high:1 complete:1 keep:1 enjoyable:1 enough:1 points:1 nearly:1 time:1 fresh:1 waste:1
-1 sheer:1 force:1 many:1 negotiate:1 quite:1 compensate:1 walsh:1 behavior:1 inconsistencies:1 charm:1
-1 series:1 feels:1 looks:1 film:1 tired:1
-1 intriguing:1 offering:1 insight:1 little:1 next:1 leers:1 subject:1
-1 abhorrent:1 became:1 growing:1 found:1 detached:1 frustrated:1 vincent:1
-1 oddest:1 movie:1 inexplicable:1 one:1 sequels:1 history:1
-1 scary:1 way:1 watching:1 entertain:1 gain:1 characters:1 nothing:1 viewers:1 finds:1 hates:1 inspire:1
-1 oftentimes:1 permeates:1 ultimately:1 autocritique:1 funny:1 cowardly:1 todd:1 fear:1 whole:1 yet:1 stortelling:1
-1 among:1 victims:1 skirmishes:1 power:1 waged:1 artificial:1 settle:1 undistinguished:1 predators:1 rhythm:1 suspense:1
-1 awful:1 thoroughly:1
-1 passable:1 family:1 predictably:1 familiar:1 age:2 many:1 ice:1 fans:1 treads:1 win:1 making:1 along:1 territory:1 film:1
-1 story:1 love:1 though:1 could:1 get:1 parable:1 one:1 rent:1 well-intentioned:1 original:1 film:1
-1 audience:1 ensnare:1 silly:1 target:1 sophomoric:1
-1 exhausting:1 set:1 dependent:1 watch:1 work:1 grainy:1 lit:1 rather:1 video:1 carefully:1 rough:1
-1 terrible:1 truly:1
-1 cleverly:1 ultimately:1 mockumentary:1 crafted:1 hollow:1
-1 hit-and-miss:1 good:1 humour:1 getting:1 truly:1 topical:1 stuff:1 bogged:1 gets:1
-1 plot:1 dialogue:1 uneven:1 achingly:1 hindered:1 premise:1 lapses:1 enthralling:1 film:1
-1 booths:1 feel:1 job:1 one:1 surrounding:1 viewing:1 clean:1 mopping:1 peep:1 like:1
-1 entire:1 selby:1 script:1 fancies:1 poetry:1 jr:1 honest:1 unrelentingly:1 doubt:1 simply:1 something:1 hubert:1 ounce:1 crude:1 exploitative:1 rifkin:1
-1 fluffy:1 disposible:1
-1 luckiest:1 throughout:1 show:1 movie:1 seated:1 next:1 bad:1 ignorant:1 pinheads:1 talk:1 one:1 viewers:1
-1 scary:1 theater:1 action-packed:1 soon:1 sign:2 looking:1 exit:1 expecting:1 go:1 chiller:1 might:1
-1 limited:1 like:1 seeing:1 beat:1 holds:1 people:1 sadism:1 appeal:1 pulp:1 explosions:1
-1 dialogue:1 dubbed:1 despite:1 choppy:1 monosyllabic:1 fact:1
-1 r-rated:1 family:1 road-trip:1 feature-length:1 version:1
-1 stunts:1 surfing:1 end:1 vertical:1 getting:1 lots:1 -:1 movies:1 limit:1 downtime:1 memorable:1
-1 kind:1 humor:1 harvard:1 wit:1 stealing:1 cleverness:1 intelligent:1 care:1
-1 building:1 toward:1 end:1 nuclear:1 move:1 scenes:1 milks:1 drama:1 quickly:1 handles:1 suspense:1 sequences:1 bigelow:1 drags:1 many:1 crisis:1 evenly:1
-1 nothing:1 crammed:1 wears:1 enjoyment:1 undeniable:1 else:1 fun:1 references:1 thin:1 movie:1 films:1 --:2 happening:1
-1 boy:1 vulgar:1 humor:1 look:1 blasphemous:1 stripped:1 suburban:1 sense:1 smith:1 budget:1 like:1 bad:1 jersey:1 imagine:1 might:1 kevin:1 result:1
-1 suffers:1 pathetic:1 demands:1 lack:1 audacity:1 monstrous:1 clarity:1 dahmer:1 subject:1
-1 soured:1 century:1 clause:1 hard:1 reality:1 bumps:1 icky:1 santa:2
-1 highlight:1 reel:1 minutes:1 long:1
-1 visually:1 scientific:1 spectacular:1 favors:1 film:1 speaking:1
-1 like:2 less:1 mess:1 nightmare:1 cinema:2 feels:1 dark:1 stuck:1 bad:2 incomprehensible:1 pit:1
-1 exception:1 mccoist:1 park:1 clue:1 better:1 players:1 acting:1 much:1
-1 predictable:1 affair:1 whole:1
-1 not-so-divine:1 ya-ya:1 secrets:1 hefty:1 helping:1 green:1 re-fried:1 sisterhood:1 tomatoes:1
-1 cloying:1 voices-from-the-other-side:1 story:1 hell:1
-1 freezers:1 meat:1 show:1 suffocating:1 rape-payback:1 enabling:1 horror:1 industrial-model:1 victim:1 hinges:1 affection:1 ebullient:1
-1 terrific:1 trek:1 copy:3 star:1 kind:1
-1 eventually:1 good:1 showtime:1 folds:1 matter:1 much:1 actors:1 thinness:1 generate:1
-1 advance:1 made:1 muted:1 movie:1 influence:1 rohypnol:1 well:1 respectably:1 twist:1 potential:1 every:2 performance:1 telegraphed:1 seems:1
-1 hal:1 writer-director:1 puts:1 --:1 vital:1 without:1 airs:1 hilarious:1 wannabe:1 comic:1 hartley:1 film:1 ingredient:1
-1 attempt:1 two-dimensional:1 lost:1 jim:1 character:1 leaving:1 wit:1 critical:1 desperate:1 ver:1 pointless:1
-1 humour:1 intelligence:1 lack:1 seduces:1 another:1 subtle:1 film:1 -:2 intelligentsia:1 milieu:1 rich:1 founders:1 performance:1 woman:1 oscar:1 new:1 york:1 despite:1 sustained:1 neuwirth:1 bebe:1 empathy:1 stanford:1 older:1 social:1
-1 forced:1 follows:1 standard:1 feels:1 adventure:1 although:1 formula:1 animated:1 disney:1 usual:1
-1 thrown:1 story:1 suspenseful:1 book:1 every:1 gaghan:1 nonsensical:1
-1 based:1 theory:1 ill-wrought:1 sleight-of-hand:1 construct:1 hypothesis:1 sham:1
-1 firing:1 de:1 casting:1 would:1 script:1 showtime:1 prevents:1 robert:1 murphy:1 tv-cops:1 stuck:1 surefire:1 catch:1 cylinders:1 niro:1 comedy:1 seem:1
-1 strangely:1 unsatisfied:1 ate:1 like:1 hour:1 feel:1 peanut:1 quite:1 without:1 butter:1 laugh:1 half:1 feeling:1 come:1 reeses:1
-1 desperately:1 offers:1 ingratiating:1 gooding:1 performance:1
-1 parker:1 tone:1 text:1 leads:1 human:1 ultimately:1 mannered:1 approach:1 dulls:1 core:1 familiar:1 material:1 commended:1 determination:1 somewhat:1 true:1 tragedy:1 taking:1 adopt:1 remain:1 fresh:1 original:1
-1 turn:1 far:1 results:1 director:1 self-consciousness:1 proceedings:1 alienating:1 every:1 injected:1 involving:1
-1 little:1 attempt:1 give:1 unashamedly:1 bogdanich:1 pro-serbian:1 voice:1 makes:1 side:1
-1 impact:1 play:1 end:1 lack:1 intellectual:1 maryam:1 thesis:1 emotional:1 makes:1 special:1 after-school:1
-1 worst:1 film:1 year:1
-1 by-the-numbers:1 yarn:1
-1 language:1 eloquent:1 dreary:1 update:1 without:1 sluggish:1
-1 sonny:1 would:1 look:1 g:1 point:1 h:1 could:1 looks:1 wells:1 good:1 machine:1 missed:1 say:1 version:1 take:1 time:1 reworked:1
-1 true:1 screen:1 one:1 minutes:1 time:1
-1 bisset:1 movie:1 game:1 unable:1 performance:1 delivers:1 save:1
-1 unsatisfied:1 little:1 like:1 watching:1 may:1 austin:1 goldmember:1 time:1 candy:1 sticky:1 leave:1 binging:1 sweet:1 feeling:1 powers:1 fluffy:1 cotton:1
-1 picture:1 big:1 since:1 miles:1 studio:1 graceland:1 anti-human:1
-1 depress:1 life:1 film:1
-1 independent:1 concept:1 instead:1 remarkable:1 novel:1 filmmakers:1 cheap:1 anybody:1 sure:1 seen:1 report:1 found:1 ever:1 film:1
-1 checkout:1 script:1 interesting:1 recording:1 wal-mart:1 acting:1 conversations:1 line:1 fine:1
-1 story:1 steeped:1 tales:1 youngsters:1 teenagers:1 themes:1 much:1 weighty:1 things:1 fairy:1 appeal:1 childish:1 grave:1
-1 plot:1 rescue:1 graveyard:1 reel:1 plummets:1 janice:1 comedy:1 racing:1 final:1 comes:1
-1 indefinitely:1 good:1 remote:1 reasons:1 certain:1 sometimes:1 jar:1 movies:1 sealed:1 shelf:1 left:1
-1 short:1 longer:1 movie:1 feels:1 much:1 minutes:1
-1 signing:1 dotted:1 advice:1 start:1 scripts:1 kev:1 line:1 reading:1
-1 wise:1 alternately:1 sitcom:1 send:1 raucous:1 sappy:1 ethnic:1 regrets:1
-1 tale:1 accidental:1 hideously:1 ugly-duckling:1 feels:1 clumsily:1 told:1
-1 television:1 compared:1 unfortunately:1 series:1 inspired:1 also:1 good:1 movie:1 especially:1
-1 wraps:1 classic:1 least:1 bow:1 recycled:1 audience:1 paper:1 struggle:1 pretty:1 new:2 shiny:1 tell:1 looks:1
-1 scum:1 glazed:1 tawdry:1 b-movie:1
-1 kind:1 utterly:1 earnestness:1 movie:1 head:1 seat:1 idiocy:1 bang:1 want:1 front:1 cluelessness:1 misplaced:1
-1 searches:1 many:1 vainly:1 directions:1 say:1 moving:1 something:1 winds:1 fresh:1 think:1
-1 excellence:1 love:1 strangeness:1 road:1 perdition:1
-1 big:1 pain:1 fat:1
-1 better:1 like:1 mimetic:1 approximation:1 films:1 contempt:1
-1 unintelligible:1 classic:1 acted:1 ludicrous:1 enough:1 brain-slappingly:1 bad:1 harvard:1 cult:1 become:1 man:1 could:1 poorly:1
-1 seizures:1 comparison:1 kept:1 girls:1 movie:1 watching:1 mind:1 one:1 anecdote:1 japan:1 returning:1 powerpuff:1 cartoon:1 people:1 gave:1
-1 wasted:1 aan:1 opportunity:1
-1 thematic:1 short:1 terms:1 combination:1 shorts:1 far:1 work:1 two:1 falls:1 inelegant:1 unrelated:1 narrative:1 content:1 strength:1 previous:1
-1 wildly:1 around:1 mention:1 vain:1 inappropriate:1 dictator-madman:1 least:1 off-putting:1 fantasy:1 say:1 build:1 feel-good:1 undeserved:1
-1 cheesiest:1 fright:1 horror:1 induce:1 side:1 likely:1 sleep:1 spoof:1 monsters:1
-1 teen:1 flick:1 mild:1 meandering:1
-1 leave:1 atmosphere:1 impression:1 though:1 intriguing:1 drama:1 finally:1 much:1 predictable:1
-1 rude:1 though:1 laughs:1 modern:1 deliver:1 digs:1 society:1 gut-busting:1 things:1 crude:1 seen:1 film:1
-1 league:1 major:1 although:1 tries:1 much:1 another:1 really:1
-1 none:1 badness:1 word:1 incoherent:1 --:1 plain:1 deuces:1 astonishing:1 words:1 indeed:1 wild:1 crap:1 neither:1 gets:1 type:1 incompetent:1 special:1 really:1
-1 sure:1 movie:1 lily:1 chou-chou:1 one:1 thing:1 lot:1 whole:1 tell:1
-1 material:1 settles:1 tone:1 enchantment:1 never:2 needs:1 foibles:1 cinematography:1 quirks:1 charm:1 variable:1 light-footed:1 film:1 jell:1
-1 would:1 sitting:1 require:1 enough:1 one:1 better:1 viewing:1 understand:1 connect:1 another:1 commentary:1
-1 even:1 leaden:1 fails:1 mugs:1 cuba:1 energy:1 valiantly:1 jr:1 snow:1 gooding:1 way:1 boisterous:1 spark:1 comedy:1 dogs:1
-1 rescue:1 diane:1 sophisticated:1 adrian:1 performance:1 unfaithful:1 sleazy:1 moralizing:1
-1 even:1 would:1 interesting:1 clear:1 say:1 doubt:1 trying:1
-1 feels:1 storytelling:1 slight:1
-1 unbelievable:1 final:1 interesting:1 crazy:1 villainess:1 sloppy:1 insultingly:1 victim:1 act:1 falls:1 plotting:1
-1 husband-and-wife:1 since:1 disaster:1 bo:1 eroti-comedy:1 made:1 derek:1 remake:1 biggest:1 ridiculous:1 john:1 might:1 lina:1 bolero:1
-1 loud:1 goofy:1 silly:1
-1 buck:1 little:1 theater:1 get:1 lobby:1 vidgame:1 stuff:1 pit:1 spend:1 greasy:1
-1 tedious:1 hours:1 torture:1 hour:1 excruciatingly:1 starts:1 cinema:1 turned:1 unfocused:1 french:1 water:1 director:1 appealing:1 nearly:1 half:1 making:1 seem:1
-1 distasteful:1 intriguing:1 becomes:1 creepy:1 quickly:1 premise:1 basic:1 downright:1
-1 drowned:1 pool:1 boredom:1
-1 commercialism:1 cheesy:1 like:1 all-star:1 salute:1
-1 independent:1 mess:1 hard:1 one:1 much:1 imagine:1 recent:1 makes:1 film:1 otherwise:1
-1 rises:1 computer:1 film:1 never:1 overall:1 levity:1 tale:1 add:1 sidekicks:1 various:1 amusing:1 mediocrity:1 much-needed:1 otherwise:1 animation:1 bleak:1 handsome:1
-1 runs:1 unfortunately:1 film:1 excellent:1
-1 cardiac:1 arrest:1 taken:1 large:1 movies:1 likely:1 saccharine:1 doses:1 go:1 cause:1 massive:1
-1 grew:1 charms:1 movies:1 perhaps:1 die:1 hard:1 nostalgia:1 intermittently:1 feel:1 another:1 sucker:1 impossible:1 entertaining:1 day:1
-1 case:1 plot:1 videos:1 debut:1 often:1 prolific:1 first-time:1 filmmakers:1 stuffs:1 murray:1 director:1 eager:1 comfortably:1 music:1 ambitious:1 mr:1 hold:1
-1 mystery:1 flat:1 first-rate:1 talent:1 rich:1 picture:1 could:1 yielded:1 much:1 combined:1 historical:1 subject:1 plodding:1 enigma:1
-1 dialogue:1 movie:1 look:1 off-kilter:1 situations:1 ultimately:1 us:1 quite:1 say:1 characters:1 interesting:1 quirky:1 unengaging:1 odd:1 throws:1 film:1
-1 limitations:1 made:1 movie:1 clear:1 material:1 schlocky:1 hybrid:1 source:1 game:1 video:1 using:1 inherent:1
-1 movie:1 bad:3 company:1 plain:1
-1 plot:1 equally:1 death:1 hackneyed:1 shtick:1 murphy:1 genial-rogue:1 seen:1 dull:1
-1 emerges:1 never:1 quite:1 book:1 shadow:1 film:1
-1 unfolding:1 story:1 zeal:1 propaganda:1 coherent:1 spread:1 preachy:1 fable:1 believable:1 forgets:1 scripted:1 poorly:1
-1 fails:1 balance:1 context:1 palestinian:1 interesting:1 witness:1 conflict:1 historical:1 put:1 lacks:1 meaningful:1 side:1 film:1 struggle:1
-1 right:2 saving:1 sequence:1 private:1 steven:1 battle:1 huge:1 make:1 filmmakers:1 long:1 woo:1 much:1 got:1 spielberg:1 director:1 copy:1 scenes:1 ryan:1 time:1 action:1 realizing:1 first:1
-1 unfortunately:1 fault:1 sincere:1 much:1 compelling:1 fun:1
-1 jones:1 specific:1 gifts:1 presence:1 muster:1 distinctive:1 screen:1 title:1 able:1 nastier:1 fully:1 definitely:1 lot:1 despite:1 notwithstanding:1 movie:1 wanted:1 capitalize:1
-1 classic:1 similar:1 geriatric:1 seems:1 long:1 one:1 follow-up:1 peter:1 makes:1 disney:1
-1 answer:1 buy:1 cow:1 may:1 movie:1 free:1 one:1 tv:1 good:1 ask:1 milk:1
-1 swedish:1 slow-moving:1 defecates:1 humiliation:1 hint:1 joy:1 even:1 focus:1 bed:1 urinates:1 plants:1 offers:1 preferring:1 martin:1 party:1 birthday:1 film:1
-1 even:1 muddled:1 terms:1 opera:1 movie:1 biscuit:1 vampire:1 soap:1 much:1 sense:1 limp:1 make:1
-1 plot:1 made:1 want:1 repetitive:1 score:1 insistent:1 piano:1 maddeningly:1 scream:1
-1 capacity:1 movie:1 insecure:1 excite:1 two:1 one:1 underscore:1 fake:1 action:1 churns:1 flagrantly:1 thunderstorms:1
-1 minutes:1 amusing:1 three:1
-1 hero:1 like:1 klein:1 saddest:1 performances:1 dead-on:1 pie:1 charming:1 american:1 election:1 action:1 delivers:1 one:1 ever:1 comedies:1 witnessed:1
-1 rare:1 takes:1 movie:1 dive:1 swan:1 interesting:1 landing:1 see:1 stupid:1 speedy:1 familiar:1 promising:1 squarely:1
-1 --with:1 dialogue:1 visible:1 video:1 poorly:1 mikes:1 script:1 murky:1 cinematography:1 acting:1 boom:1 goes:1 sort:1 direction:1 complete:1 pathetic:1 inept:1 low-grade:1 dubbed:1 straight:1 lousy:1 dreck:1 usually:1
-1 direction:1 chasing:1 level:1 marginal:1 hard:1 tell:1 occasionally:1 rises:1 competence:1 film:1
-1 seeing:1 good:1 beyond:1 redemption:1 disastrous:1 things:1 ending:1 marred:1 movie:1 buff:1 frustrating:1 film:1 otherwise:1
-1 better:1 harm:1 good:1 stores:1 room:1 see:1 living:1 rush:1 christmas:1 anyone:1 movies:1 reason:1 right:1 video:1 suited:1 night:2 probably:1 neither:1 might:1 think:1
-1 glimpse:1 like:2 people:1 targeted:1 travel-agency:1 ride:1 topless:1 mud:1 bikes:1 video:1 looks:1 guiding:1 independent-community:1 roll:1 lights:1 worthwhile:1
-1 begins:1 picture:1 looseness:1 consider:1 resemble:1 workshop:1 given:1 much:1 shapeless:1 time:1 grasping:1 piece:1
-1 plot:1 stuff:1 kept:1 jettisoned:1 would:1 people:1 read:1 make:1 experience:1 much:1 moving:1 book:1
-1 activate:1 remember:1 tear:1 girls:1 shrewd:1 walk:1 girlish:1 enough:2 good:1 ducts:1 mean:1
-1 exaggerated:1 subtlety:1 never:1 trademark:1 overplayed:1 characters:1
-1 muddled:1 ponder:1 plays:1 justice:1 interesting:1 bother:1 style:1 thinking:1 american:1 mildly:1 derivative:1 peculiar:1
-1 gay-niche:1 roiling:1 inversion:1 triangle:1 historical:1 bug-eyed:1 eschews:1 condescension:1 panorama:1 earnest:1 mugging:1 concubine:1 dreadfully:1 love:1 pathos:1 previous:1
-1 like:1 saga:1 many:1 snappy:1 stumblebum:1 movie:1 prose:1 makes:1
-1 plot:1 guei:1 likable:1 like:1 cerebral:1 dumped:1 sparring:1 elements:1 succession:1 blows:1 wears:1
-1 script:1 many:1 pot:1 ingredients:1 nebrida:1 one:1 tries:1 r:1 small:1 cram:1 vincent:1
-1 sugary:1 story:1 parade:1 would:1 extra:1 light:1 balloon:1 thanksgiving:1 keep:1 needed:1 heavy-duty:1 away:1 floating:1 ropes:1 day:1
-1 funny:1 mugs:1 far:1 mercilessly:1 jokes:1 oedekerk:1 genuinely:1
-1 flick:1 slasher:1 major:1 killer:1 truly:1 since:1 mind:1 standard:1 psyche:1 resorts:1 misses:1 revelatory:1 dahmer:1 opportunity:1 thrills:1
-1 anything:1 violence:1 appreciate:1 forms:1 addicted:1 find:1 film:1
-1 commands:1 satisfying:1 minority:1 almost:1 vintage:1 scattered:1 spielberg:1 visuals:1 finally:1 interest:1 gorgeous:1 report:1 cold:1 solely:1 exercise:1 minimally:1
-1 picture:1 c:1 mcklusky:1 movie:2 us:1 truly:1 motion:1 remind:1 bad:1 every:1 frank:1 along:1 comes:1
-1 culprit:1 spot:1 early-on:1 predictable:1 thriller:1 difficult:1
-1 soulless:1 stupid:1 sequel:1
-1 affair:1 irk:1 mostly:1 boring:1 finale:1 likely:1 sudden:1 viewers:1 confusing:1
-1 spy:1 watching:1 familiar:1 well:1 rerun:1 might:1 trappings:1
-1 mystery:1 monster:1 starts:1 twisting:1 potentially:1 becomes:1 simply:1 incredibly:1 film:1 chase:1
-1 saving:1 ryan:1 mayhem:1 likely:1 wake:1 private:1 sick:1 soldiers:1 heartily:1 black:1 hawk:1 marine:1 war-weary:1
-1 messy:1 uncouth:1 incomprehensible:1 absurd:1 vicious:1
-1 short:1 like:1 feel:1 feature:1 length:1 stretched:1 really:1
-1 ends:1 like:1 script:1 --:2 satire:1 poetry:1 aims:1 hampered:1 paralyzed:1 self-indulgent:1 sounding:1
-1 plot:1 dialogue:1 vulgar:1 cheap:1 pace:1 along:1 crawls:1
-1 enjoy:1 knock:1 crazy:1 tirade:1 postcard:1 big:1 screen:1 lawrence:1 appreciate:1 one-sided:1 self-glorified:1 theme:1 willing:1 martin:1 over-indulgent:1 lovefest:1
-1 directed:1 compendium:1 hong:1 length:1 two-hour-and-fifteen-minute:1 every:1 movie:1 indulgent:1 cliche:1 kong:1 imagination:1 woo:1 without:1 master:1 windtalkers:1 expected:1 airs:1 john:1 war:1 across:1 flair:1
-1 coffee:1 tasteful:1 movie:1 could:1 anywhere:1 rock:1 put:1 table:1 roll:1
-1 minac:1 story:1 good:1 arc:1 drains:1 zeal:1 movie:2 holocaust:1 emotions:1 intentions:1 dramatic:1 escape:1 action:1 loaded:1 squeeze:1 individuality:1 all-too-familiar:1
-1 happens:1 infuriating:1 tells:1 something:1 sense:2 making:1 think:1 film:1
-1 begins:1 entire:1 movie:1 forgettable:1 formulaic:1 fade:1 memory:1 hardly:1
-1 satisfying:1 conclusions:1 turns:1 dramas:1 never:1 character:1 setting:1 interesting:1 reach:1
-1 entertainment:1 pow:1 destination:1 benchmark:1 general:1 lameness:1 kung:1 sets:1 new:1 public:1
-1 misty-eyed:1 tear-drenched:1 mired:1 sanguine:1 southern:1 nostalgia:1 treading:1 sappy:1 quicksand:1 winds:1 line:1 piece:1
-1 over-the-top:1 trash:1 beat:1 movie:1 waters:1 mile:1 pure:1 country:1 john:1
-1 wants:1 wendigo:1 monster:1 crowd:1 almost:1 movie:1 pretention:1 falls:1 every:1 trap:1 time:1 art-house:1
-1 weight:1 twists:1 fable:1 fortify:1 stalls:1 bigelow:1 lackluster:1 comes:1 occasionally:1 turgid:1 gear:1 two-way:1 water:1 offers:1 part:1 mystery:1 turns:1 blandness:1 flashy:1 myopic:1 emotional:1 time-switching:1
-1 biggest:1 problem:1 laughs:1 film:1
-1 clan:1 documentary:1 theater:1 less-than-compelling:1 yiddish:1
-1 good:1 norris:1 windtalkers:1 chuck:1 times:1 indication:1 film:1 grenade:1 gag:1 occurs:1 serious-minded:1
-1 suspend:1 belief:1 would:1 film:1 performance:1 total:1 washout:1 asked:1 viewers:1 often:1
-1 expend:1 full:1 price:1 exactly:1 well:1 video:1 date:1 bucks:1 rental:1 worth:2 comes:1
-1 tedious:1 squandering:1 begin:1 thoroughly:1 talents:1 four:1 acting:1 reckless:1 unrewarding:1 unamusing:1 fine:1 tell:1 resolutely:1
-1 everybody:1 story:1 point:1 almost:1 view:1 told:1 one:1 loves:1 entirely:1 david:1 goliath:1
-1 train:1 throw:1 smoochy:1
-1 eventually:1 senses:1 shot:1 mushy:1 showdown:1 peas:1 winning:1 fires:1 care:1
-1 television:1 get:1 pay:1 never:1 irwin:1 free:1 director:1 reason:1 money:1 adequate:1 come:1
-1 third:1 almost:1 light:1 away:1 crucial:1 fumbles:1 miscalculation:1 engaging:1 enjoyment:1 act:1 accumulated:1 comedy:1
-1 love:1 provocative:1 hoary:1 theme:1 cedar:1 somewhat:1 triangle:1 defuses:1 submerging:1
-1 nicholas:1 like:1 potato:1 fragment:1 much:1 novel:1 underdone:1 nickleby:1 another:1 line:1 paraphrase:1
-1 actresses:1 portray:1 story:1 characters:1 get:1 may:1 back:1 individuals:1 convincingly:1 rather:1 enough:1 involving:1 types:1 background:1 worked:1 viewers:1 women:1
-1 sort:1 ironically:1 often:1 homage:1 less:1 kitchen-sink:1 sum:1 illustrates:1 disposable:1 however:1 whole:1 parts:1 result:1 hollywood:1 well-intentioned:1
-1 unpleasant:1 extremely:1 film:1
-1 sort:2 already:1 like:1 critics:1 movie:1 friday:1 thing:2 fans:1 damned:1
-1 gay:1 sincere:1 tale:1 coming-of-age:1 conflicted:1 dramatically:1
-1 hit:1 cable:1 wait:1
-1 ultimately:1 like:1 business:1 long:1 one:1 movies:1 feels:1 year:1 films:1 making:1 line:1
-1 high-minded:1 snoozer:1
-1 entire:1 right:1 easily:1 dealing:1 could:1 relentlessly:1 one:1 depressing:1 running:1 lives:1 something:1 another:1 time:1 nothing:1 situation:1
-1 last:1 like:1 may:1 minutes:1 could:2 time:1 seems:1 back:1 celebi:1 saw:1 skip:1 take:1 wish:1 movie:1 pokemon:1
-1 real:1 entire:1 point:1 one:1 expecting:1 problem:1 not-so-small:1 exercise:1
-1 rather:1 movie:1 observe:1 enter:1 one:1
-1 real:1 moore:1 charmer:1
-1 full:1 two-dimensional:1 anything:1 script:1 unhappy:1 compelling:1 characters:1 john:1
-1 changed:1 labute:1 lower-class:1 fabric:1 film:1 avoid:1 modern:1 male:1 upsets:1 brit:1 academic:1 american:1 era:1 shreds:1 balance:1 fatal:1 exquisite:1 choice:1 mistake:1
-1 emotion:1 even:1 prozac:1 people:1 becomes:1 insanely:1 rampantly:1 doofus:1 nation:1 concept:1 designed:1 dysfunctional:1 deleting:1 notion:1 advanced:1 equilibrium:1
-1 jokes:1 story:1 good:1 placement:1 fart:1 product:1 finish:1 comedic:1 blatant:1 dumb:1 scrooge:1 strong:1 act:1 stale:1 songs:1 first:1
-1 instead:1 unsurprisingly:1 look:1 athletes:1 like:1 serious:1 moral:1 teachers:1 way:1 caretakers:1 stereotypical:1 works:1 makes:1 women:1
-1 story:1 sight:1 film:1 loses:1
-1 crazy:1 nights:1 like:1 --:1 rash:1 eight:1 adam:1 grows:1
-1 comparison:1 scooby:1 original:1 well-crafted:1 silly:1 big-screen:1 seem:1 makes:1 cartoon:1 smart:1
-1 pity:1 considering:1 neil:1 writer-director:1 terribly:1 increasingly:1 follows:1 first-time:1 convincing:1 terrific:1 burger:1 performance:1 far-fetched:1 events:1
-1 little:1 room:1 leaves:1 better:1 foster:1 gets:1
-1 padded:1 movie:1 jelly:1 belly:1
-1 playstation:1 product:1 cocktail:1 resident:1 mtv:1 cinematic:1 sugar:1 much:1 evil:1 predecessors:1 hysteria:1
-1 funny:1 benefits:1 rather:1 average:1 supplied:1 epps:1 moments:1 action:1 several:1 film:1
-1 delivered:1 unspeakably:1 heroine:1 shallow:1 dialogue:1 dull:1 across:1 dim-witted:1 flatly:1 reams:1 featuring:1 unbearably:1 comes:1
-1 porn:1 de:1 brian:1 palma:1 resembles:1 pastiche:1 soft:1
-1 miss:1 bluto:1 blutarsky:1
-1 even:1 innocuous:1 good:1 van:1 look:1 make:1 enough:1 jean-claude:1 damme:1
-1 long:1 unfunny:1 sitcom:1 glorified:1 one:1
-1 movie:1 well:1 deliver:1 liner:1 one:1 write:1 lot:1 allen:1 woody:1 problems:1 anybody:1
-1 execrable:1
-1 made:1 devoid:1 film:1 qualities:1 special:1 first:1
-1 city:1 mcdormand:1 swings:1 end:1 --:1 movie:1 de:1 long:1 one:1 cast:1 good:1 actors:1 sea:1 stays:1 formula:1 niro:1 waste:1 approach:1
-1 stunts:1 far:1 movie:1 collection:1 worst:1 moronic:1 year:1 plotless:1
-1 may:1 sincere:1 never:1 however:1 quite:1 justifies:1 place:1 existence:1 rising:1
-1 story:1 parker:1 attempt:1 made:1 relevant:2 fully:1 make:1 without:1 setting:1 place:1 updates:1 today:1 understanding:1 film:1 first:1
-1 sort:1 hip:1 play:1 goes:1 century:1 beat:1 movie:1 second:1 hop:1 half:1 latino:1 really:1 downhill:1 morality:1
-1 directorial:1 fails:1 uneven:1 ways:1 many:1 debut:1 dramatically:1 genre:1 unlock:1 full:1 spin:1 fresh:1 substantial:1 potential:1
-1 lawn:1 like:1 script:1 becomes:1 cheap:1 falls:1 lifeless:1 chair:1 apart:1
-1 teen:1 comedy:1 tried-and-true:1 shenanigans:1 many:1 script:1 back:1 falls:1 distinguish:1 next:1 hardly:1
-1 far:1 starts:1 work:1 ending:1 promisingly:1 predictable:1 really:1 film:1 cliched:1
-1 effective:1 motivate:1 professors:1 moratorium:1 treacly:1 inspirational:1 prep-school:1 films:1 immediately:1 issue:1 children:1 heartwarmingly:1
-1 perch:1 working-class:1 distasteful:1 look:1 metropolitan:1 area:1 condescension:1 filmmakers:1 element:1 strangers:1 finally:1 subjects:1 york:1 today:1 new:1 sex:1 makes:1 opens:1 lofty:1
-1 frustrating:1 rewarding:1 alternately:1
-1 even:1 guilty:1 smutty:1 categorize:1 pleasure:1 impossible:1
-1 rocky:1 deserve:1 failure:1 suffering:1 sense-of-humour:1 despite:1 go:1 ship:1 leaky:1 wrote:1 man:1
-1 fit:1 intelligent:1 attracts:1 young:1 swinging:1 hobby:1 seem:1 makes:1 film:1
-1 funny:1 particularly:1 urge:1 lady:1 medical:1 end:1 window:1 toss:1 equipment:1 moment:1 green:1 frustration:1 serious:1 walker:1 memorable:1 grab:1 old:1 screen:1 threw:1
-1 decided:1 may:1 warned:1 watch:1 better:1 feel:1 see:1 clockstoppers:1 stand:1 time:1 nothing:1 died:1 still:1 minutes:1 battery:1
-1 suffers:1 strip-mined:1 formula:1 over-familiarity:1 since:2 mercilessly:1 british:1 filmmakers:1 hit-hungry:1 monty:1
-1 faith:1 plant:1 made:1 hit:1 remember:1 populace:1 niche:1 rainbows:1 smile-button:1 walk:1 enough:1 references:1 faces:1 segment:1 throwaway:1
-1 rating:1 given:1 diss:1 consider:2 show:1 movie:1 zero:1 fans:1 yes:1
-1 depressing:1 movie:1 cumulative:1 repulsive:1 effect:1
-1 adults:1 pokemon:1 things:1 enamored:1 disappointed:1 children:1
-1 even:1 plot:1 terrible:1 faceoff:1 banderas-lucy:1 antonio:1 liu:1 still:1 care:1
-1 ultimately:1 made:1 though:1 dressed:1 century:1 well:2 contradiction:1 falls:1 movies:1 writers:1 prey:1 many:1 afflicts:1 children:1
-1 basketball:1 adolescent:1 poster-boy:1 movie:1 national:1 teenaged:1 joint:1 much:1 rap:1 promotion:1 bow:1 wow:1 association:1
-1 used:1 could:1 informed:1 mythmaking:1 adult:1 hindsight:1
-1 amazingly:1 dopey:1
-1 misfortune:1 close-to-solid:1 late:1 released:1 espionage:1 decades:1 thriller:1
-1 anti-feminist:1 career:1 familiar:1 equation:1 -:1 cloaks:1 kids:1 misery:1 romantic-comedy:1 tiresome:1 duds:1
-1 good:1 talent:1 underwhelming:1 undeniable:1 results:1 girl:1 film:1
-1 unified:1 fills:1 --:2 whatever:1 collection:1 time:1 whole:1
-1 peaked:1 ago:1 slow:1 poor:1 phenomenon:1 dying:1 pokemon:1 three:1 years:1 ever:1 death:1 game:1 animation:1 indication:1 actually:1 quality:1
-1 every:1 elizabeth:1 turn:1 dangerous:1 actress:1 reminds:1 flopping:1 role:1 sexy:1 dolphin-gasm:1
-1 going:1 given:1 heaven:1 fair:1 may:1 movie:1 thornberry:1 see:1 whatever:1 else:1 anyone:1 thinking:1 reason:1 kids:1 stuff:1 probably:1 hereby:1 wedgie:1 warning:1
-1 direction:1 style:1 pretentious:1 unimpressively:1 visual:1 mr:1 unusually:1 struck:1 fussy:1
-1 morning:1 say:1 hi:1 wake:1 lover:1
-1 like:1 die:1 broken:1 feel:1 things:1 butterflies:1 pop:1 movies:1 thinking:1 bad:1 starring:1 puppies:1 world:1 weird:1 legs:1 makes:1 queens:1
-1 show:1 send-up:1 shooting:1 humor:1 tv:1 noon:1 shanghai:1 tom:1 demonstrated:1 blanks:1 mostly:1 cop:1 charming:1 director:1 uninspired:1 mixing:1 knack:1 dey:1 leaves:1 debut:1 cliches:1 action:1 idiosyncratic:1
-1 banal:1 predictable:1
-1 death:1 right:1 forrest:1 angel:1 gump:1
-1 embarrassment:1 make:1 wince:1 quite:1 drama:1 wildly:1 touching:1 actors:1 thanks:1 sequences:1 erratic:1 others:1
-1 gratingly:1 sit:1 cliches:1 murky:1 improbability:1 irritating:1 easier:1 points:1 tainted:1 films:1 still:1 self-conscious:1 painful:1
-1 dreadful:1 giant:1 would:1 elephant:1 searching:1 enjoyable:1 feces:1 pile:1 imagine:1 quarter:1 positively:1
-1 generic:1 horror:1 american:1 version:1 international:1 film:1 typical:1
-1 certainly:1 clever:1 level:1 macbeth:1 spoofy:1 spots:1 update:1 high:1 too-long:1 enough:1 invention:1 sustain:1
-1 indeed:1 crikey:1
-1 closer:1 desire:1 graceless:1 serials:1 lucas:1 hackneyed:1 could:1 cheap:1 anyone:1 come:1 fact:1 sci-fi:1
-1 good:1 crudeness:1 material:1 also:1 redundancy:1 lot:2 unsuccessful:1 accompanying:1
-1 like:1 absurdities:1 navel:1 lint:1 fat:1 accumulate:1
-1 enjoy:1 schneider:1 riot:1 rob:1 young:1 hot:1 see:1 chick:1 think:1 clothes:1
-1 plot:1 sheer:1 good:1 get:1 inescapable:1 idea:1 one:1 dumbness:1 air:1 sleaziness:1
-1 strangely:1 kingdom:1 mild:1 wild:1 comes:1
-1 directorial:1 big:1 debut:1 next:1 not-so-big:1 not-so-hot:1
-1 creepiest:1 ultimately:1 friends:1 family:1 superior:1 almost:1 powers:1 humble:1 iteration:1 developmentally:1 one:1 disabled:1 redeem:1 supernatural:1 another:1 become:1 teach:1 conventions:1 portrayed:1 yet:1 mentally:1
-1 certainly:1 classic:1 movie:1 bond-inspired:1 life:1 likely:1 franchise:1 decades:1 hope:1
-1 flat:1 run:1 fit:1 tang:1 could:1 tootsie:1 pootie:1 hip-hop:1 punchlines:1 paced:1 poorly:1
-1 sound:1 fly:1 scenes:1 energy:1 convincing:1 ideas:1 original:1 book:1 gender-war:1 davis:1 comic:1 bother:1 make:1
-1 considering:1 rather:1 movie:1 surprisingly:1 baird:1 editor:1 choppy:1 former:1 film:1
-1 funny:1 none:1 particularly:1 original:1
-1 bland:1 yawner:1 murder-on-campus:1
-1 philosophical:1 humorless:1 void:1 journey:1
-1 generating:1 receive:1 factory:1 two:1 iraqi:1 much:1 un:1 poised:1 chemistry:1 inspector:1
-1 em:1 roteirista:1 mediocridade:1 momentos:1 jay:1 cox:1 de:1 c:1 fracasso:1 direto:1 aproveitar:1 pelo:1 escapa:1 que:1 o:1 sequer:1 da:1 os:1 consegue:1 lar:1 doce:1
-1 tarantino:1 imitations:1 subsided:1 lousy:2 imitation:1 ritchie:1 guy:1 comes:1 first:1
-1 passes:1 passable:1 word:1 romantic:1 couple:1 another:1 need:1 comedy:1 processor:1
-1 ago:1 several:1 wore:1 cutesy:1 --:2 movie:1 exactly:1 welcome:1 laughs:1 mine:1 years:1 cliches:1 attempts:1 movie-specific:1 audiences:1 endearing:1 genre:1 comedy:1 reliance:1
-1 holmes:1 mystery:1 scarcely:1 major-league:1 takes:1 presence:1 leading:1 screen:1 time:2 building:1 psychological:1 arrives:1 movie:1 become:1 underachiever:1 sweet:1 lady:1 climax:1 surprise:1 shows:1
-1 book-on-tape:1 picture:1 abridged:1 would:1 edition:1 market:1 stays:1 film:1 kid:1
-1 ultimately:1 adults:1 movie:1 heady:1 preachy:1 children:1
-1 little:1 self-satisfied:1
-1 clever:1 compelling:1 especially:1
-1 mckay:1 plot:1 rush:1 passages:1 hoping:1 triteness:1 notice:1 seems:1 audience:1 embarrassed:1 put:1 tries:1 invention:1 service:1 device:1 glaring:1 apparently:1 intermediary:1
-1 category:1 fluff:1 cracks:1 ever-growing:1 drifts:1 aimlessly:1 unembarrassing:1 unmemorable:1 mildly:1 lodging:1 entertaining:1 piece:1 minutes:1 inoffensive:1
-1 genitals:1 labute:1 psychologically:1 talking:1 torturing:1 characters:1 fun:1 public:1
-1 movie:1 flat:1 champagne:1 glass:1 weighs:1
-1 brisk:1 job:1 hack:1
-1 screenplay:1 antwone:3 based:1 written:1 book:1 fisher:3 problem:1
-1 people:1 elderly:1 patting:1 propensity:1 sincerity:1 talks:1 alarms:1 throbbing:1
-1 urge:1 story:1 unfolds:1 material:1 sensationalize:1 fighting:1 director:1 suggests:1 maudlin:1 way:1
-1 dignity:1 little:1 histrionics:1 tiresome:1 achieves:1 precarious:1 plotting:1 tale:1 pushed:1 skid-row:1 predictable:1 margins:1 grace:1
-1 closer:1 sequel:1 third:1 house:1 work:1 brilliance:1 revenge:1 failure:1 tries:1 comes:1 animal:1 instead:1 nerds:1 vein:1
-1 story:1 e:1 unfortunately:1 modernizes:1 feathers:1 decision:1 sensibilities:1 young:1 four:1 american:1 plucks:1 w:1 suit:1 kapur:1 bare:1
-1 banal:1 bore:1 preachy:1 circuit:1 turns:1
-1 stifling:1 reality:1 undermining:1 pile:1 falsehoods:1 comic:1 voice:1
-1 even:1 whose:1 younger:1 seeming:1 chan:1 jackie:1 audiences:1 purpose:1 mechanical:1 action-comedy:1 charismatic:1 market:1
-1 memory:1 recent:1 features:1 incoherent:1 one:1
-1 frame:1 one:1 low:1 rent:1
-1 hairy:1 deal:1 big:1 legged:1 eight:1 freaks:1
-1 complete:1 presented:1 moments:1 lousy:1 funniest:1 issues:1 way:1 impossible:1 unintentionally:1 care:1
-1 epiphany:1 drama:1 laggard:1 philosophical:1 wending:1 way:1 uninspired:1
-1 respective:1 charms:1 grant:1 hugh:1 worn:1 bullock:1 sandra:1 threadbare:1
-1 movie:1 sucks:1
-1 so-called:1 none:1 afraid:1 satire:1 warmed:1 sting:1 hand:1 finally:1 extent:1 biting:1 woody:1
-1 bibbidy-bobbidi-bland:1
-1 theater:1 skeptics:1 may:1 joy:1 rethink:1 likely:1 nonbelievers:1 see:1 attitudes:1 take:1 characters:1 enter:1 creed:1
-1 seeing:1 crazy:1 almost:1 confluence:1 taste:1 bad:1 purpose:1 way:1 bizarre:1 worth:1 witness:1
-1 throughout:1 movie:1 repetition:1 creativity:1
-1 consuming:1 movie:1 sometimes:1 hugh:1 actors:1 act:1 tell:1 difficult:1
-1 gone:1 elements:1 funniness:1 forced:1 kiddie:1 sequel:1 original:1 replaced:1 although:1 flakiness:1 dullest:1 found:1 flicks:1 lovely:1 outward:1 first:1
-1 gimmicky:1 --:2 interesting:1 bowel:1 thematically:1 crime:1 drama:1 say:1 complex:1 exercise:1 point-and-shoot:1 long-on-the-shelf:1 dare:1 movements:1
-1 raccoons:1 get:1 caddyshack:1 loyal:1 crossed:1 order:1
-1 action:1 jokes:1 fake:1 looks:1 flat:1
-1 life:1 already:1 asks:1 feel:1 movie:1 sex:1 mick:1 strike:1 sorry:1 one:1
-1 genres:1 unbreakable:1 give:1 signs:2 mystic:1 debut:1 m:1 feature:1 two:1 cinema:1 night:1 sucked:1