forked from Robinlovelace/Creating-maps-in-R
-
Notifications
You must be signed in to change notification settings - Fork 0
/
movie.txt
4848 lines (4848 loc) · 481 KB
/
movie.txt
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
"Title","Year","Length","Budget","Rating","Votes","r1","r2","r3","r4","r5","r6","r7","r8","r9","r10","mpaa","Action","Animation","Comedy","Drama","Documentary","Romance","Short"
"A.k.a. Cassius Clay",1970,85,-1,5.7,43,4.5,0,4.5,14.5,4.5,24.5,14.5,14.5,4.5,14.5,"PG",0,0,0,0,1,0,0
"AKA",2002,123,-1,6,335,24.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"AVP: Alien Vs. Predator",2004,102,4.5e+07,5.4,14651,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Abandon",2002,99,2.5e+07,4.7,2364,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Abendland",1999,146,-1,5,46,14.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Aberration",1997,93,-1,4.8,149,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Abilene",1999,104,-1,4.9,42,0,4.5,4.5,4.5,14.5,14.5,4.5,4.5,24.5,24.5,"PG",0,0,0,1,0,0,0
"Ablaze",2001,97,-1,3.6,98,24.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Abominable Dr. Phibes, The",1971,94,-1,6.7,1547,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"PG-13",0,0,0,0,0,0,0
"About Adam",2000,105,-1,6.4,1303,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"About Schmidt",2002,125,3e+07,7.3,23279,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,1,1,0,0,0
"About a Boy",2002,101,2.7e+07,7.5,18318,4.5,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,14.5,"PG-13",0,0,1,1,0,0,0
"Above Suspicion",1995,95,-1,6.4,394,4.5,4.5,4.5,4.5,14.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Above Suspicion",2000,92,-1,5.8,128,4.5,4.5,4.5,4.5,14.5,34.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Abre los ojos",1997,117,-1,7.8,8087,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,1,0
"Absolon",2003,96,8e+06,4.1,548,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Absolute Power",1997,121,5e+07,6.4,7995,4.5,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Abuelo, El",1998,147,-1,7.7,423,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG",0,0,0,1,0,0,0
"Abyss, The",1989,171,69500000,7.4,21987,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",1,0,0,1,0,0,0
"Access Denied",1997,95,-1,3.8,43,14.5,14.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"According to Spencer",2001,95,-1,4.1,124,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,1,0,0,1,0
"Ace Ventura: Pet Detective",1994,86,1.2e+07,6.2,20705,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Ace Ventura: When Nature Calls",1995,90,3e+07,4.9,15161,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Achilles' Love",2000,90,-1,4.4,20,34.5,4.5,14.5,4.5,4.5,14.5,0,4.5,14.5,14.5,"PG",0,0,1,0,0,1,0
"Action League Now!!: Rock-A-Big-Baby",1997,5,-1,2.8,26,14.5,4.5,4.5,0,0,14.5,4.5,4.5,4.5,44.5,"PG",0,1,1,0,0,0,1
"Active Stealth",1999,99,-1,3,146,34.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Actors, The",2003,91,-1,5.6,211,4.5,4.5,4.5,4.5,14.5,14.5,24.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Acts of Worship",2001,94,-1,6.2,43,4.5,0,4.5,4.5,4.5,4.5,14.5,14.5,14.5,34.5,"R",0,0,0,1,0,0,0
"Adam & Evil",2004,90,-1,3.4,81,24.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,0,14.5,"R",0,0,0,0,0,0,0
"Adam at 6 A.M.",1970,100,-1,5.8,61,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Adaptation.",2002,114,1.9e+07,7.9,25140,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,1,1,0,0,0
"Addicted to Love",1997,100,-1,6,5445,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Address Unknown",1997,92,-1,4.9,80,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG",0,0,0,0,0,0,0
"Adrenalin: Fear the Rush",1996,88,-1,3.5,664,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Adventures of Pluto Nash, The",2002,95,1e+08,3.9,2543,24.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Adventures of Robin Hood, The",1938,102,1900000,8.2,7359,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG",1,0,0,0,0,1,0
"Adventures of Rocky & Bullwinkle, The",2000,88,7.6e+07,4.3,4815,14.5,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG",0,1,1,0,0,0,0
"Adventures of Sebastian Cole, The",1998,99,-1,6.5,579,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Affair of the Necklace, The",2001,118,-1,6,963,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Affliction",1997,114,6e+06,6.9,3679,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"After Alice",1999,100,-1,5.3,446,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"After Image",2001,92,1200000,3.9,60,24.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,"R",0,0,0,0,0,0,0
"After the Sunset",2004,97,5.8e+07,6,3431,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Afterglow",1997,113,-1,6.1,1169,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Against the Ropes",2004,111,-1,5.2,1058,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Agent Cody Banks",2003,102,2.6e+07,5.5,2655,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG",1,0,1,0,0,0,0
"Agent Cody Banks 2: Destination London",2004,100,2.6e+07,3.8,919,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG",1,0,1,0,0,0,0
"Agnes Browne",1999,92,-1,6,572,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Agronomist, The",2003,90,-1,7.3,146,4.5,4.5,0,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG-13",0,0,0,0,1,0,0
"Ai no borei",1978,104,-1,6.3,230,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Aileen Wuornos: The Selling of a Serial Killer",1992,87,-1,7,180,4.5,0,0,4.5,4.5,14.5,34.5,14.5,14.5,4.5,"R",0,0,0,0,1,0,0
"Aileen: Life and Death of a Serial Killer",2003,89,-1,7.2,430,4.5,0,4.5,4.5,4.5,14.5,34.5,34.5,4.5,4.5,"R",0,0,0,0,1,0,0
"Air Bud",1997,98,3e+06,4.7,1276,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG",0,0,1,1,0,0,0
"Air Force One",1997,124,8.5e+07,6.3,26156,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Air Marshal",2003,90,5e+05,3,81,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,"R",1,0,0,0,0,0,0
"Airheads",1994,92,-1,5.5,6105,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Airspeed",1998,93,-1,3,386,44.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG",1,0,0,1,0,0,0
"Akira",1988,124,-1,7.7,14840,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",1,1,0,1,0,0,0
"Alamo, The",2004,137,9.5e+07,5.9,3060,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Alan Smithee Film: Burn Hollywood Burn, An",1997,86,1e+07,3.2,1262,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Alaska",1996,109,-1,5.6,891,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,14.5,"PG",0,0,0,0,0,0,0
"Albino Alligator",1996,97,5e+06,6,2077,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Alex & Emma",2003,96,-1,5.3,2176,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Alex in Wonder",2001,96,-1,6.3,30,4.5,0,4.5,4.5,14.5,24.5,24.5,24.5,0,14.5,"R",0,0,0,1,0,0,0
"Alexander",2004,175,1.5e+08,5.5,11254,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Alferd Packer: The Musical",1996,97,125000,7,2298,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,34.5,"R",0,0,1,0,0,1,0
"Alfie",2004,103,6e+07,6,3492,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Ali",2001,165,1.07e+08,6.4,9294,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Ali G Indahouse",2002,88,-1,5.8,4496,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Alice et Martin",1998,124,-1,6.4,604,4.5,4.5,4.5,4.5,4.5,24.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Alien",1979,116,1.1e+07,8.3,63400,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,0,0,0,0
"Alien Abduction",2005,90,6e+05,1.9,73,34.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Alien Escape",1997,85,1e+06,5.6,23,14.5,0,4.5,4.5,0,14.5,14.5,0,14.5,34.5,"R",0,0,0,0,0,0,0
"Alien Hunter",2003,92,-1,5,563,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Alien: Resurrection",1997,116,7e+07,6,24358,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Aliens",1986,154,18500000,8.3,63961,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",1,0,0,0,0,0,0
"Aliens in the Wild Wild West",1999,90,-1,2.9,58,34.5,14.5,14.5,14.5,4.5,4.5,4.5,0,0,4.5,"PG",1,0,0,0,0,0,0
"Alive",2004,85,-1,3.9,32,24.5,4.5,14.5,4.5,4.5,4.5,4.5,14.5,0,4.5,"R",0,0,1,1,0,0,0
"All About You",2001,100,-1,6.2,30,4.5,0,0,0,4.5,4.5,4.5,34.5,4.5,44.5,"PG",0,0,1,1,0,1,0
"All About the Benjamins",2002,95,1.4e+07,5.4,1250,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"All Babes Want to Kill Me",2004,82,-1,8.1,47,4.5,4.5,0,0,0,0,4.5,4.5,34.5,45.5,"PG-13",0,0,0,0,0,0,0
"All Forgotten",2000,106,-1,4.5,139,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"All New Adventures of Laurel & Hardy: For Love or Mummy, The",1999,85,-1,3.1,112,34.5,14.5,14.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"All Night Bodega",2002,90,-1,5.7,24,4.5,4.5,0,4.5,4.5,24.5,14.5,24.5,4.5,14.5,"R",0,0,0,1,0,0,0
"All Over Me",1997,90,-1,6.9,600,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"All Over the Guy",2001,95,-1,6.4,1039,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,1,0,0,1,0
"All the Little Animals",1998,112,-1,6.6,289,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"All the Pretty Horses",2000,116,4.5e+07,5.6,3133,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"All the Queen's Men",2001,105,2.5e+07,5,353,4.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"PG-13",1,0,1,1,0,0,0
"All the Rage",1999,99,-1,5.7,670,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"All the Real Girls",2003,108,1e+06,6.8,1745,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Allyson Is Watching",1997,90,-1,4.7,105,4.5,14.5,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Almost Famous",2000,162,6e+07,8,38648,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,1,1,0,0,0
"Almost Heroes",1998,90,-1,4.5,1944,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Almost Salinas",2001,92,-1,6.4,81,4.5,4.5,0,4.5,14.5,14.5,14.5,24.5,14.5,14.5,"PG",0,0,1,1,0,0,0
"Alone",2002,110,-1,4.6,232,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Alone in the Dark",2005,96,2e+07,2.1,2880,64.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Alone in the Woods",1996,92,-1,3.6,48,14.5,24.5,14.5,4.5,14.5,4.5,14.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Alone with a Stranger",2000,90,-1,5.3,60,4.5,4.5,4.5,4.5,24.5,14.5,4.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Along Came Polly",2004,90,4.2e+07,5.8,9785,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,1,0
"Along Came a Spider",2001,104,2.8e+07,6.1,9456,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Altered Species",2001,91,-1,2.7,80,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Amadeus",1984,180,1.8e+07,8.3,36955,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,34.5,"R",0,0,0,1,0,0,0
"Amandla! A Revolution In Four Part Harmony",2002,108,-1,7.3,162,4.5,4.5,4.5,4.5,4.5,4.5,24.5,14.5,14.5,24.5,"PG-13",0,0,0,0,1,0,0
"Amant, L'",1992,111,-1,6.5,2046,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Amants du Pont-Neuf, Les",1991,125,-1,7.4,1564,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,1,0
"Amar te duele",2002,104,-1,7.1,102,4.5,4.5,4.5,4.5,4.5,4.5,14.5,34.5,14.5,24.5,"R",0,0,0,1,0,1,0
"Amati Girls, The",2000,91,-1,3.4,161,14.5,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG",0,0,0,1,0,0,0
"Amazing Panda Adventure, The",1995,81,-1,5.5,304,4.5,4.5,4.5,4.5,24.5,14.5,14.5,4.5,4.5,4.5,"PG",0,0,0,1,0,0,0
"Amazons and Gladiators",2001,89,-1,4,233,24.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,1,0,0,0
"America's Sweethearts",2001,102,4.8e+07,5.8,11849,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,1,0
"American Adobo",2001,104,-1,4.3,78,14.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"American Beauty",1999,121,1.5e+07,8.5,109991,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,34.5,"R",0,0,0,1,0,0,0
"American Chai",2001,92,-1,6.1,148,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,24.5,"R",0,0,1,1,0,0,0
"American Dragons",1998,91,-1,4.3,173,14.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"American Gun",2002,89,-1,6,267,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"American History X",1998,119,1e+07,8.4,59677,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,0,0
"American Movie: The Making of Northwestern",1999,107,-1,7.5,3421,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,0,1,0,0
"American Outlaws",2001,94,3.5e+07,5.5,2878,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",1,0,1,0,0,0,0
"American Perfekt",1997,100,-1,5.9,433,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"American Pie",1999,95,1.1e+07,6.8,41126,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,0,0,0,0
"American Pie 2",2001,105,3e+07,6.3,22752,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"American President, The",1995,114,6.2e+07,6.9,11834,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",0,0,1,1,0,1,0
"American Psycho",2000,102,8e+06,6.8,21639,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"American Rhapsody, An",2001,106,-1,7,732,14.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,0,0
"American Splendor",2003,101,-1,7.8,8530,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,"R",0,0,1,1,0,0,0
"American Strays",1996,97,-1,5.2,238,4.5,4.5,14.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",1,0,1,0,0,0,0
"American Vampire Story, An",1997,99,-1,2.1,149,44.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"American Virgin",2000,88,-1,3.7,506,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"American Wedding",2003,103,5.5e+07,6.3,13590,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"American Werewolf in Paris, An",1997,105,2.2e+07,5,4302,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Amistad",1997,152,4e+07,7,10543,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Amityville Horror, The",2005,90,1.8e+07,5.8,2945,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Among Giants",1998,93,-1,5.4,334,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Amores perros",2000,153,2e+06,8.2,15079,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,0,0
"Amy",1998,104,-1,7,252,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"PG-13",0,0,1,1,0,0,0
"Amy's Orgasm",2001,87,-1,5.3,519,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,1,0,0,1,0
"Anacondas: The Hunt for the Blood Orchid",2004,97,2.5e+07,4.2,2258,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",0,0,0,0,0,0,0
"Analyze That",2002,96,-1,5.5,6863,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Analyze This",1999,109,3e+07,6.6,24521,4.5,4.5,4.5,4.5,4.5,14.5,34.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Anarchist Cookbook, The",2002,101,-1,5.5,318,14.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,1,0,1,0
"Anarchy TV",1998,87,-1,4.7,84,14.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Anatomie",2000,103,-1,6.1,2501,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Anatomie 2",2003,101,-1,5.5,582,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Anazahevun",2000,132,-1,6.1,211,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Anchorman: The Legend of Ron Burgundy",2004,104,2.6e+07,6.5,11553,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Ancient Evil: Scream of the Mummy",2000,96,-1,1.9,276,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Ancient Warriors",2001,93,-1,3.8,42,34.5,4.5,4.5,4.5,4.5,4.5,0,4.5,4.5,24.5,"R",1,0,0,0,0,0,0
"And Now... Ladies and Gentlemen...",2002,122,-1,5.8,413,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"Andromina: The Pleasure Planet",1999,92,-1,3.4,62,14.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Angel Eyes",2001,102,3.8e+07,5.6,4829,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Angel Unchained",1970,92,-1,4.7,39,4.5,14.5,14.5,14.5,14.5,14.5,4.5,14.5,0,4.5,"PG-13",1,0,0,1,0,0,0
"Angel's Dance",1999,101,-1,5.8,333,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Angela",2002,91,-1,5.8,79,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Angels & Insects",1995,116,-1,6.9,1357,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,1,0
"Angels in the Attic",1998,86,-1,5.4,73,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,4.5,14.5,"PG",0,0,0,0,0,0,0
"Anger Management",2003,106,7.5e+07,6,14280,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Anglaise et le duc, L'",2001,125,-1,6.8,604,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Angus",1995,90,-1,6.3,1419,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,1,0,0,0
"Animal Factory",2000,94,-1,6.5,2118,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Animal Instincts III",1996,96,-1,3.7,99,14.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Animal Room",1995,98,-1,5.4,70,4.5,4.5,4.5,4.5,14.5,14.5,4.5,14.5,4.5,24.5,"R",1,0,0,0,0,0,0
"Animal, The",2001,84,2.2e+07,4.8,5605,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Animatrix: Final Flight of the Osiris, The",2003,11,5e+06,7.6,1536,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"PG-13",1,1,0,0,0,0,1
"Anna Karenina",1997,108,-1,5.6,706,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"Anna and the King",1999,148,7.5e+07,6.6,6739,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,0,1,0,1,0
"Annihilation of Fish, The",1999,108,-1,5.5,47,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,34.5,"R",0,0,0,0,0,1,0
"Anniversary Party, The",2001,115,-1,6.4,3057,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Another Day in Paradise",1998,101,-1,6.3,1872,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Antitrust",2001,108,3e+07,6,7326,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Antonia",1995,102,-1,7.4,2320,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,1,1,0,0,0
"Antwone Fisher",2002,117,12500000,7.4,4472,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Antz",1998,83,6e+07,7,16312,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG",0,1,1,0,0,0,0
"Any Given Sunday",1999,156,6.2e+07,6.4,19531,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Anything Else",2003,108,1.8e+07,6.5,3678,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Anywhere But Here",1999,114,2.3e+07,5.9,4007,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Apocalypse Now",1979,202,31500000,8.5,64785,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,34.5,"R",1,0,0,1,0,0,0
"Apocalypse, The",1997,96,-1,2.5,106,34.5,24.5,14.5,4.5,4.5,4.5,4.5,0,0,4.5,"R",0,0,0,0,0,0,0
"Apollo 13",1995,140,6.2e+07,7.5,41098,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG",0,0,0,1,0,0,0
"Apostle, The",1997,134,5e+06,7.2,4231,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Appetite",1998,97,-1,4.4,52,4.5,4.5,4.5,14.5,4.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Apt Pupil",1998,112,1.4e+07,6.4,6728,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Aquanoids",2003,78,-1,2.2,46,44.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,0,14.5,"R",1,0,0,0,0,0,0
"Arachnid",2001,102,-1,3.6,444,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Ararat",2002,115,-1,7.1,3594,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,45.5,"R",0,0,0,1,0,0,0
"Are We There Yet?",2005,95,3.2e+07,3.5,1043,34.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Arena, The",2001,92,-1,2.8,119,24.5,24.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Arlington Road",1999,117,21500000,7.1,17189,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Armageddon",1998,153,1.4e+08,5.7,45330,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Armstrong",1998,99,-1,3.2,75,24.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Army of Darkness",1993,96,1.1e+07,7.4,22118,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",1,0,1,0,0,0,0
"Around the Bend",2004,85,-1,6,388,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Around the Fire",1999,106,1200000,5.3,254,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Around the World in 80 Days",2004,120,1.1e+08,5.7,3887,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG",1,0,1,0,0,1,0
"Arranged Marriage",1996,88,-1,3.4,20,14.5,4.5,34.5,14.5,14.5,0,0,0,14.5,14.5,"R",0,0,0,1,0,0,0
"Arrival, The",1996,115,-1,6,4723,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Art Heist",2004,98,-1,3.8,59,14.5,4.5,14.5,24.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Art House",1998,93,-1,5.4,104,14.5,4.5,4.5,4.5,4.5,14.5,4.5,14.5,4.5,24.5,"R",0,0,1,1,0,0,0
"Art of Revenge",2003,88,-1,4.6,51,4.5,4.5,4.5,4.5,4.5,14.5,4.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Arte de morir, El",2000,102,-1,6,305,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Artificial Intelligence: AI",2001,146,9e+07,6.8,36623,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Artworks",2003,96,-1,6.1,68,4.5,0,4.5,4.5,4.5,24.5,14.5,4.5,14.5,24.5,"R",0,0,0,1,0,1,0
"Aryan Couple, The",2004,120,-1,7.4,13,4.5,4.5,4.5,0,0,4.5,0,4.5,34.5,34.5,"PG-13",0,0,0,1,0,0,0
"As Good as It Gets",1997,139,5e+07,7.7,47441,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"PG-13",0,0,1,1,0,1,0
"Ash Wednesday",2002,98,-1,5.5,625,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Asoka",2001,169,-1,6.5,555,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,24.5,"R",1,0,0,1,0,1,0
"Assassination Tango",2002,114,-1,6.1,611,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Assassination of Richard Nixon, The",2004,95,-1,7.1,1624,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Assassins",1995,132,5e+07,5.7,7354,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Assault on Precinct 13",2005,109,2e+07,6.3,2960,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Associate, The",1996,114,-1,5.5,1341,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Astoria",2000,103,-1,4.7,17,14.5,4.5,0,14.5,14.5,0,0,14.5,0,24.5,"R",0,0,0,1,0,0,0
"Astronaut's Wife, The",1999,109,3.4e+07,4.8,7253,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Asunder",1998,101,-1,4.3,69,4.5,4.5,4.5,14.5,4.5,14.5,4.5,4.5,14.5,24.5,"R",0,0,0,0,0,0,0
"Asylum Days",2001,100,-1,4.7,21,14.5,0,14.5,14.5,14.5,4.5,0,4.5,0,14.5,"R",0,0,0,0,0,0,0
"At First Sight",1999,128,4e+07,5.7,3441,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"At Sachem Farm",1998,106,-1,5.9,164,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,24.5,"PG",0,0,0,1,0,0,0
"Atanarjuat",2001,168,-1,7.3,1921,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,"R",0,0,0,1,0,0,0
"Atlantis: The Lost Empire",2001,95,9e+07,6.4,6323,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG",1,1,0,0,0,0,0
"Attack of the 60 Foot Centerfold",1995,84,-1,3.5,175,14.5,4.5,24.5,14.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Attic Expeditions, The",2001,100,1e+06,5.4,384,4.5,4.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Auberge espagnole, L'",2002,117,-1,7.3,4273,4.5,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,14.5,"R",0,0,1,1,0,1,0
"Auggie Rose",2000,109,-1,6.3,367,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"August",1996,94,-1,5.2,154,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG",0,0,0,1,0,0,0
"Aurora: Operation Intercept",1995,94,-1,2.7,80,34.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,0,4.5,"R",1,0,0,1,0,0,0
"Austin Powers in Goldmember",2002,94,6.3e+07,6.2,22870,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Austin Powers: International Man of Mystery",1997,94,1.7e+07,7,33755,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",1,0,1,0,0,0,0
"Austin Powers: The Spy Who Shagged Me",1999,95,3.3e+07,6.5,37019,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Auto Focus",2002,105,7e+06,6.7,3276,4.5,4.5,4.5,4.5,4.5,14.5,34.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Autumn in New York",2000,103,4e+07,4.7,3731,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Avalanche",1999,109,-1,3.7,126,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Avalon",2001,106,8e+06,6.8,2723,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,1,0,1,0,0,0
"Avengers, The",1998,89,6e+07,3.4,11499,24.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Avenging Angelo",2002,96,-1,4.6,877,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Aviator, The",2004,170,1.16e+08,7.5,16217,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Awakening of Gabriella, The",1999,93,-1,3.5,53,14.5,4.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Awfully Big Adventure, An",1995,112,4e+06,5.8,608,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"B*A*P*S",1997,91,-1,3.5,572,24.5,14.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"B. Monkey",1998,93,-1,6.1,833,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,1,0
"BASEketball",1998,103,-1,6.1,7096,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Ba wang bie ji",1993,171,-1,7.7,3098,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,34.5,"R",0,0,0,1,0,1,0
"Baby Boy",2001,130,1.6e+07,6.2,1476,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Baby Face Nelson",1995,93,-1,4.7,60,14.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Baby Geniuses",1999,97,1.3e+07,2.4,3142,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Baby Take a Bow",1934,76,-1,5.8,98,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,24.5,"PG",0,0,1,1,0,0,0
"Baby-Sitters Club, The",1995,90,-1,5,607,4.5,4.5,4.5,4.5,14.5,14.5,4.5,14.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Babymother",1998,82,-1,3.1,29,14.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Babysitter, The",1995,90,-1,4.1,879,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bachelor, The",1999,101,2.1e+07,5,4183,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,1,0
"BachelorMan",2003,87,-1,5.1,101,4.5,4.5,4.5,4.5,4.5,14.5,4.5,14.5,4.5,24.5,"R",0,0,1,0,0,0,0
"Back Lot Murders, The",2002,90,-1,3.7,119,24.5,4.5,14.5,4.5,4.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Back in Business",1997,93,-1,4.1,93,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Back of Beyond",1995,85,-1,5.2,67,4.5,4.5,4.5,4.5,4.5,24.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Back to Even",1998,89,-1,3.9,40,24.5,4.5,14.5,14.5,24.5,4.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Backdraft",1991,132,-1,6.6,12637,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Backfire!",1995,93,-1,3.2,79,34.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Backstage",2000,86,-1,5,57,14.5,0,4.5,4.5,14.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,0,0,1,0,0
"Backyard Dogs",2000,96,-1,1.9,1304,64.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,"R",1,0,0,1,0,0,0
"Bad Boys",1995,118,2.3e+07,6.4,15326,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Bad Boys II",2003,145,1.3e+08,6.1,13087,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"R",1,0,1,0,0,0,0
"Bad City Blues",1999,96,-1,4.6,36,14.5,14.5,14.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Bad Company",2002,116,7e+07,5.4,6175,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Bad Day On the Block",1997,104,-1,4.8,356,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bad Faith",2000,97,-1,4.7,41,14.5,14.5,4.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bad Karma",2002,92,-1,4,174,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Bad Manners",1997,88,-1,6.3,140,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bad Moon",1996,80,7e+06,4.4,519,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Bad Santa",2003,98,1.8e+07,7.2,11189,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,0,0,0,0
"Badge, The",2002,103,6e+06,6.3,740,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Bai ga jai",1982,100,-1,7.7,278,4.5,4.5,0,4.5,4.5,4.5,14.5,24.5,24.5,34.5,"R",1,0,1,0,0,0,0
"Bait",2000,119,3.5e+07,5.6,1884,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Balance of Power",1996,92,-1,4.3,63,4.5,4.5,14.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Ball in the House",2001,95,-1,5.8,63,4.5,4.5,0,4.5,14.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,1,1,0,0,0
"Ballad of Jack and Rose, The",2005,112,1500000,6.2,269,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Ballad of Ramblin' Jack, The",2000,112,-1,7.9,108,0,4.5,4.5,0,4.5,4.5,14.5,34.5,24.5,14.5,"PG-13",0,0,0,0,1,0,0
"Ballistic: Ecks vs. Sever",2002,91,7e+07,3.4,4556,24.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Bamboozled",2000,135,1e+07,6.3,2356,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Bananas",1971,82,2e+06,7.1,4252,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bandits",1997,110,-1,6.3,1065,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Bandits",2001,123,8e+07,6.7,12382,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Bandolero!",1968,106,-1,6.3,598,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,14.5,"PG-13",0,0,0,0,0,0,0
"Banger Sisters, The",2002,98,1e+07,5.6,3189,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Bangkok Dangerous",1999,105,-1,6.5,651,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,4.5,"R",1,0,0,0,0,1,0
"Baptists at Our Barbecue",2004,92,5e+05,5.9,62,14.5,4.5,4.5,4.5,4.5,4.5,14.5,4.5,4.5,24.5,"PG",0,0,1,0,0,1,0
"Bar Girls",1994,93,-1,5.4,215,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Baran",2001,94,-1,7.8,733,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG",0,0,0,1,0,1,0
"Barbershop",2002,102,1.2e+07,6.6,4943,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"PG-13",0,0,1,1,0,0,0
"Barbershop 2: Back in Business",2004,106,1.8e+07,5.7,1580,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bark!",2002,100,-1,4.3,198,14.5,4.5,4.5,4.5,4.5,14.5,4.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Bartleby",2001,83,-1,6.1,434,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,1,0,0,0
"Basic",2003,98,5e+07,6.2,8370,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Basic Instinct",1992,128,4.9e+07,6.7,19520,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Basil",1998,113,1e+07,6.1,367,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Basket, The",1999,105,3e+06,6.3,200,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"PG",0,0,0,1,0,0,0
"Basketball Diaries, The",1995,102,-1,6.6,6280,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Basquiat",1996,108,-1,6.6,3126,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bastard Out of Carolina",1996,97,-1,7.4,805,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Batman & Robin",1997,125,1.1e+08,3.6,28457,24.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Batman Forever",1995,122,1e+08,5.4,24025,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,1,0
"Battle of Shaker Heights, The",2003,90,1e+06,6,854,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,1,0,1,0
"BattleQueen 2020",2001,95,-1,2.9,116,24.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Battlefield Earth: A Saga of the Year 3000",2000,119,7.3e+07,2.4,14970,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Baxter, The",2005,91,-1,9.1,19,0,0,0,0,0,14.5,14.5,14.5,0,64.5,"PG-13",0,0,1,1,0,1,0
"Be Cool",2005,118,5.3e+07,5.5,4560,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Beach, The",2000,119,5e+07,5.8,15020,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bean",1997,90,2.2e+07,5.4,9018,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Beat",2000,93,-1,5.3,279,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Beautician and the Beast, The",1997,118,-1,4.9,1213,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG",0,0,1,0,0,1,0
"Beautiful",2000,112,9e+06,5.3,991,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,1,0,0,0
"Beautiful Country, The",2004,137,6e+06,6.9,115,14.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Beautiful Creatures",2000,86,-1,5.8,706,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Beautiful Girls",1996,112,-1,7.1,7452,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,1,1,0,1,0
"Beautiful Joe",2000,98,-1,5.7,524,4.5,4.5,4.5,14.5,14.5,24.5,24.5,4.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Beautiful Mind, A",2001,135,6e+07,7.8,43291,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,"PG-13",0,0,0,1,0,0,0
"Beautiful People",1999,107,-1,7,906,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,1,0,0,0,0
"Beautiful Thing",1996,90,-1,7.5,4409,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,44.5,"R",0,0,0,1,0,1,0
"Beauty Shop",2005,104,-1,4.6,518,24.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Beavis and Butt-Head Do America",1996,81,1.2e+07,6.2,9491,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,1,1,0,0,0,0
"Because of Winn-Dixie",2005,106,1.4e+07,5.9,483,14.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"PG",0,0,1,1,0,0,0
"Bed of Roses",1996,87,-1,5.9,2049,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG",0,0,0,1,0,1,0
"Bedazzled",2000,93,4.8e+07,5.9,11439,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Beeper",2002,94,-1,5.3,39,24.5,0,4.5,4.5,14.5,4.5,4.5,14.5,4.5,34.5,"R",0,0,0,0,0,0,0
"Before Night Falls",2000,133,-1,7.2,3608,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Before Sunset",2004,80,1e+07,8.3,8789,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,34.5,"R",0,0,0,1,0,1,0
"Behind Enemy Lines",2001,106,4e+07,6.1,10856,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Behind the Red Door",2002,105,-1,7,336,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Being Julia",2004,104,1.8e+07,7.2,1671,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Believer, The",2001,98,-1,7.3,3327,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bella Martha",2001,109,-1,7.4,1585,4.5,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,14.5,"PG",0,0,1,1,0,1,0
"Belly",1998,96,1e+07,4.5,1034,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Belly of the Beast",2003,91,1.8e+07,4.2,638,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Beloved",1998,172,5.3e+07,5.6,1934,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Below",2002,105,-1,6.3,3175,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Below Utopia",1997,83,-1,4.7,256,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bend It Like Beckham",2002,115,-1,7.3,14437,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",0,0,1,1,0,1,0
"Beneath Loch Ness",2001,96,-1,2.7,233,34.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Benji: Off the Leash!",2004,97,-1,4.7,93,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,34.5,"PG",0,0,0,1,0,0,0
"Bent",1997,108,-1,6.8,854,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Beowulf",1999,99,2e+07,3.7,2058,24.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Bereft",2004,98,-1,6,37,14.5,4.5,4.5,0,14.5,14.5,14.5,4.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Besieged",1998,93,-1,6.7,995,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Best Laid Plans",1999,92,7e+06,6.3,1795,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Best Man in Grass Creek",1999,88,-1,5.7,69,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"PG",0,0,1,0,0,1,0
"Best Thief in the World, The",2004,93,-1,2.7,113,14.5,34.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Best Two Years, The",2003,112,-1,7,174,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,34.5,"PG",0,0,1,0,0,0,0
"Best in Show",2000,90,6e+06,7.5,11790,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,24.5,14.5,"PG-13",0,0,1,0,0,0,0
"Best of the Best 3: No Turning Back",1995,90,-1,4.4,255,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Best of the Best: Without Warning",1999,90,-1,4.3,96,4.5,4.5,14.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Betaville",2001,99,-1,5.2,5,24.5,24.5,24.5,0,0,0,0,0,0,44.5,"PG-13",0,0,1,0,0,0,0
"Better Luck Tomorrow",2002,98,250000,7.3,2697,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Better Than Chocolate",1999,102,-1,6.3,1513,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,1,0
"Better Way to Die, A",2000,97,-1,5.6,458,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Between Strangers",2002,95,-1,6.1,204,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Between the Lies",1997,90,-1,3,20,24.5,14.5,14.5,4.5,14.5,0,14.5,0,14.5,24.5,"R",0,0,0,1,0,0,0
"Beverly Hills Ninja",1997,88,-1,4.7,3468,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Beware: Children at Play",1989,94,-1,3.2,125,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Beyond Bedlam",1993,89,-1,3.3,165,24.5,14.5,24.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Beyond Borders",2003,127,3.5e+07,5.4,1905,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,1,0
"Beyond Desire",1996,87,-1,4.6,92,14.5,4.5,4.5,4.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Beyond Paradise",1998,105,-1,5,41,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,34.5,"PG-13",0,0,0,1,0,0,0
"Beyond Rangoon",1995,100,2.3e+07,6.4,1285,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Beyond Re-Animator",2003,96,3e+06,6.1,908,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Beyond the City Limits",2001,91,-1,4.5,219,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Beyond the Gates of Splendor",2005,96,-1,8.9,15,0,0,0,0,4.5,4.5,4.5,4.5,14.5,64.5,"PG-13",0,0,0,0,1,0,0
"Beyond the Mat",1999,108,5e+05,7.3,2243,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,0,1,0,0
"Beyond the Sea",2004,118,2.4e+07,6.7,1051,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,24.5,"PG-13",0,0,0,1,0,0,0
"Bhaji on the Beach",1993,100,-1,6.6,275,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Bi xie lan tian",1998,96,-1,5.5,136,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Bicentennial Man",1999,132,1e+08,6.2,8925,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG",0,0,0,1,0,1,0
"Big Ain't Bad",2002,118,-1,5.9,15,0,24.5,0,0,0,4.5,14.5,0,14.5,44.5,"R",0,0,0,0,0,0,0
"Big Bad Love",2001,111,-1,5.6,189,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Big Bounce, The",2004,88,5e+07,4.7,2505,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Big Brass Ring, The",1999,104,7e+06,5.4,271,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Big Bully",1996,90,1.5e+07,4.2,781,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,1,0,0,0
"Big Daddy",1999,93,34200000,5.9,18258,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Big Eden",2000,117,-1,7.4,842,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,34.5,"PG-13",0,0,0,1,0,1,0
"Big Empty, The",2003,94,-1,5.9,696,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Big Fall, The",1996,90,-1,4.1,34,4.5,14.5,4.5,4.5,34.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Big Fat Liar",2002,88,1.5e+07,5.5,2453,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Big Fish",2003,125,7e+07,8.1,31525,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"PG-13",0,0,1,1,0,0,0
"Big Green, The",1995,100,-1,4.6,610,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Big Hit, The",1998,91,1.3e+07,5.7,6206,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Big Jake",1971,110,-1,6.6,1139,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",1,0,0,0,0,0,0
"Big Kahuna, The",1999,90,-1,6.6,3724,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Big Lebowski, The",1998,117,1.5e+07,8,50179,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,34.5,"R",0,0,1,0,0,0,0
"Big Momma's House",2000,98,3e+07,4.7,7509,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Big Night",1996,107,-1,7.3,4563,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Big One, The",1997,91,-1,7.5,2395,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"PG-13",0,0,1,0,1,0,0
"Big Red One, The",1980,158,-1,7.1,1838,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",1,0,0,1,0,0,0
"Big Squeeze, The",1996,98,-1,4.8,105,4.5,4.5,14.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Big Tease, The",1999,86,4e+06,6.1,670,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,"R",0,0,1,0,0,0,0
"Big Time",2004,29,-1,7.8,14,14.5,4.5,0,0,0,0,0,14.5,4.5,45.5,"R",0,0,0,0,0,0,0
"Big Trouble",2002,85,4e+07,6.4,4088,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bigfoot: The Unforgettable Encounter",1994,88,-1,3.5,67,14.5,14.5,4.5,24.5,14.5,4.5,4.5,4.5,4.5,4.5,"PG",0,0,0,0,0,0,0
"Bigger Than the Sky",2005,106,750000,7.3,32,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"PG-13",0,0,1,1,0,1,0
"Biggie and Tupac",2002,108,-1,6.9,465,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"R",0,0,0,0,1,0,0
"Bike Squad, The",2002,79,-1,3,44,24.5,24.5,4.5,4.5,4.5,14.5,0,0,4.5,14.5,"PG",0,0,1,0,0,0,0
"Biker Boyz",2003,110,-1,4,1580,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Bikini Bistro",1995,85,-1,2.4,246,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Bikini Drive-In",1995,86,-1,3.7,123,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Bikini Summer III: South Beach Heat",1997,87,-1,3.3,55,34.5,14.5,4.5,4.5,4.5,0,4.5,0,4.5,24.5,"R",0,0,1,0,0,0,0
"Billabong Odyssey",2003,87,-1,5.8,81,0,4.5,0,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG",1,0,0,0,1,0,0
"Billy Elliot",2000,110,5e+06,7.7,16725,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Billy Madison",1995,89,-1,6.1,11626,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Billy's Holiday",1995,92,-1,4.2,68,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Billy's Hollywood Screen Kiss",1998,92,-1,6.5,1129,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,1,0,0,1,0
"Bimbo Movie Bash",1997,90,-1,2.5,93,24.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Bin-jip",2004,95,-1,8,886,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,1,0
"Bio-Dome",1996,91,-1,3.7,4310,14.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Bird of Prey",1995,105,-1,4.3,42,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,0,24.5,"R",0,0,0,0,0,0,0
"Birdcage, The",1996,117,-1,6.5,12429,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Birth",2004,100,2e+07,6,2600,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,1,0
"Birthday Girl",2001,93,1.3e+07,6.1,5340,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Bizita Q",2001,84,-1,7.1,1327,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,1,1,0,0,0
"Black Cadillac",2003,93,-1,5.7,346,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Black Circle Boys",1997,101,-1,4,284,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Black Day Blue Night",1995,93,-1,5.8,166,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,1,0
"Black Dog",1998,89,-1,4.7,1374,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Black Friday",2000,95,-1,3.2,59,34.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,0,14.5,"R",1,0,0,0,0,0,0
"Black Hawk Down",2001,142,9e+07,7.6,32530,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",1,0,0,1,0,0,0
"Black Knight",2001,95,5e+07,4.1,3822,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Black Magic, The",2002,91,-1,7.4,11,24.5,0,0,0,0,0,0,4.5,0,64.5,"R",0,0,0,0,0,0,0
"Black Out",1996,98,-1,4.5,70,14.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Black Point",2001,100,-1,5.1,127,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Black Rose of Harlem",1996,87,-1,3.8,23,4.5,4.5,14.5,14.5,4.5,4.5,14.5,0,4.5,24.5,"R",1,0,0,0,0,0,0
"Black Scorpion II: Aftershock",1997,85,-1,3.3,164,24.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Black Sheep",1996,87,-1,5.2,3634,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Black Thunder",1997,85,-1,3.5,96,14.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,0,4.5,"R",1,0,0,1,0,0,0
"Black and White",1999,98,1e+07,5.2,1699,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"BlackMale",2000,90,-1,4.4,129,14.5,4.5,4.5,14.5,4.5,4.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blackball",2003,96,-1,5.1,405,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Blackout, The",1997,98,-1,4.4,526,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blacktop",2000,100,3500000,4.7,192,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blackwater Trail",1996,97,-1,4.7,36,4.5,4.5,4.5,14.5,24.5,4.5,24.5,14.5,14.5,4.5,"R",1,0,0,0,0,0,0
"Blackwoods",2002,90,-1,5,179,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Blade",1998,110,4.5e+07,6.8,24372,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",1,0,0,0,0,0,0
"Blade II",2002,108,5.5e+07,6.6,17139,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Blade: Trinity",2004,124,6.5e+07,5.7,7439,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Blair Witch Project, The",1999,86,35000,6.1,39814,14.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"R",0,0,0,0,0,0,0
"Blast",1996,105,-1,4.4,156,14.5,14.5,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Blast",2000,88,-1,5.6,57,4.5,14.5,4.5,4.5,4.5,4.5,14.5,4.5,4.5,34.5,"R",0,0,1,1,0,0,0
"Blast from the Past",1999,112,3.5e+07,6.4,9483,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Bleeders",1997,89,-1,3.8,486,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bless the Child",2000,107,4e+07,5,3814,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Blessed",2004,98,-1,4.6,187,4.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blessed Art Thou",2000,90,-1,6.5,26,0,0,4.5,4.5,14.5,14.5,34.5,4.5,4.5,24.5,"PG-13",0,0,0,0,0,0,0
"Blind Faith",1998,122,-1,6.6,120,4.5,0,4.5,4.5,4.5,14.5,14.5,14.5,24.5,14.5,"R",0,0,0,1,0,0,0
"Blind Heat",2002,95,-1,2.9,20,24.5,14.5,24.5,4.5,14.5,4.5,0,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blind Horizon",2003,99,5100000,5.5,801,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blink of an Eye",1999,97,-1,4.7,51,0,14.5,24.5,4.5,24.5,4.5,4.5,4.5,0,4.5,"R",0,0,0,1,0,0,0
"Bliss",1997,103,-1,5.8,478,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Blonde Heaven",1995,80,-1,3.4,70,34.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blondes Have More Guns",1995,90,-1,4.2,45,24.5,4.5,14.5,4.5,4.5,4.5,4.5,24.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blood & Donuts",1995,89,-1,5.2,234,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,"R",0,0,1,0,0,0,0
"Blood Dolls",1999,84,-1,3.4,241,24.5,14.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blood Feast 2: All U Can Eat",2002,99,-1,4.9,145,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,1,0,0,0,0
"Blood Money",1996,90,-1,2.8,37,24.5,14.5,24.5,4.5,14.5,0,0,0,4.5,4.5,"R",0,0,0,0,0,0,0
"Blood Oranges, The",1997,93,-1,4,91,4.5,4.5,14.5,4.5,14.5,4.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blood Work",2002,110,5e+07,6.3,5965,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blood and Wine",1996,101,2.6e+07,6,2134,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Blood for Dracula",1974,106,-1,5.4,751,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Blood of the Hunter",1995,93,-1,4.2,59,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,44.5,"PG-13",0,0,0,0,0,0,0
"Blood of the Innocent",1994,95,-1,4.1,78,14.5,14.5,4.5,14.5,24.5,24.5,4.5,4.5,0,4.5,"R",1,0,0,0,0,0,0
"Blood, Guts, Bullets and Octane",1998,87,7300,5.3,285,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Bloodfist VIII: Trained to Kill",1996,85,-1,2.6,34,14.5,14.5,4.5,24.5,4.5,4.5,14.5,4.5,0,14.5,"R",0,0,0,0,0,0,0
"Bloodletting, The",2004,87,-1,5.6,5,44.5,0,0,0,0,0,0,44.5,0,24.5,"R",0,0,0,0,0,0,0
"Bloodmoon",1997,102,-1,4.1,86,4.5,4.5,4.5,14.5,14.5,4.5,14.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Bloodsport 2",1996,71,-1,4.3,274,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Bloody Mallory",2002,94,-1,4.1,167,14.5,14.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Bloody Sunday",2002,107,5e+06,7.6,2388,4.5,4.5,4.5,4.5,4.5,4.5,14.5,34.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bloom",2003,113,-1,4.2,58,14.5,4.5,14.5,4.5,4.5,4.5,14.5,4.5,14.5,24.5,"R",0,0,0,1,0,1,0
"Blow",2001,124,3e+07,7.1,18670,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Blow Dry",2001,87,-1,6.1,1611,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Blowback",2000,91,-1,4.3,201,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Blue Car",2002,96,-1,7,819,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Blue Collar Comedy Tour: The Movie",2003,105,-1,7.6,804,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,34.5,"PG-13",0,0,1,0,1,0,0
"Blue Crush",2002,104,3e+07,5.7,4791,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Blue Diner, The",2001,100,-1,5.8,51,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,24.5,"PG-13",0,0,0,1,0,0,0
"Blue Hawaii",1961,102,-1,5.3,682,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Blue Hill Avenue",2001,120,1200000,6.6,85,4.5,0,0,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Blue Juice",1995,90,-1,5.1,574,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Blue Moon",2000,89,-1,5.1,70,4.5,4.5,4.5,14.5,14.5,4.5,14.5,4.5,14.5,14.5,"PG-13",0,0,1,1,0,0,0
"Blue Ridge Fall",1999,105,-1,4.9,92,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Blueberry",2004,124,-1,5.2,1256,14.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Blues Brothers 2000",1998,123,2.8e+07,4.5,5267,14.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Boat Trip",2002,97,2e+07,4.5,2991,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Bobby G. Can't Swim",1999,89,-1,6.2,98,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Bobby Jones, Stroke of Genius",2004,120,-1,6.2,490,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,24.5,"PG",0,0,0,1,0,0,0
"Boca a boca",1995,106,-1,6.8,375,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,0,0,0,0
"Bodily Harm",1995,91,-1,4.7,93,4.5,4.5,4.5,24.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Body Shots",1999,106,-1,4.9,1805,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Body and Soul",1998,91,-1,3.6,53,24.5,14.5,14.5,4.5,14.5,14.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Body of Influence 2",1996,87,1200000,3.4,44,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Body, The",2001,109,-1,5.3,1646,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Bodywork",1999,92,-1,4.8,52,4.5,4.5,4.5,4.5,14.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Bogus",1996,110,3.2e+07,5,1007,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"PG",0,0,1,1,0,0,0
"Boiler Room",2000,118,9e+06,6.8,8586,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Boksuneun naui geot",2002,121,-1,7.6,1325,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",1,0,0,1,0,0,0
"Bold Affair, A",1998,99,-1,4.1,71,14.5,14.5,14.5,4.5,24.5,14.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Bollywood/Hollywood",2002,105,-1,6.1,593,14.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Bom yeoreum gaeul gyeoul geurigo bom",2003,103,-1,8.2,2829,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,0,0
"Bombshell",1996,98,-1,4.3,65,14.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Bon voyage",2003,115,2e+07,7.2,1061,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",0,0,1,1,0,0,0
"Bone Collector, The",1999,118,4.8e+07,6.2,17766,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bone Daddy",1998,90,-1,5.3,371,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bone Snatcher, The",2003,96,6e+06,4.1,400,14.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bones",2001,96,1.6e+07,4.2,1418,14.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Bongwater",1997,97,-1,4.5,458,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,1,0,0,1,0
"Boogeyman",2005,89,2e+07,4.1,2055,24.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,14.5,"PG-13",0,0,0,1,0,0,0
"Boogie Boy",1998,104,-1,5,203,4.5,4.5,4.5,14.5,14.5,4.5,14.5,14.5,14.5,14.5,"R",0,0,0,0,0,0,0
"Boogie Nights",1997,156,1.5e+07,7.6,27380,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Book of Love",1990,82,-1,5.1,199,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,1,0,0,1,0
"Book of Love",2004,83,-1,2.9,134,4.5,24.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,1,1,0,0,0
"Book of Mormon Movie, Volume 1: The Journey, The",2003,120,2e+06,3.4,142,44.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"PG-13",0,0,0,0,0,0,0
"Book of Shadows: Blair Witch 2",2000,90,1.5e+07,4.2,6532,14.5,14.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bookies",2003,88,-1,5.5,208,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Boondock Saints, The",1999,110,-1,7.7,17935,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,34.5,"R",1,0,0,1,0,0,0
"Boot, Das",1981,216,1.4e+07,8.5,28920,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,34.5,"R",0,0,0,1,0,0,0
"Bootmen",2000,95,-1,6,465,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Booty Call",1997,79,-1,4.9,1401,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Bor lei jun",1999,99,-1,5.3,1421,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,1,0
"Bordello of Blood",1996,72,-1,4.6,2187,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Boricua's Bond",2000,105,-1,3.8,78,24.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Born Bad",1999,88,-1,5.1,92,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Born Free",1966,95,-1,6.9,763,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG",0,0,0,1,0,0,0
"Born Into Brothels: Calcutta's Red Light Kids",2004,85,-1,7.8,366,4.5,4.5,4.5,0,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,0,1,0,0
"Born Romantic",2000,96,-1,6.2,406,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Born Wild",1995,91,-1,4.4,16,0,24.5,24.5,4.5,4.5,14.5,14.5,0,0,4.5,"PG",0,0,0,1,0,0,0
"Borrowers, The",1997,89,2.9e+07,5.6,1457,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Bossa Nova",2000,95,-1,6.6,630,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,1,0
"Boston Kickout",1995,110,-1,5.7,113,4.5,4.5,4.5,4.5,14.5,14.5,4.5,24.5,14.5,14.5,"R",0,0,0,0,0,0,0
"Botte di Natale",1994,107,-1,5,201,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,24.5,"PG",0,0,1,0,0,0,0
"Bounce",2000,106,3.5e+07,5.8,5390,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Bound",1996,109,4500000,7.5,11911,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,0,0,1,0
"Bounty Hunters",1997,98,-1,4.9,76,14.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,0,4.5,"R",1,0,0,1,0,0,0
"Bourne Identity, The",2002,119,7.5e+07,7.3,29871,4.5,4.5,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,"PG-13",1,0,0,1,0,0,0
"Bourne Supremacy, The",2004,108,7.5e+07,7.3,19878,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",1,0,0,1,0,0,0
"Bowfinger",1999,97,5.5e+07,6.4,15000,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bowling for Columbine",2002,120,4e+06,8.5,36747,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,34.5,"R",0,0,1,1,1,0,0
"Box of Moon Light",1996,112,-1,6.9,1433,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Boxer, The",1997,113,-1,6.9,2375,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Boy Called Hate, A",1996,97,-1,4.8,89,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Boys",1996,86,-1,4.6,915,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Boys Club, The",1997,91,-1,6,353,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Boys Don't Cry",1999,118,2e+06,7.6,14456,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Boys On the Run",2001,97,-1,5.3,36,14.5,4.5,0,4.5,24.5,4.5,14.5,4.5,14.5,14.5,"R",1,0,0,0,0,1,0
"Boys and Girls",2000,94,1.6e+07,4.9,3483,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Boys of 2nd Street Park, The",2003,91,-1,7.2,38,4.5,0,0,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,0,0,1,0,0
"Boys, The",1998,86,-1,6.3,254,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,"R",0,0,0,1,0,0,0
"Brady Bunch Movie, The",1995,90,1.2e+07,5.6,4636,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Brassed Off",1996,107,-1,7.2,4974,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,1,0
"Braveheart",1995,177,5.3e+07,8.3,92437,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,34.5,"R",1,0,0,1,0,0,0
"Bravo Two Zero",1999,115,6500000,6.5,578,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,0,0,0,0
"Bread and Roses",2000,110,-1,7,1172,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bread, My Sweet, The",2001,105,6e+05,6.8,257,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,24.5,"PG-13",0,0,0,1,0,1,0
"Break Up",1998,100,9e+06,5.1,393,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Break, The",1995,104,-1,4.9,81,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Breakaway",1996,95,-1,4,38,24.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Breakdown",1997,95,3.6e+07,6.7,7099,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Breakfast of Champions",1999,110,1.2e+07,4.2,2250,14.5,4.5,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Breakin' All the Rules",2004,85,-1,5,575,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,1,0
"Breaking Free",1995,106,-1,6.3,79,0,0,4.5,4.5,4.5,4.5,24.5,24.5,4.5,24.5,"PG",0,0,0,1,0,0,0
"Breaking Up",1997,90,-1,4.5,648,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Breaking the Silence",1998,90,-1,2.9,41,45.5,4.5,14.5,4.5,4.5,4.5,4.5,0,0,4.5,"R",0,0,0,0,0,0,0
"Breaking the Waves",1996,158,-1,7.7,10494,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,34.5,"R",0,0,0,1,0,1,0
"Breast Men",1997,96,-1,5.6,1171,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Breathing Room",1996,90,5e+05,4,39,14.5,14.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Breed, The",2001,91,4e+06,4.7,582,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Briar Patch",2003,103,-1,2.5,265,44.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,1,0,1,0
"Bride & Prejudice",2004,122,7e+06,6.3,1503,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,24.5,"PG-13",0,0,1,0,0,1,0
"Bride of Chucky",1998,89,2.5e+07,5.2,4449,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Bride of the Wind",2001,99,1.2e+07,5.2,201,4.5,4.5,4.5,14.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bridge of Dragons",1999,95,4e+06,3.7,373,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,1,0
"Bridges of Madison County, The",1995,135,2.2e+07,6.9,7633,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,1,0
"Bridget Jones's Diary",2001,97,2.6e+07,7,24791,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,0,0,1,0
"Bridget Jones: The Edge of Reason",2004,108,7e+07,5.7,6636,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"R",0,0,1,1,0,1,0
"Brigham City",2001,119,1e+06,7.1,405,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG-13",0,0,0,1,0,0,0
"Bright Young Things",2003,105,-1,6.8,621,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Bring It On",2000,98,1e+07,6.1,11784,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bring Me the Head of Mavis Davis",1997,100,-1,4.9,161,4.5,4.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Bringing Down the House",2003,105,3.5e+07,5.6,6501,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Bringing Out the Dead",1999,121,3.2e+07,6.7,13989,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Broadcast Bombshells",1995,84,-1,3,52,24.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,24.5,"R",0,0,1,0,0,0,0
"Brokedown Palace",1999,100,-1,6.1,4321,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Broken Arrow",1996,108,6.5e+07,5.7,14415,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Broken English",1996,92,-1,6.5,299,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Broken Vessels",1998,90,6e+05,6.1,223,4.5,4.5,4.5,4.5,14.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Brooklyn Babylon",2001,89,-1,5.6,75,4.5,0,4.5,4.5,14.5,14.5,14.5,4.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Brooklyn Bound",2004,90,70000,4.2,30,4.5,4.5,4.5,4.5,4.5,0,0,4.5,14.5,64.5,"R",0,0,0,1,0,0,0
"Brooklyn Sonnet",2000,95,-1,5.9,25,4.5,0,0,14.5,14.5,24.5,24.5,0,0,24.5,"R",1,0,0,1,0,0,0
"Brother",2000,114,1.2e+07,7.1,4322,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,0,0,0,0
"Brother John",1971,95,-1,6.4,66,0,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"PG-13",0,0,0,1,0,0,0
"Brother from Another Planet, The",1984,106,3e+05,6.7,1133,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Brother's Kiss, A",1997,92,-1,6.3,102,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Brotherhood, The",1968,96,-1,5.6,106,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Brothers McMullen, The",1995,98,23800,6.4,2325,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,1,1,0,0,0
"Brown Sugar",2002,109,8e+06,5.9,941,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,1,0,1,0
"Brown's Requiem",1998,104,-1,5.7,303,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Bruce Almighty",2003,101,8.1e+07,6.4,23905,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,1,0
"Bruno",2000,108,1e+07,6,295,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,24.5,"PG-13",0,0,1,1,0,0,0
"Brylcreem Boys, The",1998,106,6e+06,6,199,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"Bubba Ho-tep",2002,92,1e+06,7.5,7142,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,1,0,0,0,0
"Bubble Boy",2001,84,1.3e+07,5.1,2904,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,1,0,1,0
"Buck Naked Arson",2001,85,-1,6.5,38,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,4.5,34.5,"R",0,0,1,1,0,0,0
"Buck and the Magic Bracelet",1999,99,-1,2,8,45.5,14.5,14.5,14.5,0,0,0,0,0,14.5,"PG-13",1,0,0,0,0,0,0
"Buddy",1997,84,-1,4.6,458,14.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG",0,0,0,1,0,0,0
"Buddy Boy",1999,105,-1,5.6,106,4.5,4.5,4.5,4.5,4.5,4.5,24.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Buffalo '66",1998,110,1500000,7.2,6652,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,1,1,0,0,0
"Buffalo Soldiers",2001,98,1.5e+07,7,3753,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Bug Buster",1998,93,8500000,2.9,268,34.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Bug Off!",2001,84,-1,3.2,37,14.5,4.5,14.5,14.5,4.5,4.5,4.5,14.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Bulletproof",1996,84,-1,5.4,3613,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Bulletproof Monk",2003,104,5.2e+07,5.2,5405,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Bullfighter",2000,90,-1,2.7,58,34.5,14.5,14.5,4.5,4.5,4.5,0,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bully",2001,113,-1,7,4913,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Bumblebee Flies Anyway, The",1999,96,-1,6.1,604,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"PG-13",0,0,0,1,0,1,0
"Bunker, The",2001,92,-1,5.4,927,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Bure baruta",1998,102,-1,7.5,620,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Burial Society, The",2002,94,1500000,6.5,52,4.5,4.5,4.5,0,4.5,24.5,24.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Bush's Brain",2004,80,-1,6.8,264,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,24.5,"PG-13",0,0,0,0,1,0,0
"Business Affair, A",1994,98,-1,5.2,131,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Business of Strangers, The",2001,84,-1,6.4,1458,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Busted",1996,93,-1,3,196,45.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"But I'm a Cheerleader",1999,85,1200000,6.2,3897,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,1,0,1,0
"Butter",1998,101,-1,2.9,83,24.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Butterfly Effect, The",2004,120,1.3e+07,7.6,22975,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,0,0
"Buying the Cow",2002,88,-1,5.6,936,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Bye Bye, Love",1995,106,-1,5.8,1420,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"C'era una volta il West",1968,158,5e+06,8.7,17241,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,44.5,"PG-13",0,0,0,1,0,0,0
"CQ",2001,91,7e+06,6.4,1315,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,"R",0,0,1,1,0,0,0
"Cabin Fever",2002,93,1500000,5.1,7776,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cable Guy, The",1996,96,4.7e+07,5.5,16266,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"PG-13",0,0,1,1,0,0,0
"Cachorro",2004,100,-1,7.4,210,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,1,1,0,0,0
"Cadillac Ranch",1996,100,-1,5.3,89,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Caduta degli dei, La",1969,150,-1,7.3,708,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"R",0,0,0,1,0,0,0
"Cafe Society",1995,104,3500000,5.7,137,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Caged Hearts",1995,94,-1,3.7,47,14.5,24.5,24.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Calcium Kid, The",2004,89,-1,5.4,423,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Calendar Girls",2003,108,-1,7.1,3618,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,1,1,0,0,0
"Caligula",1996,51,-1,1.5,15,44.5,14.5,4.5,0,4.5,14.5,0,0,0,14.5,"R",0,0,0,1,0,0,0
"Calling Bobcat",2000,91,230000,5,42,14.5,4.5,4.5,4.5,0,4.5,4.5,4.5,14.5,34.5,"R",0,0,0,0,0,0,0
"Camp",2003,114,-1,6.6,1332,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,24.5,"PG-13",0,0,1,1,0,0,0
"Campfire Tales",1997,88,-1,5.6,561,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Can't Be Heaven",2000,94,2e+06,5.7,104,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"PG",0,0,1,1,0,1,0
"Can't Hardly Wait",1998,101,1e+07,6.2,8191,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,1,0
"Candyman: Farewell to the Flesh",1995,93,-1,4.5,1176,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cannes Man",1996,88,-1,5.4,130,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Cape Fear",1991,128,3.5e+07,7.1,15585,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Captain Corelli's Mandolin",2001,131,5.7e+07,5.9,5281,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Captain Nuke and the Bomber Boys",1995,90,-1,4.5,80,4.5,4.5,4.5,14.5,14.5,4.5,14.5,4.5,4.5,24.5,"PG",0,0,1,0,0,0,0
"Captiva Island",1995,85,-1,4.5,35,14.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,24.5,"PG",0,0,1,1,0,1,0
"Captives",1994,100,-1,6.1,541,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Captured",2000,95,-1,2.7,201,24.5,24.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Captured Alive",1995,83,-1,1.5,12,45.5,4.5,0,4.5,4.5,0,4.5,0,0,14.5,"R",0,0,0,0,0,0,0
"Carandiru",2003,147,6e+06,7.7,1608,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Career Girls",1997,87,-1,7,1156,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Carman: The Champion",2001,82,-1,4.6,412,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,45.5,"PG-13",1,0,0,1,0,0,0
"Carnal Desires",1999,87,-1,2.8,42,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Carnival of Souls",1998,90,2e+06,2.8,462,34.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Carpool",1996,89,1.7e+07,4.5,829,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Carried Away",1996,109,-1,6.4,393,4.5,4.5,4.5,4.5,14.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Carrington",1995,121,-1,6.5,1401,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Casa de los babys",2003,95,-1,6.7,572,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Casino",1995,176,5.2e+07,7.8,27234,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,"R",0,0,0,1,0,0,0
"Casper",1995,100,5.5e+07,5.6,8798,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Cast Away",2000,143,9e+07,7.3,34580,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,0,1,0,0,0
"Castle Freak",1995,95,-1,4.9,573,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Casualties",1997,85,-1,5.4,221,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cat in the Hat, The",2003,82,1.09e+08,3.2,4997,44.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Cat's Meow, The",2001,114,-1,6.5,2195,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Catch Me If You Can",2002,141,5.2e+07,7.6,39915,4.5,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,4.5,"PG-13",0,0,0,1,0,0,0
"Catch That Kid",2004,91,1.8e+07,4.5,598,14.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"PG",1,0,1,0,0,0,0
"Catfish in Black Bean Sauce",1999,119,-1,6.7,181,4.5,4.5,4.5,4.5,14.5,14.5,14.5,24.5,4.5,14.5,"PG-13",0,0,1,1,0,0,0
"Catherine's Grove",1997,91,-1,3.1,38,14.5,14.5,4.5,24.5,14.5,14.5,14.5,0,0,4.5,"R",0,0,0,1,0,0,0
"Cats & Dogs",2001,87,6e+07,5.4,6487,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Catwoman",2004,104,8.5e+07,3.4,8815,34.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"PG-13",1,0,0,0,0,0,0
"Caught",1996,110,-1,6.5,317,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Caught Up",1998,97,-1,4.8,188,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cause of Death",2000,95,-1,4.4,85,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cavedweller",2004,101,-1,4.8,110,4.5,14.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Caveman's Valentine, The",2001,105,-1,6,1505,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cecil B. DeMented",2000,87,1e+07,6,3464,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Celebrity",1998,113,1.2e+07,6.1,4820,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Cell, The",2000,109,3.3e+07,6.1,16118,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cellblock Sisters: Banished Behind Bars",1995,95,-1,3,102,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Cellular",2004,94,2.5e+07,6.4,6182,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Celsius 41.11: The Temperature at Which the Brain... Begins to Die",2004,72,-1,3.8,584,44.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,44.5,"R",0,0,0,0,1,0,0
"Cement",1999,97,-1,5.3,99,4.5,4.5,4.5,4.5,14.5,24.5,4.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Centerfold",1996,86,-1,4.2,35,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Century",1993,112,-1,5.6,68,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Century Hotel",2001,95,-1,6.7,166,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,1,0
"Cero y van cuatro",2004,92,-1,7.3,26,14.5,0,0,4.5,0,4.5,14.5,34.5,14.5,4.5,"R",0,0,1,0,0,0,0
"Chain Reaction",1996,106,5.5e+07,5.1,5936,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Chain of Command",2000,96,-1,4.6,299,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Chain of Fools",2000,96,2e+07,6.1,845,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Chairman of the Board",1998,95,1e+07,2.6,666,44.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Chakushin ari",2003,111,-1,6.4,691,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Chamber, The",1996,113,5e+07,5.7,2540,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Chameleon",1995,108,-1,5.7,177,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Champions",1998,99,-1,3.3,86,14.5,24.5,14.5,4.5,4.5,4.5,4.5,4.5,0,14.5,"R",0,0,0,0,0,0,0
"Changing Habits",1997,95,1200000,5.5,134,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Changing Lanes",2002,99,4.5e+07,6.6,12779,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Chao ji ji hua",1993,104,-1,5.8,554,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Chaos Factor, The",2000,95,-1,4.5,109,4.5,14.5,14.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Chapter Perfect",1998,100,-1,2.1,13,24.5,4.5,14.5,4.5,14.5,0,0,0,4.5,24.5,"R",0,0,0,1,0,0,0
"Charades",1998,94,-1,4.1,62,14.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Charlie",2004,94,5e+06,5,141,14.5,4.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Charlie's Angels",2000,94,9.2e+07,5.8,25705,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Charlie's Angels: Full Throttle",2003,107,1.2e+08,5,13990,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Charlotte Gray",2001,121,-1,6.3,1832,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Charlotte Sometimes",2002,85,80000,4.6,555,24.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,34.5,"R",0,0,0,1,0,0,0
"Charly",2002,103,950000,5.5,149,4.5,4.5,4.5,0,4.5,4.5,14.5,14.5,14.5,44.5,"PG",0,0,1,1,0,1,0
"Chasing Amy",1997,111,250000,7.6,32141,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,1,1,0,1,0
"Chasing Destiny",2001,91,-1,4.9,72,4.5,0,4.5,14.5,14.5,14.5,14.5,4.5,4.5,24.5,"PG-13",0,0,1,1,0,1,0
"Chasing Holden",2001,101,-1,5,136,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Chasing Liberty",2004,111,2.3e+07,5.7,1911,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,1,0
"Chasing Papi",2003,81,-1,4.2,598,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Chasing Sleep",2000,104,-1,6.4,496,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Cheaper by the Dozen",2003,98,4e+07,5.8,5977,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"PG",0,0,1,1,0,0,0
"Cheats",2002,90,-1,5.9,783,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,1,0
"Cheerleader Ninjas",2002,96,-1,3.1,151,34.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Chek law dak gung",2002,90,-1,5.4,651,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,0,0,0,1,0
"Chelsea Walls",2001,109,-1,4.3,600,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Cheng shi lie ren",1993,105,-1,6.2,919,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"PG-13",1,0,1,0,0,1,0
"Cherish",2002,99,1500000,6.5,743,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Cherry",1999,90,-1,5.2,139,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,1,0,0,1,0
"Cherry Falls",2000,92,1.4e+07,4.9,2165,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Chicago",2002,113,4.5e+07,7.5,34933,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG-13",0,0,1,1,0,0,0
"Chicago Cab",1998,96,-1,6.4,586,4.5,4.5,4.5,4.5,14.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Chik yeung tin sai",2002,106,-1,6.8,1059,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",1,0,1,0,0,1,0
"Chiklo gouyeung",1992,89,-1,6,424,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Children On Their Birthdays",2002,102,1e+07,6,163,24.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"PG",0,0,0,1,0,0,0
"Children of the Corn III",1995,92,-1,3.3,678,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Children of the Living Dead",2001,90,-1,2.1,385,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Children of the Revolution",1996,101,-1,6.3,786,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,"R",0,0,1,1,0,0,0
"Chill Factor",1999,101,3.4e+07,5,2542,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Chillicothe",1999,90,-1,7.1,96,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,1,0
"Chin gei bin",2003,102,-1,5.8,562,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,1,0,0,0,0
"Chinese Box",1997,99,-1,6,917,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Chinese Coffee",2000,99,-1,6.9,61,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,45.5,"R",0,0,0,1,0,0,0
"Chocolat",2000,121,-1,7.3,20031,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"PG-13",0,0,1,1,0,1,0
"Choke",2000,89,-1,3.2,95,24.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Chong qing sen lin",1994,102,-1,7.7,4814,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,34.5,"PG-13",0,0,0,1,0,1,0
"Chooch",2003,81,-1,4,9,0,0,14.5,34.5,14.5,0,0,14.5,24.5,14.5,"R",0,0,1,0,0,1,0
"Chopin. Pragnienie milosci",2002,134,3500000,4,55,4.5,14.5,4.5,14.5,4.5,14.5,14.5,4.5,0,14.5,"R",0,0,0,1,0,1,0
"Chopper",2001,3,-1,6.4,58,4.5,4.5,0,0,4.5,14.5,4.5,34.5,4.5,24.5,"R",0,0,0,0,0,0,1
"Choristes, Les",2004,96,-1,7.7,2374,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,"PG-13",0,0,0,1,0,1,0
"Christina's House",1999,96,-1,4,481,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Christmas Carol, A",1997,72,-1,4.5,86,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG",0,1,0,1,0,0,0
"Christmas Carol: The Movie",2001,81,-1,4.9,95,4.5,4.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,24.5,"PG",0,1,0,0,0,0,0
"Christmas with the Kranks",2004,98,6e+07,4.5,1520,14.5,4.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Chrome and Hot Leather",1971,91,-1,4.5,48,4.5,14.5,14.5,4.5,14.5,4.5,14.5,0,4.5,24.5,"PG-13",1,0,0,1,0,0,0
"Chronicles of Riddick, The",2004,135,1.1e+08,6.2,11438,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",1,0,0,0,0,0,0
"Chrystal",2004,106,-1,3.8,169,4.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,4.5,34.5,"R",0,0,0,1,0,0,0
"Chuck&Buck",2000,96,250000,6.6,1919,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,1,0,0,0
"Chuen jik sat sau",2001,102,-1,6.8,1234,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",1,0,0,0,0,0,0
"Chump Change",2004,87,-1,5,139,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,45.5,"R",0,0,1,0,0,1,0
"Chunhyang",2000,120,-1,7.5,507,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Ciao America",2002,100,5e+06,4.8,27,14.5,4.5,0,4.5,14.5,4.5,0,4.5,14.5,44.5,"R",0,0,1,1,0,1,0
"Cible, La",1997,95,-1,6.9,21,4.5,4.5,4.5,4.5,4.5,14.5,4.5,34.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Cidade de Deus",2002,135,3300000,8.7,25964,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,44.5,"R",0,0,0,1,0,0,0
"Cider House Rules, The",1999,126,2.4e+07,7.5,18950,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,1,0
"Cilantro y perejil",1995,90,-1,6.5,106,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"PG-13",0,0,1,0,0,1,0
"Cinderella Story, A",2004,95,2e+07,4.9,2755,14.5,4.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"PG",0,0,1,0,0,1,0
"Circle of Friends",1995,103,-1,6.6,2499,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"Circuit, The",2002,91,-1,2.8,71,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Circus",2000,95,-1,5.6,728,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Citizen Toxie: The Toxic Avenger IV",2000,99,-1,6.5,531,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,4.5,34.5,"R",1,0,1,0,0,0,0
"Citizen Verdict",2003,97,1e+07,4.8,58,14.5,0,4.5,24.5,14.5,4.5,4.5,4.5,14.5,14.5,"R",0,0,0,0,0,0,0
"City Hall",1996,111,4e+07,6.1,4381,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"City by the Sea",2002,108,6e+07,6.3,4886,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"City of Angels",1998,114,5.5e+07,6.2,15333,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"City of Ghosts",2002,116,17500000,5.6,877,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"City of the Dead, The",1960,76,-1,6.5,419,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"PG-13",0,0,0,0,0,0,0
"Civil Action, A",1998,112,6e+07,6.4,6847,4.5,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,0,0
"Civil Brand",2002,95,5e+05,4.1,102,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Claim, The",2000,115,-1,6.5,1710,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,1,0
"Class of Nuke 'Em High 3: The Good, the Bad and the Subhumanoid",1994,102,-1,3.7,88,24.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Claudine's Return",1998,91,2e+06,3.8,80,24.5,14.5,4.5,4.5,14.5,4.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,1,0
"Claustrophobia",2003,79,114000,4.2,90,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,"R",0,0,1,0,0,0,0
"Clay Pigeons",1998,104,8e+06,6.4,2658,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Clean and Narrow",1999,85,-1,4.1,45,4.5,14.5,4.5,4.5,14.5,24.5,14.5,4.5,0,4.5,"R",0,0,0,1,0,0,0
"Clerks.",1994,92,230000,7.9,39927,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,34.5,"R",0,0,1,1,0,0,0
"Click: The Body Beautiful",2000,91,-1,2.5,41,24.5,4.5,14.5,4.5,4.5,24.5,4.5,4.5,0,4.5,"R",0,0,1,0,0,0,0
"Climb, The",1998,98,-1,6.7,139,4.5,4.5,4.5,0,4.5,14.5,24.5,24.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Climb, The",2002,98,2500000,5.2,83,4.5,4.5,4.5,4.5,14.5,4.5,4.5,14.5,4.5,24.5,"PG",1,0,0,1,0,0,0
"Clockers",1995,129,2.5e+07,6.8,3099,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Clockstoppers",2002,94,2.6e+07,5.1,2555,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG",0,0,0,0,0,0,0
"Clockwatchers",1997,96,-1,6.4,1786,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"PG-13",0,0,1,1,0,0,0
"Close Enough to Touch",2002,87,-1,3.7,39,14.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Close Up",1996,84,-1,6.7,10,34.5,14.5,0,0,14.5,0,24.5,14.5,0,24.5,"R",0,0,0,0,0,0,0
"Closer You Get, The",2000,90,-1,6.2,441,4.5,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Clown at Midnight, The",1998,91,-1,4.2,235,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Club Dread",2004,119,9e+06,5.2,3432,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Club V.R.",1996,93,-1,3.5,25,14.5,4.5,14.5,4.5,14.5,24.5,0,4.5,0,14.5,"R",0,0,0,0,0,0,0
"Club Vampire",1998,76,-1,1.8,84,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Club Wild Side",1998,101,-1,4.9,44,4.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Clubhouse Detectives",1996,85,-1,4.7,51,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,4.5,24.5,"PG",0,0,0,0,0,0,0
"Clubland",1999,94,4e+06,4,58,24.5,4.5,4.5,4.5,14.5,24.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Clueless",1995,97,2e+07,6.7,16521,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,1,0
"Coach Carter",2005,136,3e+07,6.6,1636,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,24.5,"PG-13",0,0,0,1,0,0,0
"Coastlines",2002,119,-1,5.7,29,4.5,4.5,4.5,0,14.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Cockettes, The",2002,100,3e+05,6.6,177,4.5,0,4.5,4.5,4.5,14.5,14.5,24.5,14.5,24.5,"R",0,0,0,0,1,0,0
"Cockfight",2001,45,-1,7.9,12,14.5,0,0,0,0,4.5,0,0,24.5,45.5,"R",0,0,0,0,1,0,0
"Code 46",2003,92,7500000,6.4,2094,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Code Conspiracy, The",2001,97,-1,6.1,123,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,45.5,"PG-13",1,0,0,0,0,0,0
"Codename: Silencer",1995,93,-1,4.3,67,14.5,4.5,14.5,14.5,4.5,14.5,4.5,4.5,0,24.5,"R",1,0,0,0,0,0,0
"Coffee and Cigarettes",2003,95,-1,6.8,3729,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,1,1,0,0,0
"Cold Around the Heart",1997,96,-1,3.8,407,34.5,14.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cold Creek Manor",2003,118,-1,4.8,3498,14.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cold Harvest",1998,89,-1,4.8,90,14.5,4.5,14.5,4.5,14.5,4.5,14.5,4.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Cold Heart",2001,95,3e+06,4.1,140,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cold Hearts",1999,90,9e+05,3.9,131,14.5,4.5,4.5,14.5,4.5,4.5,14.5,4.5,4.5,24.5,"R",0,0,0,0,0,0,0
"Cold Mountain",2003,152,8.3e+07,7.4,15712,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Coldblooded",1995,92,-1,6.6,872,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"R",1,0,1,0,0,0,0
"Collateral",2004,120,6.5e+07,7.7,24499,4.5,4.5,4.5,4.5,4.5,4.5,24.5,34.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Collateral Damage",2002,108,8.5e+07,5.2,8590,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Collectors, The",1999,90,-1,3.8,125,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Colorz of Rage",1999,90,-1,2.6,21,34.5,4.5,4.5,4.5,4.5,4.5,0,0,0,34.5,"R",0,0,0,1,0,0,0
"Comedian Harmonists",1997,126,-1,7.3,939,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,"R",0,0,0,1,0,0,0
"Comfortably Numb",1995,100,-1,4.5,18,24.5,14.5,4.5,14.5,14.5,14.5,0,4.5,0,4.5,"NC-17",0,0,0,1,0,0,0
"Commandments",1997,88,5e+06,5.4,468,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Comme une image",2004,110,-1,7.3,924,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,1,1,0,1,0
"Committed",2000,98,3e+06,5.2,739,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Company Man",2000,86,1.6e+07,4.8,492,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Company, The",2003,112,1.5e+07,6.2,1505,14.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,0,0
"Complicity",2000,99,-1,5.6,160,4.5,4.5,4.5,4.5,24.5,24.5,24.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Comunidad, La",2000,110,2e+06,7.2,1270,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,1,0,0,0,0
"Coneheads",1993,88,-1,4.9,5249,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Confession, The",1999,114,4e+06,5.8,519,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Confessions of a Dangerous Mind",2002,113,2.9e+07,7.1,11487,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Confessions of a Teenage Drama Queen",2004,89,1.5e+07,4.4,2205,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Confidence",2003,97,1.5e+07,6.8,6168,4.5,4.5,4.5,4.5,4.5,14.5,34.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Confidences trop intimes",2004,104,-1,7,751,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Congo",1995,109,5e+07,4.4,8058,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,0,0
"Connie and Carla",2004,98,-1,6.1,1367,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Consequence",2003,97,-1,4.5,104,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Conspiracy Theory",1997,135,7.5e+07,6.4,15470,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Contact",1997,153,9e+07,7.3,36390,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"PG",0,0,0,1,0,0,0
"Contaminated Man, The",2000,100,-1,4.6,300,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Conte d'automne",1998,112,-1,7.1,855,4.5,4.5,4.5,4.5,4.5,4.5,14.5,34.5,14.5,14.5,"PG",0,0,0,0,0,1,0
"Contender, The",2000,126,9e+06,6.9,7023,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Contract, The",2000,42,-1,4.2,6,14.5,14.5,14.5,0,14.5,0,34.5,0,0,0,"R",0,0,0,0,0,0,1
"Controlled Chaos",2003,93,-1,5.1,11,14.5,0,0,24.5,0,0,0,24.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Controvento",2000,98,-1,5.4,25,4.5,0,14.5,14.5,24.5,4.5,24.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Convent, The",2000,84,-1,4.8,629,14.5,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Convergence",1999,93,-1,4.3,212,14.5,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cookers",2001,96,-1,8.6,22,0,4.5,4.5,0,4.5,0,0,14.5,14.5,45.5,"R",0,0,0,1,0,0,0
"Cookie's Fortune",1999,118,-1,6.9,4727,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"PG-13",0,0,1,1,0,0,0
"Cookout, The",2004,97,-1,3.2,368,34.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Cool, Dry Place, A",1998,97,-1,6.3,725,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,0,0
"Cooler, The",2003,101,-1,7,6329,4.5,4.5,4.5,4.5,4.5,14.5,34.5,24.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Cop Land",1997,116,1.5e+07,6.7,12677,4.5,4.5,4.5,4.5,4.5,14.5,34.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Copycat",1995,123,2e+07,6.5,7804,4.5,4.5,4.5,4.5,14.5,24.5,24.5,24.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cord",2000,100,-1,5.3,384,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Core, The",2003,135,7.4e+07,5.4,7860,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Corky Romano",2001,86,1.1e+07,4.6,2463,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Coronado",2003,88,4700000,4.5,411,4.5,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Corporate Fantasy",1999,86,-1,3.1,46,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Corporate Ladder, The",1997,112,-1,4.6,72,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Corpse, The",1970,91,-1,3.6,73,14.5,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Corruptor, The",1999,99,-1,5.5,4312,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Cosi",1996,103,-1,6.8,536,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,1,0,0,0,0
"Cotton Mary",1999,124,3500000,5.3,164,4.5,4.5,4.5,14.5,14.5,14.5,4.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Count Yorga, Vampire",1970,90,-1,5.4,278,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG-13",0,0,0,0,0,0,0
"Count of Monte Cristo, The",2002,134,3.5e+07,7.4,13907,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"PG-13",1,0,0,1,0,0,0
"Counter Measures",1999,90,-1,3.7,119,14.5,14.5,14.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Country Life",1994,114,-1,6.2,280,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"PG-13",0,0,0,1,0,1,0
"Country of My Skull",2004,104,1.2e+07,5.1,194,14.5,4.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Courage Under Fire",1996,117,4.6e+07,6.7,8884,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Cousin Bette",1998,108,-1,6.2,628,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Cover Me",1995,94,-1,3.5,79,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Cover Story",2002,92,-1,3.5,64,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Cowboy Up",2001,105,-1,5.3,143,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"PG-13",0,0,0,1,0,1,0
"Cowboys and Angels",2000,97,-1,6.5,83,0,4.5,4.5,0,4.5,14.5,14.5,24.5,14.5,14.5,"PG",0,0,0,0,0,1,0
"Coyote Run",1996,101,-1,3.9,37,24.5,14.5,14.5,14.5,4.5,24.5,4.5,4.5,0,4.5,"R",0,0,0,0,0,0,0
"Coyote Ugly",2000,100,4.5e+07,5.4,13221,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,1,0,1,0
"Crack in the Floor, A",2000,90,-1,2.5,199,44.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Crackerjack 2",1996,96,-1,2.7,69,24.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Crackerjack 3",2000,97,-1,4.8,29,24.5,0,14.5,4.5,14.5,4.5,0,4.5,4.5,34.5,"PG-13",1,0,0,0,0,0,0
"Cradle 2 the Grave",2003,101,2.5e+07,5.3,4164,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Cradle Will Rock",1999,132,3.2e+07,6.7,3375,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Craft, The",1996,101,1.5e+07,5.9,9187,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Crash",2004,113,6500000,8.3,1660,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,45.5,"R",0,0,0,1,0,0,0
"Crash Point Zero",2000,89,-1,2.8,97,34.5,14.5,14.5,14.5,4.5,4.5,0,0,4.5,14.5,"R",1,0,0,0,0,0,0
"Crazy Six",1998,94,-1,1.9,273,45.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Crazy as Hell",2002,113,-1,5.5,174,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Crazy in Alabama",1999,111,1.5e+07,6.1,2086,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,"PG-13",0,0,1,1,0,0,0
"Crazy/Beautiful",2001,135,1.4e+07,6.5,4503,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,"PG-13",0,0,0,1,0,1,0
"Crazysitter, The",1995,92,-1,3.8,79,4.5,14.5,14.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"PG-13",0,0,1,1,0,0,0
"Creeps, The",1997,80,-1,3.2,107,24.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Crew, The",2000,84,2.3e+07,5.3,1297,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",0,0,1,0,0,0,0
"Crier, The",1995,78,250000,3.3,12,34.5,14.5,4.5,4.5,4.5,0,0,14.5,0,4.5,"R",0,0,0,0,0,0,0
"Crime Partners 2000",2001,102,250000,4.4,57,14.5,14.5,4.5,0,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Crime Spree",2003,98,1e+07,6.3,953,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Crime and Punishment in Suburbia",2000,98,-1,5.8,873,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Crimebroker",1993,93,-1,4.6,49,4.5,0,14.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Crimen del padre Amaro, El",2002,118,1800000,7,2469,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Crimetime",1996,118,-1,3,359,45.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Criminal",2004,87,-1,6.4,762,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Criminal Hearts",1995,92,-1,4.8,74,4.5,4.5,4.5,24.5,14.5,4.5,14.5,4.5,14.5,14.5,"R",1,0,0,1,0,0,0
"Criminal Minds",1998,88,-1,6.5,6,14.5,0,0,14.5,0,0,14.5,0,45.5,0,"R",1,0,0,0,0,0,0
"Criminal, The",1999,99,-1,5.5,152,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Crimson Tide",1995,116,5.3e+07,7.1,14033,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",1,0,0,1,0,0,0
"Critical Care",1997,107,1.2e+07,5.8,397,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Critical Mass",2000,92,-1,4.1,86,24.5,14.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Crna macka, beli macor",1998,123,-1,7.6,4613,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,34.5,"R",0,0,1,0,0,1,0
"Crocodile 2: Death Swamp",2002,89,-1,3.6,249,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Crocodile Dundee in Los Angeles",2001,92,2.5e+07,4.7,2698,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG",0,0,1,1,0,0,0
"Crocodile Hunter: Collision Course, The",2002,90,1.3e+07,5.3,1648,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Crosscut",1996,98,-1,5.5,43,4.5,4.5,4.5,4.5,4.5,34.5,24.5,4.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Crossing Guard, The",1995,111,-1,6.3,2269,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Crossplot",1969,96,1e+06,4.1,49,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,0,14.5,"PG-13",0,0,0,0,0,0,0
"Crossroads",2002,93,1.2e+07,3.1,8546,44.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"PG-13",0,0,1,1,0,1,0
"Crossworlds",1996,90,-1,5.1,496,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Crow: City of Angels, The",1996,84,1.3e+07,3.8,3656,14.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Crow: Salvation, The",2000,102,2.5e+07,4.9,1383,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",1,0,0,1,0,0,0
"Crude Oasis, The",1995,92,-1,5.6,35,4.5,0,4.5,14.5,14.5,4.5,14.5,24.5,4.5,4.5,"R",0,0,0,1,0,1,0
"Cruel Intentions",1999,97,1.1e+07,6.5,25634,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Cry of the Banshee",1970,87,5e+05,4.6,180,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cry, the Beloved Country",1995,106,-1,6.4,387,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"PG-13",0,0,0,1,0,0,0
"Crying Game, The",1992,112,-1,7.3,9524,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,"R",0,0,0,1,0,1,0
"Cube",1997,90,-1,7.4,16205,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,"R",0,0,0,0,0,0,0
"Cube 2: Hypercube",2002,95,-1,5.6,4536,4.5,4.5,4.5,14.5,14.5,24.5,14.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Cube Zero",2004,97,-1,5.7,1570,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Cupid",1997,95,-1,4.1,96,4.5,14.5,4.5,14.5,24.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Curdled",1996,88,2309723,5.5,959,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,1,0,0,0,0
"Cure for Boredom, The",2000,87,-1,4.4,21,14.5,0,14.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"R",0,0,1,0,0,0,0
"Cure, The",1995,97,-1,6.9,1568,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,34.5,"PG-13",0,0,0,1,0,0,0
"Curse of the Forty-Niner",2003,86,-1,3,99,24.5,24.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Curse of the Jade Scorpion, The",2001,103,2.6e+07,6.8,5846,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,"PG-13",0,0,1,1,0,0,0
"Curse of the Puppet Master",1998,77,250000,2.7,267,24.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Curse of the Starving Class",1994,102,-1,2.6,370,45.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Cursed",2005,97,3.5e+07,4.7,1277,14.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Cut",2000,98,-1,4.2,868,14.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,1,0,0,0,0
"Cutaway",2000,104,9e+06,5.1,390,4.5,4.5,4.5,4.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Cutthroat Island",1995,119,9.2e+07,5.1,3942,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,0,0,1,0
"Cyber-Tracker 2",1995,97,-1,3.1,67,24.5,24.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,14.5,"R",1,0,0,0,0,0,0
"Cyberella: Forbidden Passions",1996,87,-1,2.7,40,14.5,14.5,4.5,4.5,14.5,4.5,14.5,4.5,4.5,14.5,"R",0,0,0,0,0,1,0
"Cyberjack",1995,99,-1,3.7,106,14.5,14.5,24.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Cyborg 3: The Recycler",1994,90,-1,3.5,110,24.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Cyborg Cop III",1995,94,-1,2.9,37,34.5,14.5,4.5,14.5,4.5,4.5,14.5,4.5,0,4.5,"R",1,0,0,0,0,0,0
"Cypher",2002,95,7500000,7.2,3160,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",1,0,0,0,0,0,0
"Cypress Edge",1999,90,-1,2.9,37,14.5,24.5,14.5,14.5,14.5,4.5,4.5,4.5,0,4.5,"R",0,0,0,1,0,0,0
"D-Tox",2002,92,5.5e+07,4.7,2742,4.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,0,1,0,0,0
"D.E.B.S.",2004,91,3500000,6,300,14.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,34.5,"PG-13",1,0,1,0,0,0,0
"D3: The Mighty Ducks",1996,104,-1,4.2,2276,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Da wan",2001,100,-1,6,259,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"PG",0,0,1,0,0,0,0
"Dad Savage",1998,104,-1,5.9,110,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Daddy Day Care",2003,92,6e+07,5.7,3803,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,4.5,4.5,"PG",0,0,1,0,0,0,0
"Daddy and Them",2001,101,4e+06,5,364,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,4.5,"R",0,0,1,1,0,0,0
"Dagon",2001,97,4800000,6,1549,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Dahan",1997,145,-1,8,10,0,0,0,14.5,0,0,14.5,34.5,45.5,0,"R",0,0,0,1,0,0,0
"Dahmer",2002,101,-1,5.4,971,14.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Dak miu mai shing",2001,87,-1,5.8,1429,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"PG-13",1,0,1,0,0,0,0
"Dallas 362",2003,100,-1,6.4,46,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,34.5,"R",0,0,0,1,0,0,0
"Damned, The",2001,90,30000,2.2,22,44.5,14.5,0,0,0,0,4.5,4.5,0,34.5,"R",0,0,0,0,0,0,0
"Dance Me Outside",1995,84,-1,6.9,286,4.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,24.5,24.5,"R",0,0,0,1,0,0,0
"Dancer Upstairs, The",2002,133,-1,7,1585,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,0,1,0,0,0
"Dancer in the Dark",2000,140,-1,7.8,15686,4.5,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,34.5,"R",0,0,0,1,0,0,0
"Dancer, Texas Pop. 81",1998,97,-1,6.6,941,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"PG",0,0,1,1,0,0,0
"Dancing at Lughnasa",1998,95,-1,6.2,833,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,4.5,4.5,"PG",0,0,0,1,0,0,0
"Dancing at the Blue Iguana",2000,126,-1,5.8,778,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Dancing in September",2000,102,850000,6.4,166,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Dang doi lai ming",1983,100,-1,7,137,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",1,0,0,1,0,0,0
"Dangerous Beauty",1998,111,-1,7,2714,4.5,4.5,4.5,4.5,4.5,4.5,14.5,24.5,14.5,24.5,"R",0,0,0,1,0,1,0
"Dangerous Lives of Altar Boys, The",2002,105,1.2e+07,7.2,3274,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,14.5,"R",0,0,0,1,0,0,0
"Dangerous Minds",1995,99,-1,5.7,6177,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,4.5,"R",0,0,0,1,0,0,0
"Dangerous Prey",1995,93,-1,3.5,74,14.5,14.5,4.5,4.5,14.5,14.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Danny Deckchair",2003,90,-1,6.5,643,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,4.5,14.5,"PG-13",0,0,1,0,0,0,0
"Dante's Peak",1997,104,1.04e+08,5.6,9203,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Dante's View",1998,85,-1,4.2,20,14.5,14.5,14.5,14.5,14.5,24.5,14.5,14.5,4.5,0,"R",0,0,0,0,0,0,0
"Dare mo shiranai",2004,141,-1,8.2,850,4.5,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,24.5,"PG-13",0,0,0,1,0,0,0
"Daredevil",2003,133,7.5e+07,5.7,20642,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Dark Asylum",2001,83,-1,3.7,202,24.5,14.5,14.5,4.5,14.5,4.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Dark Blue",2002,118,1.5e+07,6.6,3882,4.5,4.5,4.5,4.5,14.5,24.5,34.5,14.5,4.5,4.5,"R",1,0,0,1,0,0,0
"Dark Breed",1996,104,-1,4.2,85,4.5,14.5,24.5,14.5,24.5,14.5,4.5,0,4.5,0,"R",0,0,0,0,0,0,0
"Dark Confessions",1998,92,-1,3.8,20,14.5,0,34.5,4.5,14.5,4.5,0,14.5,4.5,24.5,"R",1,0,0,1,0,0,0
"Dark Dancer, The",1995,98,-1,2.5,89,34.5,14.5,14.5,14.5,4.5,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Dark Descent",2002,96,-1,2.9,75,24.5,24.5,14.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,"R",1,0,0,0,0,0,0
"Dark Harbor",1998,96,-1,4.9,322,4.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Dark Heaven",2002,87,80000,2.4,47,44.5,14.5,4.5,0,0,4.5,4.5,4.5,4.5,14.5,"R",0,0,0,0,0,0,0
"Dark Planet",1996,99,-1,3.3,155,24.5,14.5,14.5,4.5,4.5,14.5,4.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Dark Secrets",1998,91,-1,3.2,43,4.5,14.5,4.5,4.5,14.5,4.5,14.5,4.5,4.5,24.5,"R",0,0,0,1,0,0,0
"Darkdrive",1996,88,-1,2.8,75,24.5,14.5,24.5,14.5,4.5,4.5,4.5,4.5,0,4.5,"R",1,0,0,0,0,0,0
"Darkening, The",1995,80,-1,4.5,13,4.5,14.5,34.5,0,14.5,14.5,0,0,14.5,0,"PG-13",0,0,0,0,0,0,0
"Darkness Falling",2002,85,-1,3.9,49,14.5,4.5,14.5,24.5,4.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,0,1,0,0,0
"Darkness Falls",1999,90,-1,5.5,112,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"R",0,0,0,0,0,0,0
"Darkness Falls",2003,86,1.1e+07,4.5,4928,14.5,4.5,14.5,14.5,14.5,14.5,14.5,4.5,4.5,4.5,"PG-13",0,0,0,0,0,0,0
"Dawn of the Dead",2004,109,2.8e+07,7.4,16283,4.5,4.5,4.5,4.5,4.5,4.5,24.5,24.5,14.5,14.5,"R",1,0,0,1,0,0,0
"Day After Tomorrow, The",2004,124,1.25e+08,6.3,23749,4.5,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Day Without a Mexican, A",2004,100,1500000,5,561,14.5,4.5,4.5,4.5,14.5,14.5,14.5,4.5,4.5,14.5,"R",0,0,1,1,0,0,0
"Day of Defense",2003,102,5e+05,3,8,45.5,0,24.5,0,0,0,0,0,0,24.5,"PG",0,0,0,1,0,0,0
"Day of the Warrior",1996,96,-1,3.1,130,24.5,14.5,4.5,4.5,4.5,14.5,4.5,4.5,4.5,24.5,"R",1,0,0,0,0,0,0
"Day with the Meatball, A",2002,2,-1,5.7,30,4.5,0,0,4.5,14.5,24.5,4.5,14.5,4.5,24.5,"PG",0,0,1,0,0,0,1
"Daylight",1996,110,8e+07,5.4,6979,4.5,4.5,4.5,14.5,14.5,24.5,14.5,4.5,4.5,4.5,"PG-13",1,0,0,1,0,0,0
"Daytrippers, The",1996,87,-1,6.9,1300,4.5,4.5,4.5,4.5,4.5,14.5,24.5,24.5,14.5,4.5,"R",0,0,1,1,0,0,0
"De-Lovely",2004,125,-1,6.7,2039,4.5,4.5,4.5,4.5,4.5,14.5,14.5,14.5,14.5,14.5,"PG-13",0,0,0,1,0,1,0
"Dead & Breakfast",2004,88,-1,5.8,135,14.5,4.5,4.5,4.5,4.5,4.5,14.5,14.5,4.5,24.5,"R",0,0,1,0,0,0,0