-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.csv
We can't make this file beautiful and searchable because it's too large.
9516 lines (9516 loc) · 699 KB
/
movies.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"","ID","Title","Year","Age","Rotten Tomatoes","Netflix","Hulu","Prime Video","Disney+","Type"
"0","1","The Irishman","2019","18+","98/100","1","0","0","0","0"
"1","2","Dangal","2016","7+","97/100","1","0","0","0","0"
"2","3","David Attenborough: A Life on Our Planet","2020","7+","95/100","1","0","0","0","0"
"3","4","Lagaan: Once Upon a Time in India","2001","7+","94/100","1","0","0","0","0"
"4","5","Roma","2018","18+","94/100","1","0","0","0","0"
"5","6","To All the Boys I've Loved Before","2018","13+","94/100","1","0","0","0","0"
"6","7","The Social Dilemma","2020","13+","93/100","1","0","0","0","0"
"7","8","Okja","2017","13+","92/100","1","0","0","0","0"
"8","9","The Ballad of Buster Scruggs","2018","16+","92/100","1","0","0","0","0"
"9","10","The Trial of the Chicago 7","2020","18+","92/100","1","0","0","0","0"
"10","11","Article 15","2019","18+","92/100","1","0","0","0","0"
"11","12","Jim & Andy: The Great Beyond- Featuring a Very Special, Contractually Obligated Mention of Tony Clifton","2017","18+","92/100","1","0","0","0","0"
"12","13","Dolemite Is My Name","2019","18+","92/100","1","0","0","0","0"
"13","14","Mudbound","2017","18+","91/100","1","0","0","0","0"
"14","15","Swades","2004","all","91/100","1","0","0","0","0"
"15","16","Fyre","2019","18+","91/100","1","0","0","0","0"
"16","17","Miss Americana","2020","18+","90/100","1","0","0","0","0"
"17","18","Virunga","2014","16+","90/100","1","0","0","0","0"
"18","19","Black Friday","2004","18+","90/100","1","0","0","0","0"
"19","20","Talvar","2015","7+","90/100","1","0","0","0","0"
"20","21","The King","2019","18+","90/100","1","0","0","0","0"
"21","22","John Mulaney: Kid Gorgeous at Radio City","2018","18+","89/100","1","0","0","0","0"
"22","23","I Am Mother","2019","13+","89/100","1","0","0","0","0"
"23","24","Tell Me Who I Am","2019","18+","89/100","1","0","0","0","0"
"24","25","The Departed","2006","18+","89/100","1","0","0","0","0"
"25","26","Winter on Fire: Ukraine's Fight for Freedom","2015","16+","89/100","1","0","0","0","0"
"26","27","Terminator 2: Judgment Day","1991","18+","89/100","1","0","0","0","0"
"27","28","I Lost My Body","2019","18+","89/100","1","0","0","0","0"
"28","29","Django Unchained","2012","18+","89/100","1","0","0","0","0"
"29","30","The Half of It","2020","13+","89/100","1","0","0","0","0"
"30","31","The Boy Who Harnessed the Wind","2019","7+","89/100","1","0","0","0","0"
"31","32","The Devil All the Time","2020","18+","89/100","1","0","0","0","0"
"32","33","The Fundamentals of Caring","2016","18+","89/100","1","0","0","0","0"
"33","34","Pieces of a Woman","2020","18+","88/100","1","0","0","0","0"
"34","35","Gerald's Game","2017","18+","88/100","1","0","0","0","0"
"35","36","On Body and Soul","2017","","88/100","1","0","0","0","0"
"36","37","Shutter Island","2010","18+","88/100","1","0","0","0","0"
"37","38","Always Be My Maybe","2019","13+","88/100","1","0","0","0","0"
"38","39","The Intouchables","2011","7+","88/100","1","0","0","0","0"
"39","40","Bill Burr: Paper Tiger","2019","18+","87/100","1","0","0","0","0"
"40","41","Special 26","2013","","87/100","1","0","0","0","0"
"41","42","Kiss the Ground","2020","18+","87/100","1","0","0","0","0"
"42","43","Crip Camp: A Disability Revolution","2020","18+","87/100","1","0","0","0","0"
"43","44","Extraction","2020","18+","87/100","1","0","0","0","0"
"44","45","No Direction Home: Bob Dylan","2005","all","87/100","1","0","0","0","0"
"45","46","Kabhi Khushi Kabhie Gham","2001","all","87/100","1","0","0","0","0"
"46","47","His House","2020","16+","87/100","1","0","0","0","0"
"47","48","Super Deluxe","2019","18+","87/100","1","0","0","0","0"
"48","49","The Guernsey Literary & Potato Peel Pie Society","2018","16+","87/100","1","0","0","0","0"
"49","50","A Secret Love","2020","18+","87/100","1","0","0","0","0"
"50","51","The Night Comes for Us","2018","18+","87/100","1","0","0","0","0"
"51","52","The Big Lebowski","1998","18+","87/100","1","0","0","0","0"
"52","53","Pad Man","2018","13+","87/100","1","0","0","0","0"
"53","54","American Factory","2019","13+","86/100","1","0","0","0","0"
"54","55","Bird Box","2018","18+","86/100","1","0","0","0","0"
"55","56","The Pianist","2002","18+","86/100","1","0","0","0","0"
"56","57","3 Idiots","2009","13+","86/100","1","0","0","0","0"
"57","58","The Distinguished Citizen","2016","","86/100","1","0","0","0","0"
"58","59","A Shaun the Sheep Movie: Farmageddon","2019","all","86/100","1","0","0","0","0"
"59","60","A Clockwork Orange","1971","18+","86/100","1","0","0","0","0"
"60","61","What Happened to Monday","2017","18+","86/100","1","0","0","0","0"
"61","62","Anthony Jeselnik: Thoughts and Prayers","2015","18+","86/100","1","0","0","0","0"
"62","63","The White Helmets","2016","16+","86/100","1","0","0","0","0"
"63","64","Invader ZIM: Enter the Florpus","2019","7+","86/100","1","0","0","0","0"
"64","65","Happy as Lazzaro","2018","13+","85/100","1","0","0","0","0"
"65","66","Chasing Coral","2017","","85/100","1","0","0","0","0"
"66","67","Kal Ho Naa Ho","2003","all","85/100","1","0","0","0","0"
"67","68","Pan's Labyrinth","2006","18+","85/100","1","0","0","0","0"
"68","69","Team Foxcatcher","2016","16+","85/100","1","0","0","0","0"
"69","70","The Meyerowitz Stories (New and Selected)","2017","18+","85/100","1","0","0","0","0"
"70","71","Casino Royale","2006","13+","85/100","1","0","0","0","0"
"71","72","The Hateful Eight","2015","18+","85/100","1","0","0","0","0"
"72","73","Rush","2013","18+","84/100","1","0","0","0","0"
"73","74","Zombieland","2009","18+","84/100","1","0","0","0","0"
"74","75","Eurovision Song Contest: The Story of Fire Saga","2020","13+","84/100","1","0","0","0","0"
"75","76","Kapoor & Sons","2016","13+","84/100","1","0","0","0","0"
"76","77","The Perfection","2018","18+","84/100","1","0","0","0","0"
"77","78","Dave Chappelle: Sticks & Stones","2019","18+","84/100","1","0","0","0","0"
"78","79","There Will Be Blood","2007","18+","84/100","1","0","0","0","0"
"79","80","Million Dollar Baby","2004","13+","84/100","1","0","0","0","0"
"80","81","The Social Network","2010","13+","84/100","1","1","0","0","0"
"81","82","The Christmas Chronicles","2018","7+","84/100","1","0","0","0","0"
"82","83","Monty Python and the Holy Grail","1975","7+","84/100","1","0","0","0","0"
"83","84","The Pixar Story","2007","all","84/100","1","0","0","0","0"
"84","85","Ma Rainey's Black Bottom","2020","18+","84/100","1","0","0","0","0"
"85","86","Calibre","2018","18+","84/100","1","0","0","0","0"
"86","87","Silver Linings Playbook","2012","18+","84/100","1","0","0","0","0"
"87","88","Over the Moon","2020","7+","84/100","1","0","0","0","0"
"88","89","What Happened, Miss Simone?","2015","","84/100","1","0","0","0","0"
"89","90","Nightcrawler","2014","18+","84/100","1","0","0","0","0"
"90","91","1922","2017","18+","84/100","1","0","0","0","0"
"91","92","Paddleton","2019","18+","84/100","1","0","0","0","0"
"92","93","Cargo","2017","","84/100","1","0","0","0","0"
"93","94","Rain Man","1988","18+","83/100","1","0","0","0","0"
"94","95","Cuba and the Cameraman","2017","","83/100","1","0","0","0","0"
"95","96","The Ritual","2017","18+","83/100","1","0","0","0","0"
"96","97","The Hater","2020","18+","83/100","1","0","0","0","0"
"97","98","The Edge of Democracy","2019","16+","83/100","1","0","0","0","0"
"98","99","22-Jul","2018","18+","83/100","1","0","0","0","0"
"99","100","Adam Sandler: 100% Fresh","2018","18+","83/100","1","0","0","0","0"
"100","101","Guru","2007","13+","83/100","1","0","0","0","0"
"101","102","A Twelve-Year Night","2018","18+","83/100","1","0","0","0","0"
"102","103","Dumplin'","2018","13+","83/100","1","0","0","0","0"
"103","104","The Conjuring","2013","18+","83/100","1","0","0","0","0"
"104","105","Marriage Story","2019","18+","83/100","1","0","0","0","0"
"105","106","My Octopus Teacher","2020","all","83/100","1","0","0","0","0"
"106","107","About Time","2013","13+","83/100","1","0","0","0","0"
"107","108","Hey Arnold! The Jungle Movie","2017","7+","83/100","1","1","0","0","0"
"108","109","Kung Fu Panda","2008","7+","83/100","1","0","0","0","0"
"109","110","Superbad","2007","18+","83/100","1","0","0","0","0"
"110","111","The Invisible Guest","2016","18+","83/100","1","0","0","0","0"
"111","112","Chinatown","1974","18+","82/100","1","0","0","0","0"
"112","113","Mystic River","2003","18+","82/100","1","0","0","0","0"
"113","114","The Theory of Everything","2014","13+","82/100","1","0","0","0","0"
"114","115","Springsteen On Broadway","2018","","82/100","1","0","0","0","0"
"115","116","The Life Ahead","2020","13+","82/100","1","0","0","0","0"
"116","117","The Terminal","2004","13+","82/100","1","0","1","0","0"
"117","118","Scott Pilgrim vs. the World","2010","13+","82/100","1","0","0","0","0"
"118","119","Being Elmo: A Puppeteer's Journey","2011","7+","82/100","1","0","0","0","0"
"119","120","Life of Brian","1979","18+","82/100","1","0","0","0","0"
"120","121","The Resistance Banker","2018","18+","82/100","1","0","0","0","0"
"121","122","How to Train Your Dragon 2","2014","7+","82/100","1","0","0","0","0"
"122","123","The Endless Trench","2019","","82/100","1","0","0","0","0"
"123","124","Even the Rain","2010","","82/100","1","0","0","0","0"
"124","125","Love Actually","2003","18+","82/100","1","0","0","0","0"
"125","126","Dear Ex","2018","18+","82/100","1","0","0","0","0"
"126","127","Braven","2018","18+","82/100","1","0","0","0","0"
"127","128","Period. End of Sentence.","2018","","82/100","1","0","0","0","0"
"128","129","Captain Fantastic","2016","18+","82/100","1","0","0","0","0"
"129","130","Veronica","2017","18+","81/100","1","0","0","0","0"
"130","131","The Siege of Jadotville","2016","","81/100","1","0","0","0","0"
"131","132","Into the Inferno","2016","","81/100","1","0","0","0","0"
"132","133","Ricky Gervais: Humanity","2018","18+","81/100","1","0","0","0","0"
"133","134","A Whisker Away","2020","7+","81/100","1","0","0","0","0"
"134","135","Lady Bird","2017","18+","81/100","1","0","0","0","0"
"135","136","Road to Perdition","2002","18+","81/100","1","0","0","0","0"
"136","137","Boogie Nights","1997","18+","81/100","1","0","0","0","0"
"137","138","Total Recall","1990","16+","81/100","1","0","0","0","0"
"138","139","Bo Burnham: Inside","2021","18+","81/100","1","0","0","0","0"
"139","140","Snowpiercer","2013","18+","81/100","1","0","0","0","0"
"140","141","Circus of Books","2019","","81/100","1","0","0","0","0"
"141","142","Tallulah","2016","","81/100","1","0","0","0","0"
"142","143","The Conjuring 2","2016","18+","81/100","1","0","0","0","0"
"143","144","They'll Love Me When I'm Dead","2018","18+","81/100","1","0","0","0","0"
"144","145","Nocturnal Animals","2016","18+","81/100","1","0","0","0","0"
"145","146","Get Me Roger Stone","2017","16+","81/100","1","0","0","0","0"
"146","147","Hachi: A Dog's Tale","2009","all","81/100","1","0","0","0","0"
"147","148","Dances with Wolves","1990","13+","80/100","1","0","0","0","0"
"148","149","Udta Punjab","2016","18+","80/100","1","0","0","0","0"
"149","150","Bareilly's Barfi","2017","","80/100","1","0","0","0","0"
"150","151","Divines","2016","","80/100","1","0","0","0","0"
"151","152","Maktub","2017","7+","80/100","1","0","0","0","0"
"152","153","Ittefaq","2017","7+","80/100","1","0","0","0","0"
"153","154","Hannah Gadsby: Nanette","2018","18+","80/100","1","0","0","0","0"
"154","155","Ali Wong: Hard Knock Wife","2018","18+","80/100","1","0","0","0","0"
"155","156","Seven Pounds","2008","13+","80/100","1","0","1","0","0"
"156","157","Uncut Gems","2019","18+","80/100","1","0","0","0","0"
"157","158","The Kindergarten Teacher","2018","18+","80/100","1","0","0","0","0"
"158","159","Les Misérables","2012","13+","80/100","1","0","1","0","0"
"159","160","The Sky Is Pink","2019","","80/100","1","0","0","0","0"
"160","161","Next Gen","2018","7+","80/100","1","0","0","0","0"
"161","162","Tom Segura: Disgraceful","2018","13+","80/100","1","0","0","0","0"
"162","163","My Happy Family","2017","","80/100","1","0","0","0","0"
"163","164","The American Meme","2018","","80/100","1","0","0","0","0"
"164","165","Badla","2019","7+","80/100","1","0","0","0","0"
"165","166","Okko's Inn","2018","7+","80/100","1","0","0","0","0"
"166","167","The Willoughbys","2020","7+","80/100","1","0","0","0","0"
"167","168","Hunt for the Wilderpeople","2016","13+","80/100","1","1","0","0","0"
"168","169","Stardust","2007","13+","79/100","1","0","0","0","0"
"169","170","Wheelman","2017","18+","79/100","1","0","0","0","0"
"170","171","The Artist","2011","13+","79/100","1","1","0","0","0"
"171","172","On My Skin","2018","18+","79/100","1","0","0","0","0"
"172","173","Gaga: Five Foot Two","2017","18+","79/100","1","0","0","0","0"
"173","174","Hugo","2011","7+","79/100","1","0","0","0","0"
"174","175","The Impossible","2012","13+","79/100","1","0","0","0","0"
"175","176","War Dogs","2016","18+","79/100","1","0","0","0","0"
"176","177","Ip Man","2008","18+","79/100","1","0","0","0","0"
"177","178","The Speed Cubers","2020","","79/100","1","0","0","0","0"
"178","179","Kung Fu Panda 2","2011","7+","79/100","1","0","0","0","0"
"179","180","The Dirt","2019","18+","79/100","1","0","0","0","0"
"180","181","Andhadhun","2018","","79/100","1","0","0","0","0"
"181","182","Atlantics","2019","13+","79/100","1","0","0","0","0"
"182","183","37 Seconds","2019","","79/100","1","0","0","0","0"
"183","184","El Camino: A Breaking Bad Movie","2019","18+","79/100","1","0","0","0","0"
"184","185","Underworld","2003","18+","79/100","1","1","1","0","0"
"185","186","The Ring","2002","13+","79/100","1","0","1","0","0"
"186","187","Hold the Dark","2018","","79/100","1","0","0","0","0"
"187","188","The Karate Kid","1984","7+","79/100","1","0","0","0","0"
"188","189","Quincy","2018","18+","79/100","1","0","0","0","0"
"189","190","The Patriot","2000","18+","79/100","1","0","0","0","0"
"190","191","Get In","2019","18+","79/100","1","0","0","0","0"
"191","192","ZZ Top: That Little Ol' Band From Texas","2019","","79/100","1","0","0","0","0"
"192","193","Jerry Before Seinfeld","2017","16+","79/100","1","0","0","0","0"
"193","194","Mike Birbiglia: The New One","2019","","78/100","1","0","0","0","0"
"194","195","A Silent Voice: The Movie","2016","13+","78/100","1","0","0","0","0"
"195","196","Klaus","2019","7+","78/100","1","0","0","0","0"
"196","197","Snowden","2016","18+","78/100","1","0","0","0","0"
"197","198","Nick Kroll & John Mulaney: Oh, Hello on Broadway","2017","18+","78/100","1","0","0","0","0"
"198","199","What's Eating Gilbert Grape","1993","13+","78/100","1","0","0","0","0"
"199","200","The Da Vinci Code","2006","13+","78/100","1","1","0","0","0"
"200","201","Stranger Than Fiction","2006","13+","78/100","1","0","0","0","0"
"201","202","Don 2","2011","","78/100","1","0","0","0","0"
"202","203","Elena","2013","","78/100","1","0","0","0","0"
"203","204","Real Steel","2011","13+","78/100","1","0","0","0","0"
"204","205","The Founder","2017","13+","78/100","1","0","0","0","0"
"205","206","Stargate","1994","13+","78/100","1","0","0","0","0"
"206","207","Shirkers","2018","","78/100","1","0","0","0","0"
"207","208","Chef","2014","18+","78/100","1","0","0","0","0"
"208","209","Fire in the Blood","2013","","78/100","1","0","0","0","0"
"209","210","Austin Powers: International Man of Mystery","1997","13+","78/100","1","0","0","0","0"
"210","211","Miles Davis: Birth of the Cool","2019","","78/100","1","0","0","0","0"
"211","212","Insidious","2010","13+","78/100","1","0","0","0","0"
"212","213","Screwball","2019","","78/100","1","0","0","0","0"
"213","214","The Old Guard","2020","18+","78/100","1","0","0","0","0"
"214","215","Rango","2011","7+","78/100","1","0","0","0","0"
"215","216","Before I Wake","2016","13+","78/100","1","0","0","0","0"
"216","217","The Disaster Artist","2017","18+","78/100","1","0","0","0","0"
"217","218","Fruitvale Station","2013","18+","77/100","1","0","0","0","0"
"218","219","The Florida Project","2017","18+","77/100","1","0","0","0","0"
"219","220","Behind the Curve","2018","16+","77/100","1","0","0","0","0"
"220","221","Lawless","2012","18+","77/100","1","0","0","0","0"
"221","222","Errementari: The Blacksmith and the Devil","2018","18+","77/100","1","0","0","0","0"
"222","223","Audrie & Daisy","2016","","77/100","1","0","0","0","0"
"223","224","Quantum of Solace","2008","13+","77/100","1","0","0","0","0"
"224","225","The Master","2012","18+","77/100","1","0","0","0","0"
"225","226","Layer Cake","2004","18+","77/100","1","0","0","0","0"
"226","227","Flipped","2010","7+","77/100","1","0","0","0","0"
"227","228","Steve Martin and Martin Short: An Evening You Will Forget for the Rest of Your Life","2018","16+","77/100","1","0","0","0","0"
"228","229","Friends with Benefits","2011","18+","77/100","1","1","0","0","0"
"229","230","Tig","2015","","77/100","1","0","0","0","0"
"230","231","Roll Red Roll","2019","","77/100","1","0","0","0","0"
"231","232","Enola Holmes","2020","13+","77/100","1","0","0","0","0"
"232","233","PK","2015","13+","77/100","1","0","0","0","0"
"233","234","Good Time","2017","18+","77/100","1","0","0","0","0"
"234","235","The Next Three Days","2010","13+","77/100","1","0","0","0","0"
"235","236","Miracle in Cell No. 7","2019","16+","77/100","1","0","0","0","0"
"236","237","Like Stars on Earth","2007","7+","77/100","1","0","0","0","0"
"237","238","Trixie Mattel: Moving Parts","2019","","77/100","1","0","0","0","0"
"238","239","Talaash","2012","","77/100","1","0","0","0","0"
"239","240","Evelyn","2019","","77/100","1","0","0","0","0"
"240","241","I Am Sam","2001","13+","77/100","1","0","0","0","0"
"241","242","In the Shadow of the Moon","2019","18+","77/100","1","0","0","0","0"
"242","243","Neon Genesis Evangelion: The End of Evangelion","1997","18+","77/100","1","0","0","0","0"
"243","244","Memoirs of a Geisha","2005","13+","76/100","1","0","0","0","0"
"244","245","Mad Max","1979","18+","76/100","1","0","0","0","0"
"245","246","John Leguizamo's Latin History for Morons","2018","7+","76/100","1","0","0","0","0"
"246","247","And Breathe Normally","2018","16+","76/100","1","0","0","0","0"
"247","248","The Killing of a Sacred Deer","2017","18+","76/100","1","0","0","0","0"
"248","249","Angels & Demons","2009","13+","76/100","1","1","0","0","0"
"249","250","Smoke & Mirrors","2016","","76/100","1","0","0","0","0"
"250","251","Bright","2017","18+","76/100","1","0","0","0","0"
"251","252","Yes Man","2008","13+","76/100","1","0","0","0","0"
"252","253","Murder Mystery","2019","13+","76/100","1","0","0","0","0"
"253","254","Pink","2016","","76/100","1","0","0","0","0"
"254","255","The Photographer of Mauthausen","2018","18+","76/100","1","0","0","0","0"
"255","256","Midnight Run","1988","18+","76/100","1","0","0","0","0"
"256","257","Flavors of Youth","2018","13+","76/100","1","0","0","0","0"
"257","258","13th","2016","18+","76/100","1","0","0","0","0"
"258","259","Ravenous","2017","18+","76/100","1","0","0","0","0"
"259","260","Austin Powers: The Spy Who Shagged Me","1999","13+","76/100","1","0","0","0","0"
"260","261","The Life of David Gale","2003","18+","76/100","1","0","0","0","0"
"261","262","Tramps","2016","","76/100","1","0","0","0","0"
"262","263","The Girl Next Door","2004","18+","76/100","1","0","0","0","0"
"263","264","The Two Popes","2019","13+","76/100","1","0","0","0","0"
"264","265","The Wandering Earth","2019","13+","76/100","1","0","0","0","0"
"265","266","Just Another Love Story","2007","","76/100","1","0","0","0","0"
"266","267","Eye for an Eye","2019","18+","76/100","1","0","0","0","0"
"267","268","Patton Oswalt: Annihilation","2017","","76/100","1","0","0","0","0"
"268","269","Joan Didion: The Center Will Not Hold","2017","","76/100","1","0","0","0","0"
"269","270","Steve Jobs","2015","18+","76/100","1","0","0","0","0"
"270","271","White Fang","2018","7+","76/100","1","0","0","1","0"
"271","272","A Monster Calls","2016","13+","76/100","1","0","0","0","0"
"272","273","Olympus Has Fallen","2013","18+","76/100","1","0","0","0","0"
"273","274","Talladega Nights: The Ballad of Ricky Bobby","2006","13+","76/100","1","0","0","0","0"
"274","275","The Time Traveler's Wife","2009","13+","76/100","1","0","0","0","0"
"275","276","State of Play","2009","13+","76/100","1","0","0","0","0"
"276","277","The Outlaw Josey Wales","1976","7+","76/100","1","0","0","0","0"
"277","278","The Bank Job","2008","18+","76/100","1","0","0","0","0"
"278","279","Miss Sloane","2016","18+","76/100","1","0","0","0","0"
"279","280","Unknown","2011","13+","75/100","1","0","0","0","0"
"280","281","6 Underground","2019","18+","75/100","1","0","0","0","0"
"281","282","Uncorked","2020","13+","75/100","1","0","0","0","0"
"282","283","Petta","2019","","75/100","1","0","0","0","0"
"283","284","Justin Timberlake + The Tennessee Kids","2016","","75/100","1","0","0","0","0"
"284","285","My Fair Lady","1964","all","75/100","1","0","0","0","0"
"285","286","Bikram: Yogi, Guru, Predator","2019","18+","75/100","1","0","0","0","0"
"286","287","A Futile and Stupid Gesture","2018","18+","75/100","1","0","0","0","0"
"287","288","The Dig","2021","13+","75/100","1","0","0","0","0"
"288","289","Legally Blonde","2001","13+","75/100","1","0","0","0","0"
"289","290","Legend","2015","18+","75/100","1","0","0","0","0"
"290","291","Notes on Blindness","2016","","75/100","1","0","0","0","0"
"291","292","When We First Met","2018","16+","75/100","1","0","0","0","0"
"292","293","Best Worst Thing That Ever Could Have Happened...","2016","","75/100","1","0","0","0","0"
"293","294","Imperial Dreams","2014","","75/100","1","0","0","0","0"
"294","295","Black Mirror: Bandersnatch","2018","18+","75/100","1","0","0","0","0"
"295","296","Queen","2013","13+","75/100","1","0","0","0","0"
"296","297","Joshua: Teenager vs. Superpower","2017","16+","75/100","1","0","0","0","0"
"297","298","Air Force One","1997","18+","75/100","1","0","0","0","0"
"298","299","Shot Caller","2017","18+","75/100","1","0","0","0","0"
"299","300","What Dreams May Come","1998","13+","75/100","1","0","0","0","0"
"300","301","Angel Has Fallen","2019","18+","75/100","1","0","0","0","0"
"301","302","Crimson Peak","2015","18+","75/100","1","0","0","0","0"
"302","303","Lemony Snicket's A Series of Unfortunate Events","2004","7+","75/100","1","0","0","0","0"
"303","304","The Red Sea Diving Resort","2019","18+","75/100","1","0","0","0","0"
"304","305","The Angel","2018","18+","75/100","1","0","0","0","0"
"305","306","Army of the Dead","2021","18+","75/100","1","0","0","0","0"
"306","307","Madagascar 3: Europe's Most Wanted","2012","7+","75/100","1","0","0","0","0"
"307","308","Icarus","2017","18+","75/100","1","0","0","0","0"
"308","309","Collateral Beauty","2016","13+","75/100","1","0","0","0","0"
"309","310","The Danish Girl","2015","18+","75/100","1","0","0","0","0"
"310","311","Green Zone","2010","18+","75/100","1","0","1","0","0"
"311","312","John Mulaney: New in Town","2012","18+","75/100","1","0","0","0","0"
"312","313","Strong Island","2017","","75/100","1","0","0","0","0"
"313","314","The White Tiger","2021","18+","75/100","1","0","0","0","0"
"314","315","Defiance","2008","18+","75/100","1","0","0","0","0"
"315","316","A Fortunate Man","2018","16+","75/100","1","0","0","0","0"
"316","317","The Death of Stalin","2017","18+","75/100","1","0","0","0","0"
"317","318","2012","2009","13+","75/100","1","1","0","0","0"
"318","319","Underworld: Awakening","2012","18+","74/100","1","1","0","0","0"
"319","320","Philomena","2013","13+","74/100","1","0","0","0","0"
"320","321","Sanju","2018","18+","74/100","1","0","0","0","0"
"321","322","Nappily Ever After","2018","18+","74/100","1","0","0","0","0"
"322","323","I Care a Lot","2021","18+","74/100","1","0","0","0","0"
"323","324","The Butler","2013","13+","74/100","1","0","0","0","0"
"324","325","Qarib Qarib Singlle","2017","","74/100","1","0","0","0","0"
"325","326","A Single Man","2009","18+","74/100","1","0","0","0","0"
"326","327","Home","2015","7+","74/100","1","0","1","0","0"
"327","328","Zack and Miri Make a Porno","2008","18+","74/100","1","1","1","0","0"
"328","329","Seeing Allred","2018","16+","74/100","1","0","0","0","0"
"329","330","Dostana","2008","13+","74/100","1","0","0","0","0"
"330","331","Remember Me","2010","13+","74/100","1","0","0","0","0"
"331","332","Underworld: Rise of the Lycans","2009","18+","74/100","1","0","0","0","0"
"332","333","The Lovely Bones","2009","13+","74/100","1","0","0","0","0"
"333","334","Madagascar: Escape 2 Africa","2008","7+","74/100","1","0","0","0","0"
"334","335","No Strings Attached","2011","18+","74/100","1","0","1","0","0"
"335","336","Heroin(e)","2017","","74/100","1","0","0","0","0"
"336","337","A Ghost Story","2017","18+","74/100","1","0","0","0","0"
"337","338","Safety Not Guaranteed","2012","18+","74/100","1","0","0","0","0"
"338","339","Game Over","2019","13+","74/100","1","0","0","0","0"
"339","340","Peppermint","2018","18+","74/100","1","0","0","0","0"
"340","341","Have a Good Trip: Adventures in Psychedelics","2020","18+","74/100","1","0","0","0","0"
"341","342","Beasts of No Nation","2015","18+","74/100","1","0","0","0","0"
"342","343","Extinction","2018","18+","74/100","1","0","0","0","0"
"343","344","Nobody Knows I'm Here","2020","18+","74/100","1","0","0","0","0"
"344","345","ARQ","2016","18+","74/100","1","0","0","0","0"
"345","346","Ali's Wedding","2017","18+","74/100","1","0","0","0","0"
"346","347","Bo Burnham: Make Happy","2016","18+","74/100","1","0","0","0","0"
"347","348","Mank","2020","18+","74/100","1","0","0","0","0"
"348","349","Extremely Wicked, Shockingly Evil and Vile","2019","18+","74/100","1","0","0","0","0"
"349","350","Due Date","2010","18+","74/100","1","0","0","0","0"
"350","351","Between Two Ferns: The Movie","2019","18+","74/100","1","0","0","0","0"
"351","352","Ip Man 2","2010","18+","74/100","1","0","0","0","0"
"352","353","Mirage","2018","18+","74/100","1","0","0","0","0"
"353","354","Puss in Boots","2011","7+","74/100","1","0","0","0","0"
"354","355","Austin Powers in Goldmember","2002","13+","74/100","1","0","0","0","0"
"355","356","The Kissing Booth","2018","16+","73/100","1","0","0","0","0"
"356","357","Hush","2016","18+","73/100","1","0","0","0","0"
"357","358","Lost Bullet","2020","18+","73/100","1","0","0","0","0"
"358","359","Dil Chahta Hai","2001","all","73/100","1","0","0","0","0"
"359","360","Election","1999","18+","73/100","1","0","1","0","0"
"360","361","Soni","2019","18+","73/100","1","0","0","0","0"
"361","362","BÄhubali: The Beginning","2015","13+","73/100","1","0","0","0","0"
"362","363","Killing Them Softly","2012","18+","73/100","1","0","0","0","0"
"363","364","Swordfish","2001","18+","73/100","1","0","0","0","0"
"364","365","Wish Dragon","2021","7+","73/100","1","0","0","0","0"
"365","366","Raees","2017","18+","73/100","1","0","0","0","0"
"366","367","Let It Snow","2019","13+","73/100","1","0","0","0","0"
"367","368","The Babysitter: Killer Queen","2020","","73/100","1","0","0","0","0"
"368","369","Hardcore Henry","2015","18+","73/100","1","0","0","0","0"
"369","370","Tig Notaro: Happy To Be Here","2018","16+","73/100","1","0","0","0","0"
"370","371","Spelling the Dream","2020","all","73/100","1","0","0","0","0"
"371","372","Knock Down the House","2019","7+","73/100","1","0","0","0","0"
"372","373","Resident Evil: Extinction","2007","18+","73/100","1","1","0","0","0"
"373","374","Polar","2019","18+","73/100","1","0","0","0","0"
"374","375","Saving Capitalism","2017","7+","73/100","1","0","0","0","0"
"375","376","The Untold Tales of Armistead Maupin","2017","","73/100","1","0","0","0","0"
"376","377","The Mitchells vs. The Machines","2021","7+","73/100","1","0","0","0","0"
"377","378","Spenser Confidential","2020","18+","73/100","1","0","0","0","0"
"378","379","Psychokinesis","2018","","73/100","1","0","0","0","0"
"379","380","Monsters vs Aliens","2009","7+","73/100","1","0","0","0","0"
"380","381","Twilight","2008","13+","73/100","1","0","1","0","0"
"381","382","Self/less","2015","13+","73/100","1","0","0","0","0"
"382","383","The Highwaymen","2019","18+","73/100","1","0","0","0","0"
"383","384","ParaNorman","2012","7+","73/100","1","0","0","0","0"
"384","385","Holidate","2020","","73/100","1","0","0","0","0"
"385","386","Fear Street Part Two: 1978","2021","18+","73/100","1","0","0","0","0"
"386","387","Pee-wee's Big Holiday","2016","7+","73/100","1","0","0","0","0"
"387","388","Gunpowder Milkshake","2021","18+","73/100","1","0","0","0","0"
"388","389","Michael Bolton's Big, Sexy Valentine's Day Special","2017","18+","73/100","1","0","0","0","0"
"389","390","I Am Not Your Negro","2017","18+","73/100","1","1","0","0","0"
"390","391","Midnight Special","2016","13+","73/100","1","0","0","0","0"
"391","392","Layla M.","2016","","73/100","1","0","0","0","0"
"392","393","Homefront","2013","18+","73/100","1","0","0","0","0"
"393","394","The Squid and the Whale","2005","18+","73/100","1","0","0","0","0"
"394","395","Comedian","2002","18+","73/100","1","0","0","0","0"
"395","396","No Escape","2015","18+","73/100","1","0","0","0","0"
"396","397","Mercury 13","2018","","73/100","1","0","0","0","0"
"397","398","The Professor and the Madman","2019","","73/100","1","0","0","0","0"
"398","399","Asperger's Are Us","2016","","73/100","1","0","0","0","0"
"399","400","The Garden of Words","2013","13+","73/100","1","0","0","0","0"
"400","401","Fractured","2019","18+","73/100","1","0","1","0","0"
"401","402","The Queen","2006","13+","73/100","1","0","0","0","0"
"402","403","The Whole Nine Yards","2000","18+","72/100","1","0","0","0","0"
"403","404","E-Team","2014","","72/100","1","0","0","0","0"
"404","405","The Discovery","2017","18+","72/100","1","0","0","0","0"
"405","406","The Strangers","2008","18+","72/100","1","0","0","0","0"
"406","407","Penguins of Madagascar","2014","7+","72/100","1","0","0","0","0"
"407","408","She's Out of My League","2010","18+","72/100","1","0","1","0","0"
"408","409","Voyeur","2017","18+","72/100","1","0","0","0","0"
"409","410","It Comes at Night","2017","18+","72/100","1","0","0","0","0"
"410","411","The Manchurian Candidate","2004","18+","72/100","1","0","1","0","0"
"411","412","Bon Cop Bad Cop 2","2017","","72/100","1","0","0","0","0"
"412","413","Hot Rod","2007","13+","72/100","1","0","1","0","0"
"413","414","The BFG","2016","7+","72/100","1","0","0","0","0"
"414","415","Sunday's Illness","2018","13+","72/100","1","0","0","0","0"
"415","416","The Lorax","2012","7+","72/100","1","1","0","0","0"
"416","417","Win It All","2017","18+","72/100","1","0","0","0","0"
"417","418","Mile 22","2018","18+","72/100","1","0","0","0","0"
"418","419","Tenacious D in The Pick of Destiny","2006","18+","72/100","1","0","0","0","0"
"419","420","The Sum of All Fears","2002","13+","72/100","1","0","0","0","0"
"420","421","G.O.R.A.","2004","13+","72/100","1","0","0","0","0"
"421","422","The Perfect Date","2019","16+","72/100","1","0","0","0","0"
"422","423","Code 8","2019","","72/100","1","0","0","0","0"
"423","424","Cowspiracy: The Sustainability Secret","2014","","72/100","1","0","0","0","0"
"424","425","Life As We Know It","2010","13+","72/100","1","0","0","0","0"
"425","426","American Assassin","2017","18+","72/100","1","0","0","0","0"
"426","427","August: Osage County","2013","18+","72/100","1","0","0","0","0"
"427","428","Kuch Kuch Hota Hai","1998","all","72/100","1","0","0","0","0"
"428","429","Who Am I","2014","","72/100","1","0","0","0","0"
"429","430","Free State of Jones","2016","18+","72/100","1","0","0","0","0"
"430","431","Beast Stalker","2008","","72/100","1","0","0","0","0"
"431","432","Dark Skies","2013","16+","72/100","1","0","0","0","0"
"432","433","Safe Haven","2013","13+","72/100","1","0","0","0","0"
"433","434","BÄhubali 2: The Conclusion","2017","7+","72/100","1","0","0","0","0"
"434","435","Outlaw King","2018","18+","72/100","1","0","0","0","0"
"435","436","Cloudy with a Chance of Meatballs 2","2013","7+","72/100","1","0","0","0","0"
"436","437","Turbo","2013","7+","72/100","1","0","0","0","0"
"437","438","G.I. Joe: The Rise of Cobra","2009","13+","72/100","1","0","0","0","0"
"438","439","Horns","2013","18+","72/100","1","0","0","0","0"
"439","440","Drishyam","2015","18+","72/100","1","0","0","0","0"
"440","441","Triple Frontier","2019","18+","72/100","1","0","0","0","0"
"441","442","Hail, Caesar!","2016","13+","72/100","1","0","0","0","0"
"442","443","The Ice Road","2021","13+","72/100","1","0","0","0","0"
"443","444","Monster House","2006","7+","72/100","1","0","0","0","0"
"444","445","Freaks","2019","18+","72/100","1","0","0","0","0"
"445","446","Felon","2008","18+","72/100","1","0","0","0","0"
"446","447","Horse Girl","2020","18+","72/100","1","0","0","0","0"
"447","448","A Christmas Prince","2017","7+","72/100","1","0","1","0","0"
"448","449","Hillbilly Elegy","2020","18+","72/100","1","0","0","0","0"
"449","450","American Ultra","2015","18+","72/100","1","0","0","0","0"
"450","451","First Match","2018","18+","72/100","1","0","0","0","0"
"451","452","The Pelican Brief","1993","13+","72/100","1","0","0","0","0"
"452","453","The Tourist","2010","13+","72/100","1","0","0","0","0"
"453","454","The Dawn Wall","2017","16+","72/100","1","0","0","0","0"
"454","455","I'm Thinking of Ending Things","2020","18+","71/100","1","0","0","0","0"
"455","456","Shutter","2004","18+","71/100","1","0","0","0","0"
"456","457","Surf's Up","2007","7+","71/100","1","0","1","0","0"
"457","458","The Twilight Saga: Breaking Dawn - Part 2","2012","13+","71/100","1","0","0","0","0"
"458","459","Jagga Jasoos","2017","7+","71/100","1","0","0","0","0"
"459","460","The Burial of Kojo","2018","","71/100","1","0","0","0","0"
"460","461","My Best Friend's Wedding","1997","13+","71/100","1","0","0","0","0"
"461","462","Bee Movie","2007","7+","71/100","1","0","0","0","0"
"462","463","Seoul Searching","2015","18+","71/100","1","0","0","0","0"
"463","464","Before I Fall","2017","13+","71/100","1","0","0","0","0"
"464","465","The Babysitter","2017","18+","71/100","1","0","0","0","0"
"465","466","After","2019","13+","71/100","1","0","0","0","0"
"466","467","As Above, So Below","2014","18+","71/100","1","0","0","0","0"
"467","468","Bo Burnham: What.","2013","18+","71/100","1","0","0","0","0"
"468","469","Stree","2018","","71/100","1","0","1","0","0"
"469","470","Velvet Buzzsaw","2019","18+","71/100","1","0","0","0","0"
"470","471","Savages","2012","18+","71/100","1","0","0","0","0"
"471","472","Jupiter Ascending","2015","13+","71/100","1","0","0","0","0"
"472","473","Spectral","2016","13+","71/100","1","0","0","0","0"
"473","474","Resident Evil: Afterlife","2010","18+","71/100","1","1","0","0","0"
"474","475","Accepted","2006","13+","71/100","1","0","0","0","0"
"475","476","Live Twice, Love Once","2019","18+","71/100","1","0","0","0","0"
"476","477","Iliza Shlesinger: Elder Millennial","2018","18+","71/100","1","0","0","0","0"
"477","478","Zindagi Na Milegi Dobara","2011","7+","71/100","1","0","0","0","0"
"478","479","Free Fire","2017","18+","71/100","1","0","0","0","0"
"479","480","Soorma","2018","13+","71/100","1","0","0","0","0"
"480","481","The Zookeeper's Wife","2017","13+","71/100","1","0","0","0","0"
"481","482","Time Share","2018","18+","71/100","1","0","0","0","0"
"482","483","The Outpost","2019","18+","71/100","1","0","0","0","0"
"483","484","Kabir Singh","2019","","71/100","1","0","0","0","0"
"484","485","Homecoming: A Film by Beyoncé","2019","13+","71/100","1","0","0","0","0"
"485","486","Jerry Seinfeld: 23 Hours to Kill","2020","7+","71/100","1","0","0","0","0"
"486","487","Ip Man 4: The Finale","2019","16+","71/100","1","0","0","0","0"
"487","488","The Laundromat","2019","18+","71/100","1","0","0","0","0"
"488","489","The 12th Man","2017","","71/100","1","1","0","0","0"
"489","490","Bad Trip","2020","18+","71/100","1","0","0","0","0"
"490","491","Mr. Peabody & Sherman","2014","7+","71/100","1","0","0","0","0"
"491","492","Ip Man 3","2015","13+","71/100","1","0","0","0","0"
"492","493","Rang De Basanti","2006","13+","71/100","1","0","0","0","0"
"493","494","The Midnight Sky","2020","13+","71/100","1","0","0","0","0"
"494","495","Mr. Right","2016","18+","71/100","1","0","0","0","0"
"495","496","White Christmas","1954","","71/100","1","0","0","0","0"
"496","497","Synchronic","2020","18+","71/100","1","0","0","0","0"
"497","498","Adrift","2018","13+","70/100","1","0","0","0","0"
"498","499","The Game Changers","2019","","70/100","1","0","0","0","0"
"499","500","Michelle Wolf: Joke Show","2019","","70/100","1","0","0","0","0"
"500","501","Da 5 Bloods","2020","18+","70/100","1","0","0","0","0"
"501","502","The American","2010","18+","70/100","1","0","1","0","0"
"502","503","The Best of Enemies","2019","13+","70/100","1","0","0","0","0"
"503","504","Forgotten","2017","18+","70/100","1","0","1","0","0"
"504","505","I Don't Feel at Home in This World Anymore","2017","18+","70/100","1","0","0","0","0"
"505","506","Lupin the Third: The Castle of Cagliostro","1979","7+","70/100","1","0","0","0","0"
"506","507","Never Back Down","2008","13+","70/100","1","0","0","0","0"
"507","508","Fear Street: 1666","2021","18+","70/100","1","0","0","0","0"
"508","509","Zathura: A Space Adventure","2005","7+","70/100","1","0","0","0","0"
"509","510","Faith, Hope & Love","2019","7+","70/100","1","0","0","0","0"
"510","511","2 States","2014","7+","70/100","1","0","0","0","0"
"511","512","Grass is Greener","2019","","70/100","1","0","0","0","0"
"512","513","May the Devil Take You","2018","18+","70/100","1","0","0","0","0"
"513","514","Double Jeopardy","1999","18+","70/100","1","0","0","0","0"
"514","515","Ava","2020","18+","70/100","1","0","0","0","0"
"515","516","Barfi!","2012","all","70/100","1","0","0","0","0"
"516","517","Barry","2016","","70/100","1","0","0","0","0"
"517","518","Go!","2020","","70/100","1","0","0","0","0"
"518","519","Everybody's Fine","2009","13+","70/100","1","0","0","0","0"
"519","520","Monty Python Live at the Hollywood Bowl","1982","18+","70/100","1","0","0","0","0"
"520","521","Parker","2013","18+","70/100","1","0","0","0","0"
"521","522","The Karate Kid Part II","1986","7+","70/100","1","0","0","0","0"
"522","523","System Crasher","2019","","70/100","1","0","0","0","0"
"523","524","Under Siege","1992","18+","70/100","1","0","0","0","0"
"524","525","Brain on Fire","2017","13+","70/100","1","0","0","0","0"
"525","526","The Butterfly's Dream","2013","13+","70/100","1","0","0","0","0"
"526","527","The Wrong Missy","2020","18+","70/100","1","0","0","0","0"
"527","528","Battle: Los Angeles","2011","13+","70/100","1","0","0","0","0"
"528","529","Pari","2018","13+","70/100","1","0","1","0","0"
"529","530","The Beguiled","2017","18+","70/100","1","0","0","0","0"
"530","531","Batman: The Killing Joke","2016","18+","70/100","1","0","0","0","0"
"531","532","Sex Drive","2008","18+","70/100","1","0","0","0","0"
"532","533","Mosul","2020","","70/100","1","0","0","0","0"
"533","534","Pokémon the Movie: The Power of Us","2018","all","70/100","1","0","0","0","0"
"534","535","Underdogs","2013","7+","70/100","1","0","1","0","0"
"535","536","The Little Rascals","1994","7+","70/100","1","0","0","0","0"
"536","537","Fun with Dick and Jane","2005","13+","70/100","1","0","1","0","0"
"537","538","Ballerina","2016","7+","70/100","1","0","0","0","0"
"538","539","Hasan Minhaj: Homecoming King","2017","18+","70/100","1","0","0","0","0"
"539","540","An Easy Girl","2019","18+","70/100","1","0","0","0","0"
"540","541","Highway","2014","13+","70/100","1","0","1","0","0"
"541","542","The Book of Henry","2017","13+","70/100","1","0","0","0","0"
"542","543","Reversing Roe","2018","","70/100","1","0","0","0","0"
"543","544","The Clovehitch Killer","2018","13+","70/100","1","1","0","0","0"
"544","545","There's Something in the Water","2019","","70/100","1","0","0","0","0"
"545","546","Stuart Little","1999","7+","70/100","1","0","0","0","0"
"546","547","Barakah Meets Barakah","2016","","70/100","1","0","0","0","0"
"547","548","Starsky & Hutch","2004","13+","70/100","1","0","0","0","0"
"548","549","Loving","2016","13+","70/100","1","0","0","0","0"
"549","550","Haider","2014","13+","70/100","1","0","0","0","0"
"550","551","The Twilight Saga: Eclipse","2010","13+","70/100","1","0","0","0","0"
"551","552","Triple 9","2016","18+","70/100","1","0","0","0","0"
"552","553","Spanglish","2004","13+","70/100","1","0","0","0","0"
"553","554","The Spiderwick Chronicles","2008","7+","70/100","1","0","0","0","0"
"554","555","Kahaani","2012","16+","69/100","1","0","0","0","0"
"555","556","Lady J","2018","16+","69/100","1","0","0","0","0"
"556","557","The Interpreter","2005","13+","69/100","1","0","0","0","0"
"557","558","Frankenstein's Monster's Monster, Frankenstein","2019","16+","69/100","1","0","0","0","0"
"558","559","Not Another Teen Movie","2001","16+","69/100","1","0","1","0","0"
"559","560","The Cloverfield Paradox","2018","13+","69/100","1","0","0","0","0"
"560","561","Disclosure","2020","18+","69/100","1","0","0","0","0"
"561","562","Hot Girls Wanted","2015","","69/100","1","0","0","0","0"
"562","563","Dead Man Down","2013","18+","69/100","1","0","0","0","0"
"563","564","Fear Street: 1994","2021","","69/100","1","0","0","0","0"
"564","565","Kill the Irishman","2011","18+","69/100","1","0","0","0","0"
"565","566","Set It Up","2018","16+","69/100","1","0","0","0","0"
"566","567","Case 39","2009","18+","69/100","1","0","1","0","0"
"567","568","Outside the Wire","2021","18+","69/100","1","0","0","0","0"
"568","569","Steal a Pencil for Me","2007","","69/100","1","0","0","0","0"
"569","570","Project Power","2020","18+","69/100","1","0","0","0","0"
"570","571","High Strung Free Dance","2018","7+","69/100","1","0","0","0","0"
"571","572","The Twilight Saga: Breaking Dawn - Part 1","2011","13+","69/100","1","0","0","0","0"
"572","573","Marc Maron: Too Real","2017","","69/100","1","0","0","0","0"
"573","574","The Polka King","2017","","69/100","1","0","0","0","0"
"574","575","6 Balloons","2018","18+","69/100","1","0","0","0","0"
"575","576","Amanda Knox","2016","18+","69/100","1","0","0","0","0"
"576","577","At Eternity's Gate","2018","13+","69/100","1","0","0","0","0"
"577","578","Anon","2018","18+","69/100","1","0","0","0","0"
"578","579","3 Days to Kill","2014","13+","69/100","1","0","0","0","0"
"579","580","To the Bone","2017","18+","69/100","1","0","0","0","0"
"580","581","Trollhunters: Rise of the Titans","2021","7+","69/100","1","0","0","0","0"
"581","582","Mowgli: Legend of the Jungle","2018","13+","69/100","1","0","0","0","0"
"582","583","Mother's Day","2016","13+","69/100","1","0","1","0","0"
"583","584","Mortal Kombat","1995","13+","69/100","1","0","0","0","0"
"584","585","Creep","2014","18+","69/100","1","0","1","0","0"
"585","586","Death to 2020","2020","18+","69/100","1","0","0","0","0"
"586","587","Operation Finale","2018","13+","69/100","1","0","0","0","0"
"587","588","The Great Hack","2019","","69/100","1","0","0","0","0"
"588","589","The Land of Steady Habits","2018","","69/100","1","0","0","0","0"
"589","590","Suffragette","2015","13+","69/100","1","0","0","0","0"
"590","591","Wildlife","2018","13+","69/100","1","0","0","0","0"
"591","592","War Machine","2017","18+","69/100","1","0","0","0","0"
"592","593","Bending the Arc","2017","","69/100","1","0","0","0","0"
"593","594","Kill the Messenger","2014","18+","69/100","1","0","0","0","0"
"594","595","Feminists: What Were They Thinking?","2018","","69/100","1","0","0","0","0"
"595","596","If Anything Happens I Love You","2020","7+","69/100","1","0","0","0","0"
"596","597","Nobody Speak: Trials of the Free Press","2017","16+","69/100","1","0","0","0","0"
"597","598","Sand Castle","2017","18+","69/100","1","0","0","0","0"
"598","599","The Forest of Love","2019","18+","69/100","1","0","0","0","0"
"599","600","Kabhi Alvida Naa Kehna","2006","18+","69/100","1","0","0","0","0"
"600","601","Fatherhood","2021","13+","69/100","1","0","0","0","0"
"601","602","Our Idiot Brother","2011","18+","69/100","1","0","0","0","0"
"602","603","Quién te cantará","2018","","68/100","1","0","0","0","0"
"603","604","Takers","2010","13+","68/100","1","0","1","0","0"
"604","605","Udaan","2010","18+","68/100","1","0","0","0","0"
"605","606","City of Joy","2016","","68/100","1","0","1","0","0"
"606","607","Under the Shadow","2016","13+","68/100","1","0","0","0","0"
"607","608","The Silence of Others","2019","","68/100","1","0","0","0","0"
"608","609","Nacho Libre","2006","7+","68/100","1","0","0","0","0"
"609","610","Ninja Assassin","2009","18+","68/100","1","0","0","0","0"
"610","611","The Twilight Saga: New Moon","2009","13+","68/100","1","0","0","0","0"
"611","612","Rocks","2020","18+","68/100","1","0","0","0","0"
"612","613","Step Up Revolution","2012","13+","68/100","1","1","0","0","0"
"613","614","Giving Voice","2020","13+","68/100","1","0","0","0","0"
"614","615","Like Father","2018","18+","68/100","1","0","0","0","0"
"615","616","Eddie Murphy Raw","1987","18+","68/100","1","0","0","0","0"
"616","617","Berserk: The Golden Age Arc III - The Advent","2013","18+","68/100","1","0","0","0","0"
"617","618","Aval","2017","13+","68/100","1","0","0","0","0"
"618","619","The Promise","2016","13+","68/100","1","0","0","0","0"
"619","620","Prospect","2018","18+","68/100","1","0","0","0","0"
"620","621","Ne Zha","2019","","68/100","1","0","0","0","0"
"621","622","Bad Genius","2017","13+","68/100","1","0","0","0","0"
"622","623","Burning Sands","2017","18+","68/100","1","0","0","0","0"
"623","624","Ludo","2020","13+","68/100","1","0","0","0","0"
"624","625","Eat Pray Love","2010","13+","68/100","1","0","0","0","0"
"625","626","Circle","2015","","68/100","1","0","1","0","0"
"626","627","Rolling Thunder Revue: A Bob Dylan Story by Martin Scorsese","2019","18+","68/100","1","0","0","0","0"
"627","628","Dovlatov","2018","13+","68/100","1","0","0","0","0"
"628","629","Lakshya","2004","all","68/100","1","0","0","0","0"
"629","630","American Murder: The Family Next Door","2020","18+","68/100","1","0","0","0","0"
"630","631","Jab We Met","2007","13+","68/100","1","0","1","0","0"
"631","632","Kuchh Bheege Alfaaz","2018","","68/100","1","0","0","0","0"
"632","633","John Mulaney: The Comeback Kid","2015","7+","68/100","1","0","0","0","0"
"633","634","Apostle","2018","18+","68/100","1","0","0","0","0"
"634","635","After We Collided","2020","18+","68/100","1","0","0","0","0"
"635","636","Mystic Pizza","1988","16+","68/100","1","1","0","0","0"
"636","637","Middle Men","2009","18+","68/100","1","0","0","0","0"
"637","638","To All the Boys: P.S. I Still Love You","2020","16+","68/100","1","0","0","0","0"
"638","639","Malang","2020","","68/100","1","0","0","0","0"
"639","640","Someone Great","2019","18+","68/100","1","0","0","0","0"
"640","641","Time Trap","2017","18+","68/100","1","0","0","0","0"
"641","642","In This Corner of the World","2016","13+","68/100","1","0","0","0","0"
"642","643","C/o Kancharapalem","2018","7+","68/100","1","0","0","0","0"
"643","644","Agneepath","1990","","68/100","1","0","0","0","0"
"644","645","The Package","2018","18+","67/100","1","0","0","0","0"
"645","646","Tau","2018","18+","67/100","1","0","0","0","0"
"646","647","Your Highness","2011","18+","67/100","1","0","1","0","0"
"647","648","Alexander","2004","18+","67/100","1","0","0","0","0"
"648","649","Rurouni Kenshin: The Final","2021","","67/100","1","0","0","0","0"
"649","650","Bill Burr: I'm Sorry You Feel That Way","2014","18+","67/100","1","0","0","0","0"
"650","651","Berserk: The Golden Age Arc I - The Egg of the King","2012","18+","67/100","1","0","0","0","0"
"651","652","All the Bright Places","2020","18+","67/100","1","0","0","0","0"
"652","653","Streets of Fire","1984","7+","67/100","1","0","0","0","0"
"653","654","Sleepless","2017","18+","67/100","1","0","0","0","0"
"654","655","An Egyptian Story","1982","","67/100","1","0","0","0","0"
"655","656","Major Grom: Plague Doctor","2021","","67/100","1","0","0","0","0"
"656","657","Struggle: The Life and Lost Art of Szukalski","2018","18+","67/100","1","0","0","0","0"
"657","658","Seaspiracy","2021","18+","67/100","1","0","0","0","0"
"658","659","Wish I Was Here","2014","18+","67/100","1","0","0","0","0"
"659","660","Moxie","2021","13+","67/100","1","0","0","0","0"
"660","661","18 Presents","2020","18+","67/100","1","0","0","0","0"
"661","662","Oxygen","2021","18+","67/100","1","0","0","0","0"
"662","663","Private Life","2018","18+","67/100","1","0","0","0","0"
"663","664","The Grandmaster","2013","13+","67/100","1","0","0","0","0"
"664","665","Home Again","2017","13+","67/100","1","0","0","0","0"
"665","666","Athlete A","2020","13+","67/100","1","0","0","0","0"
"666","667","The Outsider","2018","","67/100","1","1","1","0","0"
"667","668","The Fourth Kind","2009","13+","67/100","1","0","0","0","0"
"668","669","Bastille Day","2016","18+","67/100","1","0","0","0","0"
"669","670","The Whole Truth","2016","18+","67/100","1","0","0","0","0"
"670","671","Ibiza","2018","18+","67/100","1","0","0","0","0"
"671","672","Sabotage","2014","18+","67/100","1","0","0","0","0"
"672","673","Penguin Bloom","2021","13+","67/100","1","0","0","0","0"
"673","674","The Kissing Booth 2","2020","","67/100","1","0","0","0","0"
"674","675","Kingsglaive: Final Fantasy XV","2016","13+","67/100","1","0","0","0","0"
"675","676","Mirai","2018","7+","67/100","1","0","0","0","0"
"676","677","Child's Play 2","1990","18+","67/100","1","0","0","0","0"
"677","678","World Trade Center","2006","13+","67/100","1","0","1","0","0"
"678","679","OMG: Oh My God!","2012","all","67/100","1","0","0","0","0"
"679","680","A Private War","2018","18+","67/100","1","0","0","0","0"
"680","681","Get on Up","2014","13+","67/100","1","0","0","0","0"
"681","682","The Possession","2012","13+","67/100","1","0","0","0","0"
"682","683","The Angry Birds Movie 2","2019","7+","67/100","1","0","0","0","0"
"683","684","Stowaway","2021","18+","67/100","1","0","0","0","0"
"684","685","Bill Burr: You People Are All The Same","2012","18+","67/100","1","0","0","0","0"
"685","686","Four Christmases","2008","13+","67/100","1","0","0","0","0"
"686","687","Bombay Talkies","2013","13+","67/100","1","0","0","0","0"
"687","688","Vampire Academy","2014","13+","67/100","1","0","0","0","0"
"688","689","Brick Mansions","2014","13+","67/100","1","0","0","0","0"
"689","690","Kingdom: Ashin of the North","2021","18+","67/100","1","0","0","0","0"
"690","691","Andaz Apna Apna","1994","7+","67/100","1","0","0","0","0"
"691","692","Emicida: AmarElo - It's All for Yesterday","2020","","67/100","1","0","0","0","0"
"692","693","Blue Miracle","2021","7+","67/100","1","0","0","0","0"
"693","694","Holding the Man","2015","","67/100","1","0","0","0","0"
"694","695","Small Town Crime","2018","18+","67/100","1","0","0","0","0"
"695","696","Ek Ladki Ko Dekha Toh Aisa Laga","2019","","67/100","1","0","0","0","0"
"696","697","First They Killed My Father","2017","18+","67/100","1","0","0","0","0"
"697","698","Rising Phoenix","2020","13+","67/100","1","0","0","0","0"
"698","699","The Wolf's Call","2019","16+","67/100","1","0","0","0","0"
"699","700","Paan Singh Tomar","2012","7+","67/100","1","0","0","0","0"
"700","701","John Mulaney & The Sack Lunch Bunch","2019","","67/100","1","0","0","0","0"
"701","702","Seventh Son","2015","13+","67/100","1","0","0","0","0"
"702","703","The Death of Mr. Lazarescu","2005","18+","67/100","1","0","0","0","0"
"703","704","The Occupant","2020","18+","67/100","1","0","0","0","0"
"704","705","The Body Remembers When the World Broke Open","2019","18+","67/100","1","0","0","0","0"
"705","706","The Woman in the Window","2021","18+","67/100","1","0","0","0","0"
"706","707","Berlin Syndrome","2017","18+","67/100","1","0","0","0","0"
"707","708","What the Health","2017","","67/100","1","0","0","0","0"
"708","709","The Runaways","2010","18+","67/100","1","0","0","0","0"
"709","710","Kodachrome","2017","18+","67/100","1","0","0","0","0"
"710","711","Croupier","1998","18+","67/100","1","0","0","0","0"
"711","712","The Smurfs","2011","7+","67/100","1","0","0","0","0"
"712","713","Muppets Most Wanted","2014","7+","67/100","1","0","0","1","0"
"713","714","Creep 2","2017","18+","67/100","1","0","0","0","0"
"714","715","Mandela: Long Walk to Freedom","2013","13+","66/100","1","0","0","0","0"
"715","716","Toilet: A Love Story","2017","","66/100","1","0","0","0","0"
"716","717","The Square","2013","16+","66/100","1","0","0","0","0"
"717","718","Jerry Seinfeld: I'm Telling You for the Last Time","1998","all","66/100","1","0","0","0","0"
"718","719","Roxanne, Roxanne","2017","18+","66/100","1","0","0","0","0"
"719","720","Riphagen The Untouchable","2016","","66/100","1","0","0","0","0"
"720","721","Dear Zindagi","2016","13+","66/100","1","0","0","0","0"
"721","722","Vizontele","2001","","66/100","1","0","0","0","0"
"722","723","Good on Paper","2021","18+","66/100","1","0","0","0","0"
"723","724","Ophelia","2019","13+","66/100","1","0","0","0","0"
"724","725","Black Sea","2014","18+","66/100","1","0","0","0","0"
"725","726","Girl","2018","18+","66/100","1","1","0","0","0"
"726","727","Irreplaceable You","2018","18+","66/100","1","0","0","0","0"
"727","728","The Do-Over","2016","18+","66/100","1","0","0","0","0"
"728","729","Metallica: Some Kind of Monster","2004","18+","66/100","1","0","0","0","0"
"729","730","Handsome Devil","2017","18+","66/100","1","0","0","0","0"
"730","731","Unfriended","2015","18+","66/100","1","0","0","0","0"
"731","732","Visaranai","2016","","66/100","1","0","0","0","0"
"732","733","Been So Long","2018","","66/100","1","0","0","0","0"
"733","734","Yes Day","2021","7+","66/100","1","0","0","0","0"
"734","735","Blood Red Sky","2021","18+","66/100","1","0","0","0","0"
"735","736","The Bleeding Edge","2018","16+","66/100","1","0","0","0","0"
"736","737","Tread","2020","","66/100","1","0","0","0","0"
"737","738","Berserk: The Golden Age Arc II - The Battle for Doldrey","2012","18+","66/100","1","0","0","0","0"
"738","739","Kevin Hart: Irresponsible","2019","18+","66/100","1","0","0","0","0"
"739","740","In the Tall Grass","2019","18+","66/100","1","0","0","0","0"
"740","741","Wadjda","2012","7+","66/100","1","0","0","0","0"
"741","742","Ferry","2021","18+","66/100","1","0","0","0","0"
"742","743","The Heartbreak Kid","2007","18+","66/100","1","0","0","0","0"
"743","744","Fools Rush In","1997","13+","66/100","1","0","0","0","0"
"744","745","Wild Child","2008","13+","66/100","1","0","0","0","0"
"745","746","The Lovebirds","2020","18+","66/100","1","0","0","0","0"
"746","747","Machete Kills","2013","18+","66/100","1","0","0","0","0"
"747","748","Sergio","2020","18+","66/100","1","0","0","0","0"
"748","749","The Last Letter From Your Lover","2021","18+","66/100","1","0","0","0","0"
"749","750","Kursk","2018","13+","66/100","1","0","0","0","0"
"750","751","Then Came You","2019","13+","66/100","1","0","0","0","0"
"751","752","Gantz:O","2016","18+","66/100","1","0","0","0","0"
"752","753","Jenny Slate: Stage Fright","2019","18+","66/100","1","0","0","0","0"
"753","754","Taylor Swift: Reputation Stadium Tour","2018","7+","66/100","1","0","0","0","0"
"754","755","Jodhaa Akbar","2008","13+","66/100","1","0","0","0","0"
"755","756","Red Joan","2018","18+","66/100","1","0","0","0","0"
"756","757","Amateur","2018","18+","66/100","1","0","0","0","0"
"757","758","What a Girl Wants","2003","7+","66/100","1","0","0","0","0"
"758","759","Quigley Down Under","1990","13+","66/100","1","0","0","0","0"
"759","760","Cop Out","2010","18+","66/100","1","0","0","0","0"
"760","761","Mindhorn","2016","18+","66/100","1","0","0","0","0"
"761","762","Katt Williams: Great America","2018","18+","66/100","1","0","0","0","0"
"762","763","Lingua Franca","2020","","66/100","1","0","0","0","0"
"763","764","Abduction","2011","13+","66/100","1","0","1","0","0"
"764","765","Copenhagen","2014","","66/100","1","0","0","0","0"
"765","766","High Flying Bird","2019","18+","66/100","1","0","0","0","0"
"766","767","Free to Play","2014","","66/100","1","0","0","0","0"
"767","768","Life of Crime","2013","18+","66/100","1","0","0","0","0"
"768","769","A Very Murray Christmas","2015","18+","66/100","1","0","0","0","0"
"769","770","The Silence","2019","13+","65/100","1","0","0","0","0"
"770","771","Sarah's Key","2010","13+","65/100","1","0","0","0","0"
"771","772","Abducted in Plain Sight","2018","all","65/100","1","0","0","0","0"
"772","773","Winchester","2018","13+","65/100","1","0","0","0","0"
"773","774","Our Souls at Night","2017","16+","65/100","1","0","0","0","0"
"774","775","The Karate Kid Part III","1989","7+","65/100","1","0","0","0","0"
"775","776","Haseen Dillruba","2021","18+","65/100","1","0","0","0","0"
"776","777","SampleThis","2013","","65/100","1","0","0","0","0"
"777","778","Bride of Chucky","1998","18+","65/100","1","0","0","0","0"
"778","779","Christine","2016","18+","65/100","1","1","0","0","0"
"779","780","Secret Superstar","2017","","65/100","1","0","0","0","0"
"780","781","The Lonely Island Presents: The Unauthorized Bash Brothers Experience","2019","18+","65/100","1","0","0","0","0"
"781","782","WHAT DID JACK DO?","2017","16+","65/100","1","0","0","0","0"
"782","783","Blue Jay","2016","","65/100","1","0","0","0","0"
"783","784","Deidra & Laney Rob a Train","2017","16+","65/100","1","0","0","0","0"
"784","785","Hari Kondabolu: Warn Your Relatives","2018","","65/100","1","0","0","0","0"
"785","786","Close","2019","18+","65/100","1","0","0","0","0"
"786","787","Sir","2018","","65/100","1","0","0","0","0"
"787","788","Congo","1995","13+","65/100","1","0","0","0","0"
"788","789","The Prom","2020","13+","65/100","1","0","0","0","0"
"789","790","Naruto Shippuden the Movie","2007","13+","65/100","1","0","0","0","0"
"790","791","The Bling Ring","2013","18+","65/100","1","0","0","0","0"
"791","792","Greater","2016","7+","65/100","1","0","0","0","0"
"792","793","7:19","2016","","65/100","1","0","0","0","0"
"793","794","Neal Brennan: 3 Mics","2017","","65/100","1","0","0","0","0"
"794","795","In the Family","2017","","65/100","1","0","0","0","0"
"795","796","The Awakening of Motti Wolkenbruch","2018","","65/100","1","0","0","0","0"
"796","797","Beats","2019","18+","65/100","1","0","1","0","0"
"797","798","Lost Girls","2020","18+","65/100","1","0","0","0","0"
"798","799","The Witch: Part 1. The Subversion","2018","","65/100","1","0","0","0","0"
"799","800","Don","2006","13+","65/100","1","0","0","0","0"
"800","801","A Little Chaos","2015","18+","65/100","1","0","0","0","0"
"801","802","Dennis the Menace","1993","7+","65/100","1","0","0","0","0"
"802","803","iBoy","2017","","65/100","1","0","0","0","0"
"803","804","Rush: Beyond The Lighted Stage","2010","","65/100","1","0","0","0","0"
"804","805","See You Yesterday","2019","","65/100","1","0","0","0","0"
"805","806","Metallica: Through the Never","2013","18+","65/100","1","0","0","0","0"
"806","807","Xtreme","2021","18+","65/100","1","0","0","0","0"
"807","808","Beyond the Clouds","2018","","65/100","1","0","0","0","0"
"808","809","Two Distant Strangers","2020","18+","65/100","1","0","0","0","0"
"809","810","Bert Kreischer: Secret Time","2018","18+","65/100","1","0","0","0","0"
"810","811","To All the Boys: Always and Forever","2021","","65/100","1","0","0","0","0"
"811","812","Breaking Boundaries: The Science of Our Planet","2021","7+","65/100","1","0","0","0","0"
"812","813","Yes, God, Yes","2019","18+","65/100","1","0","0","0","0"
"813","814","The Long Riders","1980","18+","65/100","1","0","1","0","0"
"814","815","Shepherds and Butchers","2017","18+","65/100","1","0","0","0","0"
"815","816","Big Miracle","2012","7+","65/100","1","0","0","0","0"
"816","817","Gunjan Saxena: The Kargil Girl","2020","16+","65/100","1","0","0","0","0"
"817","818","The Invisible Guardian","2017","16+","65/100","1","0","0","0","0"
"818","819","Cop Car","2015","18+","65/100","1","0","0","0","0"
"819","820","Main Hoon Na","2004","7+","65/100","1","0","0","0","0"
"820","821","Last Breath","2019","18+","65/100","1","0","0","0","0"
"821","822","The Stepfather","2009","13+","65/100","1","1","1","0","0"
"822","823","Joe Rogan: Strange Times","2018","","65/100","1","0","0","0","0"
"823","824","The Sweetest Thing","2002","18+","65/100","1","0","1","0","0"
"824","825","Dil Se..","1998","13+","65/100","1","0","0","0","0"
"825","826","Thunder Force","2021","13+","65/100","1","0","0","0","0"
"826","827","The Ivory Game","2016","","65/100","1","0","0","0","0"
"827","828","Otherhood","2019","18+","65/100","1","0","0","0","0"
"828","829","Space Sweepers","2021","","65/100","1","0","0","0","0"
"829","830","The Prince & Me","2004","7+","65/100","1","0","1","0","0"
"830","831","For the Love of Spock","2016","","65/100","1","0","0","0","0"
"831","832","The Green Inferno","2015","18+","64/100","1","0","0","0","0"
"832","833","A Babysitter's Guide to Monster Hunting","2020","","64/100","1","0","0","0","0"
"833","834","Fantastic Fungi","2019","16+","64/100","1","0","0","0","0"
"834","835","West Beirut","1998","13+","64/100","1","0","0","0","0"
"835","836","He Never Died","2015","18+","64/100","1","0","0","0","0"
"836","837","The Nut Job","2014","7+","64/100","1","0","0","0","0"
"837","838","Unicorn Store","2017","","64/100","1","0","0","0","0"
"838","839","Alex Strangelove","2018","18+","64/100","1","0","0","0","0"
"839","840","Naruto Shippuden the Movie: The Will of Fire","2009","13+","64/100","1","0","0","0","0"
"840","841","David Foster: Off the Record","2019","","64/100","1","0","0","0","0"
"841","842","Pihu","2018","all","64/100","1","0","0","0","0"
"842","843","American Me","1992","18+","64/100","1","0","0","0","0"
"843","844","The Christmas Chronicles: Part Two","2020","7+","64/100","1","0","0","0","0"
"844","845","Sinister 2","2015","18+","64/100","1","0","0","0","0"
"845","846","Don't Go Breaking My Heart","2011","","64/100","1","0","0","0","0"
"846","847","Black '47","2018","18+","64/100","1","0","0","0","0"
"847","848","Mute","2018","18+","64/100","1","0","0","0","0"
"848","849","Crouching Tiger, Hidden Dragon: Sword of Destiny","2016","13+","64/100","1","0","0","0","0"
"849","850","The Ottoman Lieutenant","2017","18+","64/100","1","0","0","0","0"
"850","851","Teefa in Trouble","2018","13+","64/100","1","0","0","0","0"
"851","852","David Cross: Making America Great Again","2016","","64/100","1","0","0","0","0"
"852","853","The Last Days","1998","13+","64/100","1","0","0","0","0"
"853","854","Fred Claus","2007","7+","64/100","1","0","0","0","0"
"854","855","Sierra Burgess Is a Loser","2018","13+","64/100","1","0","0","0","0"
"855","856","Pariah","2011","18+","64/100","1","0","0","0","0"
"856","857","Cam","2018","18+","64/100","1","0","0","0","0"
"857","858","The Boys in the Band","2020","18+","64/100","1","0","0","0","0"
"858","859","Kai Po Che!","2013","","64/100","1","0","0","0","0"
"859","860","The Tree of Blood","2018","18+","64/100","1","0","0","0","0"
"860","861","Magic Carpet Ride","2005","13+","64/100","1","0","0","0","0"
"861","862","A Sun","2019","","64/100","1","0","0","0","0"
"862","863","The Mirror Has Two Faces","1996","13+","64/100","1","0","0","0","0"
"863","864","The Skin of the Wolf","2018","","64/100","1","0","0","0","0"
"864","865","Come Sunday","2018","16+","64/100","1","0","0","0","0"
"865","866","The Forty-Year-Old Version","2020","18+","64/100","1","0","0","0","0"
"866","867","Eli","2019","18+","64/100","1","0","0","0","0"
"867","868","Naruto the Movie: Ninja Clash in the Land of Snow","2004","16+","64/100","1","0","0","0","0"
"868","869","Tony Robbins: I Am Not Your Guru","2016","","64/100","1","0","0","0","0"
"869","870","Good Burger","1997","7+","64/100","1","0","0","0","0"
"870","871","Jimmy Neutron: Boy Genius","2001","all","64/100","1","0","0","0","0"
"871","872","American Son","2019","","64/100","1","0","0","0","0"
"872","873","The Call","2020","","64/100","1","0","0","0","0"
"873","874","Nights in Rodanthe","2008","13+","64/100","1","0","0","0","0"
"874","875","Dick Johnson Is Dead","2020","13+","64/100","1","0","0","0","0"
"875","876","Maps to the Stars","2014","18+","64/100","1","0","0","0","0"
"876","877","The Hows of Us","2018","","64/100","1","0","0","0","0"
"877","878","Mimi","2021","","64/100","1","0","0","0","0"
"878","879","100 Meters","2016","","64/100","1","0","0","0","0"
"879","880","The Death and Life of Marsha P. Johnson","2017","","64/100","1","0","0","0","0"
"880","881","No Game No Life: Zero","2017","18+","64/100","1","0","0","0","0"
"881","882","Taylor Tomlinson: Quarter-Life Crisis","2020","16+","64/100","1","0","0","0","0"
"882","883","All Day and a Night","2020","18+","64/100","1","0","0","0","0"
"883","884","Ali Wong: Baby Cobra","2016","18+","64/100","1","0","0","0","0"
"884","885","Parmanu: The Story of Pokhran","2018","","64/100","1","0","0","0","0"
"885","886","The Incredible Jessica James","2017","","64/100","1","0","0","0","0"
"886","887","The Happytime Murders","2018","18+","64/100","1","0","0","0","0"
"887","888","The Strangers: Prey at Night","2018","18+","64/100","1","0","0","0","0"
"888","889","Cradle 2 the Grave","2003","18+","64/100","1","0","0","0","0"
"889","890","Jim Gaffigan: King Baby","2009","7+","64/100","1","0","0","0","0"
"890","891","Rust Creek","2019","18+","64/100","1","0","0","0","0"
"891","892","The Smurfs 2","2013","7+","64/100","1","0","0","0","0"
"892","893","Asmaa","2011","","64/100","1","0","0","0","0"
"893","894","Rock On!!","2008","","64/100","1","0","1","0","0"
"894","895","Fisherman’s Friends","2019","13+","64/100","1","0","0","0","0"
"895","896","Avengement","2019","","64/100","1","0","0","0","0"
"896","897","Other People","2016","","64/100","1","0","0","0","0"
"897","898","Kicking and Screaming","1995","18+","64/100","1","0","1","0","0"
"898","899","Tamasha","2015","7+","64/100","1","0","0","0","0"
"899","900","The Meddler","2016","13+","64/100","1","0","0","0","0"
"900","901","White Girl","2016","","64/100","1","0","0","0","0"
"901","902","Below Zero","2021","18+","64/100","1","0","0","0","0"
"902","903","The Climb","2017","","64/100","1","0","1","0","0"
"903","904","The Rachel Divide","2018","18+","64/100","1","0","0","0","0"
"904","905","1000 Mabrouk","2009","","64/100","1","0","0","0","0"
"905","906","Undefeated","2011","13+","64/100","1","0","0","0","0"
"906","907","Lying and Stealing","2019","18+","64/100","1","0","0","0","0"
"907","908","Who Would You Take to a Deserted Island?","2019","","64/100","1","0","0","0","0"
"908","909","Richard Pryor: Live in Concert","1979","18+","64/100","1","0","0","0","0"
"909","910","Om Shanti Om","2007","7+","63/100","1","0","0","0","0"
"910","911","Year One","2009","13+","63/100","1","0","0","0","0"
"911","912","Waiting for ""Superman""","2010","7+","63/100","1","0","0","0","0"
"912","913","Andhaghaaram","2020","","63/100","1","0","0","0","0"
"913","914","Hop","2011","all","63/100","1","0","0","0","0"
"914","915","Coming Soon","2014","7+","63/100","1","0","0","0","0"
"915","916","The Rugrats Movie","1998","all","63/100","1","0","0","0","0"
"916","917","Jingle Jangle: A Christmas Journey","2020","7+","63/100","1","0","0","0","0"
"917","918","Mission Blue","2014","7+","63/100","1","0","0","0","0"
"918","919","Beverly Hills Ninja","1997","13+","63/100","1","0","0","0","0"
"919","920","In a Valley of Violence","2016","18+","63/100","1","0","0","0","0"
"920","921","The Battered Bastards of Baseball","2014","","63/100","1","0","0","0","0"
"921","922","Inhuman Kiss","2019","","63/100","1","0","0","0","0"
"922","923","The Motive","2017","18+","63/100","1","0","0","0","0"
"923","924","Lust Stories","2018","13+","63/100","1","0","0","0","0"
"924","925","Beyond Skyline","2017","18+","63/100","1","0","0","0","0"
"925","926","Holiday in the Wild","2019","7+","63/100","1","0","0","0","0"
"926","927","Umrika","2015","","63/100","1","0","0","0","0"
"927","928","The Seven Deadly Sins: Prisoners of the Sky","2018","","63/100","1","0","0","0","0"
"928","929","Long Shot","2017","16+","63/100","1","0","0","0","0"
"929","930","Dev.D","2009","13+","63/100","1","0","0","0","0"
"930","931","Judd Apatow: The Return","2017","16+","63/100","1","0","0","0","0"
"931","932","Jaane Tu... Ya Jaane Na","2008","","63/100","1","0","0","0","0"
"932","933","Escape from Planet Earth","2012","7+","63/100","1","0","0","0","0"
"933","934","Aziz Ansari: Live at Madison Square Garden","2015","18+","63/100","1","0","0","0","0"
"934","935","Yours, Mine & Ours","2005","7+","63/100","1","0","1","0","0"
"935","936","Bully","2011","13+","63/100","1","0","0","0","0"
"936","937","Sleight","2016","18+","63/100","1","0","0","0","0"
"937","938","The Hummingbird Project","2019","18+","63/100","1","0","0","0","0"
"938","939","Game Over, Man!","2018","18+","63/100","1","0","0","0","0"
"939","940","Edge of Seventeen","1998","18+","63/100","1","0","0","0","0"
"940","941","A Christmas Prince: The Royal Wedding","2018","7+","63/100","1","0","0","0","0"
"941","942","American Outlaws","2001","13+","63/100","1","0","0","0","0"
"942","943","Jim Jefferies: Bare","2014","18+","63/100","1","0","0","0","0"
"943","944","Wake Up Sid","2009","","63/100","1","0","0","0","0"
"944","945","Bill Hicks: Relentless","1992","","63/100","1","0","0","0","0"
"945","946","Mary Magdalene","2018","18+","63/100","1","0","0","0","0"
"946","947","BLACKPINK: Light Up the Sky","2020","all","63/100","1","0","0","0","0"
"947","948","Madras Cafe","2013","13+","63/100","1","0","0","0","0"
"948","949","Berlin Calling","2008","","63/100","1","0","0","0","0"
"949","950","The Titan","2018","18+","63/100","1","0","0","0","0"
"950","951","I Am Not an Easy Man","2018","","63/100","1","0","0","0","0"
"951","952","Love Off the Cuff","2017","","63/100","1","0","0","0","0"
"952","953","Child's Play 3","1991","18+","63/100","1","0","0","0","0"
"953","954","Rugrats in Paris: The Movie","2000","all","63/100","1","0","0","0","0"
"954","955","Naruto Shippuden the Movie: Bonds","2008","16+","63/100","1","0","0","0","0"
"955","956","Heneral Luna","2015","18+","63/100","1","0","0","0","0"
"956","957","Delhi Belly","2011","","63/100","1","0","0","0","0"
"957","958","Armed to the Teeth","2018","","63/100","1","0","0","0","0"
"958","959","I Am All Girls","2021","18+","63/100","1","0","0","0","0"
"959","960","Jagame Thandhiram","2021","18+","63/100","1","0","0","0","0"
"960","961","Master Z: Ip Man Legacy","2019","13+","63/100","1","0","0","0","0"
"961","962","Hubie Halloween","2020","13+","63/100","1","0","0","0","0"
"962","963","Naruto Shippuden the Movie: Blood Prison","2011","13+","63/100","1","0","0","0","0"
"963","964","Awake","2021","","63/100","1","0","1","0","0"
"964","965","Bulbbul","2020","18+","63/100","1","0","0","0","0"
"965","966","Malcolm & Marie","2021","18+","63/100","1","0","0","0","0"
"966","967","Fukrey","2013","13+","63/100","1","0","0","0","0"
"967","968","Furie","2019","18+","63/100","1","0","0","0","0"
"968","969","The Blue Elephant Part 2","2019","","63/100","1","0","0","0","0"
"969","970","Orbiter 9","2017","16+","63/100","1","0","0","0","0"
"970","971","Awe!","2018","","63/100","1","0","0","0","0"
"971","972","Our Lovers","2016","","63/100","1","0","0","0","0"
"972","973","Newness","2017","","63/100","1","0","0","0","0"
"973","974","Freak Show","2018","","63/100","1","1","0","0","0"
"974","975","Black or White","2014","13+","63/100","1","0","0","0","0"
"975","976","Everybody's Everything","2019","18+","63/100","1","0","0","0","0"
"976","977","The Darkest Hour","2011","13+","63/100","1","0","0","0","0"
"977","978","Headshot","2016","","63/100","1","0","0","0","0"
"978","979","Ratchet & Clank","2016","7+","63/100","1","0","0","0","0"
"979","980","Blind Detective","2013","","63/100","1","0","0","0","0"
"980","981","Capital in the Twenty-First Century","2019","","63/100","1","0","0","0","0"
"981","982","Rim of the World","2019","7+","63/100","1","0","0","0","0"
"982","983","America: The Motion Picture","2021","","63/100","1","0","0","0","0"
"983","984","The Princess Switch","2018","7+","63/100","1","0","0","0","0"
"984","985","Belgica","2016","","63/100","1","0","0","0","0"
"985","986","Pyaar Ka Punchnama 2","2015","13+","63/100","1","0","0","0","0"
"986","987","Love Jones","1997","18+","63/100","1","0","0","0","0"
"987","988","Kevin Hart: Seriously Funny","2010","18+","63/100","1","0","0","0","0"
"988","989","Violet Evergarden: Eternity and the Auto Memory Doll","2019","7+","63/100","1","0","0","0","0"
"989","990","Little Monsters","1989","7+","63/100","1","1","0","0","0"
"990","991","Mucize","2015","18+","63/100","1","0","0","0","0"
"991","992","Playing for Keeps","2012","13+","62/100","1","0","0","0","0"
"992","993","#Alive","2020","","62/100","1","0","0","0","0"
"993","994","Finding 'Ohana","2021","7+","62/100","1","0","0","0","0"
"994","995","Three","2016","13+","62/100","1","0","0","0","0"
"995","996","Aziz Ansari: Right Now","2019","","62/100","1","0","0","0","0"
"996","997","Bill Hicks: Revelations","1993","","62/100","1","0","0","0","0"
"997","998","Love Happens","2009","13+","62/100","1","0","0","0","0"
"998","999","The Wind","2019","18+","62/100","1","0","0","0","0"