-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHot-encode - Movie.csv
We can't make this file beautiful and searchable because it's too large.
4804 lines (4804 loc) · 585 KB
/
Hot-encode - Movie.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,budget,popularity,release_date,revenue,runtime,title,vote_average,vote_count,month,Action,Adventure,Fantasy,Animation,Science Fiction,Drama,Thriller,Family,Comedy,History,War,Western,Romance,Crime,Mystery,Horror,Music,Documentary,Foreign,warner,universal,paramount,walt_disney,sony,Number_Genres
0,237000000,150.437577,2009-12-10,2787965087,162.0,Avatar,7.2,11800,12,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
1,300000000,139.082615,2007-05-19,961000000,169.0,Pirates of the Caribbean: At World's End,6.9,4500,05,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
2,245000000,107.37678799999999,2015-10-26,880674609,148.0,Spectre,6.3,4466,10,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
3,250000000,112.31295,2012-07-16,1084939099,165.0,The Dark Knight Rises,7.6,9106,07,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
4,260000000,43.926995,2012-03-07,284139100,132.0,John Carter,6.1,2124,03,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
5,258000000,115.69981399999999,2007-05-01,890871626,139.0,Spider-Man 3,5.9,3576,05,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
6,260000000,48.681969,2010-11-24,591794936,100.0,Tangled,7.4,3330,11,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
7,280000000,134.27922900000002,2015-04-22,1405403694,141.0,Avengers: Age of Ultron,7.3,6767,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
8,250000000,98.885637,2009-07-07,933959197,153.0,Harry Potter and the Half-Blood Prince,7.4,5293,07,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
9,250000000,155.790452,2016-03-23,873260194,151.0,Batman v Superman: Dawn of Justice,5.7,7004,03,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
10,270000000,57.925623,2006-06-28,391081192,154.0,Superman Returns,5.4,1400,06,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
11,200000000,107.92881100000001,2008-10-30,586090727,106.0,Quantum of Solace,6.1,2965,10,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4
12,200000000,145.84737900000002,2006-06-20,1065659812,151.0,Pirates of the Caribbean: Dead Man's Chest,7.0,5246,06,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
13,255000000,49.046956,2013-07-03,89289910,149.0,The Lone Ranger,5.9,2311,07,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,3
14,225000000,99.398009,2013-06-12,662845518,143.0,Man of Steel,6.5,6359,06,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
15,225000000,53.978602,2008-05-15,419651413,150.0,The Chronicles of Narnia: Prince Caspian,6.3,1630,05,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
16,220000000,144.448633,2012-04-25,1519557910,143.0,The Avengers,7.4,11776,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3
17,380000000,135.413856,2011-05-14,1045713802,136.0,Pirates of the Caribbean: On Stranger Tides,6.4,4948,05,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
18,225000000,52.035179,2012-05-23,624026776,106.0,Men in Black 3,6.2,4160,05,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
19,250000000,120.96574299999999,2014-12-10,956019788,144.0,The Hobbit: The Battle of the Five Armies,7.1,4760,12,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
20,215000000,89.866276,2012-06-27,752215857,136.0,The Amazing Spider-Man,6.5,6586,06,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
21,200000000,37.668301,2010-05-12,310669540,140.0,Robin Hood,6.2,1398,05,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
22,250000000,94.370564,2013-12-11,958400000,161.0,The Hobbit: The Desolation of Smaug,7.6,4524,12,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
23,180000000,42.990906,2007-12-04,372234864,113.0,The Golden Compass,5.8,1303,12,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
24,207000000,61.226009999999995,2005-12-14,550000000,187.0,King Kong,6.6,2337,12,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
25,200000000,100.025899,1997-11-18,1845034188,194.0,Titanic,7.5,7562,11,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,3
26,250000000,198.37239499999998,2016-04-27,1153304495,147.0,Captain America: Civil War,7.1,7241,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
27,209000000,64.928382,2012-04-11,303025485,131.0,Battleship,5.5,2114,04,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
28,150000000,418.708552,2015-06-09,1513528810,124.0,Jurassic World,6.5,8662,06,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
29,200000000,93.004993,2012-10-25,1108561013,143.0,Skyfall,6.9,7604,10,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
30,200000000,35.149586,2004-06-25,783766341,127.0,Spider-Man 2,6.7,4321,06,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
31,200000000,77.68208,2013-04-18,1215439994,130.0,Iron Man 3,6.8,8806,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
32,200000000,78.530105,2010-03-03,1025491110,108.0,Alice in Wonderland,6.4,4645,03,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
33,210000000,3.857526,2006-05-24,459359555,104.0,X-Men: The Last Stand,6.3,3525,05,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
34,200000000,89.186492,2013-06-20,743559607,104.0,Monsters University,7.0,3528,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
35,150000000,21.939663,2009-06-19,836297228,150.0,Transformers: Revenge of the Fallen,6.0,3138,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3
36,210000000,116.840296,2014-06-25,1091405097,165.0,Transformers: Age of Extinction,5.8,3095,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3
37,200000000,46.985445,2013-03-07,491868548,130.0,Oz: The Great and Powerful,5.7,3530,03,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
38,200000000,89.270217,2014-04-16,705717432,142.0,The Amazing Spider-Man 2,6.5,4179,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
39,170000000,73.79505,2010-12-10,400062763,125.0,TRON: Legacy,6.3,2841,12,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
40,200000000,49.98659,2011-06-11,559852396,106.0,Cars 2,5.8,2033,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
41,200000000,51.872839,2011-06-16,219851172,114.0,Green Lantern,5.1,2487,06,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
42,200000000,59.99541800000001,2010-06-16,1066969703,103.0,Toy Story 3,7.6,4597,06,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
43,200000000,71.862892,2009-05-20,371353001,115.0,Terminator Salvation,5.9,2463,05,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,3
44,190000000,102.32221700000001,2015-04-01,1506249360,137.0,Furious 7,7.3,4176,04,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
45,200000000,81.834855,2013-06-20,531865000,116.0,World War Z,6.7,5560,06,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5
46,250000000,118.07869099999999,2014-05-15,747862775,131.0,X-Men: Days of Future Past,7.5,6032,05,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
47,190000000,78.29101800000001,2013-05-05,467365246,132.0,Star Trek Into Darkness,7.4,4418,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
48,195000000,43.349855,2013-02-27,197687603,114.0,Jack the Giant Slayer,5.5,2598,02,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
49,105000000,61.196070999999996,2013-05-10,351040419,143.0,The Great Gatsby,7.3,3769,05,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
50,150000000,62.169881000000004,2010-05-19,335154643,116.0,Prince of Persia: The Sands of Time,6.2,2317,05,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
51,180000000,56.523205000000004,2013-07-11,407602906,131.0,Pacific Rim,6.7,4794,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
52,195000000,28.529607000000002,2011-06-28,1123746996,154.0,Transformers: Dark of the Moon,6.1,3299,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
53,185000000,75.674458,2008-05-21,786636033,122.0,Indiana Jones and the Kingdom of the Crystal Skull,5.7,2495,05,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2
54,175000000,51.692953,2015-11-14,331926147,93.0,The Good Dinosaur,6.6,1736,11,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
55,185000000,125.114374,2012-06-21,538983207,93.0,Brave,6.7,4641,06,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6
56,185000000,65.352913,2016-07-07,343471816,122.0,Star Trek Beyond,6.6,2568,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
57,180000000,66.390712,2008-06-22,521311860,98.0,WALL·E,7.8,6296,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
58,140000000,22.57178,2007-08-08,258022233,91.0,Rush Hour 3,6.1,783,08,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
59,200000000,45.274225,2009-10-10,769653595,158.0,2012,5.6,4903,10,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
60,200000000,39.744242,2009-11-04,325233863,96.0,A Christmas Carol,6.6,1095,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
61,176000003,85.36908000000001,2015-02-04,183987723,124.0,Jupiter Ascending,5.2,2768,02,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
62,180000000,42.741719,2016-06-29,356743061,109.0,The Legend of Tarzan,5.5,2430,06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
63,180000000,67.391328,2005-12-07,748806957,143.0,"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",6.7,2629,12,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
64,178000000,139.272042,2016-05-18,543934787,144.0,X-Men: Apocalypse,6.4,4721,05,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
65,185000000,187.322927,2008-07-16,1004558444,152.0,The Dark Knight,8.2,12002,07,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
66,175000000,92.201962,2009-05-13,735099082,96.0,Up,7.7,6870,05,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
67,175000000,36.167578000000006,2009-03-19,381509870,94.0,Monsters vs Aliens,6.0,1423,03,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
68,140000000,120.725053,2008-04-30,585174222,126.0,Iron Man,7.4,8776,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
69,170000000,32.319043,2011-11-22,185770160,126.0,Hugo,7.0,2141,11,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
70,170000000,40.748915000000004,1999-06-29,222104681,106.0,Wild Wild West,5.1,1020,06,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,5
71,145000000,60.034162,2008-07-01,401128639,112.0,The Mummy: Tomb of the Dragon Emperor,5.2,1387,07,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
72,175000000,90.23791999999999,2016-08-02,745000000,123.0,Suicide Squad,5.9,7458,08,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,5
73,175000000,27.082182,2007-06-09,173000000,96.0,Evan Almighty,5.3,1151,06,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3
74,178000000,79.456485,2014-05-27,370541256,113.0,Edge of Tomorrow,7.6,4858,05,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
75,175000000,44.640291999999995,1995-07-28,264218220,135.0,Waterworld,5.9,992,07,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
76,175000000,32.852443,2009-08-04,302469017,118.0,G.I. Joe: The Rise of Cobra,5.6,1962,08,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
77,175000000,128.65596399999998,2015-06-09,857611174,94.0,Inside Out,8.0,6560,06,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
78,175000000,94.19931600000001,2016-04-07,966550600,106.0,The Jungle Book,6.7,2892,04,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
79,200000000,77.30019399999999,2010-04-28,623933331,124.0,Iron Man 2,6.6,6849,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
80,170000000,77.178973,2012-05-30,396600000,127.0,Snow White and the Huntsman,5.8,3118,05,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
81,180000000,110.62064699999999,2014-05-28,758539785,97.0,Maleficent,7.0,4496,05,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,5
82,170000000,243.79174300000003,2014-06-26,710644566,130.0,Dawn of the Planet of the Apes,7.3,4410,06,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
83,27000000,2.418535,2015-02-13,0,109.0,The Lovers,4.8,34,02,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
84,175000000,41.796339,2013-12-06,150962475,119.0,47 Ronin,5.9,1326,12,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
85,170000000,72.22526500000001,2014-03-20,714766572,136.0,Captain America: The Winter Soldier,7.6,5764,03,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
86,165000000,44.041185999999996,2010-05-16,752600867,93.0,Shrek Forever After,6.0,1959,05,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
87,190000000,130.311355,2015-05-19,209154322,130.0,Tomorrowland,6.2,2846,05,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4
88,165000000,203.73459,2014-10-24,652105443,102.0,Big Hero 6,7.8,6135,10,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
89,165000000,62.341073,2012-11-01,471222889,108.0,Wreck-It Ralph,7.1,4570,11,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
90,165000000,47.323228,2004-11-10,305875730,100.0,The Polar Express,6.4,1474,11,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
91,165000000,48.775723,2016-06-22,389681935,120.0,Independence Day: Resurgence,4.9,2491,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
92,165000000,67.263269,2010-03-05,494878759,98.0,How to Train Your Dragon,7.5,4227,03,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
93,200000000,69.405188,2003-07-02,435000000,109.0,Terminator 3: Rise of the Machines,5.9,2143,07,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,3
94,170000000,481.09862400000003,2014-07-30,773328629,121.0,Guardians of the Galaxy,7.9,9742,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
95,165000000,724.247784,2014-11-05,675120017,169.0,Interstellar,8.1,10867,11,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,3
96,160000000,167.58371,2010-07-14,825532764,148.0,Inception,8.1,13752,07,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,5
97,15000000,9.476999000000001,2016-07-29,77000000,120.0,Shin Godzilla,6.5,143,07,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5
98,250000000,108.849621,2012-11-26,1021103568,169.0,The Hobbit: An Unexpected Journey,7.0,8297,11,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
99,38000000,6.909942,2001-06-22,207283925,106.0,The Fast and the Furious,6.6,3428,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
100,150000000,60.269279000000004,2008-11-24,333932083,166.0,The Curious Case of Benjamin Button,7.3,3292,11,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,5
101,160000000,3.195174,2011-05-24,353624124,132.0,X-Men: First Class,7.1,5181,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
102,160000000,127.28442700000001,2015-11-18,653428261,137.0,The Hunger Games: Mockingjay - Part 2,6.6,3984,11,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
103,150000000,35.580815,2010-07-13,215283742,109.0,The Sorcerer's Apprentice,5.8,1470,07,1,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
104,160000000,21.133748,2006-05-12,181674817,99.0,Poseidon,5.5,583,05,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
105,170000000,56.268916000000004,2016-05-25,299370084,113.0,Alice Through the Looking Glass,6.5,1725,05,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
106,160000000,42.986467,2007-05-17,798958165,93.0,Shrek the Third,6.0,2278,05,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
107,160000000,63.148529,2016-05-25,433677183,123.0,Warcraft,6.3,2268,05,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
108,155000000,202.04263500000002,2015-06-23,440603537,126.0,Terminator Genisys,5.8,3631,06,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
109,155000000,49.661984000000004,2010-08-13,415686217,113.0,The Chronicles of Narnia: The Voyage of the Dawn Treader,6.2,1514,08,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
110,140000000,34.20669,2001-05-21,449220945,183.0,Pearl Harbor,6.6,1791,05,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,3
111,150000000,25.468493,2007-06-27,709709780,144.0,Transformers,6.6,4040,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3
112,155000000,39.019228999999996,2004-11-21,167298192,175.0,Alexander,5.6,927,11,1,1,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,6
113,150000000,78.14439499999999,2007-06-28,938212738,138.0,Harry Potter and the Order of the Phoenix,7.4,5494,06,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,4
114,150000000,101.250416,2005-11-05,895921036,157.0,Harry Potter and the Goblet of Fire,7.5,5608,11,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
115,150000000,56.758410999999995,2008-07-01,624029371,92.0,Hancock,6.2,2961,07,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
116,150000000,70.867401,2007-12-14,585349010,101.0,I Am Legend,6.9,4853,12,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,5
117,150000000,53.905592000000006,2005-07-13,474968763,115.0,Charlie and the Chocolate Factory,6.7,3624,07,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
118,150000000,65.677399,2007-06-22,623722818,111.0,Ratatouille,7.5,4369,06,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
119,150000000,115.040024,2005-06-10,374218673,140.0,Batman Begins,7.5,7359,06,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
120,150000000,44.141021,2008-10-30,603900354,89.0,Madagascar: Escape 2 Africa,6.2,1810,10,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
121,150000000,81.781591,2009-05-20,413106170,105.0,Night at the Museum: Battle of the Smithsonian,5.9,1971,05,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
122,150000000,5.954333999999999,2009-04-28,373062864,107.0,X-Men Origins: Wolverine,6.2,4021,04,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
123,150000000,73.313918,2003-11-05,424988211,129.0,The Matrix Revolutions,6.4,3096,11,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
124,150000000,165.12536599999999,2013-11-27,1274219009,102.0,Frozen,7.3,5295,11,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
125,150000000,70.78591,2003-05-15,738599701,138.0,The Matrix Reloaded,6.7,3443,05,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
126,170000000,99.499595,2013-10-29,644571402,112.0,Thor: The Dark World,6.8,4755,10,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
127,150000000,434.27856399999996,2015-05-13,378858340,120.0,Mad Max: Fury Road,7.2,9427,05,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
128,150000000,67.447636,2009-05-13,356613439,138.0,Angels & Demons,6.5,2129,05,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2
129,150000000,86.493424,2011-04-21,449326618,115.0,Thor,6.6,6525,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
130,150000000,41.845878000000006,2008-11-21,309979994,98.0,Bolt,6.3,1750,11,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
131,150000000,26.710397999999998,2009-07-21,292817841,88.0,G-Force,5.1,510,07,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
132,150000000,44.927634999999995,2012-03-27,301000000,99.0,Wrath of the Titans,5.5,1431,03,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
133,150000000,50.306728,2012-05-08,245527149,113.0,Dark Shadows,5.7,2320,05,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
134,150000000,114.52223700000002,2015-07-23,682330139,131.0,Mission: Impossible - Rogue Nation,7.1,3224,07,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
135,150000000,21.214571,2010-02-11,0,102.0,The Wolfman,5.5,549,02,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3
136,150000000,29.332905,2007-10-28,287594577,91.0,Bee Movie,5.7,1171,10,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
137,150000000,51.247321,2011-05-25,665692281,91.0,Kung Fu Panda 2,6.7,1880,05,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
138,150000000,33.769335999999996,2010-06-30,318502923,103.0,The Last Airbender,4.7,1151,06,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
139,150000000,63.079003,2006-05-03,397850012,126.0,Mission: Impossible III,6.5,2028,05,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
140,150000000,39.004588,2013-06-27,205366737,131.0,White House Down,6.4,1891,06,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
141,150000000,12.362599000000001,2011-03-09,38992758,88.0,Mars Needs Moms,5.5,199,03,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
142,149000000,22.550135,2006-10-22,64459316,85.0,Flushed Away,6.0,874,10,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
143,150000000,48.03528,2015-09-24,128388320,111.0,Pan,5.9,954,09,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
144,145000000,38.73494,2014-02-07,272912430,92.0,Mr. Peabody & Sherman,6.7,843,02,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
145,175000000,66.803149,2004-05-13,497409852,163.0,Troy,6.9,2759,05,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3
146,145000000,44.989191999999996,2012-06-06,746921274,93.0,Madagascar 3: Europe's Most Wanted,6.4,1808,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
147,140000000,54.159392000000004,2002-11-17,431971116,133.0,Die Another Day,5.8,1092,11,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
148,144000000,66.21806,2016-07-14,229147509,116.0,Ghostbusters,5.3,2142,07,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
149,140000000,58.485967,1998-07-01,553799566,151.0,Armageddon,6.4,2482,07,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
150,140000000,91.332849,2002-07-03,441818803,88.0,Men in Black II,6.0,3114,07,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,4
151,70000000,35.601665000000004,2007-11-05,195735876,115.0,Beowulf,5.5,841,11,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
152,145000000,56.747978,2016-01-23,521170825,95.0,Kung Fu Panda 3,6.7,1603,01,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5
153,145000000,77.77476999999999,2011-12-07,694713380,133.0,Mission: Impossible - Ghost Protocol,6.8,3972,12,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
154,145000000,61.788035,2012-11-21,306941670,97.0,Rise of the Guardians,7.1,1922,11,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
155,100000000,25.159167999999998,2005-12-21,202026112,90.0,Fun with Dick and Jane,5.9,627,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
156,140000000,52.341226,2003-12-05,456758981,154.0,The Last Samurai,7.3,1895,12,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4
157,140000000,101.599427,2014-12-03,268031828,150.0,Exodus: Gods and Kings,5.6,1921,12,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
158,150000000,73.61680799999999,2009-05-06,385680446,127.0,Star Trek,7.4,4518,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
159,139000000,82.502566,2002-05-01,821708551,121.0,Spider-Man,6.8,5265,05,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
160,145000000,100.21391,2014-06-12,609123048,102.0,How to Train Your Dragon 2,7.6,3106,06,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6
161,140000000,56.257249,2016-02-25,150680864,127.0,Gods of Egypt,5.3,1277,02,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
162,135000000,17.88953,2005-07-28,76932943,121.0,Stealth,4.9,331,07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
163,130000000,64.798873,2009-03-05,185258983,163.0,Watchmen,7.0,2811,03,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,3
164,140000000,24.855701,1998-07-10,285444603,127.0,Lethal Weapon 4,6.3,767,07,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,5
165,137000000,34.981698,2003-06-19,245360480,138.0,Hulk,5.3,1533,06,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
166,130000000,59.325589,2013-03-26,371876278,110.0,G.I. Joe: Retaliation,5.4,3025,03,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
167,130000000,21.605567999999998,2005-04-06,119269486,124.0,Sahara,5.7,434,04,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,5
168,137000000,26.074907999999997,2001-07-02,85131830,106.0,Final Fantasy: The Spirits Within,5.9,433,07,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6
169,140000000,74.50624599999999,2011-07-22,370569774,124.0,Captain America: The First Avenger,6.6,7047,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
170,135000000,39.604363,1999-11-08,361832400,128.0,The World Is Not Enough,6.0,862,11,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
171,150000000,36.973031,2003-11-14,212011111,138.0,Master and Commander: The Far Side of the World,6.9,790,11,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1
172,120000000,99.687084,2012-11-13,829000000,115.0,The Twilight Saga: Breaking Dawn - Part 2,6.1,2553,11,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
173,130000000,17.7735,2011-11-17,150406466,100.0,Happy Feet Two,5.8,373,11,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
174,150000000,62.898336,2008-06-12,163712074,114.0,The Incredible Hulk,6.1,3021,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,3
175,140000000,44.19092,2016-06-01,183345589,120.0,The BFG,6.0,1000,06,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,3
176,135000000,100.635882,2015-12-25,532950503,156.0,The Revenant,7.3,6396,12,0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4
177,135000000,44.765377,2013-07-11,282570682,96.0,Turbo,6.1,1074,07,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
178,135000000,29.913529999999998,2011-03-02,245724603,107.0,Rango,6.6,2051,03,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,5
179,132000000,84.366984,2014-11-22,373552094,92.0,Penguins of Madagascar,6.5,1346,11,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
180,70000000,45.381501,2007-08-03,442824138,115.0,The Bourne Ultimatum,7.3,2888,08,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,4
181,130000000,84.68964799999999,2008-06-04,631744560,90.0,Kung Fu Panda,6.9,3145,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
182,130000000,120.09361000000001,2015-07-14,519311965,117.0,Ant-Man,7.0,5880,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
183,130000000,76.310119,2013-11-15,847423452,146.0,The Hunger Games: Catching Fire,7.4,6495,11,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
184,135000000,63.473086,2015-03-18,368871007,94.0,Home,6.8,1519,03,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5
185,132000000,48.572726,2005-06-28,591739379,116.0,War of the Worlds,6.2,2322,06,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3
186,130000000,38.068736,2003-07-18,273339556,147.0,Bad Boys II,6.3,1564,07,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,5
187,130000000,20.678787,2011-10-28,554987477,90.0,Puss in Boots,6.4,451,10,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
188,110000000,48.829437,2010-07-21,293329073,100.0,Salt,6.2,2093,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,3
189,125000000,46.115758,2014-03-20,362637473,139.0,Noah,5.6,2350,03,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2
190,130000000,89.938296,2011-10-25,371940071,107.0,The Adventures of Tintin,6.7,2061,10,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,3
191,130000000,79.679601,2004-05-31,789804554,141.0,Harry Potter and the Prisoner of Azkaban,7.7,5877,05,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
192,130000000,28.840996999999998,2008-11-18,49554002,165.0,Australia,6.3,694,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
193,130000000,42.840582,2013-05-30,243843127,100.0,After Earth,5.0,2532,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
194,127500000,26.548594,2000-05-19,354248063,82.0,Dinosaur,6.2,542,05,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
195,127000000,115.597753,2014-12-17,349424282,97.0,Night at the Museum: Secret of the Tomb,6.1,1851,12,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
196,130000000,68.757242,2010-10-28,321887208,95.0,Megamind,6.7,1918,10,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
197,125000000,109.984351,2001-11-16,976475550,152.0,Harry Potter and the Philosopher's Stone,7.5,7006,11,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
198,130000000,39.448066,2013-07-18,61648500,96.0,R.I.P.D.,5.4,1260,07,1,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4
199,140000000,271.972889,2003-07-09,655011224,143.0,Pirates of the Caribbean: The Curse of the Black Pearl,7.5,6985,07,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
200,125000000,206.227151,2014-11-18,752100229,123.0,The Hunger Games: Mockingjay - Part 1,6.6,5584,11,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
201,125000000,45.313196999999995,2006-05-17,767820459,149.0,The Da Vinci Code,6.5,2704,05,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2
202,103000000,42.400240000000004,2014-03-19,500188435,102.0,Rio 2,6.3,978,03,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
203,110000000,2.871739,2003-04-24,407711549,133.0,X2,6.8,3506,04,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
204,125000000,7.255717999999999,2011-04-20,626137675,130.0,Fast Five,7.1,2438,04,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
205,125000000,81.49962099999999,2011-11-22,334615000,129.0,Sherlock Holmes: A Game of Shadows,7.0,3886,11,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,4
206,125000000,47.686442,2010-04-01,232713139,106.0,Clash of the Titans,5.6,2233,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
207,65000000,43.129703000000006,1990-06-01,261317921,113.0,Total Recall,7.1,1710,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
208,160000000,27.220157,1999-08-27,61698899,102.0,The 13th Warrior,6.4,510,08,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
209,130000000,90.33681,2012-08-08,276572938,120.0,The Bourne Legacy,6.0,2651,08,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
210,125000000,50.073575,1997-06-20,238207122,125.0,Batman & Robin,4.2,1418,06,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
211,123000000,45.419668,2000-11-17,345141403,104.0,How the Grinch Stole Christmas,6.2,1386,11,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
212,125000000,41.380094,2004-05-26,544272402,124.0,The Day After Tomorrow,6.2,2392,05,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
213,125000000,54.931334,2000-05-24,546388105,123.0,Mission: Impossible II,5.9,1928,05,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
214,120000000,25.752118,2000-03-15,325756637,130.0,The Perfect Storm,6.2,597,03,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
215,130000000,60.810722999999996,2007-06-13,289047763,92.0,Fantastic 4: Rise of the Silver Surfer,5.4,2589,06,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
216,120000000,51.328145,2012-11-20,609016565,127.0,Life of Pi,7.2,5797,11,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
217,110000000,46.834703999999995,2007-02-16,228738393,114.0,Ghost Rider,5.2,1712,02,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,4
218,120000000,62.641286,2016-07-27,415484914,123.0,Jason Bourne,5.9,2341,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
219,120000000,33.616115,2003-06-27,259175788,106.0,Charlie's Angels: Full Throttle,5.2,914,06,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
220,130000000,68.889395,2012-05-30,403170142,124.0,Prometheus,6.3,5080,05,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
221,120000000,27.990284000000003,2002-07-19,169956806,78.0,Stuart Little 2,5.4,613,07,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
222,115000000,67.33766999999999,2013-08-07,286140700,109.0,Elysium,6.4,3439,08,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
223,105000000,27.835435999999998,2004-06-11,115772733,119.0,The Chronicles of Riddick,6.3,1570,06,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
224,120000000,66.757869,2014-01-30,242688965,102.0,RoboCop,5.7,2342,01,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
225,120000000,17.060695000000003,2008-05-09,93945766,135.0,Speed Racer,5.7,354,05,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
226,120000000,11.137655,2010-12-17,48668907,121.0,How Do You Know,4.9,223,12,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3
227,117000000,44.906918,2010-06-15,261930431,109.0,Knight and Day,5.9,1547,06,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
228,120000000,67.698004,2013-04-10,286168572,124.0,Oblivion,6.4,4800,04,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,4
229,113000000,44.108427,2005-05-17,850000000,140.0,Star Wars: Episode III - Revenge of the Sith,7.1,4116,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
230,120000000,43.987061,2002-05-15,649398328,142.0,Star Wars: Episode II - Attack of the Clones,6.4,3992,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
231,115000000,106.815545,2001-11-01,562816256,92.0,"Monsters, Inc.",7.5,5996,11,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
232,120000000,15.953444000000001,2013-07-23,415440673,126.0,The Wolverine,6.3,4053,07,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
233,115000000,54.035265,1999-05-19,924317558,136.0,Star Wars: Episode I - The Phantom Menace,6.3,4432,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
234,135000000,64.18332099999999,2013-03-20,585178928,98.0,The Croods,6.8,2399,03,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
235,97250400,20.344364000000002,2008-01-13,132900000,116.0,Asterix at the Olympic Games,5.0,471,01,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
236,115000000,18.714197,2002-06-14,77628265,134.0,Windtalkers,5.8,341,06,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4
237,115000000,60.467983999999994,2016-04-06,164602163,114.0,The Huntsman: Winter's War,6.0,1523,04,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
238,125000000,143.350376,2014-08-07,477200000,101.0,Teenage Mutant Ninja Turtles,5.8,2636,08,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5
239,105000000,110.153618,2013-09-27,716392705,91.0,Gravity,7.3,5751,09,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
240,116000000,16.90444,1997-02-07,178127760,108.0,Dante's Peak,5.7,428,02,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
241,135000000,39.873791,2016-06-01,245623848,112.0,Teenage Mutant Ninja Turtles: Out of the Shadows,5.8,963,06,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
242,120000000,38.126095,2015-08-05,167977596,100.0,Fantastic Four,4.4,2278,08,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
243,110000000,48.780039,2006-10-20,574480841,108.0,Night at the Museum,6.3,2862,10,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
244,110000000,100.412364,2015-05-27,470490832,114.0,San Andreas,6.0,2968,05,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
245,110000000,42.887121,1997-12-11,333011068,119.0,Tomorrow Never Dies,6.0,925,12,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
246,110000000,23.657284,2000-06-28,215294342,165.0,The Patriot,6.8,1099,06,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,4
247,110000000,76.840712,2004-12-09,362744280,125.0,Ocean's Twelve,6.4,2124,12,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
248,110000000,44.635452,2005-06-07,478207520,120.0,Mr. & Mrs. Smith,6.5,2965,06,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
249,110000000,103.71838699999999,2015-03-18,295238201,119.0,Insurgent,6.2,3829,03,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
250,116000000,45.616098,2004-12-17,102000000,170.0,The Aviator,7.0,1489,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1
251,112000000,22.845143,2010-12-25,237382724,85.0,Gulliver's Travels,4.9,621,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
252,120000000,31.703608000000003,2011-01-12,227817248,119.0,The Green Hornet,5.5,1251,01,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
253,110000000,71.51059599999999,2014-03-05,337580051,102.0,300: Rise of an Empire,6.1,2397,03,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2
254,110000000,36.65422,2011-07-29,563749323,103.0,The Smurfs,5.5,1179,07,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5
255,110000000,19.625972,2004-04-02,103951461,76.0,Home on the Range,5.7,389,04,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
256,110000000,86.105615,2016-03-09,179246868,121.0,Allegiant,5.9,1998,03,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
257,110000000,37.195046000000005,2011-09-28,299268508,127.0,Real Steel,6.6,2692,09,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,3
258,105000000,32.473628000000005,2013-07-30,347434178,105.0,The Smurfs 2,5.5,695,07,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
259,160000000,23.336875,1997-06-13,164508066,121.0,Speed 2: Cruise Control,4.1,434,06,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
260,110000000,45.94834,2013-10-23,125537191,114.0,Ender's Game,6.6,2303,10,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
261,110000000,48.933370000000004,2007-06-20,383531464,128.0,Live Free or Die Hard,6.4,2089,06,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
262,93000000,138.049577,2001-12-18,871368364,178.0,The Lord of the Rings: The Fellowship of the Ring,8.0,8705,12,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
263,110000000,22.643776000000003,2004-06-16,72178895,120.0,Around the World in 80 Days,5.7,672,06,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
264,107000000,18.866672,2001-12-11,87713825,157.0,Ali,6.7,447,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
265,0,18.251129000000002,2003-11-21,0,82.0,The Cat in the Hat,4.9,366,11,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
266,120000000,95.914473,2004-07-15,347234916,115.0,"I, Robot",6.7,3793,07,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
267,130000000,44.490453,2005-05-03,211643158,144.0,Kingdom of Heaven,6.6,1157,05,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,5
268,133000000,30.475296999999998,1999-12-17,300135367,84.0,Stuart Little,5.8,959,12,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
269,105000000,62.479574,2009-12-08,267045765,97.0,The Princess and the Frog,6.7,1247,12,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,4
270,108000000,167.93287,2015-09-30,630161890,141.0,The Martian,7.6,7268,09,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
271,126000000,37.68056,2005-07-20,162949164,136.0,The Island,6.5,1770,07,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4
272,90000000,1.004579,2001-04-27,10372291,104.0,Town & Country,3.7,16,04,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
273,90000000,52.995628,2000-06-09,237202299,118.0,Gone in Sixty Seconds,6.1,1485,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3
274,103000000,95.301296,2000-05-01,457640427,155.0,Gladiator,7.9,5439,05,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
275,102000000,65.948959,2002-06-20,358372926,145.0,Minority Report,7.1,2608,06,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,4
276,100000000,132.397737,2002-11-13,876688482,161.0,Harry Potter and the Chamber of Secrets,7.4,5815,11,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
277,150000000,88.935165,2006-11-14,599045960,144.0,Casino Royale,7.3,3855,11,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
278,100000000,51.188633,2001-07-25,362211740,119.0,Planet of the Apes,5.6,1243,07,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
279,100000000,101.74155,1991-07-01,520000000,137.0,Terminator 2: Judgment Day,7.7,4185,07,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
280,80000000,33.691694,2009-07-01,214104620,140.0,Public Enemies,6.5,1344,07,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
281,100000000,42.361215,2007-11-02,266465037,157.0,American Gangster,7.4,1502,11,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2
282,115000000,38.729418,1994-07-14,378882411,141.0,True Lies,6.8,1116,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
283,100000000,40.597856,2009-06-11,150166126,106.0,The Taking of Pelham 1 2 3,6.2,954,06,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
284,100000000,32.389353,2010-12-21,310650585,98.0,Little Fockers,5.4,1060,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2
285,100000000,24.399642,2010-08-06,170432927,107.0,The Other Guys,6.1,1383,08,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
286,100000000,24.507987,1996-06-21,242295562,115.0,Eraser,5.6,543,06,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,4
287,100000000,82.121691,2012-12-25,425368238,165.0,Django Unchained,7.8,10099,12,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2
288,100000000,46.727940999999994,1996-06-21,100138851,91.0,The Hunchback of Notre Dame,6.8,1129,06,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
289,100000000,51.113717,2000-12-09,169327687,78.0,The Emperor's New Groove,7.2,1490,12,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
290,100000000,53.73289200000001,2012-08-08,312573423,103.0,The Expendables 2,6.1,2896,08,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
291,100000000,58.849256000000004,2004-11-19,347451894,131.0,National Treasure,6.4,1926,11,1,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4
292,100000000,30.863434,2006-12-14,249288105,104.0,Eragon,4.9,967,12,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
293,100000000,31.586215000000003,2009-10-16,100086793,101.0,Where the Wild Things Are,6.4,572,10,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
294,100000000,36.711378,2013-05-15,268426634,102.0,Epic,6.4,1121,05,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
295,100000000,41.426678,2010-12-08,278731369,103.0,The Tourist,6.0,1699,12,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3
296,100000000,20.652943,1999-11-24,211989043,121.0,End of Days,5.5,482,11,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,4
297,100000000,52.792678,2006-12-07,170877916,143.0,Blood Diamond,7.3,2281,12,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
298,100000000,95.00793399999999,2013-12-25,392000694,180.0,The Wolf of Wall Street,7.9,6571,12,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3
299,100000000,48.205606,1995-05-31,336529144,121.0,Batman Forever,5.2,1498,05,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
300,105000000,58.782359,1997-11-06,121214377,129.0,Starship Troopers,6.7,1560,11,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4
301,102000000,73.872343,2012-10-26,130482868,172.0,Cloud Atlas,6.6,2977,10,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
302,80000000,37.321847999999996,2010-07-10,140073390,97.0,Legend of the Guardians: The Owls of Ga'Hoole,6.5,703,07,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
303,100000000,32.271938,2004-07-22,82102379,104.0,Catwoman,4.2,808,07,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
304,100000000,76.842247,2014-07-23,243400000,99.0,Hercules,5.6,1680,07,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2
305,140000000,38.924136,2002-11-26,109578115,95.0,Treasure Planet,7.2,948,11,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
306,100000000,19.38841,2009-06-05,68688831,102.0,Land of the Lost,5.3,381,06,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
307,90000000,61.025639,2014-08-04,206172544,127.0,The Expendables 3,6.1,1795,08,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
308,105000000,33.507289,2015-12-03,133718711,114.0,Point Break,5.5,783,12,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
309,84000000,17.815595000000002,2005-02-18,0,94.0,Son of the Mask,3.6,338,02,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
310,100000000,50.767332,2015-11-20,93820758,122.0,In the Heart of the Sea,6.5,1276,11,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5
311,100000000,12.092241,2002-08-15,7103973,95.0,The Adventures of Pluto Nash,4.4,142,08,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
312,100000000,30.254021,2010-03-11,94882889,115.0,Green Zone,6.4,717,03,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,5
313,99000000,34.308098,2015-11-05,246233113,88.0,The Peanuts Movie,6.5,604,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
314,10000000,3.091077,1997-09-08,13835130,110.0,The Spanish Prisoner,7.1,73,09,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,4
315,98000000,41.862983,2001-04-28,433013274,130.0,The Mummy Returns,6.0,2206,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
316,100000000,46.160047999999996,2002-12-14,193772504,167.0,Gangs of New York,7.1,1910,12,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3
317,94000000,12.516546,2011-12-15,95311434,145.0,The Flowers of War,7.1,187,12,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3
318,85000000,23.230851,2007-06-08,149044513,85.0,Surf's Up,5.9,601,06,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
319,90000000,19.224754,2004-06-10,102000000,93.0,The Stepford Wives,5.4,334,06,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
320,92000000,44.455166,2001-12-28,172989651,144.0,Black Hawk Down,7.2,1811,12,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3
321,0,16.460356,2012-08-09,104907746,85.0,The Campaign,5.6,578,08,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
322,90000000,109.528572,1997-05-07,263920180,126.0,The Fifth Element,7.3,3885,05,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5
323,100000000,18.325897,2010-05-26,288347692,146.0,Sex and the City 2,5.4,426,05,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
324,95000000,37.054553999999996,2000-03-31,76432727,89.0,The Road to El Dorado,7.0,858,03,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
325,95000000,65.22986800000001,2012-06-26,877244782,88.0,Ice Age: Continental Drift,6.2,2672,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
326,95000000,101.18705200000001,2015-03-12,543514353,105.0,Cinderella,6.7,2374,03,0,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
327,65000000,29.257137,2009-12-26,93525586,136.0,The Lovely Bones,6.6,1065,12,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
328,94000000,85.688789,2003-05-30,940335536,100.0,Finding Nemo,7.6,6122,05,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
329,94000000,123.63033200000001,2003-12-01,1118888979,201.0,The Lord of the Rings: The Return of the King,8.1,8064,12,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
330,79000000,106.914973,2002-12-18,926287400,179.0,The Lord of the Rings: The Two Towers,8.0,7487,12,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
331,95000000,63.628459,2014-12-12,114178613,102.0,Seventh Son,5.2,957,12,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
332,115000000,41.498631,2001-06-11,274703340,100.0,Lara Croft: Tomb Raider,5.7,2192,06,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
333,100000000,58.991388,2014-04-16,103039258,119.0,Transcendence,5.9,2295,04,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4
334,93000000,1.859364,2001-07-18,368780809,92.0,Jurassic Park III,5.7,2077,07,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
335,93000000,138.433168,2011-08-03,482860185,105.0,Rise of the Planet of the Apes,7.0,4347,08,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
336,90000000,21.436682,2008-02-14,162839667,95.0,The Spiderwick Chronicles,6.3,572,02,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
337,92000000,65.40259499999999,2013-02-06,304654182,98.0,A Good Day to Die Hard,5.2,3493,02,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
338,145000000,10.660441,2004-04-07,25819961,137.0,The Alamo,5.8,106,04,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,3
339,92000000,77.817571,2004-11-05,631442092,115.0,The Incredibles,7.4,5152,11,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
340,98000000,7.029308,1995-12-22,10017322,119.0,Cutthroat Island,5.7,136,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
341,95000000,61.121717000000004,2010-02-01,226497209,118.0,Percy Jackson & the Olympians: The Lightning Thief,6.0,2010,02,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
342,90000000,104.121555,1997-07-02,589390539,98.0,Men in Black,6.9,4412,07,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,4
343,90000000,73.575118,1999-10-30,497366869,92.0,Toy Story 2,7.3,3806,10,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
344,100000000,37.698465,2010-11-04,167805466,98.0,Unstoppable,6.3,1165,11,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
345,90000000,35.814765,2001-08-03,347325802,90.0,Rush Hour 2,6.4,1054,08,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
346,100000000,15.835672,2000-07-21,155464351,130.0,What Lies Beneath,6.3,488,07,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,4
347,100000000,46.781182,2009-09-17,242988466,90.0,Cloudy with a Chance of Meatballs,6.5,1747,09,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
348,90000000,69.457898,2009-06-29,886686817,94.0,Ice Age: Dawn of the Dinosaurs,6.5,2271,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
349,90000000,43.348022,2013-12-18,188133322,114.0,The Secret Life of Walter Mitty,7.0,3144,12,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,4
350,92000000,40.20395,2000-11-02,264105545,98.0,Charlie's Angels,5.6,1232,11,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,5
351,90000000,63.429157,2006-10-05,289847354,151.0,The Departed,7.9,4339,10,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
352,90000000,67.427755,1998-06-18,304320254,88.0,Mulan,7.6,2008,06,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
353,92000000,43.192048,2008-08-09,188072649,107.0,Tropic Thunder,6.5,1667,08,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
354,90000000,47.651083,2011-12-14,232617430,158.0,The Girl with the Dragon Tattoo,7.2,2434,12,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,4
355,90000000,51.881077000000005,1995-05-19,366101666,128.0,Die Hard: With a Vengeance,6.9,2066,05,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
356,90000000,57.834787,2009-12-23,524028679,128.0,Sherlock Holmes,7.0,5766,12,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,4
357,100000000,29.608321999999998,2016-08-17,94061311,125.0,Ben-Hur,5.3,621,08,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
358,120000000,51.548589,2001-06-02,186053725,95.0,Atlantis: The Lost Empire,6.7,1224,06,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
359,0,27.867368,2015-12-17,233755553,92.0,Alvin and the Chipmunks: The Road Chip,5.8,428,12,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
360,75000000,38.832842,2008-12-25,200276000,121.0,Valkyrie,6.7,1173,12,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4
361,90000000,40.597344,2008-06-05,201596308,113.0,You Don't Mess with the Zohan,5.5,1048,06,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
362,88000000,140.849495,2015-07-16,243637091,105.0,Pixels,5.6,2513,07,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
363,100000000,34.035114,2001-06-29,235926552,146.0,A.I. Artificial Intelligence,6.8,1974,06,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3
364,90000000,16.302378,2003-11-25,182290266,99.0,The Haunted Mansion,5.2,466,11,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5
365,90000000,55.249433999999994,1997-07-11,171120329,150.0,Contact,7.2,1308,07,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,3
366,95000000,28.200874,2000-08-04,190213455,112.0,Hollow Man,5.6,634,08,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
367,80000000,18.69984,2005-04-08,162944923,128.0,The Interpreter,6.2,392,04,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2
368,90000000,40.262260999999995,2013-08-07,174578751,106.0,Percy Jackson: Sea of Monsters,5.9,1648,08,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
369,95000000,56.81105600000001,2003-07-21,156505388,117.0,Lara Croft Tomb Raider: The Cradle of Life,5.5,1418,07,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
370,90000000,51.535701,2016-06-02,334901337,129.0,Now You See Me 2,6.7,3235,06,1,1,0,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,6
371,68000000,20.913852,1997-04-03,118063304,116.0,The Saint,5.9,302,04,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,5
372,92000000,27.166757,2001-11-18,143049560,126.0,Spy Game,6.8,579,11,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
373,90000000,16.058284,2000-03-10,60874615,114.0,Mission to Mars,5.7,369,03,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
374,90000000,46.200041999999996,2011-04-03,484635760,96.0,Rio,6.5,2166,04,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
375,100000000,24.939295,1999-12-17,93700000,131.0,Bicentennial Man,6.9,963,12,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2
376,90000000,19.836123999999998,1997-04-25,0,104.0,Volcano,5.2,376,04,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
377,90000000,15.350451000000001,1997-03-12,140807547,107.0,The Devil's Own,5.9,290,03,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
378,100000000,15.625948999999999,2002-07-19,35168966,138.0,K-19: The Widowmaker,6.1,264,07,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
379,20000000,31.802807,1982-04-02,79114085,129.0,Conan the Barbarian,6.6,650,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
380,88000000,24.100863,2005-06-02,108539911,144.0,Cinderella Man,7.3,616,06,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,3
381,90000000,3.593349,2010-11-24,16178959,110.0,The Nutcracker: The Untold Story,5.4,50,11,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
382,87000000,14.824166,2003-07-22,148336445,141.0,Seabiscuit,6.7,216,07,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2
383,92000000,32.079995000000004,1996-05-10,494471524,113.0,Twister,6.1,950,05,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3
384,90000000,57.739713,2000-12-22,429632142,143.0,Cast Away,7.5,3218,12,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2
385,100000000,37.272385,2006-11-16,384335608,108.0,Happy Feet,5.9,1410,11,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
386,75000000,53.213931,2004-07-23,288500217,108.0,The Bourne Supremacy,7.2,2825,07,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
387,85000000,36.38795,1997-07-25,315156409,124.0,Air Force One,6.2,840,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
388,85000000,60.929352,2001-12-07,450717150,116.0,Ocean's Eleven,7.2,3783,12,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
389,75000000,36.605246,2011-08-31,132274484,110.0,The Three Musketeers,5.6,924,08,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
390,85000000,56.257411,2012-09-20,358375603,91.0,Hotel Transylvania,6.8,2566,09,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
391,85000000,29.21998,2007-11-20,340487652,107.0,Enchanted,6.6,1449,11,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
392,85000000,34.773106,2012-02-09,208076205,115.0,Safe House,6.3,1345,02,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
393,85000000,9.895061,2000-10-07,183611771,100.0,102 Dalmatians,5.1,313,10,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
394,75000000,36.743324,2011-11-02,152930623,104.0,Tower Heist,5.8,932,11,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
395,85000000,44.967453000000006,2006-12-08,194168700,136.0,The Holiday,6.7,1225,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,2
396,90000000,41.207568,1998-11-20,250649836,132.0,Enemy of the State,6.7,1240,11,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
397,85000000,16.479851,2009-12-23,219103655,121.0,It's Complicated,6.2,360,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
398,85000000,42.069993,2007-06-07,311312624,122.0,Ocean's Thirteen,6.5,1999,06,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
399,85000000,26.61951,2006-09-29,197309027,83.0,Open Season,6.1,656,09,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
400,85000000,80.316463,2014-03-14,288747895,139.0,Divergent,6.9,4663,03,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
401,68000000,41.273567,2001-03-13,96976270,131.0,Enemy at the Gates,7.2,999,03,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1
402,85000000,24.107835,2003-09-26,80916492,104.0,The Rundown,6.4,514,09,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,4
403,85000000,32.044191,1993-06-18,137298489,130.0,Last Action Hero,6.1,712,06,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5
404,85000000,16.595874,2005-12-06,162242962,145.0,Memoirs of a Geisha,7.3,652,12,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,3
405,85000000,8.282876,2006-06-03,158468292,104.0,The Fast and the Furious: Tokyo Drift,6.1,1705,06,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4
406,0,19.83683,2011-02-22,0,97.0,Arthur Christmas,6.7,333,02,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
407,90000000,36.069611,1998-11-12,142940100,178.0,Meet Joe Black,6.9,1147,11,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3
408,85000000,18.827753,2002-02-06,78382433,108.0,Collateral Damage,5.5,427,02,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
409,0,5.159407,1979-12-20,37823676,123.0,All That Jazz,7.3,85,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,2
410,85000000,48.126296999999994,2012-03-15,183018522,106.0,Mirror Mirror,5.5,1114,03,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6
411,60000000,38.885195,2010-07-27,47664559,112.0,Scott Pilgrim vs. the World,7.2,2126,07,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
412,60000000,29.211254999999998,2003-03-28,74208267,136.0,The Core,5.4,516,03,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
413,84000000,17.783361,2000-07-27,123307945,106.0,Nutty Professor II: The Klumps,4.7,332,07,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,4
414,84000000,31.435539000000002,2002-06-14,275650703,88.0,Scooby-Doo,5.4,820,06,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,3
415,50000000,57.67393199999999,2012-09-07,41037742,95.0,Dredd,6.6,1940,09,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
416,82500000,41.176631,2006-06-22,237681299,107.0,Click,6.0,2104,06,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,4
417,8000000,13.661289000000002,1982-11-12,21028755,120.0,Creepshow,6.7,226,11,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,3
418,85000000,11.77398,2010-07-30,112483764,82.0,Cats & Dogs 2 : The Revenge of Kitty Galore,4.9,119,07,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
419,85000000,21.218000000000004,2008-02-10,222231186,88.0,Jumper,5.9,1799,02,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
420,85000000,58.57976,2008-07-11,160388063,120.0,Hellboy II: The Golden Army,6.5,1527,07,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
421,65000000,51.970905,2007-03-02,84785914,157.0,Zodiac,7.3,2023,03,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,4
422,82000000,18.447479,2000-11-17,96085477,123.0,The 6th Day,5.7,595,11,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
423,80000000,109.68478799999998,2003-05-23,484572835,101.0,Bruce Almighty,6.4,3012,05,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
424,80000000,77.58066099999999,2010-08-03,274470394,103.0,The Expendables,6.0,2926,08,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
425,80000000,75.290998,1996-05-22,457696359,110.0,Mission: Impossible,6.7,2631,05,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
426,75000000,68.550698,2012-03-12,691210692,142.0,The Hunger Games,6.9,9455,03,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
427,80000000,58.040149,2011-05-25,254455986,102.0,The Hangover Part II,6.2,3739,05,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
428,80000000,59.113174,1992-06-19,280000000,126.0,Batman Returns,6.6,1673,06,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
429,80000000,36.32705,2006-04-22,343397247,83.0,Over the Hedge,6.3,1074,04,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
430,80000000,55.659988,2002-06-21,145771527,85.0,Lilo & Stitch,7.1,1314,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
431,85000000,14.132582999999999,2006-12-15,144000000,97.0,Charlotte's Web,5.8,288,12,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
432,75000000,34.070054,1998-05-08,140464664,120.0,Deep Impact,5.9,855,05,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3
433,84000000,44.34333,2013-07-18,0,116.0,RED 2,6.4,1526,07,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
434,82000000,26.065735,2005-05-19,190320568,113.0,The Longest Yard,6.2,785,05,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2
435,75000000,23.473004,2011-12-14,342695435,87.0,Alvin and the Chipmunks: Chipwrecked,5.4,484,12,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,5
436,80000000,45.589568,2013-07-11,246984278,100.0,Grown Ups 2,5.8,1155,07,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
437,80000000,23.496054,2008-06-19,230685453,110.0,Get Smart,6.0,1051,06,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
438,80000000,16.939441,2003-12-12,266728738,128.0,Something's Gotta Give,6.3,410,12,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,3
439,80000000,81.91469599999999,2010-02-18,294804195,138.0,Shutter Island,7.8,6336,02,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,3
440,80000000,19.500892999999998,2008-11-26,163733697,88.0,Four Christmases,5.3,331,11,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
441,75000000,29.558157,2005-03-10,260696994,91.0,Robots,6.0,1333,03,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
442,80000000,46.075037,1997-06-27,245676146,138.0,Face/Off,6.8,1583,06,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4
443,80000000,23.531720999999997,2008-12-24,212874442,99.0,Bedtime Stories,5.9,901,12,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
444,80000000,49.078546,2002-07-12,181001478,117.0,Road to Perdition,7.3,1077,07,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,3
445,80000000,37.02665,2011-02-10,214918407,117.0,Just Go with It,6.3,1543,02,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
446,75000000,45.154631,1997-06-01,224012234,115.0,Con Air,6.5,1270,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3
447,80000000,46.887983,2008-09-25,178066569,118.0,Eagle Eye,6.3,1018,09,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3
448,79000000,24.598479,2003-12-24,173013509,154.0,Cold Mountain,6.7,533,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
449,80000000,32.363538,2010-01-14,157107755,118.0,The Book of Eli,6.6,2164,01,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
450,80000000,11.503960000000001,1997-11-26,177977226,93.0,Flubber,5.3,695,11,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
451,80000000,19.375768,1999-07-23,91188905,113.0,The Haunting,5.2,369,07,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,4
452,80000000,36.125715,1996-11-15,250200000,88.0,Space Jam,6.5,1288,11,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5
453,0,25.450534,2006-01-18,0,93.0,The Pink Panther,5.6,550,01,1,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,5
454,80000000,41.890722,2008-12-10,233093859,104.0,The Day the Earth Stood Still,5.2,1043,12,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
455,75000000,22.179658,1997-08-07,136982834,135.0,Conspiracy Theory,6.5,431,08,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,4
456,68000000,139.575085,2014-10-15,211817906,135.0,Fury,7.4,3946,10,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3
457,70000000,18.264635000000002,1998-06-12,164000000,98.0,Six Days Seven Nights,5.6,332,06,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
458,80000000,11.187696,2010-12-11,201584141,80.0,Yogi Bear,5.2,220,12,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
459,80000000,41.670544,2002-05-24,122563539,83.0,Spirit: Stallion of the Cimarron,7.4,831,05,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,5
460,80000000,27.462640000000004,2011-07-06,169852759,102.0,Zookeeper,5.3,498,07,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3
461,80000000,17.455023999999998,1998-04-03,136159423,130.0,Lost in Space,5.0,388,04,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
462,80000000,21.394281,2004-07-30,96105964,129.0,The Manchurian Candidate,6.2,393,07,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,3
463,0,0.605645,1998-04-22,0,117.0,Déjà Vu,8.0,1,04,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2
464,80000000,61.692197,2015-09-21,473226958,89.0,Hotel Transylvania 2,6.7,1497,09,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
465,80000000,14.530945999999998,1999-12-17,90874570,74.0,Fantasia 2000,7.0,292,12,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,3
466,80000000,25.978555,2002-03-04,123729176,96.0,The Time Machine,5.8,631,03,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3
467,90000000,6.643778,1998-12-25,0,114.0,Mighty Joe Young,5.9,208,12,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
468,102000000,36.788745,2001-06-07,147080413,99.0,Swordfish,6.1,932,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
469,75000000,31.054334000000004,2005-10-24,142400065,129.0,The Legend of Zorro,5.9,893,10,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2
470,85000000,21.891078,1998-10-02,71485043,113.0,What Dreams May Come,6.8,577,10,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3
471,85000000,18.335992,2000-11-10,0,90.0,Little Nicky,5.2,438,11,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
472,88000000,40.138009000000004,2005-08-26,105316267,118.0,The Brothers Grimm,5.6,818,08,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
473,70000000,44.090534999999996,1996-12-12,101371017,106.0,Mars Attacks!,6.1,1509,12,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
474,0,3.300061,2015-09-14,0,81.0,Evolution,6.4,47,09,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,3
475,0,20.632673,1997-09-06,43312294,117.0,The Edge,6.7,349,09,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
476,80000000,36.664991,2009-09-24,122444772,89.0,Surrogates,5.9,1195,09,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
477,80000000,18.261210000000002,2000-12-24,34566746,145.0,Thirteen Days,6.9,189,12,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
478,80000000,16.681269,1996-12-06,159212469,115.0,Daylight,5.8,378,12,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
479,80000000,10.088006,2013-12-18,126546518,87.0,Walking With Dinosaurs,5.2,133,12,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
480,44000000,7.89147,2000-05-10,21400000,118.0,Battlefield Earth,3.0,255,05,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3
481,80000000,16.715631,2003-11-14,68514844,90.0,Looney Tunes: Back in Action,5.6,297,11,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
482,80000000,9.357733999999999,2009-12-03,53825515,112.0,Nine,5.1,165,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3
483,80000000,11.22268,2003-11-26,19480739,116.0,Timeline,5.4,318,11,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
484,80000000,14.564667000000002,1997-12-25,17626234,177.0,The Postman,6.1,299,12,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
485,90000000,11.356079,1998-11-25,69131860,92.0,Babe: Pig in the City,5.2,305,11,0,1,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5
486,90000000,52.612025,2015-10-21,146936910,106.0,The Last Witch Hunter,5.7,1316,10,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
487,80000000,13.800656,2000-11-10,33463969,106.0,Red Planet,5.4,267,11,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
488,86000000,27.097932,2006-12-13,107944236,94.0,Arthur and the Invisibles,6.0,639,12,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
489,0,10.706613,2009-10-17,19406406,84.0,Oceans,7.3,111,10,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2
490,80000000,7.342892,2005-05-15,5989640,110.0,A Sound of Thunder,4.8,111,05,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
491,130000000,50.561849,2014-02-18,117831631,105.0,Pompeii,5.2,1267,02,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,5
492,8000000,0.719996,2015-10-30,0,89.0,Top Cat Begins,5.3,9,10,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
493,60000000,59.248437,2001-12-11,313542341,135.0,A Beautiful Mind,7.7,3009,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
494,45000000,90.457886,1994-06-23,788241776,89.0,The Lion King,8.0,5376,06,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
495,79000000,40.723459000000005,2012-01-19,355692760,94.0,Journey 2: The Mysterious Island,5.8,1030,01,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
496,78000000,41.247402,2013-09-26,248384621,95.0,Cloudy with a Chance of Meatballs 2,6.4,915,09,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
497,78000000,10.083905,2002-09-29,209196298,124.0,Red Dragon,6.7,1115,09,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3
498,100000000,16.759252,2004-03-05,108103450,136.0,Hidalgo,6.5,318,03,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2
499,79000000,22.132417999999998,2011-11-11,149673788,91.0,Jack and Jill,4.1,604,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
500,76000000,10.520961,2003-06-05,236350661,107.0,2 Fast 2 Furious,6.2,2028,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
501,64000000,35.384423,2015-07-29,97571250,92.0,The Little Prince,7.6,756,07,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
502,80000000,15.673154,2007-08-17,15071514,99.0,The Invasion,5.7,359,08,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
503,76000000,8.981427,2000-06-30,35134820,88.0,The Adventures of Rocky & Bullwinkle,3.9,87,06,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
504,75000000,31.482871999999997,2016-06-18,875958308,87.0,The Secret Life of Pets,5.9,3462,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
505,78000000,47.436675,2003-07-11,179265204,110.0,The League of Extraordinary Gentlemen,5.7,1155,07,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
506,76000000,136.886704,2013-06-25,970761885,98.0,Despicable Me 2,7.0,4637,06,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
507,75000000,60.442593,1996-06-25,816969268,145.0,Independence Day,6.7,3260,06,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
508,73000000,2.502487,1997-05-23,229074524,129.0,The Lost World: Jurassic Park,6.2,2487,05,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
509,75000000,48.110909,2005-05-25,532680671,86.0,Madagascar,6.6,3237,05,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
510,76000000,35.387874,2006-09-22,69959751,109.0,Children of Men,7.4,2071,09,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
511,75000000,4.6689099999999994,2000-07-13,296339527,104.0,X-Men,6.8,4097,07,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
512,75000000,73.82289,2008-06-19,258270008,110.0,Wanted,6.4,2528,06,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
513,75000000,51.469576,1996-06-06,335062621,136.0,The Rock,6.9,1456,06,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
514,80000000,85.11505799999999,2006-03-23,660940780,91.0,Ice Age: The Meltdown,6.5,2951,03,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
515,75000000,61.437585999999996,2004-02-13,196482882,99.0,50 First Dates,6.6,2105,02,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
516,50000000,31.160542,2007-07-13,90450008,117.0,Hairspray,6.5,709,07,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,4
517,80000000,15.761384,2004-08-20,78000586,114.0,Exorcist: The Beginning,4.7,183,08,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,3
518,75000000,17.561954999999998,1999-07-23,0,78.0,Inspector Gadget,4.3,318,07,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
519,75000000,71.124686,2013-05-29,117698894,115.0,Now You See Me,7.3,5487,05,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2
520,80000000,38.864027,2010-06-24,271430189,102.0,Grown Ups,6.0,1705,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
521,60000000,57.753914,2004-06-17,219417255,128.0,The Terminal,7.0,1910,06,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
522,35000000,13.25753,2009-01-16,73034460,100.0,Hotel for Dogs,5.7,202,01,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2
523,75000000,13.318744,2000-12-08,215663859,124.0,Vertical Limit,5.9,283,12,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
524,75000000,18.70031,2007-12-19,119000410,102.0,Charlie Wilson's War,6.5,338,12,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
525,75000000,47.094369,2004-09-20,367275019,90.0,Shark Tale,5.8,1557,09,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
526,70000000,14.486310999999999,2006-12-25,154937680,134.0,Dreamgirls,6.6,284,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1
527,53000000,18.614720000000002,2005-03-04,95226116,118.0,Be Cool,5.4,292,03,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2
528,70000000,29.035221999999997,2005-12-22,130358911,164.0,Munich,6.9,696,12,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
529,70000000,27.055085,2003-03-07,85632458,121.0,Tears of the Sun,6.4,573,03,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3
530,75000000,23.004607,2010-06-04,98159963,100.0,Killers,5.7,772,06,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
531,75000000,48.744209000000005,2015-08-13,108145109,116.0,The Man from U.N.C.L.E.,7.1,2265,08,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
532,80000000,14.209329,2004-12-17,55041367,130.0,Spanglish,5.8,369,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
533,75000000,36.368839,2006-07-21,140175006,91.0,Monster House,6.3,874,07,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,4
534,75000000,24.353302,2001-10-12,67631903,123.0,Bandits,6.2,302,10,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4
535,55000000,19.143321,1995-07-07,127600435,134.0,First Knight,5.9,311,07,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,4
536,75000000,13.327372,1999-12-16,0,148.0,Anna and the King,6.4,197,12,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3
537,75000000,37.917002000000004,2011-11-10,226904017,110.0,Immortals,5.7,880,11,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
538,52000000,23.663713,2005-03-09,77944725,113.0,Hostage,6.2,512,03,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,4
539,75000000,14.443810000000001,2000-06-16,36754634,94.0,Titan A.E.,6.3,313,06,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
540,75000000,10.605084,2003-06-09,51142659,116.0,Hollywood Homicide,5.0,166,06,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
541,75000000,11.873856,1998-10-23,14567883,99.0,Soldier,6.1,221,10,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3
542,0,12.708963,2009-09-04,5802422,84.0,Carriers,5.8,282,09,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5
543,75000000,8.098369,2001-02-23,5409517,93.0,Monkeybone,4.3,78,02,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
544,45000000,20.374308,2004-12-17,21009180,113.0,Flight of the Phoenix,5.7,276,12,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
545,75000000,42.006908,2000-11-13,248118121,106.0,Unbreakable,6.9,1946,11,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
546,74000000,875.581305,2015-06-17,1156730962,91.0,Minions,6.4,4571,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
547,82000000,39.127082,2011-03-24,89792502,110.0,Sucker Punch,5.9,1623,03,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
548,73000000,20.790703,1998-08-07,103891409,98.0,Snake Eyes,5.8,327,08,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,2
549,75000000,18.659879999999998,1998-02-13,13100000,134.0,Sphere,5.8,476,02,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
550,73000000,45.720894,2016-05-11,349779543,97.0,The Angry Birds Movie,5.9,1022,05,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
551,70000000,21.789614999999998,2008-02-07,111231041,112.0,Fool's Gold,5.4,444,02,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
552,75000000,20.199057,2009-07-31,61458982,146.0,Funny People,5.7,390,07,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2
553,70000000,26.123704999999998,2007-08-22,86658558,110.0,The Kingdom,6.5,513,08,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
554,72500000,12.599836,2006-08-04,162966177,116.0,Talladega Nights: The Ballad of Ricky Bobby,6.2,491,08,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
555,70000000,13.543053,2001-06-22,176104344,87.0,Dr. Dolittle 2,4.9,410,06,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
556,72000000,60.722162,1995-05-24,210000000,177.0,Braveheart,7.7,3336,05,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4
557,72000000,32.227222999999995,2005-11-04,96889998,125.0,Jarhead,6.6,765,11,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2
558,75000000,46.875375,2007-07-25,527068851,87.0,The Simpsons Movie,6.9,2264,07,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
559,72000000,11.215702,2001-12-21,37317558,152.0,The Majestic,6.6,188,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
560,94000000,8.468586,2001-04-27,54744738,116.0,Driven,4.5,179,04,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
561,74500000,8.884317999999999,2004-04-07,62172050,109.0,Two Brothers,6.9,180,04,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
562,60000000,27.491891,2004-07-30,256697520,108.0,The Village,6.2,1071,07,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
563,71000000,21.462935,1998-06-22,294456605,85.0,Doctor Dolittle,5.4,686,06,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
564,72000000,28.848187,2002-08-02,408247917,106.0,Signs,6.4,1599,08,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4
565,150000000,47.320801,2004-05-19,919838758,93.0,Shrek 2,6.7,2988,05,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
566,120000000,82.643036,2006-06-08,461983149,117.0,Cars,6.6,3877,06,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
567,70000000,20.230535,1999-07-30,309457509,116.0,Runaway Bride,5.7,455,07,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,2
568,70000000,46.217769,2002-08-09,277448382,124.0,xXx,5.8,1424,08,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
569,74000000,36.952268,2015-02-05,311594032,93.0,The SpongeBob Movie: Sponge Out of Water,5.8,719,02,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
570,80000000,16.411345,1996-11-08,309492681,117.0,Ransom,6.4,470,11,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
571,70000000,72.595961,2009-08-18,319131050,153.0,Inglourious Basterds,7.9,6430,08,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,4
572,70000000,33.648404,1991-12-11,300854823,144.0,Hook,6.6,1532,12,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,4
573,70000000,57.69846999999999,1990-07-02,240031094,124.0,Die Hard 2,6.6,1896,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
574,80000000,34.052253,2003-08-08,116643346,117.0,S.W.A.T.,5.8,770,08,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
575,68000000,27.299301,2001-12-10,203388341,136.0,Vanilla Sky,6.5,1078,12,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,5
576,75000000,20.219385,2006-07-21,42285169,110.0,Lady in the Water,5.3,409,07,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,4
577,70000000,42.957215999999995,2004-08-12,171183863,101.0,AVP: Alien vs. Predator,5.5,1217,08,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
578,75000000,29.412262,2009-12-21,443140005,88.0,Alvin and the Chipmunks: The Squeakquel,5.4,666,12,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,5
579,75000000,19.708731,2002-03-01,114660784,138.0,We Were Soldiers,6.7,521,03,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3
580,70000000,59.428222999999996,2013-03-20,161025640,120.0,Olympus Has Fallen,6.2,2981,03,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
581,70000000,19.711951000000003,1998-12-10,118000000,103.0,Star Trek: Insurrection,6.3,391,12,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
582,70000000,49.199234000000004,2011-03-08,202466756,116.0,Battle: Los Angeles,5.5,1448,03,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
583,70000000,46.199482,2003-12-25,122919055,125.0,Big Fish,7.6,1994,12,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
584,0,13.758526000000002,1994-06-17,0,125.0,Wolf,6.0,216,06,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
585,66000000,29.505574,2011-12-25,177584879,146.0,War Horse,7.0,992,12,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2
586,70000000,43.873266,2014-01-24,154984035,118.0,The Monuments Men,5.8,1523,01,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4
587,70000000,24.961625,1989-08-09,90000098,139.0,The Abyss,7.1,808,08,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
588,70000000,23.25645,2010-09-02,134748021,133.0,Wall Street: Money Never Sleeps,5.8,493,09,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2
589,70000000,64.45794699999999,2014-10-01,215529201,92.0,Dracula Untold,6.2,2389,10,1,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,5
590,70000000,20.089933,1998-11-06,116672912,116.0,The Siege,6.0,352,11,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,4
591,70000000,48.032734000000005,2007-08-09,135560026,127.0,Stardust,7.1,1184,08,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,4
592,70000000,16.92991,1997-09-12,131457682,136.0,Seven Years in Tibet,7.0,630,09,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
593,70000000,14.780634,2011-01-13,67112664,111.0,The Dilemma,5.2,304,01,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
594,70000000,14.086292000000002,2002-06-07,65977295,116.0,Bad Company,5.4,228,06,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
595,60000000,29.261347999999998,2005-10-20,55987321,105.0,Doom,5.0,609,10,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3
596,70000000,13.267631,2002-10-31,33561137,97.0,I Spy,5.2,269,10,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
597,70000000,58.40120400000001,2012-01-19,160112671,88.0,Underworld: Awakening,6.1,1862,01,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3
598,75000000,23.515938000000002,2012-06-13,59418613,123.0,Rock of Ages,6.0,385,06,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,4
599,70000000,14.244518,2002-02-15,32287044,125.0,Hart's War,5.9,241,02,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2
600,66000000,29.501489000000003,2011-09-23,57777106,116.0,Killer Elite,6.1,695,09,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
601,0,9.306253,2002-02-08,0,98.0,Rollerball,3.4,106,02,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
602,70000000,8.37378,2002-09-20,19924033,91.0,Ballistic: Ecks vs. Sever,4.3,97,09,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
603,70000000,10.930537,1998-01-16,19870567,97.0,Hard Rain,5.5,179,01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
604,75000000,10.54544,2001-08-07,13596911,95.0,Osmosis Jones,5.9,228,08,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5
605,70000000,6.6820059999999994,2013-06-13,18662027,88.0,Legends of Oz: Dorothy's Return,5.9,43,06,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3
606,70000000,46.832372,2015-01-13,17752940,133.0,Blackhat,5.1,826,01,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,3
607,70000000,24.664776,2004-09-17,57958696,107.0,Sky Captain and the World of Tomorrow,5.7,439,09,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,5
608,70000000,13.483386999999999,2006-03-29,38629478,114.0,Basic Instinct 2,4.6,180,03,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,3
609,50000000,44.478043,2013-10-09,122915111,115.0,Escape Plan,6.7,1659,10,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
610,70000000,25.020428,2014-01-10,61279452,99.0,The Legend of Hercules,4.4,533,01,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
611,68000000,22.392544,2002-05-31,193000000,124.0,The Sum of All Fears,5.9,437,05,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
612,68000000,107.069763,2010-06-23,698491347,124.0,The Twilight Saga: Eclipse,5.8,2301,06,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
613,68000000,22.572323,2001-07-13,71069884,124.0,The Score,6.7,423,07,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3
614,69000000,113.858273,2010-07-08,543513985,95.0,Despicable Me,7.1,6478,07,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
615,60000000,10.004564,1995-11-21,35431113,103.0,Money Train,5.4,222,11,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
616,68000000,68.734513,2015-06-25,217022588,115.0,Ted 2,6.2,2463,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
617,70000000,18.888806,2009-05-17,39041505,127.0,Agora,6.9,395,05,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
618,68000000,12.948627,1999-08-06,29762011,121.0,Mystery Men,5.7,250,08,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
619,36000000,27.115890000000004,2011-02-25,83160734,105.0,Hall Pass,5.4,611,02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
620,90000000,26.153669,1999-10-28,60289912,157.0,The Insider,7.3,481,10,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
621,80000000,28.223664000000003,2016-01-25,52099090,114.0,The Finest Hours,6.3,588,01,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
622,70000000,37.507135999999996,2008-10-10,113280098,128.0,Body of Lies,6.5,895,10,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
623,69000000,11.023691,2010-07-30,86387857,114.0,Dinner for Schmucks,5.5,531,07,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1
624,69000000,38.634767,2012-06-20,112265139,94.0,Abraham Lincoln: Vampire Hunter,5.5,1269,06,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3
625,66000000,25.877794,1999-04-29,212404396,112.0,Entrapment,6.0,602,04,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,3
626,66000000,18.59991,1998-06-19,189198313,121.0,The X Files,6.6,488,06,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
627,67000000,12.282911,2007-04-19,25303038,102.0,The Last Legion,5.0,207,04,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4
628,70000000,76.04186700000001,1998-07-24,481840909,169.0,Saving Private Ryan,7.9,5048,07,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,3
629,66000000,54.814890000000005,2014-03-13,203277636,130.0,Need for Speed,6.1,1520,03,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,4
630,70000000,31.39165,2000-12-15,374111707,127.0,What Women Want,6.1,992,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,2
631,59000000,99.561972,2002-03-10,383257136,81.0,Ice Age,7.1,3857,03,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
632,68000000,26.792794,2003-03-21,75715436,136.0,Dreamcatcher,5.3,567,03,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4
633,65000000,36.307296,2012-11-09,275293450,149.0,Lincoln,6.7,1429,11,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2
634,63000000,104.309993,1999-03-30,463517383,136.0,The Matrix,7.9,8907,03,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
635,52000000,68.140214,1995-06-30,355237933,140.0,Apollo 13,7.3,1599,06,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
636,65000000,14.646884,2002-10-31,172855065,104.0,The Santa Clause 2,5.5,297,10,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
637,61000000,48.356214,2012-12-18,441809770,157.0,Les Misérables,7.1,1884,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3
638,65000000,28.540267,1998-12-17,250821495,119.0,You've Got Mail,6.3,838,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
639,65000000,22.977983,2008-07-25,128107642,98.0,Step Brothers,6.5,1062,07,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
640,95000000,31.086790999999998,1998-07-16,250288523,136.0,The Mask of Zorro,6.3,1183,07,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2
641,65000000,43.865294,2010-11-04,211780824,95.0,Due Date,6.2,1685,11,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
642,65000000,43.055253,2014-12-25,163442937,137.0,Unbroken,7.3,1400,12,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2
643,65000000,15.772081,2000-07-31,128884132,130.0,Space Cowboys,6.3,403,07,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
644,70000000,26.199089999999998,1993-05-28,255000211,112.0,Cliffhanger,6.1,588,05,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
645,50000000,22.769108,1996-02-09,150270147,108.0,Broken Arrow,5.7,453,02,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
646,65000000,18.281798000000002,2000-07-07,69700000,104.0,The Kid,6.0,238,07,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
647,63000000,24.697533,2006-08-09,162945894,128.0,World Trade Center,5.9,447,08,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
648,65000000,19.718544,2003-12-19,0,117.0,Mona Lisa Smile,6.5,393,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
649,65000000,31.349142999999998,2012-05-15,179379533,83.0,The Dictator,5.9,1743,05,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
650,65000000,27.870312,1999-07-14,162091208,159.0,Eyes Wide Shut,7.1,1234,07,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2
651,65000000,33.439187,2014-12-19,133821816,119.0,Annie,6.0,466,12,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
652,50100000,59.634029000000005,2015-02-25,153962963,105.0,Focus,6.7,2542,02,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4
653,65000000,38.994296999999996,2012-02-14,156974557,103.0,This Means War,5.9,1389,02,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3
654,65000000,49.660055,2004-12-08,128905366,123.0,Blade: Trinity,5.7,1252,12,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,6
655,4200000,11.743085,1984-08-10,38376497,114.0,Red Dawn,6.4,215,08,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
656,65000000,9.110247,1998-03-20,0,143.0,Primary Colors,6.1,94,03,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
657,65000000,6.227675,2012-09-12,240159255,95.0,Resident Evil: Retribution,5.6,1600,09,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3
658,45000000,42.57877,2008-08-22,73762516,105.0,Death Race,6.0,1175,08,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
659,65000000,15.858629,1996-10-11,89456761,120.0,The Long Kiss Goodnight,6.5,314,10,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,4
660,65000000,14.866901,2000-12-08,0,135.0,Proof of Life,6.0,208,12,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,5
661,65000000,15.194239000000001,2005-11-06,64321501,101.0,Zathura: A Space Adventure,6.1,779,11,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
662,63000000,146.75739099999998,1999-10-15,100853753,139.0,Fight Club,8.3,9413,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
663,65000000,8.629665,2006-12-12,43545364,124.0,We Are Marshall,6.7,186,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
664,65000000,16.803457,1991-05-23,17218080,100.0,Hudson Hawk,5.4,269,05,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
665,65000000,2.952595,2000-10-27,0,105.0,Lucky Numbers,4.9,52,10,1,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,6
666,65000000,31.324734000000003,2014-01-22,71154592,92.0,"I, Frankenstein",5.0,687,01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2
667,50000000,20.415572,2005-09-23,42093706,130.0,Oliver Twist,6.7,274,09,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
668,43000000,28.613892,2005-01-13,56681566,97.0,Elektra,4.8,575,01,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
669,65000000,85.428395,2014-08-20,39407616,102.0,Sin City: A Dame to Kill For,6.3,1286,08,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2
670,64000000,4.137237,1999-10-08,74608570,133.0,Random Hearts,5.3,63,10,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
671,55000000,60.246978000000006,2015-09-10,203427584,121.0,Everest,6.7,1772,09,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
672,50000000,42.551902,2006-09-13,132180323,147.0,Perfume: The Story of a Murderer,7.1,1165,09,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
673,63000000,40.137264,2002-07-26,296655431,94.0,Austin Powers in Goldmember,5.9,979,07,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
674,65000000,24.857079000000002,2009-10-15,44091067,94.0,Astro Boy,6.1,409,10,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
675,63000000,40.413191,1993-06-11,920100000,127.0,Jurassic Park,7.6,4856,06,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
676,63000000,13.859307000000001,1994-06-24,25052000,191.0,Wyatt Earp,6.5,202,06,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,3
677,62000000,18.832470999999998,1994-08-03,215887717,141.0,Clear and Present Danger,6.4,386,08,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
678,65000000,9.568883999999999,2015-02-19,121545703,127.0,Dragon Blade,5.9,145,02,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
679,64000000,12.421503999999999,2006-08-31,101595121,98.0,Little Man,5.3,261,08,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2
680,62000000,18.096884,2000-04-20,127666415,116.0,U-571,6.1,340,04,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,4
681,62000000,11.056763,1995-11-17,107879496,106.0,The American President,6.5,195,11,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,3
682,62000000,13.218008,2008-06-20,41819064,87.0,The Love Guru,4.3,242,06,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,2
683,62000000,11.262655,2001-02-23,18720175,125.0,3000 Miles to Graceland,5.8,178,02,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,5
684,44000000,68.717016,2015-12-25,155760117,167.0,The Hateful Eight,7.6,4274,12,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,4
685,53000000,19.412028,2007-03-30,0,93.0,Blades of Glory,5.9,569,03,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
686,63000000,16.791058,2011-03-30,183953723,95.0,Hop,5.5,331,03,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
687,65000000,65.197968,2006-12-09,422610419,117.0,300,7.0,4997,12,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3
688,80000000,32.829538,2004-12-22,516642939,115.0,Meet the Fockers,6.1,1373,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
689,60000000,30.951203000000003,2008-12-25,244082376,115.0,Marley & Me,6.9,1343,12,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
690,60000000,103.698022,1999-12-10,284600000,189.0,The Green Mile,8.2,4048,12,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
691,0,31.719463,2007-03-02,253625427,100.0,Wild Hogs,5.6,648,03,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
692,150000000,47.973995,2005-11-04,314432665,81.0,Chicken Little,5.6,944,11,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
693,61000000,143.041543,2014-10-01,369330363,145.0,Gone Girl,7.9,5862,10,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
694,60000000,86.47681700000001,2002-06-14,214034224,119.0,The Bourne Identity,7.3,3583,06,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,4
695,58000000,59.824565,1995-11-16,352194034,130.0,GoldenEye,6.6,1174,11,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
696,60000000,18.345613,1999-06-18,149705852,116.0,The General's Daughter,6.1,205,06,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,4
697,60000000,56.488027,1998-06-04,264118201,103.0,The Truman Show,7.8,4537,06,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2
698,70000000,29.464852,1998-12-15,218613188,99.0,The Prince of Egypt,6.8,817,12,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,5
699,60000000,18.106021,2003-05-03,164433867,92.0,Daddy Day Care,5.6,506,05,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
700,61000000,42.881415000000004,2013-08-02,131940411,109.0,2 Guns,6.6,1589,08,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
701,60000000,18.735024,2001-07-04,93375151,87.0,Cats & Dogs,5.0,352,07,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
702,60000000,62.766854,2003-05-30,176070171,110.0,The Italian Job,6.6,1919,05,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2
703,60000000,24.153567000000002,2002-12-19,93354918,101.0,Two Weeks Notice,5.9,487,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
704,60000000,41.515702000000005,1998-10-02,171757863,83.0,Antz,6.0,1272,10,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
705,70000000,26.676486999999998,2009-09-19,171844840,113.0,Couples Retreat,5.3,588,09,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
706,60000000,16.278022,1990-06-27,157920733,107.0,Days of Thunder,5.9,353,06,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
707,60000000,18.831023000000002,2005-12-21,129181830,94.0,Cheaper by the Dozen 2,5.7,526,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
708,61000000,113.161483,2015-09-09,311256926,132.0,Maze Runner: The Scorch Trials,6.4,3040,09,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
709,60000000,28.800112,2010-08-12,204594016,133.0,Eat Pray Love,5.8,636,08,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
710,60000000,19.705489,2000-12-12,0,125.0,The Family Man,6.5,521,12,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,4
711,58000000,41.430245,2010-10-13,71664962,111.0,RED,6.6,2808,10,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,5
712,55000000,23.127561,1999-12-16,100230832,163.0,Any Given Sunday,6.8,422,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
713,60000000,12.867352,1998-05-14,186883563,170.0,The Horse Whisperer,6.7,292,05,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,2
714,65000000,44.815022,2004-08-04,217764291,120.0,Collateral,7.0,1451,08,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3
715,60000000,37.537093,2002-04-16,165333180,92.0,The Scorpion King,5.3,779,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
716,60000000,10.99991,2004-10-01,74541707,115.0,Ladder 49,6.2,207,10,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
717,60000000,56.868399,2012-12-20,218340595,130.0,Jack Reacher,6.3,2998,12,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3
718,60000000,22.991269,1999-07-28,73648228,105.0,Deep Blue Sea,5.6,604,07,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
719,60000000,15.798622,2009-10-28,0,111.0,This Is It,6.7,247,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2
720,60000000,38.820858,2011-09-08,137551594,106.0,Contagion,6.2,1325,09,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
721,0,10.292864,2003-01-17,0,89.0,Kangaroo Jack,4.3,203,01,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
722,60000000,51.146046999999996,2009-02-05,124596398,100.0,Coraline,7.3,1386,02,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
723,60000000,20.501582,2008-06-11,163403799,91.0,The Happening,4.9,950,06,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
724,70000000,45.299089,2004-04-23,130293714,146.0,Man on Fire,7.3,1553,04,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,4
725,50000000,4.280619000000001,2006-03-09,61112916,98.0,The Shaggy Dog,4.5,137,03,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
726,60000000,28.848841999999998,2004-03-05,170268750,101.0,Starsky & Hutch,5.6,644,03,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,2
727,60000000,22.501041,1996-11-15,129832389,89.0,Jingle All the Way,5.5,575,11,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
728,66000000,47.479755,2004-04-02,99318987,122.0,Hellboy,6.5,2225,04,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
729,70000000,10.147321,1998-03-05,56702901,115.0,A Civil Action,6.1,109,03,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1
730,60000000,39.539045,2012-08-03,107139399,90.0,ParaNorman,6.7,789,08,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
731,60000000,19.747459,1997-11-14,159330280,124.0,The Jackal,6.1,527,11,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4
732,60000000,29.018826,2003-12-25,96269812,119.0,Paycheck,5.9,581,12,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,5
733,60000000,4.801849,1996-03-01,0,119.0,Up Close & Personal,5.9,50,03,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,2
734,60000000,16.493576,2008-12-19,50877145,93.0,The Tale of Despereaux,5.8,258,12,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
735,0,21.549232,2002-09-27,0,98.0,The Tuxedo,5.3,483,09,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
736,60000000,13.080725,1995-07-13,104324083,100.0,Under Siege 2: Dark Territory,5.6,210,07,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
737,60000000,42.538258,2014-01-15,50549107,105.0,Jack Ryan: Shadow Recruit,5.9,1173,01,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
738,60000000,29.876507,2015-12-24,101134059,124.0,Joy,6.4,1581,12,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
739,60000000,61.849520999999996,2016-03-02,205754447,99.0,London Has Fallen,5.8,1621,03,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
740,70000000,37.44963,1997-11-12,162000000,109.0,Alien: Resurrection,5.9,1365,11,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3
741,61000000,37.378081,2007-03-22,95696996,124.0,Shooter,6.9,1462,03,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,5
742,60000000,30.656345,2014-09-10,108255770,97.0,The Boxtrolls,6.6,668,09,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
743,75000000,15.142701,1998-10-16,46683377,104.0,Practical Magic,6.3,338,10,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
744,60000000,59.547928000000006,2014-02-06,469160692,100.0,The Lego Movie,7.5,3070,02,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5
745,0,19.998581,2005-03-11,0,115.0,Miss Congeniality 2: Armed and Fabulous,5.3,425,03,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
746,60000000,27.615108000000003,2002-07-12,43061982,101.0,Reign of Fire,6.0,669,07,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
747,60000000,29.041197999999998,2013-01-10,105200903,113.0,Gangster Squad,6.2,1778,01,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
748,60000000,25.293538,2009-06-18,62357900,97.0,Year One,4.6,524,06,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
749,60000000,23.85119,2009-12-10,122233971,134.0,Invictus,7.0,1125,12,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
750,60000000,21.685719,2009-04-17,87784194,127.0,State of Play,6.7,484,04,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
751,78146652,13.630049,2009-03-19,60000000,125.0,Duplicity,5.7,201,03,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,3
752,65000000,6.80692,1999-02-11,36850101,94.0,My Favorite Martian,5.1,80,02,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
753,60000000,15.352807,2006-04-19,77920346,108.0,The Sentinel,5.8,225,04,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3
754,70000000,23.661071,2009-11-19,104945765,91.0,Planet 51,5.6,556,11,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5
755,60000000,21.605532999999998,2002-12-13,67312826,117.0,Star Trek: Nemesis,6.1,479,12,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
756,60000000,22.620125,2003-09-02,119940815,100.0,Intolerable Cruelty,5.8,391,09,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,3
757,0,18.587114,2012-09-21,0,111.0,Trouble with the Curve,6.6,366,09,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
758,80000000,24.657931,2010-01-29,74901339,117.0,Edge of Darkness,6.2,487,01,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,4
759,60000000,12.621769,1997-01-10,33956608,110.0,The Relic,5.8,130,01,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,3
760,60000000,21.08952,2002-12-06,55003135,96.0,Analyze That,5.7,380,12,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
761,60000000,18.380176000000002,2008-09-11,73174566,101.0,Righteous Kill,5.9,375,09,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4
762,60000000,18.877795000000003,1998-04-03,0,111.0,Mercury Rising,6.0,368,04,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4
763,60000000,17.299332999999997,2009-04-24,31720158,109.0,The Soloist,6.6,234,04,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
764,80000000,16.848899,2000-11-02,39459427,126.0,The Legend of Bagger Vance,6.3,251,11,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2
765,60000000,21.547446,2000-09-15,47383689,122.0,Almost Famous,7.4,797,09,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2
766,0,16.930969,2006-06-15,141702264,78.0,Garfield: A Tail of Two Kitties,5.1,464,06,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
767,60000000,36.689223,2005-04-27,71073932,101.0,xXx: State of the Union,4.7,549,04,1,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,6
768,60000000,28.350927000000002,2011-05-05,78309131,87.0,Priest,5.4,692,05,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5
769,60000000,18.815442,2003-07-02,26288320,86.0,Sinbad: Legend of the Seven Seas,6.6,372,07,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
770,60000000,29.787135,1997-08-15,26673242,96.0,Event Horizon,6.5,742,08,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,3
771,60000000,8.927137,2002-02-22,52322400,104.0,Dragonfly,6.1,204,02,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
772,50000000,15.213484,2006-09-15,49111202,121.0,The Black Dahlia,5.7,287,09,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
773,60000000,13.155999,2006-09-22,17800000,140.0,Flyboys,6.3,271,09,1,1,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,6
774,72000000,15.433244,2001-10-19,27642707,131.0,The Last Castle,7.0,285,10,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
775,90000000,5.762037,2000-01-14,14828081,91.0,Supernova,4.9,109,01,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3
776,60000000,22.736038,2014-02-13,30800231,118.0,Winter's Tale,6.0,487,02,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,4
777,60000000,45.514031,2013-08-21,90565421,130.0,The Mortal Instruments: City of Bones,6.2,1602,08,1,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,6
778,60000000,18.676291,2008-07-08,50650079,90.0,Meet Dave,5.0,371,07,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
779,30000000,14.376463000000001,2005-06-27,25473093,105.0,Dark Water,5.3,274,06,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3
780,80000000,14.298297,1999-03-26,0,122.0,Edtv,5.7,166,03,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
781,60000000,27.018886,2008-12-11,57490374,106.0,Inkheart,6.0,592,12,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
782,60000000,14.84856,2008-12-25,39031337,103.0,The Spirit,4.7,320,12,1,0,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,5
783,60000000,52.417528999999995,2015-01-21,30418560,106.0,Mortdecai,5.4,1055,01,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
784,60000000,15.406173,2007-11-29,0,127.0,In the Name of the King: A Dungeon Siege Tale,4.1,224,11,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
785,35000000,6.523472,2003-10-23,0,127.0,Beyond Borders,6.7,110,10,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,4
786,68490000,4.7262900000000005,2016-01-22,193677158,120.0,The Monkey King 2,6.0,24,01,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
787,80000000,8.923214999999999,2005-08-12,10166502,132.0,The Great Raid,6.8,91,08,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3
788,58000000,514.5699559999999,2016-02-09,783112979,108.0,Deadpool,7.4,10995,02,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
789,60000000,9.265672,1998-10-08,0,114.0,Holy Man,4.9,111,10,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
790,58800000,87.53437,2014-12-11,542307423,133.0,American Sniper,7.4,4469,12,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2
791,58000000,45.351617,2015-08-05,158162788,103.0,Goosebumps,6.2,995,08,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3
792,58000000,13.43573,2005-09-16,102854431,95.0,Just Like Heaven,6.5,579,09,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3
793,83000000,6.248309,2000-04-28,59468275,90.0,The Flintstones in Viva Rock Vegas,4.4,134,04,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,4
794,63000000,31.294717,1988-05-24,189015611,102.0,Rambo III,5.7,690,05,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,4
795,58000000,7.739275999999999,2008-03-24,41299492,114.0,Leatherheads,5.7,130,03,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3
796,60000000,19.694695,2015-12-11,0,119.0,The Ridiculous 6,4.9,388,12,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2
797,58000000,14.403696,2009-12-17,85280250,103.0,Did You Hear About the Morgans?,5.1,276,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1
798,58000000,1.551497,2013-06-07,44000000,119.0,The Internship,6.1,1658,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
799,60000000,2.143764,2010-09-09,300228084,97.0,Resident Evil: Afterlife,5.8,1363,09,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4
800,58000000,12.29603,2012-01-19,50365377,125.0,Red Tails,5.9,178,01,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,5
801,57000000,33.8473,1997-10-17,152944660,144.0,The Devil's Advocate,7.2,1374,10,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,4
802,70000000,21.723897,2012-06-14,58058367,116.0,That's My Boy,5.5,453,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
803,57000000,31.791978999999998,1996-05-31,115267375,103.0,DragonHeart,6.4,535,05,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
804,60000000,14.113066,2004-11-12,61347797,97.0,After the Sunset,6.0,226,11,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
805,57000000,48.622278,2011-12-10,149217355,95.0,Ghost Rider: Spirit of Vengeance,4.7,1135,12,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
806,57000000,9.061866,2001-08-17,62112895,131.0,Captain Corelli's Mandolin,5.5,145,08,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,3
807,56000000,35.4763,2005-03-04,113006880,95.0,The Pacifier,5.8,842,03,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5
808,56000000,23.438398,2004-04-02,57223890,86.0,Walking Tall,6.0,381,04,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4
809,55000000,138.133331,1994-07-06,677945399,142.0,Forrest Gump,8.2,7927,07,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,3
810,60000000,47.336034000000005,2007-12-13,361366633,92.0,Alvin and the Chipmunks,5.5,1177,12,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,5
811,55000000,29.972240000000003,2000-10-06,330444045,108.0,Meet the Parents,6.6,1698,10,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
812,55000000,47.845589000000004,1995-06-14,346079773,81.0,Pocahontas,6.7,1457,06,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
813,55000000,48.507081,1978-12-13,300218018,143.0,Superman,6.9,1022,12,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
814,54000000,20.28119,1996-06-26,128769345,95.0,The Nutty Professor,5.4,702,06,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,4
815,70000000,34.576913,2005-02-10,368100420,118.0,Hitch,6.4,1665,02,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3
816,55000000,22.573237,1997-07-15,0,92.0,George of the Jungle,5.4,496,07,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4
817,55000000,36.194802,2003-08-01,231449203,103.0,American Wedding,6.0,1129,08,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
818,55000000,52.786917,2013-10-10,95000000,134.0,Captain Phillips,7.6,2454,10,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
819,55000000,38.061679999999996,2010-04-08,152263880,97.0,Date Night,5.9,1122,04,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
820,50000000,19.830132,1995-05-26,287928194,100.0,Casper,6.0,1019,05,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3
821,55000000,79.92205899999999,2014-09-24,192330738,132.0,The Equalizer,7.1,2954,09,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
822,55000000,19.738215,2002-12-13,154906693,105.0,Maid in Manhattan,5.6,485,12,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3
823,53000000,20.334629,1995-05-12,157387195,116.0,Crimson Tide,7.0,498,05,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
824,55000000,80.581367,2006-12-14,307077295,117.0,The Pursuit of Happyness,7.7,2525,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
825,55000000,32.05145,2005-09-22,223387299,98.0,Flightplan,6.1,772,09,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
826,55000000,15.064058,1994-12-09,214015089,123.0,Disclosure,5.9,210,12,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,5
827,55000000,21.272734,1998-04-10,198685114,114.0,City of Angels,6.4,529,04,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
828,30000000,79.75496600000001,2003-10-10,180949000,111.0,Kill Bill: Vol. 1,7.7,4949,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2
829,55000000,13.191829,1999-08-12,0,97.0,Bowfinger,6.0,254,08,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
830,30000000,50.622607,2004-04-16,152159461,136.0,Kill Bill: Vol. 2,7.6,3948,04,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3
831,55000000,22.787667000000003,1989-12-22,63408614,104.0,Tango & Cash,6.1,458,12,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
832,55000000,29.498303999999997,1992-07-30,149022650,104.0,Death Becomes Her,6.3,636,07,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
833,55000000,25.400935,2000-05-26,56932305,110.0,Shanghai Noon,6.2,735,05,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,4
834,55000000,17.231675,1996-03-15,121969216,133.0,Executive Decision,5.8,256,03,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
835,55000000,32.835777,2011-06-17,187361754,94.0,Mr. Popper's Penguins,5.7,751,06,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
836,55000000,17.097041,2008-04-18,127906624,104.0,The Forbidden Kingdom,6.3,461,04,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
837,55000000,14.414937,2013-10-30,110000000,91.0,Free Birds,5.7,254,10,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
838,50000000,45.856409,1992-05-22,159773545,114.0,Alien³,6.2,1633,05,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3
839,55000000,7.027139,1996-12-14,141047179,134.0,Evita,5.9,120,12,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,3
840,55000000,32.657488,1998-09-25,41610884,122.0,Ronin,6.7,658,09,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4
841,50000000,12.46525,1996-10-11,75000000,109.0,The Ghost and the Darkness,6.4,236,10,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
842,55000000,39.882276,2014-11-27,259207227,95.0,Paddington,7.0,883,11,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
843,68000000,39.395881,2012-07-26,68267862,98.0,The Watch,5.3,881,07,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
844,55000000,8.634953999999999,2003-03-11,34234008,94.0,The Hunted,6.0,189,03,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4
845,80000000,7.386394,1999-06-04,0,126.0,Instinct,6.2,146,06,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3
846,55000000,8.802525,2003-12-10,33828318,118.0,Stuck on You,5.1,188,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
847,0,10.449975,2008-02-28,33472850,91.0,Semi-Pro,5.4,251,02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
848,60000000,23.700758999999998,2012-03-12,118338361,88.0,The Pirates! In an Adventure with Scientists!,6.4,374,03,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
849,55000000,27.509159999999998,2008-01-30,113020255,141.0,Changeling,7.3,1131,01,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,3
850,50000000,20.588620000000002,1996-08-02,60209334,107.0,Chain Reaction,5.3,284,08,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
851,55000000,4.3664879999999995,1996-08-15,18626419,116.0,The Fan,5.7,194,08,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,3
852,70000000,18.927463,2004-12-08,154648887,143.0,The Phantom of the Opera,7.0,438,12,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
853,55000000,15.274137,2007-09-09,74237563,114.0,Elizabeth: The Golden Age,6.6,303,09,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3
854,62000000,29.954302000000002,2005-11-30,52304001,93.0,Æon Flux,5.4,703,11,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2
855,56000000,4.362535,2003-02-21,12923936,214.0,Gods and Generals,6.1,48,02,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3
856,55000000,4.700024,1997-01-09,11466088,100.0,Turbulence,5.2,62,01,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
857,55000000,12.340384,2009-06-19,0,107.0,Imagine That,5.7,134,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
858,50000000,14.808304000000001,2014-03-20,80383290,112.0,Muppets Most Wanted,6.2,316,03,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,4
859,57000000,9.27875,2004-07-23,28283637,95.0,Thunderbirds,4.2,91,07,1,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6
860,55000000,22.863516,2010-11-23,89519773,119.0,Burlesque,6.9,573,11,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2
861,47000000,23.05451,2004-10-26,0,133.0,A Very Long Engagement,7.1,346,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
862,2000000,23.962108999999998,1962-06-13,9250000,153.0,Lolita,7.3,395,06,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2
863,55000000,12.669777999999999,2002-01-04,6416302,96.0,D-Tox,5.3,123,01,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
864,54000000,67.16958699999999,2002-03-22,155010032,117.0,Blade II,6.2,1528,03,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4
865,55000000,41.472404,2008-12-18,168167691,123.0,Seven Pounds,7.5,2039,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
866,55000000,22.503935000000002,2013-01-31,9489829,92.0,Bullet to the Head,5.2,481,01,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
867,54000000,59.194915,1990-12-24,136766062,162.0,The Godfather: Part III,7.1,1546,12,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3
868,57000000,22.894898,2005-10-06,52034889,123.0,Elizabethtown,6.1,327,10,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,3
869,54000000,18.600367000000002,2006-07-14,130431368,108.0,"You, Me and Dupree",5.4,407,07,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
870,54000000,30.515175,1980-12-04,190458706,127.0,Superman II,6.5,629,12,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
871,54000000,9.053456,2003-08-01,7266209,121.0,Gigli,3.5,104,08,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
872,55000000,7.768223,2006-09-10,9450897,125.0,All the King's Men,5.7,95,09,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
873,46000000,19.643365,2000-06-15,107196498,99.0,Shaft,5.5,308,06,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,4
874,53000000,45.565917999999996,1997-11-20,139804348,94.0,Anastasia,7.4,1432,11,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
875,52500000,57.374341,2001-03-09,179213434,127.0,Moulin Rouge!,7.4,1300,03,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,3
876,75000000,8.418560000000001,2001-10-30,54249294,89.0,Domestic Disturbance,5.4,113,10,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,3
877,53000000,46.049902,2015-09-04,98837872,122.0,Black Mass,6.3,1242,09,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2
878,90000000,23.9366,2006-10-18,65900249,132.0,Flags of Our Fathers,6.7,526,10,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,3
879,53000000,49.593978,2009-10-15,126690726,109.0,Law Abiding Citizen,7.2,1486,10,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
880,67000000,16.637642,2007-04-06,25037897,191.0,Grindhouse,6.8,459,04,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,3
881,0,1.453765,1998-10-16,0,172.0,Beloved,5.9,26,10,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
882,0,6.162872,2007-05-01,5761917,124.0,Lucky You,5.4,81,05,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
883,52000000,73.94404899999999,2002-12-25,352114312,141.0,Catch Me If You Can,7.7,3795,12,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2
884,40000000,38.306954,2012-12-19,132820716,157.0,Zero Dark Thirty,6.7,1702,12,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
885,52000000,26.251216999999997,2006-06-01,204999686,106.0,The Break-Up,5.6,832,06,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
886,52000000,30.780599,2008-07-03,609841637,108.0,Mamma Mia!,6.4,1386,07,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
887,52000000,25.41929,2010-02-10,216485654,125.0,Valentine's Day,5.7,1013,02,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,2
888,50000000,15.982120000000002,2005-08-05,110803676,104.0,The Dukes of Hazzard,5.1,316,08,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
889,52000000,40.072583,1998-12-25,98126565,170.0,The Thin Red Line,7.2,771,12,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3
890,52000000,32.015477000000004,2011-08-05,75450437,112.0,The Change-Up,5.9,736,08,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
891,82000000,24.444186,1999-12-22,47434430,118.0,Man on the Moon,6.9,435,12,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3
892,52000000,40.06688,1995-11-22,116112375,178.0,Casino,7.8,1307,11,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2
893,52000000,27.916284,2010-02-05,52826594,92.0,From Paris with Love,6.1,675,02,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
894,52000000,15.207070000000002,2003-03-28,0,104.0,Bulletproof Monk,5.1,278,03,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
895,51000000,39.001682,2000-06-22,149270999,116.0,"Me, Myself & Irene",6.1,927,06,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
896,51000000,10.430832,2006-08-04,72779000,90.0,Barnyard,5.3,225,08,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3
897,0,5.952527,2006-11-22,47231070,93.0,Deck the Halls,5.1,109,11,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
898,50000000,94.815867,2009-03-15,709827462,130.0,The Twilight Saga: New Moon,5.6,2436,03,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
899,60000000,67.298732,2001-05-16,484409218,90.0,Shrek,7.3,4056,05,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5
900,50200000,26.60772,2011-03-03,127869379,106.0,The Adjustment Bureau,6.5,1652,03,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3
901,48000000,28.803728999999997,1991-06-14,390493908,143.0,Robin Hood: Prince of Thieves,6.6,909,06,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
902,50000000,27.039635999999998,1996-12-06,273552592,139.0,Jerry Maguire,6.7,913,12,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3
903,50000000,68.87691,2012-06-29,549368315,106.0,Ted,6.3,4697,06,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
904,50000000,37.885022,1997-12-19,314178011,139.0,As Good as It Gets,7.2,915,12,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
905,50000000,35.537397,1998-12-25,202292902,115.0,Patch Adams,7.0,832,12,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
906,50000000,38.125008,2013-12-18,173649015,119.0,Anchorman 2: The Legend Continues,6.0,923,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
907,50000000,18.121404000000002,2002-06-28,171269535,96.0,Mr. Deeds,5.6,644,06,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,2
908,50000000,37.069253,2011-06-08,260095987,112.0,Super 8,6.6,2435,06,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,3
909,52000000,30.347332,2000-03-17,256271286,131.0,Erin Brockovich,7.1,716,03,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
910,50000000,23.854701000000002,2003-02-07,177371441,116.0,How to Lose a Guy in 10 Days,6.3,850,02,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,2
911,50000000,52.380982,2014-06-05,188441614,112.0,22 Jump Street,7.0,3319,06,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,3
912,60000000,50.163785,1994-11-11,223664608,123.0,Interview with the Vampire,7.2,1516,11,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2
913,70000000,43.849351,2008-12-09,225990978,104.0,Yes Man,6.4,1813,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
914,50000000,45.318703,2016-06-15,216972543,107.0,Central Intelligence,6.2,1650,06,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2
915,0,16.368282999999998,1998-12-25,0,124.0,Stepmom,6.9,277,12,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2
916,50000000,38.616744,2015-12-25,242786137,96.0,Daddy's Home,5.8,854,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
917,50000000,65.90160999999999,2014-12-25,212902372,125.0,Into the Woods,5.6,1652,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,3
918,45000000,45.220386,2006-03-23,184376254,129.0,Inside Man,7.3,1630,03,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
919,90000000,17.457947,1999-02-05,161626121,100.0,Payback,6.7,548,02,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,4
920,50000000,10.755847,1995-06-09,152022101,109.0,Congo,5.0,213,06,1,1,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,6
921,50000000,38.629763,2011-12-22,120081841,124.0,We Bought a Zoo,6.5,909,12,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
922,50000000,32.693093,2009-03-19,155446362,121.0,Knowing,5.9,1486,03,1,1,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6
923,50000000,18.806031,2006-03-10,88715192,97.0,Failure to Launch,5.5,399,03,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1
924,50000000,32.233713,2005-03-17,161451538,110.0,The Ring Two,5.4,632,03,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3
925,50000000,37.990705,2011-07-29,142851197,118.0,"Crazy, Stupid, Love.",7.0,2443,07,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
926,50000000,17.667826,2004-06-10,200804534,80.0,Garfield,5.2,820,06,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
927,60000000,9.225166,2004-11-24,0,99.0,Christmas with the Kranks,5.2,193,11,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
928,50000000,46.180421,2011-09-22,110206216,133.0,Moneyball,7.0,1381,09,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
929,50000000,30.397496000000004,1995-03-10,189859560,127.0,Outbreak,6.3,513,03,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4
930,50000000,83.295796,2014-01-26,222809600,106.0,Non-Stop,6.8,2268,01,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3
931,50000000,23.935053,2009-03-12,106303988,98.0,Race to Witch Mountain,5.5,509,03,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6
932,54000000,84.630969,2006-03-15,132511035,132.0,V for Vendetta,7.7,4442,03,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
933,50000000,16.251204,2003-02-06,88323487,115.0,Shanghai Knights,6.0,692,02,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,4
934,50000000,9.894346,2006-02-10,69834815,86.0,Curious George,6.2,106,02,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4
935,50000000,12.050755,2005-06-22,66002004,101.0,Herbie Fully Loaded,5.1,542,06,0,1,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,5
936,50000000,11.596207000000001,2001-09-28,100020092,113.0,Don't Say a Word,6.0,220,09,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
937,50000000,53.02786999999999,2013-01-17,224803475,88.0,Hansel & Gretel: Witch Hunters,5.7,3239,01,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3
938,50000000,14.382253,2002-05-10,119137784,124.0,Unfaithful,6.3,276,05,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
939,50000000,43.450266,2011-02-18,144492830,109.0,I Am Number Four,5.9,1567,02,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4
940,50000000,16.871194,2005-11-23,94000000,128.0,Syriana,6.3,451,11,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
941,50000000,42.526529,2016-01-13,69411370,144.0,13 Hours: The Secret Soldiers of Benghazi,7.0,938,01,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,5
942,50000000,34.890999,2014-10-01,97437106,95.0,The Book of Life,7.3,755,10,0,1,1,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,6
943,45000000,18.186026000000002,2006-02-10,82800000,105.0,Firewall,5.6,267,02,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
944,50000000,13.576765,1997-02-14,50068310,121.0,Absolute Power,6.4,223,02,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,3
945,50000000,19.434672,1997-08-22,48169156,125.0,G.I. Jane,6.0,395,08,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
946,50000000,62.925175,1997-09-12,109423648,129.0,The Game,7.5,1506,09,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3
947,50000000,32.927994,2006-04-21,97607453,125.0,Silent Hill,6.3,1067,04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,2
948,0,14.837288000000001,2000-08-07,0,118.0,The Replacements,6.1,203,08,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
949,50000000,39.920035,2012-04-04,234989584,113.0,American Reunion,6.1,1611,04,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
950,50000000,28.725621000000004,1998-07-29,44547681,140.0,The Negotiator,6.8,582,07,1,1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,6
951,50000000,20.566554,2014-08-06,160602194,89.0,Into the Storm,5.8,817,08,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
952,50000000,20.333953,1994-05-24,119208989,104.0,Beverly Hills Cop III,5.5,434,05,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3
953,50000000,33.98637,1990-06-15,41482207,106.0,Gremlins 2: The New Batch,6.2,652,06,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,3
954,50000000,42.472324,2014-10-08,83719388,141.0,The Judge,7.2,1417,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
955,50000000,15.931084,1997-09-26,0,124.0,The Peacemaker,5.8,255,09,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2
956,45000000,29.880121999999997,2004-09-10,129394835,94.0,Resident Evil: Apocalypse,6.1,1267,09,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3
957,50000000,28.803802,2004-11-10,40203020,108.0,Bridget Jones: The Edge of Reason,6.1,750,11,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,2
958,50000000,14.993459,2003-10-03,55495563,105.0,Out of Time,6.1,298,10,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
959,50000000,9.114168,1994-02-18,49000000,102.0,On Deadly Ground,4.5,104,02,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2
960,50000000,12.311010000000001,2005-06-10,69425966,92.0,The Adventures of Sharkboy and Lavagirl,4.4,269,06,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
961,40000000,41.362082,2000-02-11,144056873,119.0,The Beach,6.3,1233,02,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4
962,50000000,13.298205,2004-05-27,49718611,119.0,Raising Helen,5.9,189,05,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3
963,40000000,19.085403,2009-09-29,60462347,99.0,Ninja Assassin,6.2,371,09,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
964,50000000,9.622345,1999-09-17,0,137.0,For Love of the Game,6.3,88,09,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2
965,50000000,11.106005999999999,1996-06-28,113309743,115.0,Striptease,4.4,205,06,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,3
966,50000000,12.256219999999999,2010-06-04,83761844,87.0,Marmaduke,5.0,149,06,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2
967,50000000,13.365715,2010-10-15,105197635,129.0,Hereafter,5.8,510,10,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2
968,50000000,16.167092999999998,2002-04-19,56714147,120.0,Murder by Numbers,6.0,268,04,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,3
969,50000000,23.073933,1995-10-06,30303072,132.0,Assassins,6.0,387,10,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
970,50000000,6.5670649999999995,2007-02-06,82169884,121.0,Hannibal Rising,6.0,654,02,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
971,50000000,6.22577,1999-10-13,58900031,95.0,The Story of Us,5.9,75,10,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,3
972,44000000,42.933027,2013-03-22,63327201,125.0,The Host,6.0,1817,03,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5
973,50000000,19.226763000000002,2003-04-18,42792561,98.0,Basic,6.2,286,04,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,5
974,50000000,10.089065,2002-08-04,26199517,110.0,Blood Work,6.1,206,08,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,4
975,50000000,13.391832999999998,2009-02-03,60161391,118.0,The International,6.0,368,02,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3
976,50000000,21.637234,1996-08-09,42277365,97.0,Escape from L.A.,5.6,373,08,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4
977,70000000,61.245957,1999-08-06,23159305,86.0,The Iron Giant,7.6,1436,08,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5
978,50000000,25.237969,2004-12-10,34808403,119.0,The Life Aquatic with Steve Zissou,7.1,775,12,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3
979,50000000,21.589392999999998,2016-06-24,25035950,139.0,Free State of Jones,6.6,428,06,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5
980,50000000,22.442241,2003-02-21,38955598,130.0,The Life of David Gale,7.3,480,02,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3
981,40000000,6.004422,2005-02-25,0,100.0,Man of the House,5.4,120,02,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
982,50000000,74.64653,2015-03-11,71561644,114.0,Run All Night,6.3,1148,03,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,5
983,51500000,35.481169,2007-09-14,55112356,100.0,Eastern Promises,7.2,848,09,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,3
984,50000000,14.723467000000001,2005-09-30,44434439,110.0,Into the Blue,5.8,458,09,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,4
985,60000000,21.084542000000003,1999-10-18,66976317,148.0,The Messenger: The Story of Joan of Arc,6.2,367,10,1,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,5
986,49900000,21.408222,2011-04-08,26121638,102.0,Your Highness,5.2,501,04,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1
987,50000000,19.267479,2011-09-30,38502340,84.0,Dream House,5.8,391,09,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3
988,50000000,3.314004,1997-11-07,10541523,114.0,Mad City,5.9,81,11,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3
989,50000000,21.312185999999997,1994-07-01,16671505,99.0,Baby's Day Out,5.8,274,07,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4
990,50000000,7.44268,1995-10-13,10382407,135.0,The Scarlet Letter,5.5,108,10,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3
991,22000000,12.549489999999999,2010-05-20,24188922,108.0,Fair Game,6.5,235,05,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
992,50000000,18.394571,2005-09-22,22944502,127.0,Domino,6.0,444,09,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2
993,50000000,8.189406,1995-10-13,9851610,95.0,Jade,5.2,44,10,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,4
994,50000000,27.631262,2009-09-03,40828540,95.0,Gamer,5.6,760,09,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
995,60000000,40.721373,2013-02-13,60052138,124.0,Beautiful Creatures,5.6,984,02,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3
996,55000000,11.329727,2002-03-28,0,109.0,Death to Smoochy,5.9,132,03,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4
997,50000000,37.253774,2016-02-06,55969000,100.0,Zoolander 2,4.7,797,02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
998,50000000,6.397387999999999,2004-01-30,6808550,88.0,The Big Bounce,5.0,76,01,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2