-
Notifications
You must be signed in to change notification settings - Fork 0
/
bechdel_old.csv
We can't make this file beautiful and searchable because it's too large.
7235 lines (7235 loc) · 527 KB
/
bechdel_old.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
imdb_id,title,imdbid,rating,date,id,dubious,submitterid,year,visible
0000003,Pauvre Pierrot,0000003,0,2014-05-02 10:01:07,5433,0,10044,1892,1
0000012,"Arrival of a Train, The",0000012,0,2015-04-13 01:53:29,6199,0,11866,1896,1
0000014,Tables Turned on the Gardener,0000014,0,2014-05-04 13:11:04,5444,0,10070,1895,1
0000091,"House of the Devil, The",0000091,0,2013-12-25 14:31:21,4982,0,9025,1896,1
0000131,Une nuit terrible,0000131,0,2014-04-20 02:04:35,5406,0,9969,1896,1
0000211,"Astronomer's Dream; or, The Man in the Moon, The",0000211,0,2014-04-22 01:30:56,5410,0,9985,1898,1
0000230,Cinderella,0000230,3,2014-11-12 06:46:54,5914,0,11200,1899,1
0000246,A Turn of the Century Illusionist,0000246,0,2013-12-26 20:42:03,4994,0,9040,1899,1
0000272,As Seen Through A Telescope (a.k.a The Professor and His Field Glass),0000272,0,2013-07-13 02:54:53,4344,0,7700,1900,1
0000300,"Enchanted Drawing, The",0000300,0,2013-06-26 10:38:34,4271,0,7496,1900,1
0000304,Grandma's Reading Glass,0000304,0,2013-07-13 02:47:01,4343,0,7699,1900,1
0000306,Hamlet ( Le Duel d'Hamlet),0000306,0,2013-07-13 03:10:33,4346,0,7702,1900,1
0000313,Let Me Dream Again,0000313,0,2014-05-03 18:33:43,5438,0,10059,1900,1
0000359,L'homme a la tete en caoutchouc,0000359,0,2013-12-26 20:47:27,4995,0,9041,1901,1
0000413,Mephistopheles' School of Magic,0000413,0,2014-05-04 13:03:40,5443,0,10069,1902,1
0000417,Le voyage dans la lune,0000417,0,2010-07-23 00:26:17,1252,0,1353,1902,1
0000439,"Great Train Robbery, The",0000439,0,2010-07-25 09:05:57,1319,0,1433,1903,1
0000455,"Music Lover, The",0000455,0,2014-01-12 00:18:28,5063,0,9189,1903,1
0000499,Le voyage a travers l'impossible,0000499,0,2015-03-07 23:28:30,6135,0,11712,1904,1
0000554,Humorous Phases of Funny Faces,0000554,0,2014-05-03 09:39:02,5435,0,10054,1906,1
0000567,"400 Tricks of the Devil, The",0000567,0,2014-08-09 02:46:49,5684,0,10665,1906,1
0000574,"Story of the Kelly Gang, The",0000574,1,2010-07-26 21:01:14,1349,0,1469,1906,1
0001009,"Princess Nicotine; or, The Smoke Fairy",0001009,2,2013-07-28 12:00:46,4409,1,7862,1909,1
0002101,Cleopatra,0002101,2,2011-02-07 06:12:54,2003,0,2676,1912,1
0002281,"Invaders, The",0002281,0,2011-02-08 01:32:35,2005,0,2682,1912,1
0003424,Suspense,0003424,0,2014-11-12 06:50:13,5915,0,11201,1913,1
0003512,"Voyage of the Bourrichon Family, The",0003512,0,2014-04-04 21:52:41,5364,0,9843,1913,1
0003973,A Florida Enchantment,0003973,2,2013-08-10 05:01:03,4457,1,7991,1914,1
0004972,"Birth of a Nation, The",0004972,2,2010-07-23 00:46:01,1258,0,1359,1915,1
0006745,Gretchen the Greenhorn,0006745,3,2011-02-08 06:49:30,2008,0,2685,1916,1
0006864,Intolerance: Love's Struggle Throughout the Ages,0006864,0,2014-11-24 21:07:22,5944,0,11260,1916,1
0007361,Snow White,0007361,3,2016-07-28 10:24:43,7004,0,13773,1916,1
0007507,"Vagabond, The",0007507,0,2014-04-07 07:12:36,5368,0,9856,1916,1
0008443,"Poor Little Rich Girl, The",0008443,3,2011-02-05 22:14:34,1994,0,2663,1917,1
0008489,"Raffles, the Amateur Cracksman",0008489,2,2011-02-11 21:49:04,2019,1,2700,1917,1
0008499,Rebecca of Sunnybrook Farm,0008499,3,2011-02-05 20:38:18,1993,0,2661,1917,1
0008519,A Romance of the Redwoods,0008519,0,2011-02-10 07:07:29,2015,0,2692,1917,1
0008652,A Tale of Two Cities,0008652,3,2011-02-04 19:35:50,1981,0,2646,1917,1
0008844,Are Crooks Dishonest?,0008844,0,2014-05-04 12:57:31,5441,0,10067,1918,1
0009652,Stella Maris,0009652,3,2011-02-08 06:03:02,2007,0,2684,1918,1
0009682,Tarzan of the Apes,0009682,3,2011-02-05 23:23:34,1996,0,2665,1918,1
0009968,Broken Blossoms or The Yellow Man and the Girl,0009968,0,2011-08-02 02:19:41,2588,0,3874,1919,1
0010281,Ich mochte kein Mann sein,0010281,3,2016-09-08 21:11:38,7108,1,13950,1918,1
0010323,"Cabinet of Dr. Caligari, The",0010323,0,2010-07-25 08:41:57,1306,0,1420,1920,1
0010879,When the Clouds Roll by,0010879,3,2011-02-11 21:47:16,2018,1,2699,1919,1
0011588,Pollyanna,0011588,3,2011-02-05 19:26:22,1991,0,2659,1920,1
0011870,Within Our Gates,0011870,3,2014-11-26 18:13:47,5948,0,11272,1920,1
0011979,"Blot, The",0011979,3,2013-06-04 13:54:11,4204,0,7322,1921,1
0012349,"Kid, The",0012349,0,2013-03-01 08:25:02,3945,0,6689,1921,1
0012364,Körkarlen (The Phantom Carriage),0012364,2,2014-11-04 10:56:21,5898,0,11161,1921,1
0012532,Orphans of the Storm,0012532,3,2010-07-23 00:52:16,1263,0,1364,1921,1
0012543,"Paleface, The",0012543,0,2014-04-04 15:34:28,5361,0,9838,1922,1
0013086,"Dr. Mabuse, der Spieler - Ein Bild der Zeit",0013086,3,2014-12-07 19:42:39,5967,0,11326,1922,1
0013140,Foolish Wives,0013140,3,2014-12-02 11:56:08,5958,0,11308,1922,1
0013257,Häxan: Witchcraft Through the Ages,0013257,3,2013-01-03 15:24:20,3800,0,6323,1922,1
0013367,"Man from Beyond, The",0013367,1,2011-02-07 04:38:35,2001,0,2674,1922,1
0013427,Nanook of the North,0013427,1,2014-11-05 07:55:33,5901,0,11169,1922,1
0013428,Nathan der Weise,0013428,2,2010-11-25 20:51:31,1778,0,2260,1922,1
0013442,"Nosferatu, eine Symphonie des Grauens",0013442,2,2010-07-25 08:43:49,1307,0,1421,1922,1
0013496,"Phantom, The",0013496,2,2010-10-04 06:22:52,1631,0,2004,1922,1
0013626,La souriante Madame Beudet,0013626,3,2014-10-31 12:43:33,5888,0,11144,1923,1
0013845,Help!,0013845,0,2015-04-19 16:58:21,6209,0,11889,1924,1
0014341,Our Hospitality,0014341,0,2014-11-27 09:49:36,5949,0,11275,1923,1
0014429,Safety Last!,0014429,0,2011-02-04 00:31:14,1961,0,2625,1923,1
0014469,"Silent Command, The",0014469,2,2011-02-06 22:07:08,1998,0,2667,1923,1
0014611,Why Worry?,0014611,0,2011-02-04 03:26:03,1967,0,2631,1923,1
0014945,Girl Shy,0014945,0,2011-02-10 07:09:00,2016,0,2693,1924,1
0015116,Manhandled,0015116,3,2011-02-11 21:50:19,2020,0,2701,1924,1
0015163,"Navigator, The",0015163,0,2011-02-09 01:22:37,2009,0,2686,1924,1
0015174,Kriemhild's Revenge,0015174,2,2010-07-26 03:16:47,1338,0,1456,1924,1
0015175,Die Nibelungen,0015175,2,2010-07-26 03:13:38,1337,0,1455,1924,1
0015324,Sherlock Jr.,0015324,0,2011-02-09 03:32:15,2011,0,2688,1924,1
0015361,Stachka,0015361,0,2014-12-18 11:17:11,5991,0,11386,1925,1
0015400,"Thief of Bagdad, The",0015400,0,2010-07-23 00:53:24,1264,0,1365,1924,1
0015498,Wild Oranges,0015498,0,2011-02-04 00:16:17,1960,0,2624,1924,1
0015532,Die Abenteuer des Prinzen Achmed,0015532,1,2014-12-09 09:43:47,5974,0,11341,1926,1
0015624,"Big Parade, The",0015624,2,2014-12-04 21:08:33,5962,0,11315,1925,1
0015648,Battleship Potemkin,0015648,0,2010-07-25 08:46:12,1308,0,1422,1925,1
0015841,"Freshman, The",0015841,0,2011-02-09 05:12:19,2012,0,2689,1925,1
0015863,Go West,0015863,0,2011-02-04 15:33:59,1978,0,2642,1925,1
0015864,"Gold Rush, The",0015864,0,2010-07-25 08:47:28,1309,0,1423,1925,1
0016039,"Lost World, The",0016039,2,2014-05-30 07:47:51,5514,1,10247,1925,1
0016220,"Phantom of the Opera, The",0016220,2,2010-07-25 08:39:29,1305,0,1419,1925,1
0016332,Seven Chances,0016332,0,2012-02-27 19:13:37,3077,1,4818,1925,1
0016884,Flesh and the Devil,0016884,1,2010-07-23 00:49:11,1260,0,1361,1926,1
0016895,For Heaven's Sake,0016895,0,2011-02-04 03:19:10,1966,0,2630,1926,1
0017136,Metropolis,0017136,1,2010-07-23 00:56:19,1267,0,1368,1927,1
0017410,So's Your Old Man,0017410,3,2012-04-30 13:20:16,3217,0,5108,1926,1
0017449,"Temptress, The",0017449,1,2010-07-26 02:23:35,1334,0,1451,1926,1
0017825,Downhill [When Boys Leave Home],0017825,1,2016-12-13 12:50:05,7324,0,14304,1927,1
0017925,"General, The",0017925,0,2010-07-25 08:49:07,1310,0,1424,1926,1
0018033,It,0018033,3,2010-07-22 21:25:02,1227,0,1322,1927,1
0018037,"Jazz Singer, The",0018037,1,2014-12-09 13:55:51,5975,0,11343,1927,1
0018051,"Kid Brother, The",0018051,0,2011-02-04 00:45:58,1964,0,2628,1927,1
0018183,My Best Girl,0018183,3,2011-02-09 02:42:58,2010,0,2687,1927,1
0018192,Abel Gance's Napoleon,0018192,2,2010-07-25 08:52:11,1312,0,1426,1927,1
0018199,Nevada,0018199,0,2011-02-04 19:53:25,1982,0,2647,1927,1
0018455,Sunrise: A Song of Two Humans,0018455,2,2010-10-04 06:24:30,1632,0,2005,1927,1
0018528,"Unknown, The",0018528,0,2010-07-25 08:50:47,1311,0,1425,1927,1
0018578,Wings,0018578,2,2012-03-14 04:02:50,3118,0,4909,1927,1
0018684,Beggars of Life,0018684,0,2011-02-04 15:19:59,1977,0,2641,1928,1
0018737,Pandora's Box (Die Büchse der Pandora),0018737,3,2011-05-21 23:37:06,2324,1,3345,1929,1
0018742,"Cameraman, The",0018742,0,2011-02-04 04:02:11,1970,0,2634,1928,1
0018773,"Circus, The",0018773,0,2011-02-04 03:44:30,1968,0,2632,1928,1
0018806,"Crowd, The",0018806,1,2014-11-10 14:45:00,5912,0,11191,1928,1
0018839,"Docks of New York, The",0018839,2,2014-12-15 14:38:35,5984,1,11367,1928,1
0018937,A Girl in Every Port,0018937,0,2011-02-04 16:33:48,1980,0,2644,1928,1
0019130,"Man Who Laughs, The",0019130,2,2011-02-11 21:51:15,2021,0,2702,1928,1
0019254,"Passion of Joan of Arc, The",0019254,0,2010-07-25 08:56:17,1314,0,1428,1928,1
0019258,"Patsy, The",0019258,3,2011-02-09 07:01:16,2013,0,2690,1928,1
0019290,"Power of the Press, The",0019290,1,2011-02-04 16:09:33,1979,0,2643,1928,1
0019304,"Racket, The",0019304,0,2011-02-04 05:01:32,1972,0,2636,1928,1
0019412,Speedy,0019412,0,2011-02-04 00:43:01,1963,0,2627,1928,1
0019421,"Steamboat Bill, Jr.",0019421,0,2011-02-04 04:39:26,1971,0,2635,1928,1
0019571,While the City Sleeps,0019571,2,2011-02-11 21:46:21,2017,0,2698,1928,1
0019702,Blackmail,0019702,2,2014-12-12 19:23:51,5979,0,11354,1929,1
0019760,Man with a Movie Camera,0019760,0,2013-02-14 21:51:26,3897,0,6586,1929,1
0019777,"Cocoanuts, The",0019777,2,2011-02-03 17:39:55,1953,0,2617,1929,1
0020286,Throw of the Dice,0020286,0,2015-01-14 21:00:49,6046,0,11500,1929,1
0020530,Un chien andalou,0020530,0,2010-07-25 08:54:54,1313,0,1427,1929,1
0020572,Welcome Danger,0020572,0,2011-02-04 00:39:46,1962,0,2626,1929,1
0020629,All Quiet on the Western Front,0020629,0,2010-07-25 09:00:08,1316,0,1430,1930,1
0020641,Anna Christie,0020641,3,2010-07-26 02:10:29,1326,0,1443,1930,1
0020642,Anna Christie,0020642,3,2010-07-26 02:13:37,1327,0,1444,1931,1
0020668,"Bat Whispers, The",0020668,3,2016-03-18 20:50:11,6782,0,13311,1930,1
0020670,Be Yourself,0020670,2,2013-06-20 22:04:40,4253,0,7440,1930,1
0020697,"Blue Angel, The",0020697,1,2010-07-25 08:57:57,1315,0,1429,1930,1
0021015,Juno and the Paycock [The Shame of Mary Boyle],0021015,3,2016-11-22 12:03:21,7287,0,14245,1929,1
0021040,Ladies of Leisure,0021040,3,2012-12-06 01:25:24,3713,0,6165,1930,1
0021079,Little Caesar,0021079,1,2015-01-13 13:26:27,6043,0,11496,1931,1
0021148,Min and Bill,0021148,3,2013-02-22 17:25:25,3927,0,6643,1930,1
0021156,Morocco,0021156,1,2013-01-31 03:11:51,3865,0,6508,1930,1
0021165,Murder!,0021165,3,2016-11-23 13:56:04,7291,0,14250,1930,1
0021577,L'Age d'Or,0021577,0,2013-02-05 10:01:47,3871,0,6527,1930,1
0021735,"Cheat, The",0021735,3,2014-09-14 01:27:48,5741,1,10813,1931,1
0021739,La Chienne,0021739,3,2015-01-08 08:31:00,6030,0,11469,1931,1
0021749,City Lights,0021749,3,2011-09-23 17:50:12,2705,0,4074,1931,1
0021814,Dracula,0021814,2,2011-02-05 01:19:30,1985,0,2651,1931,1
0021884,Frankenstein,0021884,1,2010-07-25 09:02:19,1317,0,1431,1931,1
0022000,Indiscreet,0022000,3,2010-12-05 19:21:48,1828,0,2326,1931,1
0022054,"Last Flight, The",0022054,0,2011-02-03 22:56:14,1956,0,2620,1931,1
0022074,"Smiling Lieutenant, The",0022074,2,2013-06-14 20:15:34,4243,0,7400,1931,1
0022100,M,0022100,3,2009-12-28 04:11:29,610,0,340,1931,1
0022158,Monkey Business,0022158,1,2011-06-10 21:34:31,2384,0,3483,1931,1
0022183,Mädchen in Uniform,0022183,3,2009-12-31 10:35:59,628,0,360,1931,1
0022208,Night Nurse,0022208,3,2010-01-10 15:10:44,636,0,374,1931,1
0022251,Pardon Us,0022251,0,2011-02-04 05:29:55,1974,0,2638,1931,1
0022286,"Public Enemy, The",0022286,3,2014-11-21 16:07:00,5934,1,11242,1931,1
0022395,"Skin Game, The",0022395,3,2016-11-24 15:35:29,7294,0,14255,1931,1
0022458,Tabu: A Story of the South Seas,0022458,0,2010-10-04 06:26:13,1633,0,2006,1931,1
0022599,A Nous la Liberte,0022599,1,2015-01-08 11:25:50,6031,0,11470,1931,1
0022614,"Age of Consent, The",0022614,2,2011-02-04 20:30:04,1983,0,2648,1932,1
0022694,"Blue Light (Das Blaue Licht), The",0022694,1,2016-07-21 23:17:14,6990,0,13748,1932,1
0022718,Boudu Saved from Drowning,0022718,1,2011-10-15 19:54:16,2767,0,4181,1932,1
0022913,Freaks,0022913,2,2012-11-05 18:09:51,3659,0,6040,1932,1
0022940,"Girl from Calgary, The",0022940,2,2014-09-26 19:05:15,5783,0,10916,1932,1
0022958,Grand Hotel,0022958,3,2010-07-26 02:15:00,1328,0,1445,1932,1
0023027,Horse Feathers,0023027,1,2011-06-10 21:34:29,2383,0,3482,1932,1
0023042,I Am a Fugitive from a Chain Gang,0023042,1,2010-07-25 09:04:12,1318,0,1432,1932,1
0023158,Love Me Tonight,0023158,2,2015-01-18 09:53:04,6052,1,11521,1932,1
0023196,Mata Hari,0023196,3,2010-07-26 02:20:54,1333,0,1450,1931,1
0023213,Merrily We Go to Hell,0023213,3,2014-09-14 01:57:51,5742,1,10814,1932,1
0023238,"Most Dangerous Game, The",0023238,0,2012-11-05 15:07:55,3658,0,6039,1932,1
0023285,Number 17,0023285,0,2016-11-28 09:19:14,7301,0,14262,1932,1
0023293,"Old Dark House, The",0023293,3,2013-11-04 01:52:39,4775,0,8611,1932,1
0023385,Red-Headed Woman,0023385,3,2015-02-03 04:25:05,6092,0,11586,1932,1
0023395,Rich and Strange [East of Shanghai],0023395,2,2016-11-25 10:24:07,7296,0,14257,1931,1
0023427,Scarface,0023427,1,2015-01-25 12:00:35,6063,0,11541,1932,1
0023458,Shanghai Express,0023458,3,2014-11-19 21:25:49,5929,0,11234,1932,1
0023582,Thirteen Women,0023582,3,2016-04-25 17:13:12,6852,0,13457,1932,1
0023590,Three on a Match,0023590,3,2015-01-18 01:53:06,6051,0,11519,1932,1
0023634,"I Was Born, But...",0023634,1,2012-09-15 21:07:38,3530,0,5780,1932,1
0023649,Vampyr,0023649,3,2014-11-09 15:43:00,5910,0,11187,1932,1
0023694,White Zombie,0023694,0,2011-07-19 00:42:40,2550,0,3794,1932,1
0023753,Alice in Wonderland,0023753,3,2012-04-16 16:01:09,3188,0,5053,1933,1
0023775,Baby Face,0023775,3,2017-03-24 00:09:10,7528,0,14698,1933,1
0023932,Day of Reckoning,0023932,3,2014-01-02 21:16:18,5029,0,9095,1933,1
0023935,"Death Kiss, The",0023935,1,2015-03-30 00:15:58,6176,0,11817,1932,1
0023969,Duck Soup,0023969,1,2014-02-19 17:52:07,5185,0,9491,1933,1
0024008,Female,0024008,3,2015-01-19 04:26:52,6056,0,11525,1933,1
0024028,Footlight Parade,0024028,3,2010-05-13 19:56:21,802,0,611,1933,1
0024034,42nd Street,0024034,3,2013-07-12 09:28:30,4335,1,7687,1933,1
0024069,Gold Diggers of 1933,0024069,3,2014-11-12 09:50:32,5916,0,11202,1933,1
0024184,"Invisible Man, The",0024184,1,2017-02-16 15:47:11,7450,0,14537,1933,1
0024188,Island of Lost Souls,0024188,1,2013-01-20 12:01:31,3844,0,6439,1932,1
0024216,King Kong,0024216,0,2011-04-23 19:11:12,2229,0,3118,1933,1
0024264,Little Women,0024264,3,2011-04-23 19:16:12,2231,0,3120,1933,1
0024432,"Peanut Vendor, The",0024432,0,2015-04-16 00:33:24,6205,0,11880,1933,1
0024473,"Private Life of Henry VIII., The",0024473,1,2010-07-23 00:19:20,1248,0,1349,1933,1
0024481,Queen Christina,0024481,3,2010-07-26 02:17:18,1330,0,1447,1933,1
0024625,A Study in Scarlet,0024625,3,2015-04-08 22:45:39,6193,1,11853,1933,1
0024679,Tomorrow at Seven,0024679,3,2014-09-16 22:23:09,5752,1,10833,1933,1
0024727,"Vanpire Bat, The",0024727,3,2012-04-30 04:30:27,3210,0,5101,1933,1
0024831,Anne of Green Gables,0024831,3,2014-03-24 16:49:42,5319,0,9747,1934,1
0024844,L'atalante,0024844,0,2010-11-30 23:36:10,1795,0,2289,1934,1
0024961,"Cat's-Paw, The",0024961,1,2010-07-26 02:06:53,1324,0,1441,1934,1
0024991,Cleopatra,0024991,1,2010-07-23 01:02:41,1270,0,1372,1934,1
0025004,"Count of Monte Cristo, The",0025004,1,2010-07-23 00:14:17,1246,0,1347,1934,1
0025091,Evelyn Prentice,0025091,3,2016-03-12 19:01:40,6772,0,13289,1934,1
0025316,It Happened One Night,0025316,3,2009-12-28 23:20:38,621,0,352,1934,1
0025423,"Lost Patrol, The",0025423,0,2011-02-04 03:56:00,1969,0,2633,1934,1
0025424,Lost in the Stratosphere,0025424,2,2014-06-02 08:58:12,5523,0,10272,1934,1
0025452,"Man Who Knew Too Much, The",0025452,3,2016-11-29 12:05:17,7304,0,14266,1934,1
0025465,Maniac,0025465,3,2013-10-17 01:01:49,4702,0,8486,1934,1
0025586,Of Human Bondage,0025586,1,2010-07-27 05:38:05,1379,0,1500,1934,1
0025617,"Painted Veil, The",0025617,1,2010-07-26 02:16:11,1329,0,1446,1934,1
0025746,"Scarlet Empress, The",0025746,3,2010-07-26 02:08:51,1325,0,1442,1934,1
0025755,Search for Beauty,0025755,3,2014-10-08 23:14:55,5821,0,11007,1934,1
0025822,Spitfire,0025822,3,2013-08-05 14:41:46,4443,0,7958,1934,1
0026029,"39 Steps, The",0026029,3,2010-07-22 23:41:25,1242,0,1343,1935,1
0026071,Anna Karenina,0026071,2,2010-07-23 00:50:18,1261,0,1362,1935,1
0026138,"Bride of Frankenstein, The",0026138,3,2013-02-11 11:06:43,3891,0,6570,1935,1
0026599,"Lady in Scarlet, The",0026599,2,2014-09-15 22:31:56,5750,0,10828,1935,1
0026667,Magnificent Obsession,0026667,3,2011-10-13 02:09:09,2756,0,4167,1935,1
0026752,Mutiny on the Bounty,0026752,1,2010-07-27 04:34:08,1361,0,1482,1935,1
0026768,Naughty Marietta,0026768,3,2010-10-23 05:30:19,1685,0,2098,1935,1
0026778,A Night At The Opera,0026778,1,2013-02-07 06:04:16,3881,0,6541,1935,1
0026939,"Riverside Murder, The",0026939,2,2014-11-11 00:36:30,5913,1,11192,1935,1
0026942,Roberta,0026942,3,2011-05-29 23:35:55,2362,0,3418,1935,1
0027125,Top Hat,0027125,2,2009-12-27 22:00:23,595,0,325,1935,1
0027387,Born to Dance,0027387,3,2011-05-29 23:39:18,2363,0,3419,1936,1
0027407,Bullets or Ballots,0027407,3,2013-05-20 02:54:17,4143,0,7193,1936,1
0027438,"Charge of the Light Brigade, The",0027438,1,2010-07-22 23:34:17,1237,0,1338,1936,1
0027562,Earthworm Tractors,0027562,1,2011-09-21 02:18:40,2699,0,4061,1936,1
0027652,Fury,0027652,2,2015-02-04 03:12:56,6096,0,11592,1936,1
0027698,"Great Ziegfeld, The",0027698,3,2012-07-07 08:11:55,3401,0,5477,1936,1
0027752,"Only Son, The",0027752,3,2012-09-29 18:33:43,3560,0,5841,1936,1
0027977,Modern Times,0027977,0,2010-07-26 02:04:38,1323,0,1440,1936,1
0027996,Mr. Deeds Goes to Town,0027996,3,2011-02-05 20:21:08,1992,0,2660,1936,1
0028000,Murder at Glen Athol,0028000,3,2015-03-29 15:21:52,6174,0,11814,1936,1
0028010,My Man Godfrey,0028010,2,2014-10-19 22:01:56,5852,0,11069,1936,1
0028021,Osaka Elegy,0028021,3,2011-11-19 17:34:24,2853,0,4342,1936,1
0028092,Pennies from Heaven,0028092,3,2013-03-24 06:52:47,4010,0,6846,1936,1
0028096,"Petrified Forest, The",0028096,3,2010-07-27 05:20:16,1369,0,1490,1936,1
0028174,Revolt of the Zombies,0028174,0,2011-07-19 22:22:20,2554,0,3799,1936,1
0028203,Romeo and Juliet,0028203,3,2013-04-17 16:17:04,4069,1,6980,1936,1
0028212,Sabotage,0028212,3,2014-11-18 10:10:13,5926,0,11227,1936,1
0028216,San Francisco,0028216,1,2010-07-27 04:31:14,1359,0,1480,1936,1
0028231,Secret Agent,0028231,3,2016-12-01 11:36:29,7308,0,14273,1936,1
0028333,Swing Time,0028333,1,2009-12-27 22:01:46,596,0,326,1936,1
0028355,Theodora Goes Wild,0028355,3,2012-05-22 01:29:10,3280,0,5242,1936,1
0028356,These Three,0028356,2,2016-10-29 08:32:36,7227,1,14147,1936,1
0028505,Wife vs. Secretary,0028505,2,2010-07-27 04:32:32,1360,0,1481,1936,1
0028597,"Awful Truth, The",0028597,3,2015-11-23 08:28:18,6554,0,12813,1937,1
0028683,Camille,0028683,3,2012-10-15 18:22:57,3598,0,5905,1936,1
0028739,Conquest,0028739,2,2010-07-26 02:19:43,1332,0,1449,1937,1
0028772,A Day at the Races,0028772,2,2011-06-10 21:34:26,2382,0,3481,1937,1
0029087,Knight Without Armor,0029087,2,2010-07-23 00:08:59,1244,0,1345,1937,1
0029162,Lost Horizon,0029162,2,2010-07-26 02:29:57,1336,0,1453,1937,1
0029192,Make Way for Tomorrow,0029192,3,2013-06-21 03:44:50,4255,0,7444,1937,1
0029207,"Mandarin Mystery, The",0029207,3,2012-09-25 10:41:31,3548,1,5821,1936,1
0029322,Nothing Sacred,0029322,0,2013-03-10 23:40:06,3968,0,6753,1937,1
00293564,Rush Hour 3,00293564,1,2008-07-19 00:00:00,16,0,1,2007,1
0029377,Parnell,0029377,2,2010-07-27 04:30:07,1358,0,1479,1937,1
0029442,"Prisoner of Zenda, The",0029442,1,2010-07-22 23:37:47,1240,0,1341,1937,1
0029453,Pepe le Moko,0029453,2,2014-09-14 01:12:26,5740,1,10812,1937,1
0029546,Shall We Dance,0029546,1,2009-12-27 22:02:49,597,0,327,1937,1
0029565,Murder at the Baskervilles (Silver Blaze),0029565,1,2014-07-07 05:38:30,5617,0,10492,1937,1
0029583,Snow White and the Seven Dwarfs,0029583,3,2011-02-04 07:11:44,1976,1,2640,1937,1
0029604,Stage Door,0029604,3,2010-01-03 22:11:32,631,1,366,1937,1
0029608,Stella Dallas,0029608,3,2010-05-13 18:54:27,795,0,603,1937,1
0029682,Topper,0029682,2,2010-07-26 02:27:10,1335,0,1452,1937,1
0029811,"Girl Was Young, The",0029811,3,2016-12-07 11:30:57,7317,0,14288,1937,1
0029843,"Adventures of Robin Hood, The",0029843,2,2012-03-09 20:50:40,3103,0,4882,1938,1
0029870,Angels with Dirty Faces,0029870,1,2016-11-23 12:38:21,7290,1,14249,1938,1
0029929,Bluebeard's Eighth Wife,0029929,2,2012-05-24 13:43:11,3283,0,5253,1938,1
0029942,Boys Town,0029942,0,2011-06-29 19:07:04,2467,0,3633,1938,1
0029947,Bringing Up Baby,0029947,3,2012-07-07 05:59:04,3400,0,5475,1938,1
0029971,Carefree,0029971,2,2009-12-27 21:59:13,594,0,324,1938,1
0030044,"Dawn Patrol, The",0030044,0,2010-07-22 23:35:24,1238,0,1339,1938,1
0030127,"Baker's Wife, The",0030127,1,2015-01-13 09:20:21,6042,0,11495,1938,1
0030149,Four Daughters,0030149,3,2013-03-04 05:45:20,3951,0,6708,1938,1
0030241,Holiday,0030241,3,2010-06-28 15:00:50,994,0,1015,1938,1
0030287,Jezebel,0030287,2,2010-07-27 04:56:31,1367,0,1488,1938,1
0030341,"Lady Vanishes, The",0030341,3,2009-12-28 23:19:20,620,0,351,1938,1
0030396,"Mad Miss Manton, The",0030396,3,2013-08-20 18:34:14,4495,0,8072,1938,1
0030473,"Mr. Wong, Detective",0030473,1,2011-08-03 14:24:40,2590,0,3881,1938,1
0030755,"Sisters, The",0030755,2,2010-07-27 05:36:57,1378,0,1499,1938,1
0031022,"Adventures of Sherlock Holmes, The",0031022,3,2014-10-23 00:31:56,5863,0,11093,1939,1
0031060,At the Circus,0031060,2,2011-06-05 23:12:05,2372,0,3452,1939,1
0031066,Babes in Arms,0031066,3,2012-12-06 21:07:44,3723,0,6175,1939,1
0031210,Dark Victory,0031210,3,2010-07-27 05:22:09,1370,0,1491,1939,1
0031225,Destry Rides Again,0031225,3,2014-07-13 20:43:47,5634,0,10529,1939,1
0031235,Dodge City,0031235,2,2009-07-28 04:37:40,383,,45,1939,1
0031252,Drums Along the Mohawk,0031252,2,2010-07-27 05:44:09,1384,0,1505,1939,1
0031322,"Flying Deuces, The",0031322,0,2011-02-04 05:27:36,1973,0,2637,1939,1
0031359,Gaslight,0031359,3,2014-09-22 19:32:21,5773,0,10883,1940,1
0031381,Gone with the Wind,0031381,3,2009-03-02 14:31:54,291,,28,1939,1
0031385,"Goodbye, Mr. Chips",0031385,2,2010-07-23 00:12:56,1245,0,1346,1939,1
0031387,"Gorilla, The",0031387,3,2011-07-20 00:28:56,2555,0,3801,1939,1
0031455,"Hunchback of Notre Dame, The",0031455,0,2011-03-03 23:51:48,2086,0,2816,1939,1
0031505,Jamaica Inn,0031505,3,2016-12-12 12:08:14,7322,0,14301,1939,1
0031507,Jesse James,0031507,2,2010-07-27 05:43:13,1383,0,1504,1939,1
0031516,Juarez,0031516,2,2010-07-27 05:18:50,1368,0,1489,1939,1
0031679,Mr. Smith Goes to Washington,0031679,2,2014-11-25 12:59:18,5946,0,11266,1939,1
0031680,Mr. Wong in Chinatown,0031680,1,2011-08-16 16:49:55,2622,0,3933,1939,1
0031709,Nancy Drew... Reporter,0031709,3,2014-09-19 21:48:19,5763,0,10857,1939,1
0031725,Ninotchka,0031725,3,2010-07-23 00:47:39,1259,0,1360,1939,1
0031742,Of Mice and Men,0031742,1,2011-11-19 16:48:01,2851,0,4340,1939,1
0031826,Essex and Elizabeth,0031826,2,2010-07-27 05:23:16,1371,0,1492,1939,1
0031885,"Rules of the Game, The",0031885,3,2012-03-04 12:14:32,3089,0,4852,1939,1
0031971,Stagecoach,0031971,3,2009-12-27 21:58:37,593,0,323,1939,1
0031981,"Story of Alexander Graham Bell, The",0031981,2,2010-07-27 05:45:33,1385,0,1506,1939,1
0032138,"Wizard of Oz, The",0032138,3,2008-09-03 21:13:47,174,,8,1939,1
0032143,"Women, The",0032143,3,2009-12-27 21:46:40,588,0,318,1939,1
0032145,Wuthering Heights,0032145,2,2010-07-22 23:36:25,1239,0,1340,1939,1
0032155,Young Mr. Lincoln,0032155,2,2010-07-27 05:41:42,1382,0,1503,1939,1
0032194,"All This, and Heaven Too",0032194,2,2010-07-27 05:26:28,1373,0,1494,1940,1
0032211,Anne Of Windy Poplars,0032211,3,2014-03-24 18:19:32,5320,0,9748,1940,1
0032215,"Ape, The",0032215,3,2011-07-20 02:34:34,2556,0,3802,1940,1
0032273,Boom Town,0032273,1,2010-07-27 04:27:19,1356,0,1477,1940,1
0032339,A Chump at Oxford,0032339,0,2011-02-04 06:04:36,1975,0,2639,1940,1
0032349,Comrade X,0032349,2,2010-07-27 04:23:06,1355,0,1476,1940,1
0032376,"Dance, Girl, Dance",0032376,3,2013-07-29 18:14:41,4415,0,7878,1940,1
0032406,Chamber of Horrors / Door with the Seven Locks,0032406,2,2013-07-18 18:31:24,4363,0,7764,1940,1
0032455,Fantasia,0032455,0,2014-01-04 14:32:15,5039,0,9111,1940,1
0032484,Foreign Correspondent,0032484,1,2016-12-02 14:34:51,7311,0,14276,1940,1
0032551,"Grapes of Wrath, The",0032551,3,2010-07-27 05:48:01,1387,0,1508,1940,1
0032553,"Great Dictator, The",0032553,3,2012-08-13 07:55:07,3470,0,5653,1940,1
0032599,His Girl Friday,0032599,3,2012-02-09 03:26:41,3033,1,4725,1940,1
0032690,"Last Alarm, The",0032690,3,2014-10-04 20:12:44,5802,1,10967,1940,1
0032701,"Letter, The",0032701,2,2010-07-27 05:39:10,1380,0,1501,1940,1
0032811,"Mortal Storm, The",0032811,3,2010-08-25 03:15:37,1501,0,1770,1940,1
0032904,"Philadelphia Story, The",0032904,3,2013-12-12 17:01:58,4943,1,8966,1940,1
0032910,Pinocchio,0032910,1,2009-08-23 21:41:24,478,0,158,1940,1
0032943,Pride and Prejudice,0032943,3,2013-06-22 02:57:58,4257,0,7451,1940,1
0032946,Primrose Path,0032946,3,2013-07-16 01:15:48,4354,0,7726,1940,1
0032976,Rebecca,0032976,3,2009-12-28 23:16:34,618,0,349,1940,1
0032983,"Return of Frank James, The",0032983,0,2010-07-27 04:54:29,1366,0,1487,1940,1
0033021,Santa Fe Trail,0033021,1,2011-09-14 02:15:45,2678,0,4030,1940,1
0033028,"Sea Hawk, The",0033028,3,2012-02-18 08:06:11,3050,0,4759,1940,1
0033105,Strange Cargo,0033105,0,2010-07-27 04:28:47,1357,0,1478,1940,1
0033152,"Thief of Bagdad, The",0033152,0,2010-07-23 00:54:48,1265,0,1366,1940,1
0033436,Buck Privates,0033436,3,2011-12-07 00:08:27,2906,0,4444,1941,1
0033459,Cheers for Miss Bishop,0033459,3,2011-06-26 23:01:16,2446,0,3605,1941,1
0033467,Citizen Kane,0033467,1,2010-07-23 00:55:07,1266,0,1367,1941,1
0033533,"Devil and Miss Jones, The",0033533,3,2010-10-23 04:56:36,1682,0,2094,1941,1
0033563,Dumbo,0033563,2,2010-07-09 04:38:02,1117,0,1169,1941,1
0033627,49th Parallel,0033627,0,2011-11-26 17:09:16,2867,0,4369,1941,1
0033717,High Sierra,0033717,1,2011-06-18 04:15:37,2410,0,3531,1941,1
0033723,Hold That Ghost,0033723,3,2011-12-07 06:39:18,2910,0,4453,1941,1
0033727,Mr. Bug Goes to Town,0033727,1,2011-01-29 22:50:45,1941,0,2598,1941,1
0033802,Ladies In Retirement,0033802,1,2015-06-18 02:13:11,6318,0,12234,1941,1
0033804,"Lady Eve, The",0033804,2,2010-07-27 05:46:42,1386,0,1507,1941,1
0033836,"Little Foxes, The",0033836,2,2010-07-27 05:24:36,1372,0,1493,1941,1
0033870,"Maltese Falcon, The",0033870,1,2010-07-22 23:02:26,1230,0,1330,1941,1
0033874,"Man Who Came to Dinner, The",0033874,3,2013-08-15 18:43:43,4475,0,8033,1942,1
0033891,Meet John Doe,0033891,3,2012-12-06 20:17:07,3717,0,6169,1941,1
0033902,Men of Boys Town,0033902,1,2011-06-29 19:07:06,2468,0,3634,1941,1
0033928,Murder by Invitation,0033928,3,2015-03-28 23:47:51,6171,0,11809,1941,1
0034175,"Shanghai Gesture, The",0034175,3,2010-08-28 02:03:02,1512,0,1794,1941,1
0034240,Sullivan's Travels,0034240,3,2013-07-17 14:29:15,4359,0,7747,1941,1
0034248,Suspicion,0034248,3,2016-12-15 13:15:54,7329,0,14310,1941,1
0034328,Two-Faced Woman,0034328,2,2010-07-26 02:18:20,1331,0,1448,1941,1
0034398,"Wolf Man, The",0034398,2,2011-06-23 04:08:50,2436,0,3588,1941,1
0034492,Bambi,0034492,1,2010-07-09 04:37:10,1116,0,1168,1942,1
0034521,Black Dragons,0034521,0,2012-09-04 18:52:08,3518,0,5758,1942,1
0034583,Casablanca,0034583,1,2010-07-04 14:24:27,1076,0,1121,1942,1
0034587,Cat People,0034587,3,2011-09-25 05:24:09,2708,0,4077,1942,1
0034591,There Was a Father,0034591,0,2012-12-30 17:52:27,3789,0,6300,1942,1
0034746,For Me and My Gal,0034746,3,2010-10-23 04:07:32,1675,1,2087,1942,1
0034882,I Married an Angel,0034882,3,2010-10-23 05:33:12,1686,0,2099,1942,1
0035015,"Magnificent Ambersons, The",0035015,2,2010-07-23 11:27:12,1289,0,1393,1942,1
0035017,La main du diable,0035017,1,2017-03-01 14:47:31,7475,0,14588,1943,1
0035019,"Major and the Minor, The",0035019,3,2010-02-15 05:42:01,681,0,436,1942,1
0035093,Mrs. Miniver,0035093,3,2015-08-01 18:41:34,6384,0,12415,1942,1
0035140,"Now, Voyager",0035140,3,2010-02-25 02:13:27,689,0,446,1942,1
0035279,Saboteur,0035279,1,2014-11-22 17:38:29,5938,0,11248,1956,1
0035317,Sherlock Holmes and the Secret Weapon,0035317,1,2014-10-22 00:45:54,5859,0,11088,1942,1
0035360,Son of Fury: The Story of Benjamin Blake,0035360,1,2010-07-27 09:04:14,1388,0,1510,1942,1
0035415,Tales of Manhattan,0035415,2,2013-02-06 17:29:34,3875,0,6534,1942,1
0035423,Kate & Leopold,0035423,2,2010-11-06 08:59:50,1739,0,2193,2001,1
0035446,To Be or Not to Be,0035446,0,2014-03-19 21:55:23,5303,0,9716,1942,1
0035567,Woman of the Year,0035567,3,2013-11-24 18:52:15,4870,0,8831,1942,1
0035753,Le Corbeau: The Raven,0035753,3,2013-02-10 21:37:38,3890,0,6566,1943,1
0035770,Cry 'Havoc',0035770,3,2014-02-27 16:21:10,5209,0,9540,1943,1
0035881,Fires Were Started,0035881,0,2014-06-09 12:57:13,5554,0,10342,1943,1
0035942,Girl Crazy,0035942,1,2010-10-23 05:49:38,1691,0,2104,1943,1
0035957,Guadalcanal Diary,0035957,0,2011-02-05 06:22:33,1988,0,2655,1943,1
0036027,I Walked with a Zombie,0036027,3,2011-02-03 21:50:07,1955,0,2619,1943,1
0036112,"Life and Death of Colonel Blimp, The",0036112,2,2013-01-18 22:03:47,3839,0,6432,1943,1
0036172,"More the Merrier, The",0036172,1,2017-01-20 07:11:27,7410,0,14447,1943,1
0036230,Old Acquaintance,0036230,3,2010-07-27 05:27:41,1374,0,1495,1943,1
0036244,"Ox-Bow Incident, The",0036244,1,2015-06-13 10:52:08,6310,0,12211,1943,1
0036323,Sahara,0036323,0,2011-02-05 06:15:56,1987,0,2654,1943,1
0036342,Shadow of a Doubt,0036342,3,2013-09-22 18:54:42,4617,0,8330,1943,1
0036363,"Sky's the Limit, The",0036363,1,2011-02-03 23:57:18,1959,0,2623,1943,1
0036367,So Proudly We Hail!,0036367,3,2015-06-15 20:57:51,6315,0,12217,1943,1
0036400,Judo Saga (Sanshiro Sugata),0036400,0,2013-10-15 16:37:12,4699,0,8482,1943,1
0036418,Tender Comrade,0036418,3,2011-06-17 11:33:32,2407,0,3525,1943,1
0036506,Day of Wrath,0036506,3,2012-12-16 20:24:54,3753,0,6228,1943,1
0036515,Watch on the Rhine,0036515,3,2010-07-27 05:30:09,1375,0,1496,1943,1
0036613,Arsenic and Old Lace,0036613,3,2008-10-23 15:39:29,201,,17,1944,1
0036695,A Canterbury Tale,0036695,3,2015-10-26 15:03:28,6515,0,12716,1944,1
0036723,Cover Girl,0036723,3,2012-03-21 02:41:12,3134,0,4945,1944,1
0036775,Double Indemnity,0036775,3,2010-08-01 13:06:26,1416,0,1585,1944,1
0036868,"Best Years of Our Lives, The",0036868,2,2013-03-15 12:54:55,3982,0,6790,1946,1
0036891,Hail the Conquering Hero,0036891,2,2010-10-23 05:01:11,1683,0,2095,1944,1
0036914,Torment,0036914,0,2011-02-15 14:19:25,2045,0,2731,1944,1
0036940,I'll Be Seeing You,0036940,3,2012-05-21 23:16:14,3279,0,5241,1944,1
0036947,"Most Beautiful (Ichiban utsukushiku), The",0036947,3,2013-10-15 15:46:44,4698,0,8480,1944,1
0036969,Jane Eyre,0036969,3,2016-03-18 01:26:22,6781,1,13309,1943,1
0037008,Laura,0037008,3,2011-09-26 23:31:34,2715,0,4088,1944,1
0037017,Lifeboat,0037017,3,2014-12-15 07:15:00,5983,0,11366,1944,1
0037059,Meet Me in St. Louis,0037059,3,2010-10-23 04:18:37,1676,0,2088,1944,1
0037076,Minstrel Man,0037076,1,2015-08-27 05:46:48,6420,0,12505,1944,1
0037094,Mr. Skeffington,0037094,2,2010-07-27 05:34:14,1376,0,1497,1944,1
0037120,National Velvet,0037120,3,2013-06-08 21:47:10,4222,0,7356,1944,1
0037280,Since You Went Away,0037280,3,2012-03-31 23:16:39,3154,0,4987,1944,1
0037365,Thin Man Goes Home,0037365,2,2016-04-24 19:04:42,6848,0,13452,1945,1
0037382,To Have and Have Not,0037382,3,2012-05-11 17:28:36,3245,0,5168,1944,1
0037469,Window in the Window,0037469,1,2011-04-10 19:15:42,2181,0,3048,1944,1
0037508,Along Came Jones,0037508,0,2010-10-04 06:55:04,1639,0,2012,1945,1
0037514,Anchors Aweigh,0037514,0,2015-01-04 19:12:23,6017,0,11443,1945,1
0037558,Brief Encounter,0037558,3,2010-09-07 15:05:19,1544,0,1849,1945,1
0037635,Dead of Night,0037635,3,2016-10-11 11:26:49,7185,0,14077,1945,1
0037638,Detour,0037638,1,2013-03-19 13:45:47,3999,0,6823,1945,1
0037671,"Enchanted Cottage, The",0037671,3,2011-06-22 16:11:45,2434,0,3581,1945,1
0037674,Children of Paradise,0037674,2,2014-02-02 22:30:17,5129,0,9347,1945,1
0037800,I Know Where I'm Going,0037800,3,2010-07-21 10:24:50,1213,0,1300,1945,1
0037820,Isle of the Dead,0037820,3,2011-02-07 07:06:17,2004,0,2677,1945,1
0037843,Keep Your Powder Dry,0037843,3,2014-08-04 07:13:47,5677,0,10631,1945,1
0037884,"Lost Weekend, The",0037884,2,2012-10-09 20:08:39,3583,0,5880,1945,1
0037913,Mildred Pierce,0037913,3,2010-05-13 18:42:18,794,0,602,1945,1
0037954,"Objective, Burma!",0037954,0,2012-05-19 04:19:31,3271,0,5224,1945,1
0038017,"Red Dragon, The",0038017,1,2016-06-22 06:46:42,6945,0,13665,1945,1
0038057,Scarlet Street,0038057,3,2014-01-16 15:06:55,5081,0,9235,1945,1
0038109,Spellbound,0038109,3,2013-06-20 16:55:58,4252,0,7438,1945,1
0038166,"Three Caballeros, The",0038166,0,2015-06-18 02:41:04,6319,0,12235,1944,1
0038259,"Woman in Green, The",0038259,3,2014-10-20 10:11:51,5856,1,11075,1945,1
0038348,Beauty and the Beast,0038348,3,2010-07-23 00:57:32,1268,0,1369,1946,1
0038355,"Big Sleep, The",0038355,1,2010-06-24 05:28:23,971,0,987,1946,1
0038409,"Chase, The",0038409,1,2014-05-23 04:59:50,5497,0,10187,1946,1
0038453,"Dark Corner, The",0038453,1,2014-12-04 01:16:54,5961,0,11312,1946,1
0038461,Deception,0038461,0,2010-07-27 05:35:28,1377,0,1498,1946,1
0038474,Devotion,0038474,3,2010-07-27 05:40:32,1381,0,1502,1946,1
0038494,Dressed to Kill,0038494,3,2013-03-21 10:06:38,4002,0,6836,1946,1
0038499,Duel in the sun,0038499,2,2013-12-02 16:53:47,4900,0,8887,1946,1
0038559,Gilda,0038559,0,2011-10-30 20:15:42,2809,0,4257,1946,1
0038589,"Harvey Girls, The",0038589,3,2010-05-09 15:46:53,786,0,590,1946,1
0038650,It's a Wonderful Life,0038650,3,2011-04-23 20:14:50,2235,1,3124,1946,1
0038661,"Jolson Story, The",0038661,1,2011-09-04 08:09:01,2654,0,3997,1946,1
0038733,Stairway to Heaven,0038733,0,2010-07-22 23:18:18,1231,0,1331,1946,1
0038762,My Darling Clementine,0038762,1,2012-12-29 16:33:23,3783,0,6290,1946,1
0038787,Notorious,0038787,2,2009-12-28 23:21:50,622,0,353,1946,1
0038854,"Postman Always Rings Twice, The",0038854,1,2010-08-01 21:51:50,1424,0,1594,1946,1
0038890,"Rome, Open City",0038890,3,2013-08-01 09:01:09,4428,0,7915,1945,1
0038924,"Seventh Veil, The",0038924,3,2010-07-23 01:16:10,1280,0,1382,1945,1
0038969,Song of the South,0038969,2,2014-07-22 21:06:00,5646,0,10566,1946,1
0038990,"Strange Woman, The",0038990,3,2012-03-25 04:51:58,3145,0,4960,1946,1
0038991,"Stranger, The",0038991,3,2017-05-30 13:32:21,7671,0,14926,1946,1
0039017,Terror by Night,0039017,1,2014-10-24 21:18:48,5872,0,11106,1946,1
0039054,Two Sisters from Boston,0039054,3,2010-10-23 04:37:32,1680,0,2092,1946,1
0039192,Black Narcissus,0039192,3,2010-07-20 22:51:50,1211,0,1297,1947,1
0039236,Calendar Girl,0039236,2,2014-09-25 21:49:16,5779,0,10908,1947,1
0039286,Crossfire,0039286,2,2013-07-28 20:15:57,4411,0,7864,1947,1
0039349,"Egg and I, The",0039349,3,2011-05-13 00:50:25,2287,0,3287,1947,1
0039360,"Exile, The",0039360,1,2010-07-22 23:26:30,1235,0,1335,1947,1
0039420,"Ghost and Mrs. Muir, The",0039420,3,2012-02-16 02:03:00,3047,0,4749,1947,1
0039431,Good News,0039431,2,2010-10-23 04:35:27,1679,0,2091,1947,1
0039441,Gunfighters,0039441,2,2012-03-12 22:09:11,3112,0,4901,1947,1
0039650,Nada,0039650,3,2017-02-07 14:20:20,7432,0,14497,1947,1
0039677,Odd Man Out,0039677,2,2010-07-23 01:12:38,1278,0,1380,1947,1
0039689,Build My Gallows High,0039689,2,2015-11-20 13:55:26,6550,0,12808,1947,1
0039694,"Paradine Case, The",0039694,2,2011-05-23 19:14:57,2330,0,3361,1947,1
0039819,"Shocking Miss Pilgrim, The",0039819,3,2010-10-23 04:51:25,1681,0,2093,1947,1
0040098,Anna Karenina,0040098,2,2010-07-23 00:51:15,1262,0,1363,1948,1
0040183,Bonnie Prince Charlie,0040183,2,2010-07-22 23:29:36,1236,0,1336,1948,1
0040202,Call Northside 777,0040202,1,2014-01-29 21:22:05,5115,0,9327,1948,1
0040214,Casbah,0040214,1,2011-04-30 20:03:33,2256,0,3161,1948,1
0040221,Caught,0040221,3,2010-12-11 12:33:12,1841,0,2346,1949,1
0040242,Command Decision,0040242,0,2010-07-27 04:21:33,1354,0,1475,1948,1
0040308,Easter Parade,0040308,3,2010-10-23 04:23:29,1677,1,2089,1948,1
0040321,Enchantment,0040321,3,2010-07-22 23:39:41,1241,0,1342,1948,1
0040379,"Fuller Brush Man, The",0040379,1,2011-05-17 05:17:05,2300,0,3308,1948,1
0040416,Hamlet,0040416,1,2010-07-22 23:20:14,1232,0,1332,1948,1
0040458,I Remember Mama,0040458,3,2013-07-24 23:09:34,4390,0,7819,1948,1
0040491,Joan of Arc,0040491,3,2015-07-20 20:44:53,6363,0,12359,1948,1
0040522,Bicycle Thieves,0040522,2,2015-10-26 15:39:47,6517,0,12718,1948,1
0040613,Mr. Blandings Builds His Dream House,0040613,3,2011-06-26 04:28:34,2445,0,3602,1948,1
0040724,Red River,0040724,0,2010-07-25 09:07:34,1320,0,1434,1948,1
0040725,"Red Shoes, The",0040725,3,2010-07-22 22:59:16,1229,0,1329,1948,1
0040746,Rope,0040746,0,2011-02-15 12:54:38,2040,0,2726,1948,1
0040806,"Snake Pit, The",0040806,3,2011-03-08 06:31:40,2098,0,2837,1948,1
0040897,"Treasure of the Sierra Madre, The",0040897,0,2012-05-08 22:10:22,3239,0,5154,1948,1
0041088,Act of Violence,0041088,2,2013-12-13 04:50:12,4944,0,8971,1948,1
0041090,Adam's Rib,0041090,3,2010-11-01 04:08:08,1716,0,2161,1949,1
0041094,"Adventures of Ichabod and Mr. Toad, The",0041094,0,2016-08-23 03:51:48,7059,0,13864,1949,1
0041154,Late Spring,0041154,3,2012-09-23 20:27:19,3539,0,5805,1949,1
0041158,"Barkleys of Broadway, The",0041158,3,2010-10-23 05:03:21,1684,0,2096,1949,1
0041386,"Fountainhead, The",0041386,1,2013-09-11 19:21:02,4554,0,8209,1949,1
0041452,"Heiress, The",0041452,3,2015-07-17 00:02:46,6358,0,12347,1949,1
0041498,I Was a Male War Bride,0041498,2,2016-08-02 16:44:40,7018,0,13794,1949,1
0041546,Kind Hearts and Coronets,0041546,1,2013-03-23 09:10:41,4008,0,6844,1949,1
0041587,A Letter to Three Wives,0041587,3,2013-03-10 22:44:10,3967,0,6752,1949,1
0041594,Little Women,0041594,3,2011-04-23 19:17:41,2232,0,3121,1949,1
0041628,"Man on the Eiffel Tower, The",0041628,2,2011-11-19 16:40:23,2849,0,4338,1949,1
0041650,Mighty Joe Young,0041650,0,2011-09-03 06:28:11,2651,0,3993,1949,1
0041716,On the Town,0041716,3,2010-10-23 05:48:26,1690,0,2103,1949,1
0041719,Orpheus,0041719,2,2012-05-29 10:18:13,3295,0,5275,1950,1
0041746,Pinky,0041746,3,2010-11-05 00:23:34,1736,0,2190,1949,1
0041859,"Set-Up, The",0041859,0,2011-02-05 06:06:50,1986,0,2653,1949,1
0041959,"Third Man, The",0041959,0,2009-12-28 04:12:48,611,0,341,1949,1
0042004,Under Capricorn,0042004,3,2016-12-20 17:56:41,7341,0,14331,1949,1
0042192,All About Eve,0042192,3,2008-08-03 07:10:33,139,,4,1950,1
0042208,"Asphalt Jungle, The",0042208,1,2011-03-08 06:52:00,2099,0,2839,1950,1
0042276,Born Yesterday,0042276,3,2013-03-17 20:24:34,3990,0,6805,1950,1
0042332,Cinderella,0042332,3,2010-07-04 03:53:13,1057,0,1102,1950,1
0042369,D.O.A.,0042369,1,2014-04-02 10:56:48,5350,0,9805,1950,1
0042469,"Flying Saucer, The",0042469,1,2013-04-05 22:27:10,4031,0,6908,1950,1
0042546,Harvey,0042546,2,2011-08-09 21:00:06,2596,0,3895,1950,1
0042593,In a Lonely Place,0042593,2,2013-07-29 21:24:47,4417,0,7885,1950,1
0042619,Diary of a Country Priest,0042619,1,2012-01-13 16:14:09,2989,0,4629,1951,1
0042792,No Way Out,0042792,3,2014-03-05 05:08:13,5232,0,9581,1950,1
0042876,Rashomon,0042876,0,2010-07-28 20:54:44,1402,0,1540,1950,1
0042958,Scandal,0042958,3,2016-09-26 05:59:24,7144,0,14018,1950,1
0042994,Stage Fright,0042994,3,2015-05-07 06:53:35,6233,0,11957,1950,1
0043012,Summer Stock,0043012,3,2010-10-23 04:30:02,1678,0,2090,1950,1
0043014,Sunset Blvd.,0043014,1,2009-12-28 04:08:44,608,0,338,1950,1
0043265,"African Queen, The",0043265,0,2010-08-21 16:48:08,1491,0,1747,1951,1
0043274,Alice in Wonderland,0043274,3,2010-07-20 08:37:38,1207,0,1292,1951,1
0043278,An American in Paris,0043278,1,2012-06-29 18:45:46,3389,0,5447,1951,1
0043313,Early Summer,0043313,3,2012-04-30 13:43:26,3222,0,5113,1951,1
0043332,Bellissima,0043332,3,2013-01-14 16:36:09,3825,0,6392,1951,1
0043338,Ace In The Hole,0043338,2,2010-05-29 00:30:33,871,0,756,1951,1
0043390,Cause for Alarm!,0043390,3,2014-09-12 19:40:54,5739,0,10810,1951,1
0043456,"Day the Earth Stood Still, The",0043456,3,2011-01-16 04:32:44,1916,0,2538,1951,1
0043614,"Idiot, The",0043614,3,2016-09-28 08:12:26,7157,0,14035,1951,1
0043686,Forbidden Games,0043686,3,2014-12-09 01:28:47,5972,0,11337,1952,1
0043769,"Magic Box, The",0043769,2,2010-07-23 00:03:32,1243,0,1344,1952,1
0043871,Odette,0043871,3,2013-08-29 04:12:31,4521,0,8132,1950,1
0043949,Quo Vadis,0043949,3,2014-01-21 02:29:02,5092,1,9275,1951,1
0044030,Show Boat,0044030,3,2012-01-07 22:36:00,2977,0,4601,1951,1
0044079,Strangers on a Train,0044079,2,2010-08-01 13:07:12,1417,0,1586,1951,1
0044081,A Streetcar Named Desire,0044081,3,2011-12-16 00:48:49,2930,0,4487,1951,1
0044092,Surcos,0044092,3,2017-02-08 16:04:29,7435,0,14501,1951,1
0044100,Take Care of My Little Girl,0044100,3,2013-08-27 04:36:58,4510,0,8111,1951,1
0044121,"Thing from Another World, The",0044121,1,2012-05-29 07:16:54,3293,0,5273,1951,1
0044205,Westward the Women,0044205,3,2015-10-18 13:41:56,6498,0,12668,1951,1
0044391,"Bad and the Beautiful, The",0044391,2,2016-12-12 22:26:11,7323,1,14303,1952,1
0044419,"Big Sky, The",0044419,0,2010-08-13 04:11:58,1465,0,1693,1952,1
0044502,Clash by Night,0044502,3,2012-07-07 17:38:50,3403,0,5479,1952,1
0044706,High Noon,0044706,2,2011-09-23 17:27:40,2704,0,4073,1952,1
0044741,Ikiru,0044741,1,2016-09-29 13:54:48,7162,0,14042,1952,1
0044837,Limelight,0044837,1,2016-06-05 10:40:21,6917,0,13604,1952,1
0044855,Lovely to Look at,0044855,3,2010-10-23 05:46:20,1689,0,2102,1952,1
0045061,"Quiet Man, The",0045061,1,2011-10-05 14:21:28,2737,0,4119,1952,1
0045152,Singin' in the Rain,0045152,3,2009-12-28 04:13:45,612,0,342,1952,1
0045162,"Snows of Kilimanjaro, The",0045162,1,2016-06-21 03:48:48,6941,0,13659,1952,1
0045537,"Band Wagon, The",0045537,1,2010-10-23 05:54:05,1692,0,2106,1953,1
0045555,"Big Heat, The",0045555,3,2013-11-18 21:28:26,4854,0,8802,1953,1
0045591,Calamity Jane,0045591,3,2011-06-22 06:49:52,2427,0,3573,1953,1
0045659,"Cruel Sea, The",0045659,3,2011-07-19 11:13:03,2553,0,3797,1953,1
0045665,Comicos,0045665,3,2017-05-18 07:42:36,7610,0,14849,1954,1
0045758,Fear and Desire,0045758,0,2014-04-05 16:32:33,5366,0,9847,1953,1
0045793,From Here to Eternity,0045793,3,2013-04-18 11:19:15,4071,0,6985,1953,1
0045810,Gentlemen Prefer Blondes,0045810,3,2011-07-18 06:27:42,2547,0,3791,1953,1
0045826,Glen or Glenda,0045826,0,2016-03-26 08:00:37,6797,0,13341,1953,1
0045877,"Hitch-Hiker, The",0045877,0,2013-07-02 19:40:45,4301,0,7576,1953,1
0045891,How to Marry a Millionaire,0045891,3,2013-12-03 18:41:35,4909,0,8901,1953,1
0045897,I Confess,0045897,1,2013-09-22 18:27:12,4616,0,8328,1953,1
0045943,Julius Caesar,0045943,1,2010-07-23 01:03:52,1272,0,1374,1953,1
0046066,Mesa of Lost Women,0046066,1,2013-03-08 04:53:12,3958,0,6733,1953,1
0046076,Miss Sadie Thompson,0046076,3,2012-03-17 02:05:24,3124,0,4926,1953,1
0046085,Mogambo,0046085,2,2010-07-27 04:39:18,1362,0,1483,1953,1
0046183,Peter Pan,0046183,3,2010-07-09 04:40:56,1118,1,1170,1953,1
0046187,Pickup on South Street,0046187,3,2014-09-10 04:23:05,5736,0,10795,1953,1
0046250,Roman holiday,0046250,3,2010-09-08 13:32:34,1554,0,1862,1953,1
0046268,Le Salaire de la Peur,0046268,1,2010-08-07 00:38:58,1444,0,1631,1953,1
0046269,Salome,0046269,3,2012-03-17 02:14:45,3125,0,4927,1953,1
0046303,Shane,0046303,1,2012-06-02 06:23:57,3303,0,5288,1953,1
0046345,Summer with Monika,0046345,3,2014-12-21 20:37:36,5998,0,11396,1953,1
0046359,Stalag 17,0046359,0,2010-12-31 22:43:05,1883,0,2458,1953,1
0046438,Tokyo Story,0046438,3,2010-10-04 04:48:49,1630,0,2002,1953,1
0046451,Touchez pas au grisbi,0046451,1,2010-01-22 01:37:57,657,0,405,1954,1
0046478,Ugetsu,0046478,2,2014-12-09 02:19:03,5973,0,11338,1953,1
0046487,Mr. Hulot's Holiday,0046487,3,2014-11-21 22:36:19,5937,0,11246,1953,1
0046511,Journey to Italy,0046511,3,2013-03-06 07:45:40,3954,0,6718,1954,1
0046534,"War of the Worlds, The",0046534,1,2011-06-06 08:35:38,2375,0,3459,1953,1
0046672,20000 Leagues Under the Sea,0046672,0,2011-02-04 03:00:34,1965,0,2629,1954,1
0046731,Attila,0046731,2,2014-02-01 16:31:09,5124,0,9340,1954,1
0046750,Late Chrysanthemuns,0046750,3,2013-10-18 12:26:18,4710,0,8496,1954,1
0046876,Creature from the Black Lagoon,0046876,0,2013-11-27 00:11:08,4883,0,8851,1954,1
0046889,"Dam Busters, The",0046889,1,2011-07-19 11:09:06,2552,0,3796,1955,1
0046911,Diabolique,0046911,3,2011-05-25 22:51:26,2344,0,3384,1955,1
0046912,Dial M for Murder,0046912,0,2012-06-10 23:57:01,3337,0,5334,1954,1
0046963,Executive Suite,0046963,2,2013-02-22 17:08:50,3925,0,6641,1954,1
0046969,"Fast and the Furious, The",0046969,3,2012-04-02 23:28:44,3158,1,4996,1955,1
0047030,"Glenn Miller Story, The",0047030,2,2013-03-18 22:03:09,3993,0,6815,1954,1
0047034,Gojira,0047034,1,2014-05-28 02:33:18,5505,0,10228,1954,1
0047094,Hobson's Choice,0047094,3,2011-06-22 06:29:43,2426,0,3572,1954,1
0047136,Johnny Guitar,0047136,2,2010-10-23 18:43:57,1694,0,2111,1954,1
0047152,Knock on Wood,0047152,1,2011-10-07 08:15:05,2746,0,4136,1954,1
0047296,On the Waterfront,0047296,0,2010-12-01 23:04:29,1812,0,2308,1954,1
0047349,Phffft,0047349,2,2009-12-27 20:23:28,586,0,316,1954,1
0047396,Rear Window,0047396,3,2011-03-21 09:57:12,2132,1,2908,1954,1
0047437,Sabrina,0047437,1,2011-05-14 17:02:52,2294,0,3298,1954,1
0047443,Salt of the Earth,0047443,3,2014-04-03 11:13:02,5356,0,9823,1954,1
0047472,Seven Brides for Seven Brothers,0047472,3,2010-07-27 00:17:31,1351,0,1471,1954,1
0047478,Shichinin no samurai,0047478,0,2012-10-16 02:18:09,3600,0,5912,1954,1
0047522,A Star Is Born,0047522,1,2012-11-15 14:37:28,3674,0,6079,1954,1
0047573,Them!,0047573,1,2011-03-31 23:50:24,2158,0,2986,1954,1
0047577,This Island Earth,0047577,0,2015-09-26 05:21:06,6468,0,12603,1955,1
0047580,Three Coins in the Fountain,0047580,3,2013-04-11 21:08:31,4048,0,6942,1954,1
0047638,Uwasa no onna,0047638,3,2017-04-17 21:03:45,7580,0,14790,1954,1
0047673,White Christmas,0047673,3,2010-07-28 00:54:09,1391,0,1528,1954,1
0047834,Animal Farm,0047834,0,2016-12-22 20:52:34,7346,0,14340,1954,1
0047878,"Big Combo, The",0047878,2,2012-06-11 18:15:43,3339,0,5338,1955,1
0047898,Bride of the Monster,0047898,3,2013-04-18 21:32:21,4073,0,6987,1955,1
0047969,Daddy Long Legs,0047969,3,2010-10-23 05:56:46,1693,0,2108,1955,1
0048021,Rififi,0048021,1,2012-07-08 01:30:16,3404,0,5480,1955,1
0048124,"Glass Slipper, The",0048124,3,2015-10-08 14:21:27,6481,0,12632,1955,1
0048127,Godzilla Raids Again,0048127,2,2015-01-19 00:28:39,6055,0,11524,1955,1
0048140,Guys and Dolls,0048140,3,2011-03-12 15:27:20,2115,1,2869,1955,1
0048254,Killer's Kiss,0048254,1,2014-04-17 03:15:56,5403,0,9956,1955,1
0048280,Lady and the Tramp,0048280,2,2010-07-13 18:57:31,1170,0,1230,1955,1
0048281,"Ladykillers, The",0048281,3,2010-12-05 13:34:22,1827,1,2325,1955,1
0048356,Marty,0048356,3,2013-08-04 18:32:54,4442,0,7948,1955,1
0048401,My Sister Eileen,0048401,3,2015-12-18 23:36:57,6615,0,12910,1955,1
0048424,"Night of the Hunter, The",0048424,3,2010-05-29 03:09:38,878,0,764,1955,1
0048445,Oklahoma!,0048445,3,2013-10-30 03:50:11,4754,1,8580,1955,1
0048473,Pather Panchali,0048473,3,2014-05-14 23:40:44,5471,0,10136,1955,1
0048512,"Prisoner, The",0048512,0,2016-11-15 08:59:20,7262,0,14207,1955,1
0048545,Rebel Without a Cause,0048545,1,2011-12-14 15:08:13,2926,0,4481,1955,1
0048605,"Seven Year Itch, The",0048605,1,2013-12-01 04:22:14,4896,0,8877,1955,1
0048641,Sommarnattens leende (Smiles of a Summer Night),0048641,2,2010-11-04 16:13:20,1735,0,2187,1955,1
0048673,Summertime,0048673,3,2014-02-14 09:13:27,5165,0,9445,1955,1
0048696,Tarantula,0048696,0,2013-04-27 18:57:39,4108,0,7059,1955,1
0048728,To Catch a Thief,0048728,3,2010-05-03 14:43:56,782,0,583,1955,1
0048750,"Trouble with Harry, The",0048750,2,2016-12-27 13:39:55,7360,0,14361,1955,1
0048801,We're No Angels,0048801,3,2012-12-10 01:31:31,3739,0,6201,1955,1
0048956,Aparajito,0048956,3,2014-05-14 23:39:42,5470,0,10135,1956,1
0048960,Around the World in Eighty Days,0048960,0,2013-03-15 08:02:10,3981,0,6789,1956,1
0048977,"Bad Seed, The",0048977,3,2010-07-22 13:30:43,1216,0,1304,1956,1
0049010,Bigger Than Life,0049010,0,2011-12-05 23:37:13,2904,0,4438,1956,1
0049038,Bus Stop,0049038,3,2013-10-06 21:35:04,4670,0,8432,1956,1
0049043,Calle mayor [Main Street],0049043,3,2017-01-13 13:52:16,7394,1,14423,1956,1
0049096,"Court Jester, The",0049096,2,2011-10-01 22:55:44,2730,0,4108,1956,1
0049189,...And God Created Woman,0049189,3,2012-07-09 17:28:25,3409,0,5493,1956,1
0049223,Forbidden Planet,0049223,0,2011-05-18 06:58:52,2306,0,3315,1956,1
0049287,Gunslinger,0049287,3,2011-09-01 09:17:53,2647,0,3984,1956,1
0049314,High Society,0049314,3,2015-12-28 18:02:25,6641,0,12995,1956,1
0049363,Indestructible Man,0049363,1,2013-07-26 03:01:43,4402,0,7836,1956,1
0049366,Invasion of the Body Snatchers,0049366,3,2011-09-21 00:37:08,2698,0,4060,1956,1
0049369,"Iron Petticoat, The",0049369,1,2010-09-07 15:28:26,1545,0,1850,1956,1
0049406,"Killing, The",0049406,1,2014-04-23 13:05:43,5414,0,9993,1956,1
0049408,"King and I, The",0049408,2,2010-07-04 23:05:49,1092,0,1138,1956,1
0049470,"Man Who Knew Too Much, The",0049470,2,2017-02-13 22:57:03,7442,0,14522,1956,1
0049471,"Man Who Never Was, The",0049471,3,2015-06-12 12:49:37,6308,1,12206,1956,1
0049640,"Proud and Profane, The",0049640,3,2013-06-15 06:38:28,4245,0,7405,1956,1
0049730,"Searchers, The",0049730,3,2009-06-26 04:23:26,357,,40,1956,1
0049782,Rodan,0049782,1,2015-01-26 00:57:11,6064,0,11542,1956,1
0049787,"Spanish Gardener, The",0049787,2,2010-09-09 08:54:19,1559,0,1869,1956,1
0049833,"Ten Commandments, The",0049833,2,2012-02-27 15:09:30,3076,0,4815,1956,1
0049902,Un condamne a mort s'est echappe ou Le vent souffle ou il veut,0049902,0,2014-06-09 13:02:02,5555,0,10343,1956,1
0049934,War and Peace,0049934,3,2011-11-21 20:10:05,2861,0,4351,1956,1
0050083,12 Angry Men,0050083,0,2009-03-24 15:18:12,302,,17,1957,1
0050105,An Affair to Remember,0050105,2,2012-07-17 04:42:36,3429,0,5529,1957,1
0050116,Amanecer en Puerta Oscura,0050116,3,2017-01-26 22:14:45,7420,0,14460,1957,1
0050212,"Bridge on the River Kwai, The",0050212,1,2012-01-11 03:32:06,2981,0,4616,1957,1
0050251,"Mysterians, The",0050251,3,2015-12-23 23:47:11,6624,0,12947,1957,1
0050307,Desk Set,0050307,3,2010-06-28 15:00:00,993,0,1014,1957,1
0050356,"Enemy Below, The",0050356,0,2011-02-05 06:25:43,1989,0,2656,1957,1
0050371,A Face in the Crowd,0050371,1,2013-09-09 17:19:32,4552,0,8193,1957,1
0050397,Fire Down Below,0050397,0,2011-06-21 03:06:10,2420,0,3560,1957,1
0050407,Forty Guns,0050407,2,2016-09-23 17:32:19,7136,0,14003,1957,1
0050419,Funny Face,0050419,3,2010-11-10 08:18:08,1747,0,2210,1957,1
0050490,"Heaven Knows, Mr. Allison",0050490,0,2011-06-22 06:59:54,2429,0,3575,1957,1
0050539,"Incredible Shrinking Man, The",0050539,0,2010-07-23 14:31:21,1291,0,1397,1957,1
0050585,Kanal,0050585,1,2010-12-01 00:00:21,1800,0,2294,1957,1
0050599,Kiss Them for Me,0050599,2,2016-08-02 16:43:09,7017,0,13793,1957,1
0050613,Throne of Blood,0050613,0,2016-09-30 13:27:12,7165,0,14045,1957,1
0050634,"Cranes Are Flying, The",0050634,3,2010-06-30 20:33:35,1015,0,1039,1957,1
0050706,Mon Oncle,0050706,3,2011-11-03 23:38:29,2823,0,4280,1958,1
0050766,Night of the Demon,0050766,3,2011-04-01 21:27:28,2160,1,2994,1957,1
0050783,Nights of Cabiria,0050783,3,2010-11-19 07:29:00,1765,0,2242,1957,1
0050792,Oedipus Rex,0050792,1,2013-03-18 23:56:38,3994,1,6817,1957,1
0050798,Old Yeller,0050798,1,2010-07-09 04:43:29,1121,0,1173,1957,1
0050825,Paths of Glory,0050825,0,2010-07-23 01:06:37,1274,0,1376,1957,1
0050861,"Prince and the Showgirl, The",0050861,3,2012-01-27 09:09:22,3007,0,4675,1957,1
0050933,Sayonara,0050933,2,2011-07-27 19:12:29,2578,0,3852,1957,1
0050976,"Seventh Seal, The",0050976,1,2011-02-15 14:15:32,2043,0,2729,1957,1
0050986,Smultronstället (Wild Strawberries),0050986,2,2011-07-12 13:02:57,2520,0,3744,1957,1
0050998,Sorority Girl,0050998,3,2013-09-12 19:17:27,4559,0,8220,1957,1
0051036,Sweet Smell of Success,0051036,1,2011-05-17 05:33:51,2301,0,3309,1957,1
0051051,Tammy and the Bachelor,0051051,3,2011-12-03 07:49:02,2895,0,4421,1957,1
0051077,Three Faces of Eve,0051077,0,2010-10-13 19:58:31,1660,0,2054,1957,1
0051114,"True Story of Jesse James, The",0051114,2,2010-06-20 16:32:56,965,0,975,1957,1
0051201,Witness for the Prosecution,0051201,1,2013-12-10 00:56:28,4933,0,8951,1957,1
0051207,"Wrong Man, The",0051207,1,2011-04-23 18:37:55,2219,0,3108,1956,1
0051372,Araya,0051372,3,2012-03-14 04:15:54,3119,0,4910,1959,1
0051383,Auntie Mame,0051383,3,2012-06-04 23:20:32,3321,0,5309,1958,1
0051422,Blood of the Vampire,0051422,0,2016-08-19 11:17:32,7054,0,13856,1958,1
0051459,Cat on a Hot Tin Roof,0051459,3,2015-01-03 13:52:40,6012,0,11435,1958,1
0051525,"Defiant Ones, The",0051525,0,2012-05-08 21:58:21,3238,0,5153,1958,1
0051554,Dracula (Horror of Dracula),0051554,3,2011-07-01 22:42:19,2476,0,3643,1958,1
0051579,Love Is My Profession,0051579,3,2016-06-17 22:21:50,6938,0,13649,1958,1
0051622,"Fly, The",0051622,2,2011-05-10 20:15:50,2281,1,3279,1958,1
0051658,Gigi,0051658,2,2012-02-19 01:46:08,3056,0,4773,1958,1
0051744,House on Haunted Hill,0051744,3,2013-07-20 13:26:49,4373,1,7783,1959,1
0051755,I Bury the Living,0051755,1,2013-07-28 15:16:41,4410,1,7863,1958,1
0051773,Indiscreet,0051773,3,2013-06-06 01:18:06,4211,0,7336,1958,1
0051776,"Inn of the Sixth Happiness, The",0051776,3,2013-11-17 21:34:08,4849,0,8793,1958,1
0051786,It! The Terror from Beyond Space,0051786,1,2017-05-12 14:18:50,7606,0,14844,1958,1
0051808,"Hidden Fortress, The",0051808,0,2016-09-23 13:12:30,7135,0,14001,1958,1
0051951,"Day the Sky Exploded, The",0051951,1,2011-06-05 23:54:46,2373,0,3453,1958,1
0051964,Mädchen in Uniform,0051964,3,2010-09-16 14:10:25,1572,0,1902,1958,1
0052151,Run Silent Run Deep,0052151,0,2010-07-27 04:41:56,1363,0,1484,1958,1
0052169,"Screaming Skull, The",0052169,2,2011-10-14 06:06:11,2763,0,4175,1958,1
0052182,Separate Tables,0052182,3,2013-02-22 17:17:53,3926,0,6642,1958,1
0052225,South Pacific,0052225,3,2013-03-12 05:55:25,3977,1,6769,1958,1
0052278,Teacher's Pet,0052278,1,2010-07-27 04:43:11,1364,0,1485,1958,1
0052311,Touch of Evil,0052311,1,2012-03-26 09:41:05,3146,0,4966,1958,1
0052357,Vertigo,0052357,1,2009-12-28 04:09:49,609,0,339,1958,1
0052365,"Vikings, The",0052365,2,2010-07-23 00:38:33,1255,0,1356,1958,1
0052374,"Fabulous World of Jules Verne, The",0052374,0,2010-07-23 00:17:21,1247,0,1348,1958,1
0052394,"Wild Women of Wongo, The",0052394,3,2011-08-01 13:13:19,2585,0,3870,1958,1
0052561,Anatomy of a Murder,0052561,1,2013-06-02 08:15:28,4199,0,7305,1959,1
0052572,Apur Sansar,0052572,0,2016-04-15 08:48:46,6833,0,13421,1959,1
0052602,"Bat, The",0052602,3,2013-08-30 17:50:24,4523,0,8137,1959,1
0052618,Ben-Hur,0052618,3,2010-08-01 13:10:23,1419,0,1588,1959,1
0052646,"Brain That Wouldn't Die, The",0052646,2,2011-10-14 05:56:17,2762,0,4174,1962,1
0052655,A Bucket of Blood,0052655,2,2013-04-16 00:00:32,4065,0,6974,1959,1
0052722,Darby O'Gill and the Little People,0052722,3,2010-09-22 05:35:34,1591,0,1934,1959,1
0052844,Ghost of Dragstrip Hollow,0052844,3,2013-04-13 22:05:18,4050,0,6954,1959,1
0052846,"Giant Gila Monster, The",0052846,3,2011-10-26 00:45:50,2796,0,4241,1959,1
0052847,Gidget,0052847,3,2015-08-15 02:47:16,6405,0,12462,1959,1
0052861,"Great War, The",0052861,1,2012-10-16 23:26:31,3608,0,5925,1959,1
0052918,Imitation of Life,0052918,3,2011-03-07 17:13:23,2095,0,2829,1959,1
0052948,Journey to the Center of the Earth,0052948,1,2010-07-23 00:39:52,1256,0,1357,1959,1
0053125,North By Northwest,0053125,1,2011-04-23 19:08:51,2228,0,3117,1959,1
0053131,"Nun's Story, The",0053131,3,2010-09-08 13:33:59,1555,0,1863,1959,1
0053134,Good Morning (Ohayô),0053134,3,2012-09-09 17:45:10,3525,0,5769,1959,1
0053198,"400 Blows, The",0053198,0,2008-12-11 08:38:55,236,,19,1959,1
0053221,Rio Bravo,0053221,1,2016-05-28 14:40:16,6901,0,13569,1959,1
0053291,Some Like It Hot,0053291,3,2011-02-14 12:34:21,2023,0,2705,1959,1
0053318,"Suddenly, Last Summer",0053318,3,2011-08-29 23:26:04,2645,0,3978,1959,1
0053363,"Tingler, The",0053363,1,2012-04-05 03:55:34,3166,0,5006,1959,1
0053388,Battle in Outer Space,0053388,1,2015-12-31 01:24:49,6645,0,13011,1959,1
0053428,Come Dance with Me!,0053428,3,2012-07-23 17:32:48,3442,0,5575,1959,1
0053459,Les yeux sans visage,0053459,3,2010-01-20 23:46:02,656,0,396,1960,1
0053472,A bout de souffle,0053472,0,2010-05-13 19:51:40,799,0,608,1960,1
0053579,Late Autumn,0053579,3,2011-10-30 06:06:57,2808,0,4255,1960,1
0053604,"Apartment, The",0053604,3,2011-02-05 22:30:48,1995,0,2664,1960,1
0053719,"City of the Dead, The",0053719,3,2012-10-29 02:23:20,3634,0,5989,1960,1
0053779,La Dolce Vita,0053779,2,2015-01-27 03:45:48,6080,0,11563,1960,1
0053804,Exodus,0053804,3,2011-03-27 06:11:11,2144,0,2952,1960,1
0053946,Inherit the Wind,0053946,3,2010-10-31 23:53:18,1712,1,2157,1960,1
0053976,"Virgin Spring, The",0053976,3,2014-04-10 18:04:35,5380,0,9896,1960,1
0054022,Let's Make Love,0054022,2,2011-07-18 04:24:13,2546,1,3790,1960,1
0054047,"Magnificent Seven, The",0054047,0,2010-07-24 02:27:20,1295,0,1406,1960,1
0054049,Make Mine Mink,0054049,3,2013-05-01 09:30:37,4117,0,7078,1960,1
0054067,Black Sunday,0054067,3,2012-05-26 01:59:10,3286,1,5261,1960,1
0054130,La Notte,0054130,3,2015-02-06 01:50:13,6102,0,11598,1961,1
0054167,Peeping Tom,0054167,2,2016-03-26 07:55:34,6796,0,13340,1960,1
0054215,Psycho,0054215,1,2011-02-15 12:53:30,2039,0,2725,1960,1
0054248,Rocco and His Brothers,0054248,2,2012-01-13 16:11:04,2988,0,4628,1960,1
0054331,Spartacus,0054331,2,2010-07-23 01:05:37,1273,0,1375,1960,1
0054333,Body in the Web,0054333,3,2011-12-22 22:14:23,2950,0,4531,1960,1
0054343,"Story of Ruth, The",0054343,3,2014-02-01 16:03:34,5123,0,9338,1960,1
0054377,Testament of Orpheus,0054377,1,2012-05-29 10:15:16,3294,0,5274,1960,1
0054407,Le Trou,0054407,0,2016-04-26 03:15:12,6854,0,13461,1960,1
0054452,"Truth, The",0054452,3,2014-02-01 15:37:34,5122,0,9337,1960,1
0054462,"Wasp Woman, The",0054462,3,2013-07-25 06:04:17,4392,1,7821,1959,1
0054469,Where the Boys Are,0054469,2,2009-12-27 21:53:13,590,0,320,1960,1
0054476,Wild River,0054476,3,2015-03-13 21:00:43,6146,0,11743,1960,1
0054494,Zazie dans le metro,0054494,3,2013-01-14 16:44:43,3827,0,6394,1960,1
0054673,"Beast of Yucca Flats, The",0054673,0,2011-10-26 00:49:32,2797,0,4242,1961,1
0054692,Blue Hawaii,0054692,3,2012-12-06 21:21:07,3724,0,6176,1961,1
0054698,Breakfast at Tiffany's,0054698,2,2010-07-18 08:27:20,1191,0,1266,1961,1
0054743,"Children's Hour, The",0054743,3,2010-05-27 02:41:19,833,0,688,1961,1
0054749,La ciociara,0054749,3,2016-03-01 18:37:43,6756,0,13259,1960,1
0054777,"Curse of the Werewolf, The",0054777,3,2016-12-21 15:38:11,7344,1,14337,1961,1
0054847,El Cid,0054847,1,2010-09-07 16:10:12,1546,0,1851,1961,1
0054949,War of the Buttons,0054949,0,2016-12-04 02:09:44,7312,0,14279,1962,1
0054953,"Guns of Navarone, The",0054953,1,2016-01-05 07:33:08,6653,0,13031,1961,1
0054997,"Hustler, The",0054997,0,2011-02-03 23:27:06,1958,0,2622,1961,1
0055032,Jules and Jim,0055032,1,2008-12-11 09:16:47,237,,19,1962,1
0055184,"Misfits, The",0055184,2,2010-07-27 04:52:00,1365,0,1486,1961,1
0055198,Mothra,0055198,0,2015-09-13 03:05:42,6448,0,12561,1961,1
0055207,Mysterious Island,0055207,0,2010-07-23 00:44:31,1257,0,1358,1961,1
0055254,One Hundred and One Dalmatians,0055254,3,2010-07-13 19:26:56,1171,0,1231,1961,1
0055256,"One, Two, Three",0055256,3,2011-06-12 00:28:02,2392,1,3493,1961,1
0055277,"Parent Trap, The",0055277,3,2013-09-14 18:49:24,4580,0,8258,1961,1
0055278,Paris Blues,0055278,3,2013-02-19 09:37:34,3909,1,6617,1961,1
0055294,"Phantom Planet, The",0055294,0,2010-07-23 14:32:07,1292,0,1398,1961,1
0055353,A Raisin in the Sun,0055353,3,2014-05-18 03:49:51,5485,0,10157,1961,1
0055458,Snow White and the Three Stooges,0055458,3,2014-10-01 02:04:48,5797,0,10945,1961,1
0055471,Splendor in the Grass,0055471,3,2013-06-02 04:39:47,4198,0,7304,1961,1
0055506,A Taste of Honey,0055506,3,2013-09-02 00:21:51,4539,0,8160,1961,1
0055571,Underworld U.S.A.,0055571,3,2010-07-11 22:00:52,1165,0,1223,1961,1
0055572,A Woman Is a Woman,0055572,0,2015-11-10 19:09:38,6539,0,12782,1961,1
0055614,West Side Story,0055614,3,2011-07-20 17:58:52,2560,0,3806,1961,1
0055630,Yojimbo,0055630,1,2010-01-22 01:59:53,660,0,408,1961,1
0055728,Advise & Consent,0055728,3,2016-09-28 21:05:03,7159,0,14037,1962,1
0055763,Atraco a las tres,0055763,1,2017-04-24 13:10:08,7588,0,14801,1962,1
0055805,Boccaccio ´70,0055805,2,2016-09-16 10:36:35,7120,0,13974,1962,1
0055830,Carnival of Souls,0055830,3,2011-08-04 17:18:04,2591,0,3883,1962,1
0055832,Cartouche,0055832,1,2017-02-12 18:36:27,7440,0,14517,1962,1
0055852,Cleo from 5 to 7,0055852,3,2011-08-14 00:44:09,2609,0,3917,1962,1
0055894,"Day of the Triffids, The",0055894,3,2010-09-28 22:00:35,1613,0,1973,1962,1
0055902,"Devil's Hand, The",0055902,2,2013-07-28 09:56:35,4407,0,7858,1962,1
0055910,Les dimanches de Ville d'Avray,0055910,3,2013-08-17 12:34:37,4481,0,8044,1962,1
0055928,Dr. No,0055928,1,2013-09-27 12:56:34,4637,0,8369,1962,1
0056048,Gypsy,0056048,3,2012-02-29 00:23:17,3079,0,4832,1962,1
0056059,Hatari!,0056059,3,2015-06-23 11:40:45,6332,1,12275,1962,1
0056111,Ivanovo detstvo,0056111,1,2010-02-28 12:37:43,691,0,452,1962,1
0056119,La Jetee,0056119,0,2013-01-20 19:58:26,3845,0,6442,1962,1
0056142,King Kong vs. Godzilla,0056142,3,2015-02-19 00:06:11,6119,0,11650,1962,1
0056172,Lawrence of Arabia,0056172,0,2010-07-03 14:58:49,1042,0,1084,1962,1
0056193,Lolita,0056193,3,2010-07-23 01:14:03,1279,0,1381,1962,1
0056194,"Loneliness of the Long Distance Runner, The",0056194,3,2015-10-26 15:21:11,6516,1,12717,1962,1
0056218,"Manchurian Candidate, The",0056218,1,2011-02-03 21:28:37,1954,0,2618,1962,1
0056241,"Miracle Worker, The",0056241,3,2014-08-10 05:10:12,5686,0,10669,1962,1
0056262,"Music Man, The",0056262,3,2011-06-22 07:04:00,2430,0,3576,1962,1
0056443,Sanjuro,0056443,3,2015-01-13 16:54:04,6044,1,11497,1963,1
0056575,That Touch of Mink,0056575,2,2013-08-28 01:05:54,4513,0,8117,1962,1
0056592,To Kill a Mockingbird,0056592,3,2010-07-07 18:20:21,1108,0,1158,1962,1
0056687,What Ever Happened to Baby Jane?,0056687,3,2010-07-24 18:38:37,1298,0,1410,1962,1
0056800,55 Days at Peking,0056800,1,2010-07-23 00:24:35,1251,0,1352,1963,1
0056801,8½,0056801,3,2014-10-17 03:32:24,5846,0,11048,1963,1
0056860,Beach Party,0056860,2,2011-07-18 23:50:28,2549,0,3793,1963,1
0056869,"Birds, The",0056869,3,2011-05-25 22:54:58,2345,0,3385,1963,1
0056884,"Bakery Girl of Monceau, The",0056884,1,2010-10-04 06:37:46,1635,0,2008,1963,1
0056891,Bye Bye Birdie,0056891,3,2012-12-06 21:35:20,3725,0,6177,1963,1
0056912,Carry on Cabby,0056912,3,2011-10-19 08:48:11,2772,0,4193,1963,1
0056923,Charade,0056923,2,2011-02-05 01:05:38,1984,0,2650,1963,1
0056983,Dementia 13,0056983,3,2013-07-25 14:42:20,4394,0,7825,1963,1
0057012,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,0057012,0,2009-06-14 15:44:02,341,,1,1964,1
0057076,From Russia with Love,0057076,3,2013-10-03 11:48:48,4659,0,8407,1963,1
0057115,"Great Escape, The",0057115,0,2008-10-23 15:45:51,202,,17,1963,1
0057129,"Haunting, The",0057129,3,2013-06-04 17:23:05,4206,0,7324,1963,1
0057187,Irma la Douce,0057187,2,2009-12-28 04:04:58,607,0,337,1963,1
0057215,Atragon,0057215,0,2015-09-23 01:18:25,6460,0,12589,1963,1
0057226,"Kiss of the Vampire, The",0057226,2,2013-07-11 16:43:01,4331,1,7680,1963,1
0057239,"L-Shaped Room, The",0057239,3,2013-01-14 17:04:58,3829,0,6396,1962,1
0057259,"Long Ships, The",0057259,1,2010-07-23 00:36:34,1254,0,1355,1964,1
0057261,Lord of the Flies,0057261,0,2011-02-05 07:14:07,1990,0,2657,1963,1
0057329,"Move Over, Darling",0057329,3,2014-03-05 03:43:06,5230,0,9579,1963,1
0057345,Contempt,0057345,1,2012-06-26 15:41:30,3382,0,5425,1963,1
0057413,"Pink Panther, The",0057413,1,2009-12-31 23:05:19,629,0,362,1963,1
0057427,"Trial, The",0057427,1,2011-04-11 08:52:36,2183,0,3050,1962,1
0057449,"Raven, The",0057449,1,2014-08-23 02:51:37,5712,0,10727,1963,1
0057490,"Servant, The",0057490,3,2016-07-21 20:17:12,6988,1,13745,1963,1
0057495,Shock Corridor,0057495,0,2011-03-09 07:00:38,2102,0,2851,1963,1
0057541,Summer Holiday,0057541,3,2015-10-26 14:50:32,6514,0,12715,1963,1
0057542,Summer Magic,0057542,3,2013-07-13 15:37:26,4347,0,7706,1963,1
0057546,"Sword in the Stone, The",0057546,0,2013-01-07 05:18:51,3810,0,6345,1963,1
0057590,Tom Jones,0057590,3,2013-08-20 09:17:49,4494,0,8070,1963,1
0057611,"Silence, The",0057611,3,2014-04-10 17:56:52,5379,0,9895,1963,1
0057643,El verdugo,0057643,1,2015-06-20 17:51:30,6327,0,12261,1963,1
0057693,X: The Man with the X-Ray Eyes,0057693,1,2013-12-15 20:25:17,4951,0,8980,1963,1
0057840,"Americanization of Emily, The",0057840,2,2011-06-10 21:34:35,2385,0,3484,1964,1
0057869,Band of Outsiders,0057869,3,2011-04-22 10:16:12,2204,0,3092,1964,1
0057878,Bedtime Story,0057878,1,2010-07-23 00:23:21,1250,0,1351,1964,1
0057887,Bikini Beach,0057887,2,2011-07-20 04:51:42,2557,0,3803,1964,1
0057918,Carry On Cleo,0057918,1,2013-10-07 02:22:37,4673,0,8436,1964,1
0057933,"Chalk Garden, The",0057933,3,2016-10-16 14:51:35,7202,0,14107,1964,1
0057997,Dead Ringer,0057997,3,2013-06-23 05:28:39,4263,0,7465,1964,1
0058003,Red Desert,0058003,3,2015-02-16 17:06:56,6112,0,11638,1964,1
0058083,Fail-Safe,0058083,1,2012-10-02 01:05:37,3569,0,5852,1964,1
0058100,First Men in the Moon,0058100,1,2010-07-23 00:30:51,1253,0,1354,1964,1
0058139,Der Geteilte Himmel (Divided Heaven),0058139,2,2010-07-20 00:19:49,1198,0,1278,1964,1
0058150,Goldfinger,0058150,1,2013-01-06 03:12:25,3807,0,6338,1964,1
0058164,"Guest, The",0058164,0,2014-09-21 18:05:07,5772,0,10873,1963,1
0058182,A Hard Day's Night,0058182,1,2011-02-03 23:10:00,1957,0,2621,1964,1
0058213,"Hush...Hush, Sweet Charlotte",0058213,3,2011-12-13 01:22:07,2922,0,4475,1964,1
0058263,King & Country,0058263,0,2012-05-12 12:47:30,3250,0,5175,1964,1
0058324,Man's Favorite Sport?,0058324,2,2011-09-29 18:33:58,2720,0,4094,1964,1
0058329,Marnie,0058329,3,2015-08-13 01:39:48,6402,0,12453,1964,1
0058331,Mary Poppins,0058331,3,2010-03-15 19:54:22,701,0,465,1964,1
0058335,Marriage Italian Style,0058335,3,2011-10-15 19:43:50,2766,0,4180,1964,1
0058379,Godzilla vs. The Thing (Mothra vs. Godzilla),0058379,1,2015-06-20 17:27:12,6326,1,12260,1964,1
0058385,My Fair Lady,0058385,3,2010-10-23 05:40:12,1688,0,2101,1964,1
0058409,Nikutai no mon [Gate of Flesh],0058409,3,2016-11-02 13:11:34,7236,0,14158,1964,1
0058430,Onibaba,0058430,0,2012-06-07 04:51:24,3327,0,5318,1964,1
0058450,"Umbrellas of Cherbourg, The",0058450,3,2013-07-16 18:39:28,4356,0,7739,1964,1
0058461,Per un pugno di dollari (A Fisful of Dollars),0058461,1,2010-01-23 08:32:17,661,0,410,1964,1
0058536,"Rudolph, the Red-Nosed Reindeer",0058536,1,2010-09-23 01:07:23,1600,0,1947,1964,1
0058544,"Ghidorah, the Three-Headed Monster",0058544,3,2013-08-23 19:38:06,4501,0,8089,1964,1
0058586,A shot in the dark,0058586,1,2015-11-23 10:22:07,6555,0,12814,1964,1
0058625,Woman in the Dunes,0058625,0,2010-07-21 04:40:02,1212,0,1298,1964,1
0058658,Code Name: Tiger,0058658,3,2013-08-17 12:38:42,4484,0,8047,1964,1
0058695,La tia Tula,0058695,3,2017-01-16 14:48:05,7399,0,14433,1964,1
0058700,"Last Man on Earth, The",0058700,1,2013-07-21 01:13:02,4376,0,7788,1964,1
0058708,"Unsinkable Molly Brown, The",0058708,3,2014-05-30 02:25:40,5513,0,10246,1964,1
0058715,"Gospel According to St. Matthew, The",0058715,1,2012-04-16 16:06:09,3189,0,5054,1964,1
0058725,Viva Las Vegas,0058725,0,2012-11-20 20:19:51,3680,0,6099,1964,1
0058777,Zulu,0058777,0,2011-07-05 00:56:37,2483,0,3660,1964,1
0058898,Alphaville,0058898,1,2012-03-13 21:25:43,3116,0,4907,1965,1
0058946,La battaglia di Algeri,0058946,1,2010-01-22 01:40:20,658,0,406,1966,1
0058997,Bunny Lake Is Missing,0058997,3,2014-12-03 07:57:16,5960,0,11311,1965,1
0059020,Cathy Come Home,0059020,3,2011-11-20 12:58:52,2855,0,4344,1966,1
0059080,Daikaiju Gamera,0059080,2,2015-08-30 03:28:24,6428,0,12516,1965,1
0059084,Darling,0059084,3,2012-10-24 02:56:23,3623,0,5968,1965,1
0059100,Devils of Darkness,0059100,3,2016-09-09 08:32:32,7109,0,13952,1965,1
0059113,Doctor Zhivago,0059113,1,2014-10-29 19:21:08,5884,0,11132,1965,1
0059127,Dracula: Prince of Darkness,0059127,1,2016-08-09 07:20:25,7033,0,13814,1966,1
0059170,"Faster, Pussycat! Kill! Kill!",0059170,3,2012-11-03 09:46:18,3649,0,6024,1965,1
0059183,"Flight of the Phoenix, The",0059183,0,2012-07-17 05:22:54,3432,0,5532,1965,1
0059205,Frankenstein Conquers the World,0059205,1,2016-01-05 00:49:23,6652,0,13029,1965,1
0059212,Gulliver's Travels Beyond the Moon,0059212,0,2011-02-26 23:33:09,2075,0,2789,1965,1
0059229,Juliet of the Spirits,0059229,3,2011-04-12 21:38:32,2186,1,3059,1965,1
0059314,Inside Daisy Clover,0059314,3,2012-09-24 04:25:52,3543,0,5811,1965,1
0059319,"Ipcress File, The",0059319,1,2011-07-23 22:20:12,2569,0,3824,1965,1
0059346,Invasion of Astro-Monster,0059346,2,2015-07-08 03:16:30,6346,0,12317,1965,1
0059348,Kapurush,0059348,0,2016-05-28 10:35:28,6899,0,13567,1965,1
0059557,Our Man Flint,0059557,2,2011-11-17 09:09:51,2845,0,4330,1966,1
0059578,For a Few Dollars More,0059578,0,2012-07-10 08:11:46,3413,0,5498,1965,1
0059607,"Pleasure Girls, The",0059607,3,2013-01-14 16:54:41,3828,0,6395,1965,1
0059616,"Trial of Joan of Arc, The",0059616,0,2012-04-04 00:35:10,3160,0,4998,1962,1
0059646,Repulsion,0059646,3,2011-05-25 06:06:40,2338,0,3377,1965,1
0059742,"Sound of Music, The",0059742,3,2009-12-28 03:50:29,601,0,331,1965,1
0059764,A Study in Terror,0059764,3,2011-06-11 20:22:11,2389,1,3489,1965,1
0059793,That Darn Cat!,0059793,3,2011-07-05 05:08:53,2487,0,3665,1965,1
0059800,Thunderball,0059800,2,2011-06-11 21:09:51,2390,0,3490,1965,1
0059825,"Train, The",0059825,1,2013-08-21 07:12:38,4497,0,8074,1964,1
0059956,Viva Maria!,0059956,3,2012-08-16 18:24:14,3475,0,5668,1965,1
0060086,Alfie,0060086,1,2011-03-26 05:56:05,2140,0,2939,1966,1
0060107,Andrei Rublev,0060107,1,2012-12-03 11:47:58,3706,0,6155,1966,1
0060125,L'armata Brancaleone,0060125,1,2013-09-14 11:04:15,4575,0,8251,1966,1
0060165,A Big Hand for the Little Lady,0060165,1,2011-09-20 15:42:12,2696,0,4054,1966,1
0060174,Blood Bath,0060174,2,2013-04-14 21:40:48,4057,0,6965,1966,1
0060176,Blow-Up,0060176,0,2011-08-19 01:53:29,2626,0,3938,1966,1
0060196,"Good, the Bad and the Ugly, The",0060196,0,2010-11-02 05:35:40,1725,0,2171,1966,1
0060223,La caza,0060223,0,2017-01-23 15:07:25,7415,0,14454,1966,1
0060315,Django,0060315,0,2012-11-15 04:36:51,3671,0,6075,1966,1
0060390,Fahrenheit 451,0060390,3,2012-03-03 23:21:53,3087,0,4849,1966,1
0060397,Fantastic Voyage,0060397,0,2011-08-18 06:55:59,2625,0,3937,1966,1
0060424,"Fortune Cookie, The",0060424,1,2011-11-13 05:01:57,2838,0,4313,1966,1
0060446,Daikaiju ketto: Gamera tai Barugon,0060446,0,2016-01-10 22:52:36,6659,0,13054,1966,1
0060453,Georgy Girl,0060453,3,2012-03-25 00:31:27,3143,1,4958,1966,1
0060464,"Godzilla vs. the Sea Monster (Ebirah, Horror of the Deep)",0060464,1,2015-07-19 00:33:03,6362,0,12354,1966,1
0060479,"Group, The",0060479,3,2011-09-23 02:33:52,2701,0,4065,1966,1
0060522,How to Steal a Million,0060522,0,2013-11-21 16:47:29,4862,0,8816,1966,1
0060558,Jesse James Meets Frankenstein's Daughter,0060558,1,2011-10-28 04:54:26,2804,0,4249,1966,1
0060665,A Man for All Seasons,0060665,1,2012-10-06 20:09:22,3576,0,5870,1966,1
0060758,Black Girl,0060758,3,2016-05-25 02:40:13,6897,0,13564,1966,1
0060782,One Million Years B.C.,0060782,1,2016-08-05 02:54:21,7021,0,13798,1966,1
0060827,Persona,0060827,3,2009-12-27 21:51:35,589,0,319,1966,1
0060841,"Plague of the Zombies, The",0060841,3,2016-08-08 15:23:41,7030,1,13811,1966,1
0060934,"Sand Pebbles, The",0060934,1,2012-03-05 07:51:58,3092,0,4856,1966,1
0060959,Daisies,0060959,3,2011-02-25 04:17:52,2069,0,2781,1966,1
0061101,Tokyo Drifter,0061101,1,2016-11-03 14:21:24,7239,0,14163,1966,1
0061107,Torn Curtain,0061107,3,2014-04-12 22:18:53,5391,1,9931,1966,1
0061122,"Trouble with Angels, The",0061122,3,2011-07-29 00:18:16,2582,0,3863,1966,1
0061184,Who's Afraid of Virginia Woolf?,0061184,1,2011-10-26 00:55:39,2798,0,4243,1966,1
0061369,Asterix the Gaul (Asterix le Gaulois),0061369,0,2013-12-10 20:26:44,4937,0,8957,1967,1
0061391,Bedazzled,0061391,3,2012-08-28 02:12:11,3500,0,5726,1967,1
0061395,Belle de Jour,0061395,3,2012-03-02 16:36:08,3085,0,4844,1967,1
0061398,Berserk,0061398,3,2012-12-06 01:08:39,3712,0,6164,1967,1
0061418,Bonnie and Clyde,0061418,3,2011-03-01 20:23:48,2083,0,2808,1967,1
0061452,Casino Royale,0061452,2,2011-09-08 07:51:54,2664,0,4011,1967,1
0061495,La collectionneuse,0061495,1,2013-08-17 12:20:15,4479,0,8042,1967,1
0061512,Cool Hand Luke,0061512,1,2009-03-24 15:12:42,301,,17,1967,1
0061578,"Dirty Dozen, The",0061578,0,2011-12-30 03:28:37,2966,1,4576,1967,1
0061620,Elvira Madigan,0061620,0,2011-12-15 06:32:55,2928,0,4485,1967,1
0061655,"Fearless Vampire Killers, The",0061655,1,2013-07-07 21:41:54,4316,0,7637,1967,1
0061695,Daikaiju kuchusen: Gamera tai Gyaosu,0061695,0,2016-02-25 03:10:30,6744,0,13240,1967,1
0061722,"Graduate, The",0061722,2,2009-12-28 22:24:40,616,0,347,1967,1
0061735,Guess Who's Coming to Dinner,0061735,3,2014-03-02 12:49:36,5222,1,9564,1967,1
0061747,Hang 'Em High,0061747,2,2012-01-02 08:42:13,2969,0,4586,1968,1
0061811,In the Heat of the Night,0061811,1,2012-05-08 23:31:40,3241,0,5157,1967,1
0061834,I Am Curious (Yellow),0061834,3,2011-11-06 01:30:13,2829,0,4289,1967,1
0061852,"Jungle Book, The",0061852,1,2009-09-07 20:10:31,493,0,184,1967,1
0061856,Son of Godzilla,0061856,0,2015-07-29 03:00:56,6374,0,12401,1967,1
0061879,End of August at the Hotel Ozone,0061879,3,2011-05-18 19:19:02,2308,0,3320,1966,1
0061882,Koroshi no rakuin [Branded to Kill],0061882,1,2016-11-04 13:32:54,7242,0,14168,1967,1
0061955,"Bride Wore Black, The",0061955,3,2013-02-06 22:16:02,3878,0,6538,1968,1
0062113,Peppermint Frappe,0062113,1,2017-03-14 12:57:02,7513,0,14670,1967,1
0062136,Playtime,0062136,3,2013-08-29 03:54:13,4519,0,8129,1967,1
0062229,Le Samourai,0062229,1,2013-05-20 09:04:34,4146,0,7199,1967,1
0062281,Smashing Time,0062281,3,2014-04-11 09:44:45,5384,0,9906,1967,1
0062362,Thoroughly Modern Millie,0062362,3,2011-06-22 07:07:47,2431,0,3577,1967,1
0062407,Two for the Road,0062407,3,2012-10-15 18:06:14,3596,0,5901,1967,1
0062411,Uchu daikaiju Girara,0062411,3,2016-02-09 02:19:34,6714,0,13187,1967,1
0062426,Up the Junction,0062426,3,2013-01-14 16:38:39,3826,0,6393,1968,1
0062430,Valley of the Dolls,0062430,3,2012-02-24 07:04:51,3070,0,4802,1967,1
0062467,Wait Until Dark,0062467,3,2012-10-15 18:09:38,3597,0,5902,1967,1
0062502,Woman Times Seven,0062502,3,2014-02-15 07:04:29,5171,0,9453,1967,1
0062512,You Only Live Twice,0062512,1,2011-06-15 01:26:01,2400,0,3516,1967,1
0062622,2001: A Space Odyssey,0062622,0,2010-06-08 09:14:13,919,0,842,1968,1
0062687,Asterix et Cleopatre,0062687,0,2013-03-02 00:49:45,3947,0,6700,1968,1
0062711,Barbarella,0062711,3,2011-03-31 23:44:59,2157,0,2985,1968,1
0062765,Bullitt,0062765,1,2016-09-19 03:47:31,7123,0,13981,1968,1
0062782,Carry On... Up the Khyber,0062782,3,2012-10-24 20:29:32,3626,1,5972,1968,1
0062794,Charly,0062794,2,2010-04-26 15:29:28,764,0,557,1968,1
0062851,Daimajin,0062851,1,2015-09-05 21:39:40,6433,0,12529,1966,1
0062852,Return of Daimajin,0062852,0,2015-09-28 02:19:08,6471,0,12608,1966,1
0062853,Wrath of Daimajin,0062853,0,2015-11-15 14:21:51,6541,0,12793,1966,1
0062873,"Young Girls of Rochefort, The",0062873,3,2017-04-23 18:21:01,7586,0,14799,1967,1
0062990,"Fox, The",0062990,3,2013-10-20 11:03:45,4722,0,8514,1967,1
0062994,Funny Girl,0062994,3,2013-04-11 18:27:43,4045,0,6938,1968,1
0063000,Gamera vs. Viras,0063000,2,2016-03-29 01:51:55,6807,0,13353,1968,1
0063010,Il giorno della civetta,0063010,0,2015-09-14 08:35:54,6452,0,12568,1968,1
0063049,Head,0063049,0,2011-12-13 06:57:54,2925,0,4478,1968,1
0063060,Hellfighters,0063060,2,2011-03-10 02:07:21,2104,0,2856,1968,1
0063172,Destroy All Monsters,0063172,0,2015-08-07 02:33:11,6394,0,12432,1968,1
0063185,"Killing of Sister George, The",0063185,3,2014-04-11 09:57:36,5385,0,9907,1968,1