-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmovies.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 12 should actually have 1 column, instead of 2 in line 11.
3884 lines (3884 loc) · 275 KB
/
movies.csv
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
Name;ReleaseDate;Action;Adventure;Children;Comedy;Crime;Documentary;Drama;Fantasy;Noir;Horror;Musical;Mystery;Romance;SciFi;Thriller;War;Western;AvgRating;Watches
Toy Story (1995);1995;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.15;2077
Jumanji (1995);1995;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;3.2;701
Grumpier Old Men (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.02;478
Waiting to Exhale (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.73;170
Father of the Bride Part II (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.01;296
Heat (1995);1995;1;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;3.88;940
Sabrina (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.41;458
Tom and Huck (1995);1995;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.01;68
Sudden Death (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.66;102
GoldenEye (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.54;888
American President, The (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.79;1033
Dracula: Dead and Loving It (1995);1995;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;2.36;160
Balto (1995);1995;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.26;99
Nixon (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.54;153
Cutthroat Island (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;2.46;146
Casino (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.79;682
Sense and Sensibility (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;4.03;835
Four Rooms (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.34;157
Ace Ventura: When Nature Calls (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.48;389
Money Train (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.54;160
Get Shorty (1995);1995;1;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.62;1356
Copycat (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;0;0;1;0;0;3.35;378
Assassins (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.86;126
Powder (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;1;0;0;0;3.18;624
Leaving Las Vegas (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.65;980
Othello (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.53;100
Now and Then (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.93;61
Persuasion (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;4.06;179
City of Lost Children, The (1995);1995;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;4.06;403
Shanghai Triad (Yao a yao yao dao waipo qiao) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.65;74
Dangerous Minds (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.11;141
Twelve Monkeys (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;1;0;0;0;3.95;1511
Wings of Courage (1995);1995;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3;4
Babe (1995);1995;0;0;1;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.89;1751
Carrington (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.31;70
Dead Man Walking (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.96;928
Across the Sea of Time (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.5;8
It Takes Two (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.82;28
Clueless (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.62;1362
Cry, the Beloved Country (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.93;30
Richard III (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.96;242
Dead Presidents (1995);1995;1;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;2.87;221
Restoration (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.45;166
Mortal Kombat (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.79;311
To Die For (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.42;544
How to Make an American Quilt (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.11;166
Seven (Se7en) (1995);1995;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;4.11;1137
Pocahontas (1995);1995;0;0;1;0;0;0;0;0;0;0;1;0;1;0;0;0;0;2.98;382
When Night Is Falling (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.74;27
Usual Suspects, The (1995);1995;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;4.52;1783
Guardian Angel (1994);1994;1;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.5801;0
Mighty Aphrodite (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.64;431
Lamerica (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.75;8
Big Green, The (1995);1995;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.56;41
Georgia (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.07;45
Kids of the Round Table (1995);1995;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;2;9
Home for the Holidays (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.4;99
Postino, Il (The Postman) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;4.09;501
Confessional, The (Le Confessionnal) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;1;0;0;0;0;0;2.75;8
Indian in the Cupboard, The (1995);1995;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;3.21;357
Eye for an Eye (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3;67
Mr. Holland's Opus (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.7;541
Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.86;111
Two if by Sea (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.27;79
Bio-Dome (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.06;143
Lawnmower Man 2: Beyond Cyberspace (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;1.67;97
Two Bits (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.25;4
French Twist (Gazon maudit) (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.45;60
Friday (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.66;319
From Dusk Till Dawn (1996);1996;1;0;0;1;1;0;0;0;0;1;0;0;0;0;1;0;0;3.16;914
Fair Game (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.1;96
Kicking and Screaming (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.63;93
Mis?ables, Les (1995);1995;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;3.82;224
Bed of Roses (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.98;120
Big Bully (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;1.92;12
Screamers (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.85;178
Nico Icon (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.76;34
Crossing Guard, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.26;50
Juror, The (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.61;114
White Balloon, The (Badkonake Sefid ) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.83;52
Things to Do in Denver when You're Dead (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;1;0;0;0;0;3.16;166
Antonia's Line (Antonia) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.88;89
Once Upon a Time... When We Were Colored (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.7;33
Last Summer in the Hamptons (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.1;21
Angels and Insects (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.4;194
White Squall (1996);1996;0;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.39;236
Dunston Checks In (1996);1996;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.21;76
Black Sheep (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.94;192
Nick of Time (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.07;229
Journey of August King, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.67;6
Mary Reilly (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.34;88
Vampire in Brooklyn (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.24;89
Beautiful Girls (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.73;182
Broken Arrow (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.88;638
In the Bleak Midwinter (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.92;13
Hate (Haine, La) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.75;44
Shopping (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2;6
Heidi Fleiss: Hollywood Madam (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.46;50
City Hall (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.06;128
Bottle Rocket (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.87;253
Mr. Wrong (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1.82;60
Unforgettable (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.21;33
Happy Gilmore (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.53;682
Bridges of Madison County, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.23;387
Nobody Loves Me (Keiner liebt mich) (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.58;12
Muppet Treasure Island (1996);1996;0;1;1;1;0;0;0;0;0;0;1;0;0;0;0;0;0;3.15;256
Catwalk (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;2.86;7
Headless Body in Topless Bar (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Braveheart (1995);1995;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;4.23;2443
Taxi Driver (1976);1976;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;4.18;1240
Rumble in the Bronx (1995);1995;1;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.44;570
Before and After (1996);1996;0;0;0;0;0;0;1;0;0;0;0;1;0;0;0;0;0;2.98;53
Margaret's Museum (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.09;11
Happiness Is in the Field (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Anne Frank Remembered (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.1;41
Young Poisoner's Handbook, The (1995);1995;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.63;79
If Lucy Fell (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.07;68
Steal Big, Steal Little (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.46;13
Race the Sun (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.67;3
Boys of St. Vincent, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.05;37
Boomerang (1992);1992;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.77;194
Chungking Express (1994);1994;0;0;0;0;0;0;1;0;0;0;0;1;1;0;0;0;0;3.87;115
Star Maker, The (Uomo delle stelle, L') (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.21;14
Flirting With Disaster (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.83;318
NeverEnding Story III, The (1994);1994;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1.99;99
Silence of the Palace, The (Saimt el Qusur) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Jupiter's Wife (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.33;12
Pie in the Sky (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.31;13
Angela (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;2
Frankie Starlight (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.06;16
Jade (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.49;91
Nueba Yol (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Sonic Outlaws (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4;2
Down Periscope (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.81;133
From the Journals of Jean Seberg (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.25;8
Man of the Year (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3;13
Neon Bible, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.5;2
Target (1995);1995;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Up Close and Personal (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.17;139
Birdcage, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.55;682
Shadows (Cienie) (1988);1988;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Gospa (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Brothers McMullen, The (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.39;433
Bad Boys (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.3;362
Amazing Panda Adventure, The (1995);1995;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.89;18
Basketball Diaries, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.54;181
Awfully Big Adventure, An (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.78;23
Amateur (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;0;0;1;0;0;3.79;47
Apollo 13 (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.07;1251
Rob Roy (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;1;0;3.59;554
Addiction, The (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3;69
Batman Forever (1995);1995;1;1;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;2.64;777
Belle de jour (1967);1967;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.73;168
Beyond Rangoon (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.41;87
Blue in the Face (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.56;66
Canadian Bacon (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;2.73;187
Casper (1995);1995;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.98;259
Clockers (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.28;116
Congo (1995);1995;1;1;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;2.24;565
Crimson Tide (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;1;0;3.72;760
Crumb (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.06;491
Desperado (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;3.46;540
Devil in a Blue Dress (1995);1995;0;0;0;0;1;0;0;0;1;0;0;1;0;0;1;0;0;3.57;379
Die Hard: With a Vengeance (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.56;825
Doom Generation, The (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.46;61
Feast of July (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.6;5
First Knight (1995);1995;1;1;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.95;362
Free Willy 2: The Adventure Home (1995);1995;0;1;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.02;113
Hackers (1995);1995;1;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;3.15;321
Jeffrey (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.57;93
Johnny Mnemonic (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.58;458
Judge Dredd (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.31;564
Jury Duty (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.31;81
Kids (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.48;220
Living in Oblivion (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.92;205
Lord of Illusions (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.73;139
Love & Human Remains (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.47;19
Mad Love (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.21;48
Mallrats (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.55;451
Mighty Morphin Power Rangers: The Movie (1995);1995;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1.61;93
Moonlight and Valentino (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.14;49
Mute Witness (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.48;29
Nadja (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.35;26
Net, The (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.87;569
Nine Months (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.76;211
Party Girl (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.24;105
Prophecy, The (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3.22;190
Reckless (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.4;15
Safe (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.75;100
Scarlet Letter, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.47;75
Show, The (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3;2
Showgirls (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.05;217
Smoke (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.76;213
Something to Talk About (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;2.84;164
Species (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;2.82;550
Stars Fell on Henrietta, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.06;17
Strange Days (1995);1995;1;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;3.3;605
Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964);1964;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;3.81;117
Tie That Binds, The (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.42;12
Three Wishes (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.64;33
Total Eclipse (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.5;30
To Wong Foo, Thanks for Everything! Julie Newmar (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.05;203
Under Siege 2: Dark Territory (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.92;203
Unstrung Heroes (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.61;85
Unzipped (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.67;82
Walk in the Clouds, A (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.13;219
Waterworld (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.63;651
White Man's Burden (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.46;52
Wild Bill (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.15;41
Browning Version, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.56;34
Bushwhacked (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1.93;14
Burnt By the Sun (Utomlyonnye solntsem) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.06;123
Before the Rain (Pred dozhdot) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.25;28
Before Sunrise (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.81;160
Billy Madison (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.18;355
Babysitter, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.63;64
Boys on the Side (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.13;195
Cure, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.18;22
Castle Freak (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1.82;28
Circle of Friends (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.55;329
Clerks (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.95;1412
Don Juan DeMarco (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.39;386
Disclosure (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.17;254
Dream Man (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2;1
Drop Zone (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.67;129
Destiny Turns on the Radio (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.15;13
Death and the Maiden (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.5;108
Dolores Claiborne (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.45;349
Dumb & Dumber (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.19;660
Eat Drink Man Woman (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;4.08;346
Exotica (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.61;235
Exit to Eden (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.22;147
Ed Wood (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.7;927
French Kiss (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.3;326
Forget Paris (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.97;257
Far From Home: The Adventures of Yellow Dog (1995);1995;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.81;32
Goofy Movie, A (1995);1995;0;0;1;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.88;168
Hideaway (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.71;45
Fluke (1995);1995;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.31;29
Farinelli: il castrato (1994);1994;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;3.5;80
Gordy (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.1;10
Gumby: The Movie (1995);1995;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1.9;10
Glass Shield, The (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3;11
Hoop Dreams (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.19;716
Heavenly Creatures (1994);1994;0;0;0;0;0;0;1;1;0;0;0;0;1;0;1;0;0;3.87;477
Houseguest (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.91;138
Immortal Beloved (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.76;261
Heavyweights (1994);1994;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.6;30
Hunted, The (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.28;18
I.Q. (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.27;367
Interview with the Vampire (1994);1994;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;3.52;738
Jefferson in Paris (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.08;38
Jerky Boys, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.06;66
Junior (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;2.65;218
Just Cause (1995);1995;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;3.23;114
Kid in King Arthur's Court, A (1995);1995;0;1;1;1;0;0;0;1;0;0;0;0;1;0;0;0;0;2.42;144
Kiss of Death (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;0;0;1;0;0;2.84;102
Star Wars: Episode IV - A New Hope (1977);1977;1;1;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;4.45;2991
Little Women (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.65;285
Little Princess, A (1995);1995;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.87;172
Ladybird Ladybird (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.86;28
Enfer, L' (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.2;5
Like Water for Chocolate (Como agua para chocolate) (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.93;772
Legends of the Fall (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;1;1;3.43;705
Major Payne (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.73;140
Little Odessa (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.37;54
My Crazy Life (Mi vida loca) (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.53;55
Love Affair (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.04;79
Losing Isaiah (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.14;63
Madness of King George, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.73;383
Mary Shelley's Frankenstein (1994);1994;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;2.9;244
Man of the House (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.38;24
Mixed Nuts (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.54;80
Milk Money (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.69;228
Miracle on 34th Street (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.18;170
Miami Rhapsody (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.75;40
My Family (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.72;46
Murder in the First (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.57;212
Nobody's Fool (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.65;233
Nell (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.22;215
New Jersey Drive (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3;18
New York Cop (1996);1996;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Beyond Bedlam (1993);1993;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;3.5801;0
Nemesis 2: Nebula (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;3;1
Nina Takes a Lover (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.9;21
Natural Born Killers (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.14;700
Only You (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.34;158
Once Were Warriors (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.92;168
Poison Ivy II (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.21;48
Outbreak (1995);1995;1;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.27;733
Professional, The (a.k.a. Leon: The Professional) (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;1;0;1;0;0;4.11;923
Perez Family, The (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.1;42
Pyromaniac's Love Story, A (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.76;29
Pulp Fiction (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;4.28;2171
Panther (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.11;28
Pushing Hands (1992);1992;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.91;23
Priest (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.66;143
Quiz Show (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.76;705
Picture Bride (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.3;43
Queen Margot (La Reine Margot) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.81;86
Quick and the Dead, The (1995);1995;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2.98;418
Roommates (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.14;35
Ready to Wear (Pret-A-Porter) (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.5;127
Three Colors: Red (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.23;334
Three Colors: Blue (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.1;243
Three Colors: White (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.97;202
Red Firecracker, Green Firecracker (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.69;48
Rent-a-Kid (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.67;6
Relative Fear (1994);1994;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;0;0;3;1
Stuart Saves His Family (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.44;112
Swan Princess, The (1994);1994;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.89;54
Secret of Roan Inish, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.85;300
Specialist, The (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.65;153
Stargate (1994);1994;1;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3.49;1116
Santa Clause, The (1994);1994;0;0;1;1;0;0;0;1;0;0;0;0;0;0;0;0;0;3.19;641
Shawshank Redemption, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.55;2227
Shallow Grave (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.89;273
Suture (1993);1993;0;0;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;3.41;32
Strawberry and Chocolate (Fresa y chocolate) (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.75;61
Swimming with Sharks (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.71;209
Sum of Us, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.97;33
National Lampoon's Senior Trip (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.45;49
To Live (Huozhe) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.34;61
Tank Girl (1995);1995;1;0;0;1;0;0;0;0;0;0;1;0;0;1;0;0;0;2.61;358
Tales From the Crypt Presents: Demon Knight (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3.11;144
Star Trek: Generations (1994);1994;1;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3.38;990
Tales from the Hood (1995);1995;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;2.73;149
Tom & Viv (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.1;21
Village of the Damned (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;2.55;161
Tommy Boy (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5;410
Vanya on 42nd Street (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.86;114
Underneath, The (1995);1995;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;3.49;41
Walking Dead, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;2.68;19
What's Eating Gilbert Grape (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.84;693
Virtuosity (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.88;221
While You Were Sleeping (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.5;673
War, The (1994);1994;0;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.27;84
Double Happiness (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.84;31
Muriel's Wedding (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.68;518
Baby-Sitters Club, The (1995);1995;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.43;42
Ace Ventura: Pet Detective (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.15;766
Adventures of Priscilla, Queen of the Desert, The (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.81;469
Backbeat (1993);1993;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;3.53;120
Bitter Moon (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.17;46
Bullets Over Broadway (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.7;455
Clear and Present Danger (1994);1994;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.73;1059
Client, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;1;0;0;1;0;0;3.39;515
Corrina, Corrina (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.34;257
Crooklyn (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.13;119
Crow, The (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;3.45;734
Cobb (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.18;67
Flintstones, The (1994);1994;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.35;267
Forrest Gump (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;1;0;4.09;2194
Four Weddings and a Funeral (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.74;1233
Higher Learning (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.17;141
I Like It Like That (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.21;19
I Love Trouble (1994);1994;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.5;127
It Could Happen to You (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.42;268
Jungle Book, The (1994);1994;0;1;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.36;239
Wonderful, Horrible Life of Leni Riefenstahl, The (Die Macht der Bilder) (1993);1993;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.26;62
Lion King, The (1994);1994;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.86;1121
Little Buddha (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.17;71
Wes Craven's New Nightmare (1994);1994;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.82;251
Mask, The (1994);1994;0;0;0;1;1;0;0;1;0;0;0;0;0;0;0;0;0;3.28;1179
Maverick (1994);1994;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;1;3.52;802
Mrs. Parker and the Vicious Circle (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.31;58
Naked Gun 33 1/3: The Final Insult (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.9;412
Paper, The (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.18;212
Reality Bites (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.15;428
Red Rock West (1992);1992;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.86;258
Richie Rich (1994);1994;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.11;183
Safe Passage (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.29;17
River Wild, The (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.25;350
Speed (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;3.57;1650
Speechless (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.89;140
Timecop (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.89;436
True Lies (1994);1994;1;1;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.63;1400
When a Man Loves a Woman (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.26;211
Wolf (1994);1994;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;2.93;272
Wyatt Earp (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.27;270
Bad Company (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.9;40
Man of No Importance, A (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.4;10
S.F.W. (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.6;30
Low Down Dirty Shame, A (1994);1994;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.75;102
Boys Life (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.64;97
Colonel Chabert, Le (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;1;0;3.7;20
Faster Pussycat! Kill! Kill! (1965);1965;1;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.54;59
Jason's Lyric (1994);1994;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.28;40
Secret Adventures of Tom Thumb, The (1993);1993;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.8;25
Street Fighter (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1.86;105
Coldblooded (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.67;18
Desert Winds (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Fall Time (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Fear, The (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.42;12
Frank and Ollie (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4;1
Girl in the Cadillac (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Homage (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Mirage (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3;2
Open Season (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1
Two Crimes (1995);1995;0;0;0;1;1;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Brother Minister: The Assassination of Malcolm X (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.75;4
Highlander III: The Sorcerer (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.12;203
Federal Hill (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.63;8
In the Mouth of Madness (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;0;0;2.91;193
8 Seconds (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.32;72
Above the Rim (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.02;49
Addams Family Values (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.91;463
You So Crazy (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.62;13
Age of Innocence, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.56;295
Airheads (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.53;245
Air Up There, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.66;90
Another Stakeout (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;2.48;179
Bad Girls (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2.43;89
Barcelona (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.49;208
Being Human (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.52;29
Beverly Hillbillies, The (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.19;156
Beverly Hills Cop III (1994);1994;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.51;352
Black Beauty (1994);1994;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.36;94
Blink (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.12;57
Blown Away (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.11;221
Blue Chips (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.6;75
Blue Sky (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.61;105
Body Snatchers (1993);1993;0;0;0;0;0;0;0;0;0;1;0;0;0;1;1;0;0;3.08;269
Boxing Helena (1993);1993;0;0;0;0;0;0;0;0;0;0;0;1;1;0;1;0;0;2.37;166
Bronx Tale, A (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.93;263
Cabin Boy (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.38;187
Calendar Girl (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.42;24
Carlito's Way (1993);1993;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.69;369
City Slickers II: The Legend of Curly's Gold (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;1;2.58;392
Clean Slate (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.79;48
Cliffhanger (1993);1993;1;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.08;686
Coneheads (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;2.61;533
Color of Night (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.65;141
Cops and Robbersons (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.05;64
Cowboy Way, The (1994);1994;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.63;152
Dangerous Game (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.5;2
Dave (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.81;948
Dazed and Confused (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.69;643
Demolition Man (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.99;640
Endless Summer 2, The (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.39;31
Even Cowgirls Get the Blues (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.3;81
Fatal Instinct (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.61;100
Farewell My Concubine (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;4.08;254
Favor, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.48;31
Fearless (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.6;228
Fear of a Black Hat (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.66;71
With Honors (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.28;228
Flesh and Bone (1993);1993;0;0;0;0;0;0;1;0;0;0;0;1;1;0;0;0;0;3.15;106
Widows' Peak (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.29;38
For Love or Money (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.22;67
Firm, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.55;824
Free Willy (1993);1993;0;1;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.59;285
Fresh (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;93
Fugitive, The (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;4.1;1995
Geronimo: An American Legend (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;3.28;87
Getaway, The (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.83;143
Getting Even with Dad (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.26;38
Go Fish (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.28;86
Good Man in Africa, A (1994);1994;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.64;28
Guilty as Sin (1993);1993;0;0;0;0;1;0;1;0;0;0;0;0;0;0;1;0;0;2.74;47
Hard Target (1993);1993;1;1;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;2.78;216
Heaven & Earth (1993);1993;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.31;105
Hot Shots! Part Deux (1993);1993;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;2.8;573
Live Nude Girls (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.2;54
Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.27;350
House of the Spirits, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.96;69
House Party 3 (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1.74;38
Hudsucker Proxy, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.63;599
I'll Do Anything (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.7;44
In the Army Now (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;2.23;151
In the Line of Fire (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.83;972
In the Name of the Father (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.9;312
Inkwell, The (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.69;35
What's Love Got to Do with It? (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.47;195
Jimmy Hollywood (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.46;24
Judgment Night (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.8;133
Jurassic Park (1993);1993;1;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3.76;2672
Kalifornia (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.38;294
Killing Zoe (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.53;176
King of the Hill (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.74;74
Lassie (1994);1994;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.66;29
Last Action Hero (1993);1993;1;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.51;500
Life with Mikey (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.81;64
Lightning Jack (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;1;2.61;62
M. Butterfly (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.38;39
Made in America (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.47;97
Malice (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.32;185
Man Without a Face, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.32;212
Manhattan Murder Mystery (1993);1993;0;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;3.72;335
Menace II Society (1993);1993;1;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.61;298
Executive Decision (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.35;416
In the Realm of the Senses (Ai no corrida) (1976);1976;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.38;42
What Happened Was... (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.22;37
Much Ado About Nothing (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;4;667
Mr. Jones (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.74;47
Mr. Wonderful (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.76;49
Mrs. Doubtfire (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.42;838
Naked (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.61;94
Next Karate Kid, The (1994);1994;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1.94;155
New Age, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.69;13
No Escape (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.96;178
North (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.49;69
Orlando (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.49;114
Perfect World, A (1993);1993;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.52;308
Philadelphia (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.89;561
Piano, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.67;608
Poetic Justice (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.4;42
Program, The (1993);1993;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.11;152
Robert A. Heinlein's The Puppet Masters (1994);1994;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;2.87;179
Radioland Murders (1994);1994;0;0;0;1;0;0;0;0;0;0;0;1;1;0;0;0;0;3.12;67
Ref, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.53;346
Remains of the Day, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.92;450
Renaissance Man (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;1;0;2.87;248
Rising Sun (1993);1993;1;0;0;0;0;0;1;0;0;0;0;1;0;0;0;0;0;3.18;382
Road to Wellville, The (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.46;149
Robocop 3 (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;1.94;202
Robin Hood: Men in Tights (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.93;374
Romeo Is Bleeding (1993);1993;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;3.37;117
Romper Stomper (1992);1992;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.57;83
Ruby in Paradise (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.66;117
Rudy (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.62;476
Saint of Fort Washington, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.19;21
Savage Nights (Nuits fauves, Les) (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.5;8
Schindler's List (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;4.51;2304
Scout, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.51;68
Searching for Bobby Fischer (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.98;720
Second Best (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5;2
Secret Garden, The (1993);1993;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.77;338
Serial Mom (1994);1994;0;0;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;3.05;389
Shadow, The (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.73;203
Shadowlands (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.84;286
Short Cuts (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.82;301
Simple Twist of Fate, A (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.16;55
Sirens (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.08;207
Six Degrees of Separation (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.82;315
Sleepless in Seattle (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.76;986
Sliver (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.22;169
Blade Runner (1982);1982;0;0;0;0;0;0;0;0;1;0;0;0;0;1;0;0;0;4.27;1800
Son in Law (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.67;206
So I Married an Axe Murderer (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;1;0;1;0;0;3.38;682
Striking Distance (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.64;129
Harlem (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;1
Super Mario Bros. (1993);1993;1;1;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;1.87;350
Surviving the Game (1994);1994;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.88;124
Terminal Velocity (1994);1994;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.55;137
Thirty-Two Short Films About Glenn Gould (1993);1993;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.82;157
Threesome (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.02;178
Nightmare Before Christmas, The (1993);1993;0;0;1;1;0;0;0;0;0;0;1;0;0;0;0;0;0;3.72;996
Three Musketeers, The (1993);1993;1;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.24;529
Tombstone (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.87;553
Trial by Jury (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.62;26
True Romance (1993);1993;1;0;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;3.93;658
War Room, The (1993);1993;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.23;132
Mamma Roma (1962);1962;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.5;2
Pagemaster, The (1994);1994;1;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;2.7;135
Paris, France (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;5
Beans of Egypt, Maine, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.63;8
Killer (Bulletproof Heart) (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.62;13
Welcome to the Dollhouse (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.8;478
Germinal (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.24;17
Chasers (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.27;45
Cronos (1992);1992;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3.13;61
Naked in New York (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.92;13
Kika (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.57;14
Bhaji on the Beach (1993);1993;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.86;35
Little Big League (1994);1994;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.93;100
Slingshot, The (K?isbellan ) (1993);1993;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.22;23
Wedding Gift, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.59;34
Foreign Student (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;2
Ciao, Professore! (Io speriamo che me la cavo ) (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.52;21
Spanking the Monkey (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.45;175
Little Rascals, The (1994);1994;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.82;107
Fausto (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1
Andre (1994);1994;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.96;55
Hour of the Pig, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;1;0;0;0;0;0;4.5;2
Scorta, La (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2;1
Princess Caraboo (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.24;62
Celluloid Closet, The (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.05;141
Metisse (Caf?au Lait) (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;2
Dear Diary (Caro Diario) (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.68;28
I Don't Want to Talk About It (De eso no se habla) (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Brady Bunch Movie, The (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.91;418
Home Alone (1990);1990;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.13;675
Ghost (1990);1990;0;0;0;1;0;0;0;0;0;0;0;0;1;0;1;0;0;3.5;1124
Aladdin (1992);1992;0;0;1;1;0;0;0;0;0;0;1;0;0;0;0;0;0;3.79;1351
Terminator 2: Judgment Day (1991);1991;1;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;4.06;2649
Dances with Wolves (1990);1990;0;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;3.92;1451
Tough and Deadly (1995);1995;1;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2;2
Batman (1989);1989;1;1;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.6;1431
Silence of the Lambs, The (1991);1991;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;4.35;2578
Snow White and the Seven Dwarfs (1937);1937;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.85;763
Beauty and the Beast (1991);1991;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.89;1060
Pinocchio (1940);1940;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.75;498
Pretty Woman (1990);1990;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.64;1046
Window to Paris (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.25;8
Wild Bunch, The (1969);1969;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;4.09;264
Love and a .45 (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3;30
Wooden Man's Bride, The (Wu Kui) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Great Day in Harlem, A (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.12;41
Bye Bye, Love (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;58
Criminals (1996);1996;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
One Fine Day (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.31;226
Candyman: Farewell to the Flesh (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.23;93
Century (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;2
Fargo (1996);1996;0;0;0;0;1;0;1;0;0;0;0;0;0;0;1;0;0;4.25;2513
Homeward Bound II: Lost in San Francisco (1996);1996;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.78;67
Heavy Metal (1981);1981;1;1;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;3.55;618
Hellraiser: Bloodline (1996);1996;1;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;2.47;216
Pallbearer, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.41;79
Jane Eyre (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.63;82
Loaded (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.67;9
Bread and Chocolate (Pane e cioccolata) (1973);1973;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.04;67
Aristocats, The (1970);1970;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.35;278
Flower of My Secret, The (La Flor de Mi Secreto) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.65;17
Two Much (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.11;9
Ed (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.59;32
Scream of Stone (Schrei aus Stein) (1991);1991;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
My Favorite Season (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.71;42
Modern Affair, A (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3;3
Condition Red (1995);1995;1;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;4;1
Asfour Stah (1990);1990;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Thin Line Between Love and Hate, A (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.26;19
Last Supper, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.6;121
Primal Fear (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.9;485
Rude (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Carried Away (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.86;7
All Dogs Go to Heaven 2 (1996);1996;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;2.08;75
Land and Freedom (Tierra y libertad) (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;4;13
Denise Calls Up (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.6;20
Theodore Rex (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1.67;3
Family Thing, A (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.62;77
Frisk (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Sgt. Bilko (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.54;140
Jack and Sarah (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.21;19
Girl 6 (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.62;78
Diabolique (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.68;71
Little Indian, Big City (Un indien dans la ville) (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
Roula (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;1
Peanuts - Die Bank zahlt alles (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;3
Happy Weekend (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1
Nelly & Monsieur Arnaud (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.6;20
Courage Under Fire (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.55;441
Mission: Impossible (1996);1996;1;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;3.43;1527
Cold Fever (? k?dum klaka) (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;4.19;16
Moll Flanders (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.47;89
Superweib, Das (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1
301, 302 (1995);1995;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;2.89;9
Dragonheart (1996);1996;1;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;3.23;612
Und keiner weint mir nach (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.5801;0
Mutters Courage (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1
Eddie (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.56;39
Yankee Zulu (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3;2
Billy's Holiday (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Purple Noon (1960);1960;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;3.72;25
August (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1.5;2
James and the Giant Peach (1996);1996;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.46;525
Fear (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.98;128
Kids in the Hall: Brain Candy (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.42;264
Faithful (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;8
Underground (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;3.66;35
All Things Fair (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.33;3
Bloodsport 2 (1995);1995;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.04;47
Pather Panchali (1955);1955;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.4;47
Aparajito (1956);1956;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.17;23
World of Apu, The (Apur Sansar) (1959);1959;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.41;56
Mystery Science Theater 3000: The Movie (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;3.68;456
Tarantella (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;2
Space Jam (1996);1996;0;1;1;1;0;0;0;1;0;0;0;0;0;0;0;0;0;2.62;563
Barbarella (1968);1968;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3.02;386
Hostile Intentions (1994);1994;1;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.5801;0
They Bite (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Some Folks Call It a Sling Blade (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;4.25;306
Run of the Country, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5;2
Alphaville (1965);1965;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3.36;64
Clean Slate (Coup de Torchon) (1981);1981;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.93;15
Tigrero: A Film That Was Never Made (1994);1994;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;3.5;4
Eye of Vichy, The (Oeil de Vichy, L') (1993);1993;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Windows (1980);1980;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
It's My Party (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.3;30
Country Life (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3;3
Operation Dumbo Drop (1995);1995;1;1;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;2.28;213
Promise, The (Versprechen, Das) (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;2;2
Mrs. Winterbourne (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.1;121
Solo (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.11;106
Under the Domin Tree (Etz Hadomim Tafus) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Substitute, The (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.65;141
True Crime (1995);1995;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;3.18;135
Butterfly Kiss (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.25;4
Feeling Minnesota (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.55;85
Delta of Venus (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.2;5
To Cross the Rubicon (1991);1991;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Angus (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.32;145
Daens (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Faces (1968);1968;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.67;27
Boys (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1.6;10
Quest, The (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.31;42
Cosi (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.83;36
Sunset Park (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.5;2
Mulholland Falls (1996);1996;0;0;0;0;1;0;0;0;1;0;0;0;0;0;1;0;0;3.09;275
Truth About Cats & Dogs, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.43;679
Oliver & Company (1988);1988;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.04;144
Celtic Pride (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.33;51
Flipper (1996);1996;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.5;62
Captives (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5;2
Of Love and Shadows (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Dead Man (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.89;153
Horseman on the Roof, The (Hussard sur le toit, Le) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.62;52
Switchblade Sisters (1975);1975;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;2.68;28
Mouth to Mouth (Boca a boca) (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4;1
Visitors, The (Les Visiteurs) (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;3.48;33
Multiplicity (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.86;239
Wallace & Gromit: The Best of Aardman Animation (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4.43;438
Halfmoon (Paul Bowles - Halbmond) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Haunted World of Edward D. Wood Jr., The (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.81;27
Two Friends (1986);1986;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Craft, The (1996);1996;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0;0;3.09;416
Great White Hype, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.79;91
Last Dance (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;9
War Stories (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Cold Comfort Farm (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.76;217
Institute Benjamenta, or This Dream People Call Human Life (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.67;3
Low Life, The (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Heaven's Prisoners (1996);1996;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;2.85;47
Original Gangstas (1996);1996;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;2.83;6
Rock, The (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.72;1340
Getting Away With Murder (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3
Cemetery Man (Dellamorte Dellamore) (1994);1994;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;3.36;101
Twister (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;3.17;1110
Barb Wire (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;2.03;300
Garcu, Le (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Honigmond (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Ghost in the Shell (Kokaku kidotai) (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;4.09;314
Thinner (1996);1996;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;0;0;2.53;174
Spy Hard (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.57;107
Brothers in Trouble (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;3
Close Shave, A (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;4.52;657
Force of Evil (1948);1948;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;4;31
Stupids, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;55
Arrival, The (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;3.15;417
Man from Down Under, The (1943);1943;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.75;4
Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963);1963;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;4.45;1367
Careful (1992);1992;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.53;15
Vermont Is For Lovers (1992);1992;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.5801;0
Month by the Lake, A (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.16;32
Gold Diggers: The Secret of Bear Mountain (1995);1995;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.92;13
Kim (1950);1950;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.78;9
Carmen Miranda: Bananas Is My Business (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3;4
Ashes of Time (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.75;4
Jar, The (Khomreh) (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Maya Lin: A Strong Clear Vision (1994);1994;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;4.1;59
Stalingrad (1993);1993;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;3.52;33
Phantom, The (1996);1996;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.79;123
Striptease (1996);1996;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;2.18;298
Last of the High Kings, The (a.k.a. Summer Fling) (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Heavy (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.27;74
Jack (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.63;171
I Shot Andy Warhol (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.57;100
Grass Harp, The (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.21;24
Someone Else's America (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Marlene Dietrich: Shadow and Light (1996);1996;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.25;12
Costa Brava (1946);1946;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Vie est belle, La (Life is Rosey) (1987);1987;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.78;18
Quartier Mozart (1992);1992;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Touki Bouki (Journey of the Hyena) (1973);1973;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Wend Kuuni (God's Gift) (1982);1982;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Spirits of the Dead (Tre Passi nel Delirio) (1968);1968;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3.22;9
Babyfever (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3;4
Pharaoh's Army (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;3.5801;0
Trainspotting (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.96;751
'Til There Was You (1997);1997;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.69;52
Independence Day (ID4) (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;3.51;1730
Stealing Beauty (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.38;103
Fan, The (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.55;145
Hunchback of Notre Dame, The (1996);1996;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.22;390
Cable Guy, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.73;385
Kingpin (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.48;765
Eraser (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.12;460
Gate of Heavenly Peace, The (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;5;3
Nutty Professor, The (1996);1996;0;0;0;1;0;0;0;1;0;0;0;0;1;1;0;0;0;3;948
I, Worst of All (Yo, la peor de todas) (1990);1990;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;2
An Unforgettable Summer (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995);1995;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.5;2
Hungarian Fairy Tale, A (1987);1987;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;4;1
My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.6;10
Midnight Dancers (Sibak) (1994);1994;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Somebody to Love (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Very Natural Thing, A (1974);1974;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.33;3
Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991);1991;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Daylight (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.71;204
Frighteners, The (1996);1996;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;3.35;338
Lone Star (1996);1996;0;0;0;0;0;0;1;0;0;0;0;1;0;0;0;0;0;4.08;630
Harriet the Spy (1996);1996;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.1;121
Phenomenon (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.5;427
Walking and Talking (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.68;57
She's the One (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;2.98;233
Time to Kill, A (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.59;344
American Buffalo (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.17;60
Rendezvous in Paris (Rendez-vous de Paris, Les) (1995);1995;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3;14
Alaska (1996);1996;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.4;43
Fled (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.57;105
Kazaam (1996);1996;0;0;1;1;0;0;0;1;0;0;0;0;0;0;0;0;0;1.47;120
Bewegte Mann, Der (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.89;9
Magic Hunter (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Larger Than Life (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.51;47
Boy Called Hate, A (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Power 98 (1995);1995;1;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;2;6
Two Deaths (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Very Brady Sequel, A (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.56;189
Stefano Quantestorie (1993);1993;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Death in the Garden (Mort en ce jardin, La) (1956);1956;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.25;4
Crude Oasis, The (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;2;2
Hedd Wyn (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Collectionneuse, La (1967);1967;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.25;4
Kaspar Hauser (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.93;28
Echte Kerle (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.5801;0
Diebinnen (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Convent, The (Convento, O) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;2
Adventures of Pinocchio, The (1996);1996;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.91;54
Joe's Apartment (1996);1996;0;0;0;1;0;0;0;0;0;0;1;0;0;0;0;0;0;2.29;131
First Wives Club, The (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.95;295
Stonewall (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.85;20
Ransom (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.48;564
High School High (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.18;78
Phat Beach (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2;4
Foxfire (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.13;103
Chain Reaction (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.65;237
Matilda (1996);1996;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.48;218
Emma (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.88;501
Crow: City of Angels, The (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.21;135
House Arrest (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.56;50
Eyes Without a Face (1959);1959;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;3.4;25
Tales from the Crypt Presents: Bordello of Blood (1996);1996;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.59;151
Lotto Land (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;1
Story of Xinghua, The (1993);1993;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.57;7
Day the Sun Turned Cold, The (Tianguo niezi) (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Flirt (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.74;38
Big Squeeze, The (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;1.86;7
Spitfire Grill, The (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.44;156
Escape from L.A. (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.51;511
Cyclo (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.67;30
Basquiat (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5;127
Tin Cup (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.22;615
Dingo (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;3
Ballad of Narayama, The (Narayama Bushiko) (1958);1958;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.63;8
Every Other Weekend (1990);1990;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Mille bolle blu (1993);1993;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Crows and Sparrows (1949);1949;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Godfather, The (1972);1972;1;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;4.52;2223
Hippie Revolution, The (1996);1996;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;2;1
Maybe, Maybe Not (Bewegte Mann, Der) (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.6;10
Supercop (1992);1992;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.51;273
Manny & Lo (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.65;31
Celestial Clockwork (1994);1994;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5;10
Wife, The (1995);1995;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.58;12
Small Faces (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2;1
Bound (1996);1996;0;0;0;0;1;0;1;0;0;0;0;0;1;0;1;0;0;3.82;572
Carpool (1996);1996;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;2.21;24
Death in Brunswick (1991);1991;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1
Kansas City (1996);1996;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.1;42
Gone Fishin' (1997);1997;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.18;49
Lover's Knot (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Aiqing wansui (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;1
Shadow of Angels (Schatten der Engel) (1976);1976;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.5801;0
Killer: A Journal of Murder (1995);1995;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.13;8
Nothing to Lose (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.39;44
Police Story 4: Project S (Chao ji ji hua) (1993);1993;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.86;21
Girls Town (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.29;24
Bye-Bye (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;1
Relic, The (1997);1997;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2.83;237
Island of Dr. Moreau, The (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;2.2;324
First Kid (1996);1996;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.62;77
Trigger Effect, The (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.71;59
Sweet Nothing (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3;2
Bogus (1996);1996;0;0;1;0;0;0;1;1;0;0;0;0;0;0;0;0;0;2.58;43
Bulletproof (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.94;104
Talk of Angels (1998);1998;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.5;2
Land Before Time III: The Time of the Great Giving (1995);1995;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.21;48
1-900 (1994);1994;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;2.5;2
Baton Rouge (1988);1988;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.5801;0
Halloween: The Curse of Michael Myers (1995);1995;0;0;0;0;0;0;0;0;0;1;0;0;0;0;1;0;0;2.36;183
Twelfth Night (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;1;0;0;0;0;3.86;152
Mother Night (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.7;69
Liebelei (1933);1933;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.5801;0
Venice/Venice (1992);1992;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;2
Wild Reeds (1994);1994;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.43;51
For Whom the Bell Tolls (1943);1943;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;3.76;98
Philadelphia Story, The (1940);1940;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;4.3;582
Singin' in the Rain (1952);1952;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;4.28;751
American in Paris, An (1951);1951;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;3.85;343
Funny Face (1957);1957;0;0;0;1;0;0;0;0;0;0;1;0;0;0;0;0;0;3.64;174
Breakfast at Tiffany's (1961);1961;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.91;676
Vertigo (1958);1958;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;4.27;905
Rear Window (1954);1954;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;4.48;1050
It Happened One Night (1934);1934;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.28;374
Gaslight (1944);1944;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;4.1;187
Gay Divorcee, The (1934);1934;0;0;0;1;0;0;0;0;0;0;1;0;1;0;0;0;0;3.92;105
North by Northwest (1959);1959;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;4.38;1315
Apartment, The (1960);1960;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;4.13;417
Some Like It Hot (1959);1959;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;4.3;832
Charade (1963);1963;0;0;0;1;0;0;0;0;0;0;0;1;1;0;1;0;0;4.18;306
Casablanca (1942);1942;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;1;0;4.41;1669
Maltese Falcon, The (1941);1941;0;0;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;4.4;1043
My Fair Lady (1964);1964;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;4.15;636
Sabrina (1954);1954;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.96;365
Roman Holiday (1953);1953;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;4.22;425
Little Princess, The (1939);1939;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.68;77
Meet Me in St. Louis (1944);1944;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.79;189
Wizard of Oz, The (1939);1939;0;1;1;0;0;0;1;0;0;0;1;0;0;0;0;0;0;4.25;1718
Gone with the Wind (1939);1939;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;1;0;4;1156
My Favorite Year (1982);1982;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.89;302
Sunset Blvd. (a.k.a. Sunset Boulevard) (1950);1950;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;4.49;470
Citizen Kane (1941);1941;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.39;1116
2001: A Space Odyssey (1968);1968;0;0;0;0;0;0;1;0;0;0;0;1;0;1;1;0;0;4.07;1716
Golden Earrings (1947);1947;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.25;12
All About Eve (1950);1950;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.26;403
Women, The (1939);1939;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.98;84
Rebecca (1940);1940;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;4.2;386
Foreign Correspondent (1940);1940;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;3.78;93
Notorious (1946);1946;0;0;0;0;0;0;0;0;1;0;0;0;1;0;1;0;0;4.29;445
Spellbound (1945);1945;0;0;0;0;0;0;0;0;0;0;0;1;1;0;1;0;0;3.91;206
Affair to Remember, An (1957);1957;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.95;189
To Catch a Thief (1955);1955;0;0;0;1;0;0;0;0;0;0;0;0;1;0;1;0;0;4.1;443
Father of the Bride (1950);1950;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.66;304
Band Wagon, The (1953);1953;0;0;0;1;0;0;0;0;0;0;1;0;0;0;0;0;0;3.63;71
Ninotchka (1939);1939;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;4.08;132
Love in the Afternoon (1957);1957;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;3.75;44
Gigi (1958);1958;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.62;187
Reluctant Debutante, The (1958);1958;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.18;11
Adventures of Robin Hood, The (1938);1938;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.97;378
Mark of Zorro, The (1940);1940;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.7;105
Laura (1944);1944;0;0;0;0;1;0;0;0;1;0;0;1;0;0;0;0;0;4.2;292
Ghost and Mrs. Muir, The (1947);1947;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.98;171
Lost Horizon (1937);1937;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.79;97
Top Hat (1935);1935;0;0;0;1;0;0;0;0;0;0;1;0;1;0;0;0;0;4.15;251
To Be or Not to Be (1942);1942;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;1;0;3.85;161
My Man Godfrey (1936);1936;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.11;188
Giant (1956);1956;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.75;130
East of Eden (1955);1955;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.98;215
Thin Man, The (1934);1934;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;4.24;292
His Girl Friday (1940);1940;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.25;397
Around the World in 80 Days (1956);1956;0;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.6;269
It's a Wonderful Life (1946);1946;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.3;729
Mr. Smith Goes to Washington (1939);1939;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.24;383
Bringing Up Baby (1938);1938;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.17;413
Penny Serenade (1941);1941;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.55;40
Scarlet Letter, The (1926);1926;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.24;37
Lady of Burlesque (1943);1943;0;0;0;1;0;0;0;0;0;0;0;1;0;0;0;0;0;3.38;13
Of Human Bondage (1934);1934;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.74;58
Angel on My Shoulder (1946);1946;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.45;20
Little Lord Fauntleroy (1936);1936;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.48;23
They Made Me a Criminal (1939);1939;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;3.55;11
Inspector General, The (1949);1949;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;3.57;54
Angel and the Badman (1947);1947;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.39;51
39 Steps, The (1935);1935;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;4.08;253
Walk in the Sun, A (1945);1945;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4;6
Outlaw, The (1943);1943;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.26;23
Night of the Living Dead (1968);1968;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;3.67;715
African Queen, The (1951);1951;1;1;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;4.25;1057
Beat the Devil (1954);1954;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.41;37
Cat on a Hot Tin Roof (1958);1958;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.05;271
Last Time I Saw Paris, The (1954);1954;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.17;6
Meet John Doe (1941);1941;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.91;82
Algiers (1938);1938;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;3.75;16
Something to Sing About (1937);1937;0;0;0;1;0;0;0;0;0;0;1;0;0;0;0;0;0;1.5;2
Farewell to Arms, A (1932);1932;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;3.57;56
Moonlight Murder (1936);1936;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;2;2
Blue Angel, The (Blaue Engel, Der) (1930);1930;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.94;100
Nothing Personal (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.5801;0
In the Line of Duty 2 (1987);1987;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2.8;5
Dangerous Ground (1997);1997;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;2.75;4
Picnic (1955);1955;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.68;81
Madagascar Skin (1995);1995;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;3.5801;0
Pompatus of Love, The (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;2.67;33
Small Wonders (1996);1996;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3.75;4
Fly Away Home (1996);1996;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3.6;232
Bliss (1997);1997;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;2.9;40
Grace of My Heart (1996);1996;0;0;0;1;0;0;1;0;0;0;0;0;0;0;0;0;0;3.38;69
Schlafes Bruder (Brother of Sleep) (1995);1995;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;5;1
Maximum Risk (1996);1996;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.57;54
Michael Collins (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;3.52;170
Rich Man's Wife, The (1996);1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.6;20
Infinity (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.11;9
Big Night (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;4.1;450
Last Man Standing (1996);1996;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;2.91;256
Caught (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;3.36;28
Set It Off (1996);1996;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.01;93
2 Days in the Valley (1996);1996;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.28;286
Curdled (1996);1996;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;3.05;20
Associate, The (L'Associe)(1982);1982;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.5801;0
Ed's Next Move (1996);1996;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;4.25;8
Extreme Measures (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;1;0;0;2.94;121
Glimmer Man, The (1996);1996;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2.66;101
D3: The Mighty Ducks (1996);1996;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.37;142
Chamber, The (1996);1996;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;3.09;78
Apple Dumpling Gang, The (1975);1975;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;1;2.98;232
Davy Crockett, King of the Wild Frontier (1955);1955;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3.33;97
Escape to Witch Mountain (1975);1975;0;1;1;0;0;0;0;1;0;0;0;0;0;0;0;0;0;3.19;291
Love Bug, The (1969);1969;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;3.27;242
Herbie Rides Again (1974);1974;0;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;2.73;135