zen21 commited on
Commit
b1d4757
1 Parent(s): 37c9513

Upload 7 files

Browse files
Files changed (7) hide show
  1. Movie_Recommendation_System.ipynb +272 -0
  2. app.py +155 -0
  3. movie_list.ipynb +511 -0
  4. moviedb.py +38 -0
  5. movies.csv +1301 -0
  6. movies2.csv +1140 -0
  7. movies3.csv +250 -0
Movie_Recommendation_System.ipynb ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 15,
6
+ "id": "e2eacfc4",
7
+ "metadata": {},
8
+ "outputs": [],
9
+ "source": [
10
+ "import csv\n",
11
+ "import pandas as pd\n",
12
+ "import numpy as np\n",
13
+ "from sklearn.cluster import KMeans\n",
14
+ "import imdb\n",
15
+ "import random\n",
16
+ "import gradio as gr"
17
+ ]
18
+ },
19
+ {
20
+ "cell_type": "code",
21
+ "execution_count": 2,
22
+ "id": "32abfcc7",
23
+ "metadata": {},
24
+ "outputs": [],
25
+ "source": [
26
+ "file1=open(\"movies.csv\",'r')\n",
27
+ "file2=open(\"movies3.csv\",'r')\n",
28
+ "csvreader1 = csv.reader(file1)\n",
29
+ "csvreader2 = csv.reader(file2)"
30
+ ]
31
+ },
32
+ {
33
+ "cell_type": "code",
34
+ "execution_count": 3,
35
+ "id": "7c6af3f6",
36
+ "metadata": {},
37
+ "outputs": [],
38
+ "source": [
39
+ "pd_dict={'movie':[],'time_minute':[],'imdb_rating':[],'Action':[],'Adventure':[],'Fantasy':[],\n",
40
+ " 'Sci-Fi':[],'Animation':[],'Comedy':[],'Family':[],'Mystery':[],'Romance':[],'Drama':[],\n",
41
+ " 'Crime':[],'Thriller':[],'War':[],'Musical':[],'Biography':[]}\n",
42
+ "\n",
43
+ "lst=['Action','Adventure','Fantasy','Sci-Fi','Animation','Comedy',\n",
44
+ " 'Family','Mystery','Romance','Drama','Crime','Thriller','War','Musical','Biography']"
45
+ ]
46
+ },
47
+ {
48
+ "cell_type": "code",
49
+ "execution_count": 4,
50
+ "id": "197f938c",
51
+ "metadata": {},
52
+ "outputs": [],
53
+ "source": [
54
+ "j=0\n",
55
+ "for row in csvreader2:\n",
56
+ " if j==0:\n",
57
+ " j=1\n",
58
+ " continue\n",
59
+ " for i in range(len(lst)):\n",
60
+ " pd_dict[lst[i]].append(int(row[i+1]))\n",
61
+ "j=0\n",
62
+ "for row in csvreader1:\n",
63
+ " if j==0:\n",
64
+ " j=1\n",
65
+ " continue\n",
66
+ " if j==250:\n",
67
+ " break\n",
68
+ " pd_dict['movie'].append(row[1])\n",
69
+ " pd_dict['time_minute'].append(int(row[3].split()[0]))\n",
70
+ " pd_dict['imdb_rating'].append(float(row[4]))\n",
71
+ " j+=1\n"
72
+ ]
73
+ },
74
+ {
75
+ "cell_type": "code",
76
+ "execution_count": 5,
77
+ "id": "1b8ae369",
78
+ "metadata": {},
79
+ "outputs": [
80
+ {
81
+ "name": "stderr",
82
+ "output_type": "stream",
83
+ "text": [
84
+ "C:\\Users\\shiva\\AppData\\Local\\Temp\\ipykernel_26960\\3370603501.py:2: FutureWarning: In a future version of pandas all arguments of DataFrame.drop except for the argument 'labels' will be keyword-only.\n",
85
+ " X=np.array(df.drop(['movie'],1))\n"
86
+ ]
87
+ }
88
+ ],
89
+ "source": [
90
+ "df=pd.DataFrame(pd_dict)\n",
91
+ "X=np.array(df.drop(['movie'],1))"
92
+ ]
93
+ },
94
+ {
95
+ "cell_type": "code",
96
+ "execution_count": 6,
97
+ "id": "17dcbd0b",
98
+ "metadata": {},
99
+ "outputs": [],
100
+ "source": [
101
+ "kmeans = KMeans(max_iter=300).fit(X)"
102
+ ]
103
+ },
104
+ {
105
+ "cell_type": "code",
106
+ "execution_count": 9,
107
+ "id": "7b41be34",
108
+ "metadata": {},
109
+ "outputs": [
110
+ {
111
+ "name": "stdout",
112
+ "output_type": "stream",
113
+ "text": [
114
+ "15398776\n",
115
+ "[180, 8.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]\n"
116
+ ]
117
+ }
118
+ ],
119
+ "source": [
120
+ "movie_name=\"Oppenheimer\"\n",
121
+ "ia=imdb.IMDb()\n",
122
+ "items = ia.search_movie(movie_name)\n",
123
+ "code = items[0].getID()\n",
124
+ "print(code)\n",
125
+ "series = ia.get_movie(code)\n",
126
+ "genre = series.data['genres']\n",
127
+ "time_minute=series.data['runtimes']\n",
128
+ "rating=series.data['rating']\n",
129
+ "x=[int(time_minute[0]),float(rating)]\n",
130
+ "for i in lst:\n",
131
+ " if i in genre:\n",
132
+ " x.append(1)\n",
133
+ " else:\n",
134
+ " x.append(0)\n",
135
+ "print(x)"
136
+ ]
137
+ },
138
+ {
139
+ "cell_type": "code",
140
+ "execution_count": 13,
141
+ "id": "58c3e306",
142
+ "metadata": {},
143
+ "outputs": [
144
+ {
145
+ "name": "stdout",
146
+ "output_type": "stream",
147
+ "text": [
148
+ "Another movie like Oppenheimer is: The Wolf of Wall Street\n"
149
+ ]
150
+ }
151
+ ],
152
+ "source": [
153
+ "i=random.randint(1,249)\n",
154
+ "test_x=X[i].reshape(1,-1)\n",
155
+ "x=np.array(x)\n",
156
+ "x=x.reshape(1,-1)\n",
157
+ "# print(kmeans.predict(test_x))\n",
158
+ "# print(kmeans.predict(x))\n",
159
+ "pred=kmeans.predict(x)\n",
160
+ "pred_test=kmeans.predict(test_x)\n",
161
+ "while pred!=pred_test:\n",
162
+ " i=random.randint(1,249)\n",
163
+ " test_x=X[i].reshape(1,-1)\n",
164
+ " x=np.array(x)\n",
165
+ " x=x.reshape(1,-1)\n",
166
+ " pred_test=kmeans.predict(test_x)\n",
167
+ "print('Another movie like',movie_name,'is:',df['movie'][i])"
168
+ ]
169
+ },
170
+ {
171
+ "cell_type": "code",
172
+ "execution_count": 16,
173
+ "id": "36d61a81",
174
+ "metadata": {},
175
+ "outputs": [
176
+ {
177
+ "name": "stdout",
178
+ "output_type": "stream",
179
+ "text": [
180
+ "Running on local URL: http://127.0.0.1:7860\n",
181
+ "\n",
182
+ "To create a public link, set `share=True` in `launch()`.\n"
183
+ ]
184
+ },
185
+ {
186
+ "data": {
187
+ "text/html": [
188
+ "<div><iframe src=\"http://127.0.0.1:7860/\" width=\"100%\" height=\"500\" allow=\"autoplay; camera; microphone; clipboard-read; clipboard-write;\" frameborder=\"0\" allowfullscreen></iframe></div>"
189
+ ],
190
+ "text/plain": [
191
+ "<IPython.core.display.HTML object>"
192
+ ]
193
+ },
194
+ "metadata": {},
195
+ "output_type": "display_data"
196
+ },
197
+ {
198
+ "data": {
199
+ "text/plain": []
200
+ },
201
+ "execution_count": 16,
202
+ "metadata": {},
203
+ "output_type": "execute_result"
204
+ }
205
+ ],
206
+ "source": [
207
+ "def movie(txt):\n",
208
+ " ia=imdb.IMDb()\n",
209
+ " items = ia.search_movie(movie_name)\n",
210
+ " code = items[0].getID()\n",
211
+ " series = ia.get_movie(code)\n",
212
+ " genre = series.data['genres']\n",
213
+ " time_minute=series.data['runtimes']\n",
214
+ " rating=series.data['rating']\n",
215
+ " x=[int(time_minute[0]),float(rating)]\n",
216
+ " for i in lst:\n",
217
+ " if i in genre:\n",
218
+ " x.append(1)\n",
219
+ " else:\n",
220
+ " x.append(0)\n",
221
+ " \n",
222
+ " i=random.randint(1,249)\n",
223
+ " test_x=X[i].reshape(1,-1)\n",
224
+ " x=np.array(x)\n",
225
+ " x=x.reshape(1,-1)\n",
226
+ " # print(kmeans.predict(test_x))\n",
227
+ " # print(kmeans.predict(x))\n",
228
+ " pred=kmeans.predict(x)\n",
229
+ " pred_test=kmeans.predict(test_x)\n",
230
+ " while pred!=pred_test:\n",
231
+ " i=random.randint(1,249)\n",
232
+ " test_x=X[i].reshape(1,-1)\n",
233
+ " x=np.array(x)\n",
234
+ " x=x.reshape(1,-1)\n",
235
+ " pred_test=kmeans.predict(test_x)\n",
236
+ " return df['movie'][i]\n",
237
+ "\n",
238
+ "iface = gr.Interface(fn=movie, inputs=\"text\", outputs=\"text\")\n",
239
+ "iface.launch()"
240
+ ]
241
+ },
242
+ {
243
+ "cell_type": "code",
244
+ "execution_count": null,
245
+ "id": "3e5a81cd",
246
+ "metadata": {},
247
+ "outputs": [],
248
+ "source": []
249
+ }
250
+ ],
251
+ "metadata": {
252
+ "kernelspec": {
253
+ "display_name": "Python 3 (ipykernel)",
254
+ "language": "python",
255
+ "name": "python3"
256
+ },
257
+ "language_info": {
258
+ "codemirror_mode": {
259
+ "name": "ipython",
260
+ "version": 3
261
+ },
262
+ "file_extension": ".py",
263
+ "mimetype": "text/x-python",
264
+ "name": "python",
265
+ "nbconvert_exporter": "python",
266
+ "pygments_lexer": "ipython3",
267
+ "version": "3.10.4"
268
+ }
269
+ },
270
+ "nbformat": 4,
271
+ "nbformat_minor": 5
272
+ }
app.py CHANGED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # coding: utf-8
3
+
4
+ # In[15]:
5
+
6
+
7
+ import csv
8
+ import pandas as pd
9
+ import numpy as np
10
+ from sklearn.cluster import KMeans
11
+ import imdb
12
+ import random
13
+ import gradio as gr
14
+
15
+
16
+ # In[2]:
17
+
18
+
19
+ file1=open("movies.csv",'r')
20
+ file2=open("movies3.csv",'r')
21
+ csvreader1 = csv.reader(file1)
22
+ csvreader2 = csv.reader(file2)
23
+
24
+
25
+ # In[3]:
26
+
27
+
28
+ pd_dict={'movie':[],'time_minute':[],'imdb_rating':[],'Action':[],'Adventure':[],'Fantasy':[],
29
+ 'Sci-Fi':[],'Animation':[],'Comedy':[],'Family':[],'Mystery':[],'Romance':[],'Drama':[],
30
+ 'Crime':[],'Thriller':[],'War':[],'Musical':[],'Biography':[]}
31
+
32
+ lst=['Action','Adventure','Fantasy','Sci-Fi','Animation','Comedy',
33
+ 'Family','Mystery','Romance','Drama','Crime','Thriller','War','Musical','Biography']
34
+
35
+
36
+ # In[4]:
37
+
38
+
39
+ j=0
40
+ for row in csvreader2:
41
+ if j==0:
42
+ j=1
43
+ continue
44
+ for i in range(len(lst)):
45
+ pd_dict[lst[i]].append(int(row[i+1]))
46
+ j=0
47
+ for row in csvreader1:
48
+ if j==0:
49
+ j=1
50
+ continue
51
+ if j==250:
52
+ break
53
+ pd_dict['movie'].append(row[1])
54
+ pd_dict['time_minute'].append(int(row[3].split()[0]))
55
+ pd_dict['imdb_rating'].append(float(row[4]))
56
+ j+=1
57
+
58
+
59
+ # In[5]:
60
+
61
+
62
+ df=pd.DataFrame(pd_dict)
63
+ X=np.array(df.drop(['movie'],1))
64
+
65
+
66
+ # In[6]:
67
+
68
+
69
+ kmeans = KMeans(max_iter=300).fit(X)
70
+
71
+
72
+ # In[9]:
73
+
74
+
75
+ movie_name="Oppenheimer"
76
+ ia=imdb.IMDb()
77
+ items = ia.search_movie(movie_name)
78
+ code = items[0].getID()
79
+ print(code)
80
+ series = ia.get_movie(code)
81
+ genre = series.data['genres']
82
+ time_minute=series.data['runtimes']
83
+ rating=series.data['rating']
84
+ x=[int(time_minute[0]),float(rating)]
85
+ for i in lst:
86
+ if i in genre:
87
+ x.append(1)
88
+ else:
89
+ x.append(0)
90
+ print(x)
91
+
92
+
93
+ # In[13]:
94
+
95
+
96
+ i=random.randint(1,249)
97
+ test_x=X[i].reshape(1,-1)
98
+ x=np.array(x)
99
+ x=x.reshape(1,-1)
100
+ # print(kmeans.predict(test_x))
101
+ # print(kmeans.predict(x))
102
+ pred=kmeans.predict(x)
103
+ pred_test=kmeans.predict(test_x)
104
+ while pred!=pred_test:
105
+ i=random.randint(1,249)
106
+ test_x=X[i].reshape(1,-1)
107
+ x=np.array(x)
108
+ x=x.reshape(1,-1)
109
+ pred_test=kmeans.predict(test_x)
110
+ print('Another movie like',movie_name,'is:',df['movie'][i])
111
+
112
+
113
+ # In[16]:
114
+
115
+
116
+ def movie(txt):
117
+ ia=imdb.IMDb()
118
+ items = ia.search_movie(movie_name)
119
+ code = items[0].getID()
120
+ series = ia.get_movie(code)
121
+ genre = series.data['genres']
122
+ time_minute=series.data['runtimes']
123
+ rating=series.data['rating']
124
+ x=[int(time_minute[0]),float(rating)]
125
+ for i in lst:
126
+ if i in genre:
127
+ x.append(1)
128
+ else:
129
+ x.append(0)
130
+
131
+ i=random.randint(1,249)
132
+ test_x=X[i].reshape(1,-1)
133
+ x=np.array(x)
134
+ x=x.reshape(1,-1)
135
+ # print(kmeans.predict(test_x))
136
+ # print(kmeans.predict(x))
137
+ pred=kmeans.predict(x)
138
+ pred_test=kmeans.predict(test_x)
139
+ while pred!=pred_test:
140
+ i=random.randint(1,249)
141
+ test_x=X[i].reshape(1,-1)
142
+ x=np.array(x)
143
+ x=x.reshape(1,-1)
144
+ pred_test=kmeans.predict(test_x)
145
+ return df['movie'][i]
146
+
147
+ iface = gr.Interface(fn=movie, inputs="text", outputs="text")
148
+ iface.launch()
149
+
150
+
151
+ # In[ ]:
152
+
153
+
154
+
155
+
movie_list.ipynb ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 2,
6
+ "id": "b468f6eb",
7
+ "metadata": {},
8
+ "outputs": [],
9
+ "source": [
10
+ "import pandas as pd\n",
11
+ "import numpy as np\n",
12
+ "import requests\n",
13
+ "from requests import get\n",
14
+ "from bs4 import BeautifulSoup\n",
15
+ "\n",
16
+ "from time import sleep\n",
17
+ "from random import randint"
18
+ ]
19
+ },
20
+ {
21
+ "cell_type": "code",
22
+ "execution_count": 3,
23
+ "id": "1ad7963f",
24
+ "metadata": {},
25
+ "outputs": [],
26
+ "source": [
27
+ "titles = []\n",
28
+ "years = []\n",
29
+ "time = []\n",
30
+ "imdb_ratings = []\n",
31
+ "metascores = []\n",
32
+ "votes = []\n",
33
+ "us_gross = []"
34
+ ]
35
+ },
36
+ {
37
+ "cell_type": "code",
38
+ "execution_count": 37,
39
+ "id": "5c2d321e",
40
+ "metadata": {},
41
+ "outputs": [],
42
+ "source": [
43
+ "headers = {'Accept-Language': 'en-US, en;q=0.5'}"
44
+ ]
45
+ },
46
+ {
47
+ "cell_type": "code",
48
+ "execution_count": 38,
49
+ "id": "f99c0c2e",
50
+ "metadata": {},
51
+ "outputs": [
52
+ {
53
+ "data": {
54
+ "text/plain": [
55
+ "array([ 1, 51, 101, 151, 201])"
56
+ ]
57
+ },
58
+ "execution_count": 38,
59
+ "metadata": {},
60
+ "output_type": "execute_result"
61
+ }
62
+ ],
63
+ "source": [
64
+ "pages = np.arange(1, 251, 50)\n",
65
+ "pages"
66
+ ]
67
+ },
68
+ {
69
+ "cell_type": "code",
70
+ "execution_count": 39,
71
+ "id": "4ff01a9a",
72
+ "metadata": {},
73
+ "outputs": [],
74
+ "source": [
75
+ "# Storing each of the urls of 50 movies \n",
76
+ "for page in pages:\n",
77
+ " # Getting the contents from the each url\n",
78
+ " page = requests.get('https://www.imdb.com/search/title/?groups=top_1000&start=' + str(page) + '&ref_=adv_nxt', headers=headers)\n",
79
+ " soup = BeautifulSoup(page.text, 'html.parser')\n",
80
+ " \n",
81
+ " # Aiming the part of the html we want to get the information from\n",
82
+ " movie_div = soup.find_all('div', class_='lister-item mode-advanced')\n",
83
+ " \n",
84
+ " # Controling the loop’s rate by pausing the execution of the loop for a specified amount of time\n",
85
+ " # Waiting time between requests for a number between 2-10 seconds\n",
86
+ "# sleep(randint(2,5))\n",
87
+ " \n",
88
+ " for container in movie_div:\n",
89
+ " # Scraping the movie's name\n",
90
+ " name = container.h3.a.text\n",
91
+ " titles.append(name)\n",
92
+ " \n",
93
+ " # Scraping the movie's year\n",
94
+ " year = container.h3.find('span', class_='lister-item-year').text\n",
95
+ " years.append(year)\n",
96
+ " \n",
97
+ " # Scraping the movie's length\n",
98
+ " runtime = container.find('span', class_='runtime').text if container.p.find('span', class_='runtime') else '-'\n",
99
+ " time.append(runtime)\n",
100
+ " \n",
101
+ " # Scraping the rating\n",
102
+ " imdb = float(container.strong.text)\n",
103
+ " imdb_ratings.append(imdb)\n",
104
+ " \n",
105
+ " # Scraping the metascore\n",
106
+ " m_score = container.find('span', class_='metascore').text if container.find('span', class_='metascore') else '-'\n",
107
+ " metascores.append(m_score)\n",
108
+ " \n",
109
+ " # Scraping votes and gross earnings\n",
110
+ "# nv = container.find_all('span', attrs={'name':'nv'})\n",
111
+ "# vote = nv[0].text\n",
112
+ "# votes.append(vote)\n",
113
+ "# grosses = nv[1].text if len(nv) > 1 else '-'\n",
114
+ "# us_gross.append(grosses)"
115
+ ]
116
+ },
117
+ {
118
+ "cell_type": "code",
119
+ "execution_count": 40,
120
+ "id": "7e788570",
121
+ "metadata": {},
122
+ "outputs": [
123
+ {
124
+ "data": {
125
+ "text/html": [
126
+ "<div>\n",
127
+ "<style scoped>\n",
128
+ " .dataframe tbody tr th:only-of-type {\n",
129
+ " vertical-align: middle;\n",
130
+ " }\n",
131
+ "\n",
132
+ " .dataframe tbody tr th {\n",
133
+ " vertical-align: top;\n",
134
+ " }\n",
135
+ "\n",
136
+ " .dataframe thead th {\n",
137
+ " text-align: right;\n",
138
+ " }\n",
139
+ "</style>\n",
140
+ "<table border=\"1\" class=\"dataframe\">\n",
141
+ " <thead>\n",
142
+ " <tr style=\"text-align: right;\">\n",
143
+ " <th></th>\n",
144
+ " <th>movie</th>\n",
145
+ " <th>year</th>\n",
146
+ " <th>time_minute</th>\n",
147
+ " <th>imdb_rating</th>\n",
148
+ " <th>metascore</th>\n",
149
+ " </tr>\n",
150
+ " </thead>\n",
151
+ " <tbody>\n",
152
+ " <tr>\n",
153
+ " <th>0</th>\n",
154
+ " <td>Avatar: The Way of Water</td>\n",
155
+ " <td>(2022)</td>\n",
156
+ " <td>192 min</td>\n",
157
+ " <td>7.8</td>\n",
158
+ " <td>67</td>\n",
159
+ " </tr>\n",
160
+ " <tr>\n",
161
+ " <th>1</th>\n",
162
+ " <td>Puss in Boots: The Last Wish</td>\n",
163
+ " <td>(2022)</td>\n",
164
+ " <td>102 min</td>\n",
165
+ " <td>7.9</td>\n",
166
+ " <td>75</td>\n",
167
+ " </tr>\n",
168
+ " <tr>\n",
169
+ " <th>2</th>\n",
170
+ " <td>The Banshees of Inisherin</td>\n",
171
+ " <td>(2022)</td>\n",
172
+ " <td>114 min</td>\n",
173
+ " <td>7.8</td>\n",
174
+ " <td>87</td>\n",
175
+ " </tr>\n",
176
+ " <tr>\n",
177
+ " <th>3</th>\n",
178
+ " <td>Everything Everywhere All at Once</td>\n",
179
+ " <td>(2022)</td>\n",
180
+ " <td>139 min</td>\n",
181
+ " <td>8.0</td>\n",
182
+ " <td>81</td>\n",
183
+ " </tr>\n",
184
+ " <tr>\n",
185
+ " <th>4</th>\n",
186
+ " <td>The Fabelmans</td>\n",
187
+ " <td>(2022)</td>\n",
188
+ " <td>151 min</td>\n",
189
+ " <td>7.7</td>\n",
190
+ " <td>84</td>\n",
191
+ " </tr>\n",
192
+ " </tbody>\n",
193
+ "</table>\n",
194
+ "</div>"
195
+ ],
196
+ "text/plain": [
197
+ " movie year time_minute imdb_rating \\\n",
198
+ "0 Avatar: The Way of Water (2022) 192 min 7.8 \n",
199
+ "1 Puss in Boots: The Last Wish (2022) 102 min 7.9 \n",
200
+ "2 The Banshees of Inisherin (2022) 114 min 7.8 \n",
201
+ "3 Everything Everywhere All at Once (2022) 139 min 8.0 \n",
202
+ "4 The Fabelmans (2022) 151 min 7.7 \n",
203
+ "\n",
204
+ " metascore \n",
205
+ "0 67 \n",
206
+ "1 75 \n",
207
+ "2 87 \n",
208
+ "3 81 \n",
209
+ "4 84 "
210
+ ]
211
+ },
212
+ "execution_count": 40,
213
+ "metadata": {},
214
+ "output_type": "execute_result"
215
+ }
216
+ ],
217
+ "source": [
218
+ "movies = pd.DataFrame({'movie':titles,\n",
219
+ " 'year':years,\n",
220
+ " 'time_minute':time,\n",
221
+ " 'imdb_rating':imdb_ratings,\n",
222
+ " 'metascore':metascores})\n",
223
+ "\n",
224
+ "movies.head()"
225
+ ]
226
+ },
227
+ {
228
+ "cell_type": "markdown",
229
+ "id": "b3d3b75c",
230
+ "metadata": {},
231
+ "source": [
232
+ "movies"
233
+ ]
234
+ },
235
+ {
236
+ "cell_type": "code",
237
+ "execution_count": 41,
238
+ "id": "8db3f51c",
239
+ "metadata": {},
240
+ "outputs": [
241
+ {
242
+ "data": {
243
+ "text/html": [
244
+ "<div>\n",
245
+ "<style scoped>\n",
246
+ " .dataframe tbody tr th:only-of-type {\n",
247
+ " vertical-align: middle;\n",
248
+ " }\n",
249
+ "\n",
250
+ " .dataframe tbody tr th {\n",
251
+ " vertical-align: top;\n",
252
+ " }\n",
253
+ "\n",
254
+ " .dataframe thead th {\n",
255
+ " text-align: right;\n",
256
+ " }\n",
257
+ "</style>\n",
258
+ "<table border=\"1\" class=\"dataframe\">\n",
259
+ " <thead>\n",
260
+ " <tr style=\"text-align: right;\">\n",
261
+ " <th></th>\n",
262
+ " <th>movie</th>\n",
263
+ " <th>year</th>\n",
264
+ " <th>time_minute</th>\n",
265
+ " <th>imdb_rating</th>\n",
266
+ " <th>metascore</th>\n",
267
+ " </tr>\n",
268
+ " </thead>\n",
269
+ " <tbody>\n",
270
+ " <tr>\n",
271
+ " <th>0</th>\n",
272
+ " <td>Avatar: The Way of Water</td>\n",
273
+ " <td>(2022)</td>\n",
274
+ " <td>192 min</td>\n",
275
+ " <td>7.8</td>\n",
276
+ " <td>67</td>\n",
277
+ " </tr>\n",
278
+ " <tr>\n",
279
+ " <th>1</th>\n",
280
+ " <td>Puss in Boots: The Last Wish</td>\n",
281
+ " <td>(2022)</td>\n",
282
+ " <td>102 min</td>\n",
283
+ " <td>7.9</td>\n",
284
+ " <td>75</td>\n",
285
+ " </tr>\n",
286
+ " <tr>\n",
287
+ " <th>2</th>\n",
288
+ " <td>The Banshees of Inisherin</td>\n",
289
+ " <td>(2022)</td>\n",
290
+ " <td>114 min</td>\n",
291
+ " <td>7.8</td>\n",
292
+ " <td>87</td>\n",
293
+ " </tr>\n",
294
+ " <tr>\n",
295
+ " <th>3</th>\n",
296
+ " <td>Everything Everywhere All at Once</td>\n",
297
+ " <td>(2022)</td>\n",
298
+ " <td>139 min</td>\n",
299
+ " <td>8.0</td>\n",
300
+ " <td>81</td>\n",
301
+ " </tr>\n",
302
+ " <tr>\n",
303
+ " <th>4</th>\n",
304
+ " <td>The Fabelmans</td>\n",
305
+ " <td>(2022)</td>\n",
306
+ " <td>151 min</td>\n",
307
+ " <td>7.7</td>\n",
308
+ " <td>84</td>\n",
309
+ " </tr>\n",
310
+ " <tr>\n",
311
+ " <th>...</th>\n",
312
+ " <td>...</td>\n",
313
+ " <td>...</td>\n",
314
+ " <td>...</td>\n",
315
+ " <td>...</td>\n",
316
+ " <td>...</td>\n",
317
+ " </tr>\n",
318
+ " <tr>\n",
319
+ " <th>1795</th>\n",
320
+ " <td>Pan's Labyrinth</td>\n",
321
+ " <td>(2006)</td>\n",
322
+ " <td>118 min</td>\n",
323
+ " <td>8.2</td>\n",
324
+ " <td>98</td>\n",
325
+ " </tr>\n",
326
+ " <tr>\n",
327
+ " <th>1796</th>\n",
328
+ " <td>Guardians of the Galaxy Vol. 2</td>\n",
329
+ " <td>(2017)</td>\n",
330
+ " <td>136 min</td>\n",
331
+ " <td>7.6</td>\n",
332
+ " <td>67</td>\n",
333
+ " </tr>\n",
334
+ " <tr>\n",
335
+ " <th>1797</th>\n",
336
+ " <td>The Wizard of Oz</td>\n",
337
+ " <td>(1939)</td>\n",
338
+ " <td>102 min</td>\n",
339
+ " <td>8.1</td>\n",
340
+ " <td>92</td>\n",
341
+ " </tr>\n",
342
+ " <tr>\n",
343
+ " <th>1798</th>\n",
344
+ " <td>Psycho</td>\n",
345
+ " <td>(1960)</td>\n",
346
+ " <td>109 min</td>\n",
347
+ " <td>8.5</td>\n",
348
+ " <td>97</td>\n",
349
+ " </tr>\n",
350
+ " <tr>\n",
351
+ " <th>1799</th>\n",
352
+ " <td>Before Sunrise</td>\n",
353
+ " <td>(1995)</td>\n",
354
+ " <td>101 min</td>\n",
355
+ " <td>8.1</td>\n",
356
+ " <td>77</td>\n",
357
+ " </tr>\n",
358
+ " </tbody>\n",
359
+ "</table>\n",
360
+ "<p>1800 rows × 5 columns</p>\n",
361
+ "</div>"
362
+ ],
363
+ "text/plain": [
364
+ " movie year time_minute imdb_rating \\\n",
365
+ "0 Avatar: The Way of Water (2022) 192 min 7.8 \n",
366
+ "1 Puss in Boots: The Last Wish (2022) 102 min 7.9 \n",
367
+ "2 The Banshees of Inisherin (2022) 114 min 7.8 \n",
368
+ "3 Everything Everywhere All at Once (2022) 139 min 8.0 \n",
369
+ "4 The Fabelmans (2022) 151 min 7.7 \n",
370
+ "... ... ... ... ... \n",
371
+ "1795 Pan's Labyrinth (2006) 118 min 8.2 \n",
372
+ "1796 Guardians of the Galaxy Vol. 2 (2017) 136 min 7.6 \n",
373
+ "1797 The Wizard of Oz (1939) 102 min 8.1 \n",
374
+ "1798 Psycho (1960) 109 min 8.5 \n",
375
+ "1799 Before Sunrise (1995) 101 min 8.1 \n",
376
+ "\n",
377
+ " metascore \n",
378
+ "0 67 \n",
379
+ "1 75 \n",
380
+ "2 87 \n",
381
+ "3 81 \n",
382
+ "4 84 \n",
383
+ "... ... \n",
384
+ "1795 98 \n",
385
+ "1796 67 \n",
386
+ "1797 92 \n",
387
+ "1798 97 \n",
388
+ "1799 77 \n",
389
+ "\n",
390
+ "[1800 rows x 5 columns]"
391
+ ]
392
+ },
393
+ "execution_count": 41,
394
+ "metadata": {},
395
+ "output_type": "execute_result"
396
+ }
397
+ ],
398
+ "source": [
399
+ "movies"
400
+ ]
401
+ },
402
+ {
403
+ "cell_type": "code",
404
+ "execution_count": 11,
405
+ "id": "766721af",
406
+ "metadata": {},
407
+ "outputs": [],
408
+ "source": [
409
+ "movies.to_csv('movies.csv')"
410
+ ]
411
+ },
412
+ {
413
+ "cell_type": "code",
414
+ "execution_count": 28,
415
+ "id": "eb119479",
416
+ "metadata": {},
417
+ "outputs": [],
418
+ "source": [
419
+ "# movies['metascore'] = movies['metascore'].str.extract('(\\d+)')\n",
420
+ "# convert it to float and if there are dashes turn it into NaN\n",
421
+ "movies['metascore'] = pd.to_numeric(movies['metascore'], errors='coerce')\n",
422
+ "movies2=movies.dropna(inplace=True)\n",
423
+ "movies2"
424
+ ]
425
+ },
426
+ {
427
+ "cell_type": "code",
428
+ "execution_count": 29,
429
+ "id": "0ad0bafa",
430
+ "metadata": {},
431
+ "outputs": [
432
+ {
433
+ "ename": "TypeError",
434
+ "evalue": "'NoneType' object is not subscriptable",
435
+ "output_type": "error",
436
+ "traceback": [
437
+ "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
438
+ "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)",
439
+ "Cell \u001b[1;32mIn [29], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m movies2[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124myear\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m movies2[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124myear\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mstr\u001b[38;5;241m.\u001b[39mextract(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m(\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124md+)\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;241m.\u001b[39mastype(\u001b[38;5;28mint\u001b[39m)\n\u001b[0;32m 2\u001b[0m movies2[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtime_minute\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m movies2[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtime_minute\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mstr\u001b[38;5;241m.\u001b[39mextract(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m(\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124md+)\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;241m.\u001b[39mastype(\u001b[38;5;28mint\u001b[39m)\n",
440
+ "\u001b[1;31mTypeError\u001b[0m: 'NoneType' object is not subscriptable"
441
+ ]
442
+ }
443
+ ],
444
+ "source": [
445
+ "movies2['year'] = movies2['year'].str.extract('(\\d+)').astype(int)\n",
446
+ "movies2['time_minute'] = movies2['time_minute'].str.extract('(\\d+)').astype(int)"
447
+ ]
448
+ },
449
+ {
450
+ "cell_type": "code",
451
+ "execution_count": 30,
452
+ "id": "ea6db0c2",
453
+ "metadata": {},
454
+ "outputs": [
455
+ {
456
+ "ename": "AttributeError",
457
+ "evalue": "'NoneType' object has no attribute 'dtypes'",
458
+ "output_type": "error",
459
+ "traceback": [
460
+ "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
461
+ "\u001b[1;31mAttributeError\u001b[0m Traceback (most recent call last)",
462
+ "Cell \u001b[1;32mIn [30], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m movies2\u001b[38;5;241m.\u001b[39mdtypes\n",
463
+ "\u001b[1;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'dtypes'"
464
+ ]
465
+ }
466
+ ],
467
+ "source": [
468
+ "movies2.dtypes"
469
+ ]
470
+ },
471
+ {
472
+ "cell_type": "code",
473
+ "execution_count": 32,
474
+ "id": "d8585ecb",
475
+ "metadata": {},
476
+ "outputs": [],
477
+ "source": [
478
+ "movies.to_csv('movies2.csv')"
479
+ ]
480
+ },
481
+ {
482
+ "cell_type": "code",
483
+ "execution_count": null,
484
+ "id": "3a62df0a",
485
+ "metadata": {},
486
+ "outputs": [],
487
+ "source": []
488
+ }
489
+ ],
490
+ "metadata": {
491
+ "kernelspec": {
492
+ "display_name": "Python 3 (ipykernel)",
493
+ "language": "python",
494
+ "name": "python3"
495
+ },
496
+ "language_info": {
497
+ "codemirror_mode": {
498
+ "name": "ipython",
499
+ "version": 3
500
+ },
501
+ "file_extension": ".py",
502
+ "mimetype": "text/x-python",
503
+ "name": "python",
504
+ "nbconvert_exporter": "python",
505
+ "pygments_lexer": "ipython3",
506
+ "version": "3.10.4"
507
+ }
508
+ },
509
+ "nbformat": 4,
510
+ "nbformat_minor": 5
511
+ }
moviedb.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import imdb
2
+ import csv
3
+ import pandas as pd
4
+
5
+ ia = imdb.IMDb()
6
+ dict1={}
7
+
8
+ pd_dict={'Action': [], 'Adventure': [], 'Fantasy': [], 'Sci-Fi': [],
9
+ 'Animation': [], 'Comedy': [], 'Family': [], 'Mystery': [],
10
+ 'Romance': [],'Drama': [],'Crime': [], 'Thriller': [],
11
+ 'War': [], 'Musical': [], 'Biography': []}
12
+
13
+ with open("movies.csv", 'r') as file:
14
+ csvreader = csv.reader(file)
15
+ j=0
16
+ for row in csvreader:
17
+ if j==250:
18
+ break
19
+ if j==0:
20
+ j=1
21
+ continue
22
+ name=row[1]
23
+ items = ia.search_movie(name)
24
+ j+=1
25
+ print(j)
26
+ for i in pd_dict:
27
+ pd_dict[i].append(0)
28
+ code = items[0].getID()
29
+ series = ia.get_movie(code)
30
+ genre = series.data['genres']
31
+ for i in genre:
32
+ if i in pd_dict:
33
+ pd_dict[i][-1]=1
34
+
35
+
36
+ print(pd_dict)
37
+ df=pd.DataFrame(pd_dict)
38
+ df.to_csv("movies3.csv")
movies.csv ADDED
@@ -0,0 +1,1301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,movie,year,time_minute,imdb_rating,metascore
2
+ 0,Avatar: The Way of Water,(2022),192 min,7.8,67
3
+ 1,Puss in Boots: The Last Wish,(2022),102 min,7.9,75
4
+ 2,The Banshees of Inisherin,(2022),114 min,7.8,87
5
+ 3,Everything Everywhere All at Once,(2022),139 min,8.0,81
6
+ 4,The Fabelmans,(2022),151 min,7.7,84
7
+ 5,Knives Out,(2019),130 min,7.9,82
8
+ 6,Avatar,(2009),162 min,7.9,83
9
+ 7,Top Gun: Maverick,(2022),130 min,8.3,78
10
+ 8,Aftersun,(II) (2022),102 min,7.8,95
11
+ 9,All Quiet on the Western Front,(2022),148 min,7.8,76
12
+ 10,Guillermo del Toro's Pinocchio,(2022),117 min,7.7,79
13
+ 11,RRR,(2022),187 min,7.9,83
14
+ 12,The Godfather,(1972),175 min,9.2,100
15
+ 13,The Batman,(2022),176 min,7.8,72
16
+ 14,Once Upon a Time in Hollywood,(2019),161 min,7.6,83
17
+ 15,The Shawshank Redemption,(1994),142 min,9.3,81
18
+ 16,Interstellar,(2014),169 min,8.6,74
19
+ 17,Harry Potter and the Sorcerer's Stone,(2001),152 min,7.6,65
20
+ 18,Titanic,(1997),194 min,7.9,75
21
+ 19,Pulp Fiction,(1994),154 min,8.9,94
22
+ 20,Dune,(2021),155 min,8.0,74
23
+ 21,The Goonies,(1985),114 min,7.7,62
24
+ 22,Spider-Man: No Way Home,(2021),148 min,8.2,71
25
+ 23,The Wolf of Wall Street,(2013),180 min,8.2,75
26
+ 24,American Psycho,(2000),102 min,7.6,64
27
+ 25,The Dark Knight,(2008),152 min,9.0,84
28
+ 26,Inception,(2010),148 min,8.8,74
29
+ 27,Fight Club,(1999),139 min,8.8,66
30
+ 28,Whiplash,(2014),106 min,8.5,89
31
+ 29,The Gentlemen,(2019),113 min,7.8,51
32
+ 30,The Blues Brothers,(1980),133 min,7.9,60
33
+ 31,Good Will Hunting,(1997),126 min,8.3,70
34
+ 32,Heat,(1995),170 min,8.3,76
35
+ 33,Avengers: Endgame,(2019),181 min,8.4,78
36
+ 34,The Lord of the Rings: The Fellowship of the Ring,(2001),178 min,8.8,92
37
+ 35,Parasite,(2019),132 min,8.5,96
38
+ 36,Blade Runner 2049,(2017),164 min,8.0,81
39
+ 37,Prisoners,(2013),153 min,8.1,70
40
+ 38,In Bruges,(2008),107 min,7.9,67
41
+ 39,Jurassic Park,(1993),127 min,8.2,68
42
+ 40,A Man Called Ove,(2015),116 min,7.7,70
43
+ 41,Road to Perdition,(2002),117 min,7.7,72
44
+ 42,Schindler's List,(1993),195 min,9.0,94
45
+ 43,Goodfellas,(1990),145 min,8.7,91
46
+ 44,Forrest Gump,(1994),142 min,8.8,82
47
+ 45,Joker,(I) (2019),122 min,8.4,59
48
+ 46,Inglourious Basterds,(2009),153 min,8.3,69
49
+ 47,Black Swan,(2010),108 min,8.0,79
50
+ 48,The Prestige,(2006),130 min,8.5,66
51
+ 49,Get Out,(I) (2017),104 min,7.7,85
52
+ 50,Indiana Jones and the Raiders of the Lost Ark,(1981),115 min,8.4,85
53
+ 51,The Departed,(2006),151 min,8.5,85
54
+ 52,Drive,(I) (2011),100 min,7.8,78
55
+ 53,Green Book,(2018),130 min,8.2,69
56
+ 54,Tombstone,(1993),130 min,7.8,50
57
+ 55,Léon: The Professional,(1994),110 min,8.5,64
58
+ 56,The Godfather: Part II,(1974),202 min,9.0,90
59
+ 57,Sicario,(2015),121 min,7.6,82
60
+ 58,Django Unchained,(2012),165 min,8.4,81
61
+ 59,Requiem for a Dream,(2000),102 min,8.3,71
62
+ 60,Gladiator,(2000),155 min,8.5,67
63
+ 61,Apocalypse Now,(1979),147 min,8.5,94
64
+ 62,Sing Street,(2016),106 min,7.9,79
65
+ 63,The Grand Budapest Hotel,(2014),99 min,8.1,88
66
+ 64,Gone Girl,(2014),149 min,8.1,79
67
+ 65,The Breakfast Club,(1985),97 min,7.8,66
68
+ 66,La La Land,(2016),128 min,8.0,94
69
+ 67,12 Angry Men,(1957),96 min,9.0,96
70
+ 68,Pride & Prejudice,(2005),129 min,7.8,82
71
+ 69,Se7en,(1995),127 min,8.6,65
72
+ 70,American Beauty,(1999),122 min,8.4,84
73
+ 71,Hidden Figures,(2016),127 min,7.8,74
74
+ 72,Shutter Island,(2010),138 min,8.2,63
75
+ 73,Life Is Beautiful,(1997),116 min,8.6,59
76
+ 74,Rogue One: A Star Wars Story,(2016),133 min,7.8,65
77
+ 75,The Green Mile,(1999),189 min,8.6,61
78
+ 76,The Lord of the Rings: The Return of the King,(2003),201 min,9.0,94
79
+ 77,The Silence of the Lambs,(1991),118 min,8.6,85
80
+ 78,The Matrix,(1999),136 min,8.7,73
81
+ 79,Mad Max: Fury Road,(2015),120 min,8.1,90
82
+ 80,Alien,(1979),117 min,8.5,89
83
+ 81,Harry Potter and the Goblet of Fire,(2005),157 min,7.7,81
84
+ 82,Back to the Future,(1985),116 min,8.5,87
85
+ 83,Rocky,(1976),120 min,8.1,70
86
+ 84,No Country for Old Men,(2007),122 min,8.2,92
87
+ 85,Mission: Impossible - Fallout,(2018),147 min,7.7,86
88
+ 86,Bohemian Rhapsody,(2018),134 min,7.9,49
89
+ 87,Reservoir Dogs,(1992),99 min,8.3,79
90
+ 88,Hacksaw Ridge,(2016),139 min,8.1,71
91
+ 89,Her,(2013),126 min,8.0,91
92
+ 90,"Three Billboards Outside Ebbing, Missouri",(2017),115 min,8.1,88
93
+ 91,Eternal Sunshine of the Spotless Mind,(2004),108 min,8.3,89
94
+ 92,Little Women,(2019),135 min,7.8,91
95
+ 93,Taxi Driver,(1976),114 min,8.2,94
96
+ 94,CODA,(2021),111 min,8.0,72
97
+ 95,The Worst Person in the World,(2021),128 min,7.8,90
98
+ 96,Star Wars: Episode IV - A New Hope,(1977),121 min,8.6,90
99
+ 97,"The Good, the Bad and the Ugly",(1966),178 min,8.8,90
100
+ 98,Harry Potter and the Deathly Hallows: Part 2,(2011),130 min,8.1,85
101
+ 99,1917,(2019),119 min,8.2,78
102
+ 100,Guardians of the Galaxy,(2014),121 min,8.0,76
103
+ 101,The Dark Knight Rises,(2012),164 min,8.4,78
104
+ 102,The Sting,(1973),129 min,8.3,83
105
+ 103,The Father,(I) (2020),97 min,8.2,88
106
+ 104,The Usual Suspects,(1995),106 min,8.5,77
107
+ 105,Memento,(2000),113 min,8.4,81
108
+ 106,The Princess Bride,(1987),98 min,8.0,77
109
+ 107,Aliens,(1986),137 min,8.4,84
110
+ 108,Wind River,(2017),107 min,7.7,73
111
+ 109,American History X,(1998),119 min,8.5,62
112
+ 110,Pirates of the Caribbean: The Curse of the Black Pearl,(2003),143 min,8.1,63
113
+ 111,Thirteen Lives,(2022),147 min,7.8,66
114
+ 112,Avengers: Infinity War,(2018),149 min,8.4,68
115
+ 113,Scarface,(1983),170 min,8.3,65
116
+ 114,Blade Runner,(1982),117 min,8.1,84
117
+ 115,The Fifth Element,(1997),126 min,7.6,52
118
+ 116,Harry Potter and the Deathly Hallows: Part 1,(2010),146 min,7.7,65
119
+ 117,Ex Machina,(2014),108 min,7.7,78
120
+ 118,Kingsman: The Secret Service,(2014),129 min,7.7,60
121
+ 119,About Time,(I) (2013),123 min,7.8,55
122
+ 120,The Hateful Eight,(2015),168 min,7.8,68
123
+ 121,Oldboy,(2003),101 min,8.4,77
124
+ 122,Saving Private Ryan,(1998),169 min,8.6,91
125
+ 123,The Shining,(1980),146 min,8.4,66
126
+ 124,A Clockwork Orange,(1971),136 min,8.3,77
127
+ 125,Donnie Darko,(2001),113 min,8.0,88
128
+ 126,Harry Potter and the Prisoner of Azkaban,(2004),142 min,7.9,82
129
+ 127,Spider-Man: Into the Spider-Verse,(2018),117 min,8.4,87
130
+ 128,Terminator 2: Judgment Day,(1991),137 min,8.6,75
131
+ 129,Brokeback Mountain,(2005),134 min,7.7,87
132
+ 130,Logan,(2017),137 min,8.1,77
133
+ 131,The Hobbit: An Unexpected Journey,(2012),169 min,7.8,58
134
+ 132,Ford v Ferrari,(2019),152 min,8.1,81
135
+ 133,Mulholland Drive,(2001),147 min,7.9,86
136
+ 134,Kantara,(2022),148 min,8.4,-
137
+ 135,Indiana Jones and the Last Crusade,(1989),127 min,8.2,65
138
+ 136,Zodiac,(2007),157 min,7.7,79
139
+ 137,Call Me by Your Name,(2017),132 min,7.8,94
140
+ 138,Snatch,(2000),102 min,8.2,55
141
+ 139,Batman Begins,(2005),140 min,8.2,70
142
+ 140,The Handmaiden,(2016),145 min,8.1,84
143
+ 141,Zack Snyder's Justice League,(2021),242 min,8.0,54
144
+ 142,Shrek,(2001),90 min,7.9,84
145
+ 143,Superbad,(2007),113 min,7.6,76
146
+ 144,Searching,(III) (2018),102 min,7.6,71
147
+ 145,The Big Short,(2015),130 min,7.8,81
148
+ 146,The Irishman,(2019),209 min,7.8,94
149
+ 147,Stand by Me,(1986),89 min,8.1,75
150
+ 148,Dunkirk,(2017),106 min,7.8,94
151
+ 149,The Hangover,(2009),100 min,7.7,73
152
+ 150,Spirited Away,(2001),125 min,8.6,96
153
+ 151,The Big Lebowski,(1998),117 min,8.1,71
154
+ 152,The Truman Show,(1998),103 min,8.2,90
155
+ 153,Star Wars: Episode VII - The Force Awakens,(2015),138 min,7.8,80
156
+ 154,Arrival,(II) (2016),116 min,7.9,81
157
+ 155,Amadeus,(1984),160 min,8.4,88
158
+ 156,The Lord of the Rings: The Two Towers,(2002),179 min,8.8,87
159
+ 157,The Lion King,(1994),88 min,8.5,88
160
+ 158,The Terminator,(1984),107 min,8.1,84
161
+ 159,Catch Me If You Can,(2002),141 min,8.1,75
162
+ 160,Sin City,(2005),124 min,8.0,74
163
+ 161,Primal Fear,(1996),129 min,7.7,47
164
+ 162,The Notebook,(2004),123 min,7.8,53
165
+ 163,The Sixth Sense,(1999),107 min,8.2,64
166
+ 164,Home Alone,(1990),103 min,7.7,63
167
+ 165,One Flew Over the Cuckoo's Nest,(1975),133 min,8.7,84
168
+ 166,The Sound of Music,(1965),172 min,8.1,63
169
+ 167,The Revenant,(2015),156 min,8.0,76
170
+ 168,Die Hard,(1988),132 min,8.2,72
171
+ 169,Braveheart,(1995),178 min,8.4,68
172
+ 170,The Hunt,(2012),115 min,8.3,77
173
+ 171,Trainspotting,(1996),93 min,8.1,83
174
+ 172,Ratatouille,(2007),111 min,8.1,96
175
+ 173,Ocean's Eleven,(2001),116 min,7.7,74
176
+ 174,Kill Bill: Vol. 1,(2003),111 min,8.2,69
177
+ 175,2001: A Space Odyssey,(1968),149 min,8.3,84
178
+ 176,City of God,(2002),130 min,8.6,79
179
+ 177,This Is Spinal Tap,(1984),82 min,7.9,92
180
+ 178,Airplane!,(1980),88 min,7.7,78
181
+ 179,True Romance,(1993),119 min,7.9,59
182
+ 180,Ghostbusters,(1984),105 min,7.8,71
183
+ 181,There Will Be Blood,(2007),158 min,8.2,93
184
+ 182,Minority Report,(2002),145 min,7.6,80
185
+ 183,Remember the Titans,(2000),113 min,7.8,48
186
+ 184,Deadpool,(2016),108 min,8.0,65
187
+ 185,300,(2006),117 min,7.6,52
188
+ 186,Kick-Ass,(2010),117 min,7.6,66
189
+ 187,The Avengers,(2012),143 min,8.0,69
190
+ 188,Casino Royale,(2006),144 min,8.0,80
191
+ 189,The Perks of Being a Wallflower,(2012),103 min,7.9,67
192
+ 190,Jojo Rabbit,(2019),108 min,7.9,58
193
+ 191,Full Metal Jacket,(1987),116 min,8.3,76
194
+ 192,Watchmen,(2009),162 min,7.6,56
195
+ 193,Come and See,(1985),142 min,8.4,-
196
+ 194,The Pianist,(2002),150 min,8.5,85
197
+ 195,JFK,(1991),189 min,8.0,72
198
+ 196,Office Space,(1999),89 min,7.6,68
199
+ 197,Almost Famous,(2000),122 min,7.9,90
200
+ 198,The Thing,(1982),109 min,8.2,57
201
+ 199,Hamilton,(2020),160 min,8.4,89
202
+ 200,Boogie Nights,(1997),155 min,7.9,85
203
+ 201,Nightcrawler,(2014),117 min,7.8,76
204
+ 202,The Intouchables,(2011),112 min,8.5,57
205
+ 203,Finding Nemo,(2003),100 min,8.2,90
206
+ 204,Once Upon a Time in America,(1984),229 min,8.3,75
207
+ 205,The Social Network,(2010),120 min,7.8,95
208
+ 206,The Martian,(2015),144 min,8.0,80
209
+ 207,Coco,(I) (2017),105 min,8.4,81
210
+ 208,Jaws,(1975),124 min,8.1,87
211
+ 209,Iron Man,(2008),126 min,7.9,79
212
+ 210,The Help,(2011),146 min,8.1,62
213
+ 211,Zootopia,(2016),108 min,8.0,78
214
+ 212,Moana,(I) (2016),107 min,7.6,81
215
+ 213,Fargo,(1996),98 min,8.1,85
216
+ 214,The Imitation Game,(2014),114 min,8.0,71
217
+ 215,The Blind Side,(2009),129 min,7.6,53
218
+ 216,Black Hawk Down,(2001),144 min,7.7,74
219
+ 217,Once Upon a Time in the West,(1968),165 min,8.5,80
220
+ 218,Dead Poets Society,(1989),128 min,8.1,79
221
+ 219,The Exorcist,(1973),122 min,8.1,81
222
+ 220,Hell or High Water,(II) (2016),102 min,7.6,88
223
+ 221,The Girl with the Dragon Tattoo,(2011),158 min,7.8,71
224
+ 222,Blue Is the Warmest Colour,(2013),180 min,7.7,90
225
+ 223,Edward Scissorhands,(1990),105 min,7.9,74
226
+ 224,Kung Fu Panda,(2008),92 min,7.6,74
227
+ 225,Casino,(1995),178 min,8.2,73
228
+ 226,Inside Out,(I) (2015),95 min,8.2,94
229
+ 227,Dances with Wolves,(1990),181 min,8.0,72
230
+ 228,Toy Story,(1995),81 min,8.3,96
231
+ 229,Little Miss Sunshine,(2006),101 min,7.8,80
232
+ 230,Chinatown,(1974),130 min,8.2,92
233
+ 231,Apocalypto,(2006),139 min,7.8,68
234
+ 232,Edge of Tomorrow,(2014),113 min,7.9,71
235
+ 233,Skyfall,(2012),143 min,7.8,81
236
+ 234,Deadpool 2,(2018),119 min,7.7,66
237
+ 235,Howl's Moving Castle,(2004),119 min,8.2,80
238
+ 236,Ferris Bueller's Day Off,(1986),103 min,7.8,61
239
+ 237,Star Trek,(2009),127 min,7.9,82
240
+ 238,Atonement,(2007),123 min,7.8,85
241
+ 239,Thor: Ragnarok,(2017),130 min,7.9,74
242
+ 240,E.T. the Extra-Terrestrial,(1982),115 min,7.9,91
243
+ 241,Lion,(2016),118 min,8.0,69
244
+ 242,Spotlight,(I) (2015),129 min,8.1,93
245
+ 243,Casablanca,(1942),102 min,8.5,100
246
+ 244,Manchester by the Sea,(2016),137 min,7.8,96
247
+ 245,Pan's Labyrinth,(2006),118 min,8.2,98
248
+ 246,Guardians of the Galaxy Vol. 2,(2017),136 min,7.6,67
249
+ 247,The Wizard of Oz,(1939),102 min,8.1,92
250
+ 248,Psycho,(1960),109 min,8.5,97
251
+ 249,Before Sunrise,(1995),101 min,8.1,77
252
+ 250,What's Eating Gilbert Grape,(1993),118 min,7.7,73
253
+ 251,The Game,(1997),129 min,7.7,63
254
+ 252,Blue Velvet,(1986),120 min,7.7,76
255
+ 253,Your Name.,(2016),106 min,8.4,79
256
+ 254,In the Heat of the Night,(1967),110 min,7.9,76
257
+ 255,Star Wars: Episode V - The Empire Strikes Back,(1980),124 min,8.7,82
258
+ 256,The Deer Hunter,(1978),183 min,8.1,86
259
+ 257,Another Round,(2020),117 min,7.7,79
260
+ 258,"Lock, Stock and Two Smoking Barrels",(1998),107 min,8.2,66
261
+ 259,500 Days of Summer,(2009),95 min,7.7,76
262
+ 260,Star Wars: Episode VI - Return of the Jedi,(1983),131 min,8.3,58
263
+ 261,The Hobbit: The Desolation of Smaug,(2013),161 min,7.8,66
264
+ 262,Into the Wild,(2007),148 min,8.1,73
265
+ 263,Room,(I) (2015),118 min,8.1,86
266
+ 264,The Incredibles,(2004),115 min,8.0,90
267
+ 265,My Cousin Vinny,(1992),120 min,7.6,68
268
+ 266,Memories of Murder,(2003),132 min,8.1,82
269
+ 267,A Beautiful Mind,(2001),135 min,8.2,72
270
+ 268,Groundhog Day,(1993),101 min,8.1,72
271
+ 269,A Star Is Born,(2018),136 min,7.6,88
272
+ 270,It's a Wonderful Life,(1946),130 min,8.6,89
273
+ 271,12 Years a Slave,(2013),134 min,8.1,96
274
+ 272,Predator,(1987),107 min,7.8,47
275
+ 273,The Curious Case of Benjamin Button,(2008),166 min,7.8,70
276
+ 274,Birdman or (The Unexpected Virtue of Ignorance),(2014),119 min,7.7,87
277
+ 275,When Harry Met Sally...,(1989),95 min,7.7,76
278
+ 276,Warrior,(2011),140 min,8.2,71
279
+ 277,Stardust,(2007),127 min,7.6,66
280
+ 278,3 Idiots,(2009),170 min,8.4,67
281
+ 279,True Grit,(2010),110 min,7.6,80
282
+ 280,Moneyball,(2011),133 min,7.6,87
283
+ 281,Saw,(2004),103 min,7.6,46
284
+ 282,RoboCop,(1987),102 min,7.6,70
285
+ 283,"O Brother, Where Art Thou?",(2000),107 min,7.7,69
286
+ 284,Beauty and the Beast,(1991),84 min,8.0,95
287
+ 285,The Fugitive,(1993),130 min,7.8,87
288
+ 286,Gone with the Wind,(1939),238 min,8.2,97
289
+ 287,A Few Good Men,(1992),138 min,7.7,62
290
+ 288,Marriage Story,(2019),137 min,7.9,94
291
+ 289,Crash,(I) (2004),112 min,7.8,66
292
+ 290,The Last Samurai,(2003),154 min,7.8,55
293
+ 291,Portrait of a Lady on Fire,(2019),122 min,8.1,95
294
+ 292,The Untouchables,(1987),119 min,7.8,79
295
+ 293,Amélie,(2001),122 min,8.3,69
296
+ 294,Lost in Translation,(2003),102 min,7.7,91
297
+ 295,Blazing Saddles,(1974),93 min,7.7,73
298
+ 296,Incendies,(2010),131 min,8.3,80
299
+ 297,Inside Man,(2006),129 min,7.6,76
300
+ 298,WALL·E,(2008),98 min,8.4,95
301
+ 299,The Invisible Man,(1933),71 min,7.6,87
302
+ 300,Avatar: The Way of Water,(2022),192 min,7.8,67
303
+ 301,Puss in Boots: The Last Wish,(2022),102 min,7.9,75
304
+ 302,The Banshees of Inisherin,(2022),114 min,7.8,87
305
+ 303,Everything Everywhere All at Once,(2022),139 min,8.0,81
306
+ 304,The Fabelmans,(2022),151 min,7.7,84
307
+ 305,Knives Out,(2019),130 min,7.9,82
308
+ 306,Avatar,(2009),162 min,7.9,83
309
+ 307,Top Gun: Maverick,(2022),130 min,8.3,78
310
+ 308,Aftersun,(II) (2022),102 min,7.8,95
311
+ 309,All Quiet on the Western Front,(2022),148 min,7.8,76
312
+ 310,Guillermo del Toro's Pinocchio,(2022),117 min,7.7,79
313
+ 311,RRR,(2022),187 min,7.9,83
314
+ 312,The Godfather,(1972),175 min,9.2,100
315
+ 313,The Batman,(2022),176 min,7.8,72
316
+ 314,Once Upon a Time in Hollywood,(2019),161 min,7.6,83
317
+ 315,The Shawshank Redemption,(1994),142 min,9.3,81
318
+ 316,Interstellar,(2014),169 min,8.6,74
319
+ 317,Harry Potter and the Sorcerer's Stone,(2001),152 min,7.6,65
320
+ 318,Titanic,(1997),194 min,7.9,75
321
+ 319,Pulp Fiction,(1994),154 min,8.9,94
322
+ 320,Dune,(2021),155 min,8.0,74
323
+ 321,The Goonies,(1985),114 min,7.7,62
324
+ 322,Spider-Man: No Way Home,(2021),148 min,8.2,71
325
+ 323,The Wolf of Wall Street,(2013),180 min,8.2,75
326
+ 324,American Psycho,(2000),102 min,7.6,64
327
+ 325,The Dark Knight,(2008),152 min,9.0,84
328
+ 326,Inception,(2010),148 min,8.8,74
329
+ 327,Fight Club,(1999),139 min,8.8,66
330
+ 328,Whiplash,(2014),106 min,8.5,89
331
+ 329,The Gentlemen,(2019),113 min,7.8,51
332
+ 330,The Blues Brothers,(1980),133 min,7.9,60
333
+ 331,Good Will Hunting,(1997),126 min,8.3,70
334
+ 332,Heat,(1995),170 min,8.3,76
335
+ 333,Avengers: Endgame,(2019),181 min,8.4,78
336
+ 334,The Lord of the Rings: The Fellowship of the Ring,(2001),178 min,8.8,92
337
+ 335,Parasite,(2019),132 min,8.5,96
338
+ 336,Blade Runner 2049,(2017),164 min,8.0,81
339
+ 337,Prisoners,(2013),153 min,8.1,70
340
+ 338,In Bruges,(2008),107 min,7.9,67
341
+ 339,Jurassic Park,(1993),127 min,8.2,68
342
+ 340,A Man Called Ove,(2015),116 min,7.7,70
343
+ 341,Road to Perdition,(2002),117 min,7.7,72
344
+ 342,Schindler's List,(1993),195 min,9.0,94
345
+ 343,Goodfellas,(1990),145 min,8.7,91
346
+ 344,Forrest Gump,(1994),142 min,8.8,82
347
+ 345,Joker,(I) (2019),122 min,8.4,59
348
+ 346,Inglourious Basterds,(2009),153 min,8.3,69
349
+ 347,Black Swan,(2010),108 min,8.0,79
350
+ 348,The Prestige,(2006),130 min,8.5,66
351
+ 349,Get Out,(I) (2017),104 min,7.7,85
352
+ 350,Indiana Jones and the Raiders of the Lost Ark,(1981),115 min,8.4,85
353
+ 351,The Departed,(2006),151 min,8.5,85
354
+ 352,Drive,(I) (2011),100 min,7.8,78
355
+ 353,Green Book,(2018),130 min,8.2,69
356
+ 354,Tombstone,(1993),130 min,7.8,50
357
+ 355,Léon: The Professional,(1994),110 min,8.5,64
358
+ 356,The Godfather: Part II,(1974),202 min,9.0,90
359
+ 357,Sicario,(2015),121 min,7.6,82
360
+ 358,Django Unchained,(2012),165 min,8.4,81
361
+ 359,Requiem for a Dream,(2000),102 min,8.3,71
362
+ 360,Gladiator,(2000),155 min,8.5,67
363
+ 361,Apocalypse Now,(1979),147 min,8.5,94
364
+ 362,Sing Street,(2016),106 min,7.9,79
365
+ 363,The Grand Budapest Hotel,(2014),99 min,8.1,88
366
+ 364,Gone Girl,(2014),149 min,8.1,79
367
+ 365,The Breakfast Club,(1985),97 min,7.8,66
368
+ 366,La La Land,(2016),128 min,8.0,94
369
+ 367,12 Angry Men,(1957),96 min,9.0,96
370
+ 368,Pride & Prejudice,(2005),129 min,7.8,82
371
+ 369,Se7en,(1995),127 min,8.6,65
372
+ 370,American Beauty,(1999),122 min,8.4,84
373
+ 371,Hidden Figures,(2016),127 min,7.8,74
374
+ 372,Shutter Island,(2010),138 min,8.2,63
375
+ 373,Life Is Beautiful,(1997),116 min,8.6,59
376
+ 374,Rogue One: A Star Wars Story,(2016),133 min,7.8,65
377
+ 375,The Green Mile,(1999),189 min,8.6,61
378
+ 376,The Lord of the Rings: The Return of the King,(2003),201 min,9.0,94
379
+ 377,The Silence of the Lambs,(1991),118 min,8.6,85
380
+ 378,The Matrix,(1999),136 min,8.7,73
381
+ 379,Mad Max: Fury Road,(2015),120 min,8.1,90
382
+ 380,Alien,(1979),117 min,8.5,89
383
+ 381,Harry Potter and the Goblet of Fire,(2005),157 min,7.7,81
384
+ 382,Back to the Future,(1985),116 min,8.5,87
385
+ 383,Rocky,(1976),120 min,8.1,70
386
+ 384,No Country for Old Men,(2007),122 min,8.2,92
387
+ 385,Mission: Impossible - Fallout,(2018),147 min,7.7,86
388
+ 386,Bohemian Rhapsody,(2018),134 min,7.9,49
389
+ 387,Reservoir Dogs,(1992),99 min,8.3,79
390
+ 388,Hacksaw Ridge,(2016),139 min,8.1,71
391
+ 389,Her,(2013),126 min,8.0,91
392
+ 390,"Three Billboards Outside Ebbing, Missouri",(2017),115 min,8.1,88
393
+ 391,Eternal Sunshine of the Spotless Mind,(2004),108 min,8.3,89
394
+ 392,Little Women,(2019),135 min,7.8,91
395
+ 393,Taxi Driver,(1976),114 min,8.2,94
396
+ 394,CODA,(2021),111 min,8.0,72
397
+ 395,The Worst Person in the World,(2021),128 min,7.8,90
398
+ 396,Star Wars: Episode IV - A New Hope,(1977),121 min,8.6,90
399
+ 397,"The Good, the Bad and the Ugly",(1966),178 min,8.8,90
400
+ 398,Harry Potter and the Deathly Hallows: Part 2,(2011),130 min,8.1,85
401
+ 399,1917,(2019),119 min,8.2,78
402
+ 400,Guardians of the Galaxy,(2014),121 min,8.0,76
403
+ 401,The Dark Knight Rises,(2012),164 min,8.4,78
404
+ 402,The Sting,(1973),129 min,8.3,83
405
+ 403,The Father,(I) (2020),97 min,8.2,88
406
+ 404,The Usual Suspects,(1995),106 min,8.5,77
407
+ 405,Memento,(2000),113 min,8.4,81
408
+ 406,The Princess Bride,(1987),98 min,8.0,77
409
+ 407,Aliens,(1986),137 min,8.4,84
410
+ 408,Wind River,(2017),107 min,7.7,73
411
+ 409,American History X,(1998),119 min,8.5,62
412
+ 410,Pirates of the Caribbean: The Curse of the Black Pearl,(2003),143 min,8.1,63
413
+ 411,Thirteen Lives,(2022),147 min,7.8,66
414
+ 412,Avengers: Infinity War,(2018),149 min,8.4,68
415
+ 413,Scarface,(1983),170 min,8.3,65
416
+ 414,Blade Runner,(1982),117 min,8.1,84
417
+ 415,The Fifth Element,(1997),126 min,7.6,52
418
+ 416,Harry Potter and the Deathly Hallows: Part 1,(2010),146 min,7.7,65
419
+ 417,Ex Machina,(2014),108 min,7.7,78
420
+ 418,Kingsman: The Secret Service,(2014),129 min,7.7,60
421
+ 419,About Time,(I) (2013),123 min,7.8,55
422
+ 420,The Hateful Eight,(2015),168 min,7.8,68
423
+ 421,Oldboy,(2003),101 min,8.4,77
424
+ 422,Saving Private Ryan,(1998),169 min,8.6,91
425
+ 423,The Shining,(1980),146 min,8.4,66
426
+ 424,A Clockwork Orange,(1971),136 min,8.3,77
427
+ 425,Donnie Darko,(2001),113 min,8.0,88
428
+ 426,Harry Potter and the Prisoner of Azkaban,(2004),142 min,7.9,82
429
+ 427,Spider-Man: Into the Spider-Verse,(2018),117 min,8.4,87
430
+ 428,Terminator 2: Judgment Day,(1991),137 min,8.6,75
431
+ 429,Brokeback Mountain,(2005),134 min,7.7,87
432
+ 430,Logan,(2017),137 min,8.1,77
433
+ 431,The Hobbit: An Unexpected Journey,(2012),169 min,7.8,58
434
+ 432,Ford v Ferrari,(2019),152 min,8.1,81
435
+ 433,Mulholland Drive,(2001),147 min,7.9,86
436
+ 434,Kantara,(2022),148 min,8.4,-
437
+ 435,Indiana Jones and the Last Crusade,(1989),127 min,8.2,65
438
+ 436,Zodiac,(2007),157 min,7.7,79
439
+ 437,Call Me by Your Name,(2017),132 min,7.8,94
440
+ 438,Snatch,(2000),102 min,8.2,55
441
+ 439,Batman Begins,(2005),140 min,8.2,70
442
+ 440,The Handmaiden,(2016),145 min,8.1,84
443
+ 441,Zack Snyder's Justice League,(2021),242 min,8.0,54
444
+ 442,Shrek,(2001),90 min,7.9,84
445
+ 443,Superbad,(2007),113 min,7.6,76
446
+ 444,Searching,(III) (2018),102 min,7.6,71
447
+ 445,The Big Short,(2015),130 min,7.8,81
448
+ 446,The Irishman,(2019),209 min,7.8,94
449
+ 447,Stand by Me,(1986),89 min,8.1,75
450
+ 448,Dunkirk,(2017),106 min,7.8,94
451
+ 449,The Hangover,(2009),100 min,7.7,73
452
+ 450,Spirited Away,(2001),125 min,8.6,96
453
+ 451,The Big Lebowski,(1998),117 min,8.1,71
454
+ 452,The Truman Show,(1998),103 min,8.2,90
455
+ 453,Star Wars: Episode VII - The Force Awakens,(2015),138 min,7.8,80
456
+ 454,Arrival,(II) (2016),116 min,7.9,81
457
+ 455,Amadeus,(1984),160 min,8.4,88
458
+ 456,The Lord of the Rings: The Two Towers,(2002),179 min,8.8,87
459
+ 457,The Lion King,(1994),88 min,8.5,88
460
+ 458,The Terminator,(1984),107 min,8.1,84
461
+ 459,Catch Me If You Can,(2002),141 min,8.1,75
462
+ 460,Sin City,(2005),124 min,8.0,74
463
+ 461,Primal Fear,(1996),129 min,7.7,47
464
+ 462,The Notebook,(2004),123 min,7.8,53
465
+ 463,The Sixth Sense,(1999),107 min,8.2,64
466
+ 464,Home Alone,(1990),103 min,7.7,63
467
+ 465,One Flew Over the Cuckoo's Nest,(1975),133 min,8.7,84
468
+ 466,The Sound of Music,(1965),172 min,8.1,63
469
+ 467,The Revenant,(2015),156 min,8.0,76
470
+ 468,Die Hard,(1988),132 min,8.2,72
471
+ 469,Braveheart,(1995),178 min,8.4,68
472
+ 470,The Hunt,(2012),115 min,8.3,77
473
+ 471,Trainspotting,(1996),93 min,8.1,83
474
+ 472,Ratatouille,(2007),111 min,8.1,96
475
+ 473,Ocean's Eleven,(2001),116 min,7.7,74
476
+ 474,Kill Bill: Vol. 1,(2003),111 min,8.2,69
477
+ 475,2001: A Space Odyssey,(1968),149 min,8.3,84
478
+ 476,City of God,(2002),130 min,8.6,79
479
+ 477,This Is Spinal Tap,(1984),82 min,7.9,92
480
+ 478,Airplane!,(1980),88 min,7.7,78
481
+ 479,True Romance,(1993),119 min,7.9,59
482
+ 480,Ghostbusters,(1984),105 min,7.8,71
483
+ 481,There Will Be Blood,(2007),158 min,8.2,93
484
+ 482,Minority Report,(2002),145 min,7.6,80
485
+ 483,Remember the Titans,(2000),113 min,7.8,48
486
+ 484,Deadpool,(2016),108 min,8.0,65
487
+ 485,300,(2006),117 min,7.6,52
488
+ 486,Kick-Ass,(2010),117 min,7.6,66
489
+ 487,The Avengers,(2012),143 min,8.0,69
490
+ 488,Casino Royale,(2006),144 min,8.0,80
491
+ 489,The Perks of Being a Wallflower,(2012),103 min,7.9,67
492
+ 490,Jojo Rabbit,(2019),108 min,7.9,58
493
+ 491,Full Metal Jacket,(1987),116 min,8.3,76
494
+ 492,Watchmen,(2009),162 min,7.6,56
495
+ 493,Come and See,(1985),142 min,8.4,-
496
+ 494,The Pianist,(2002),150 min,8.5,85
497
+ 495,JFK,(1991),189 min,8.0,72
498
+ 496,Office Space,(1999),89 min,7.6,68
499
+ 497,Almost Famous,(2000),122 min,7.9,90
500
+ 498,The Thing,(1982),109 min,8.2,57
501
+ 499,Hamilton,(2020),160 min,8.4,89
502
+ 500,Boogie Nights,(1997),155 min,7.9,85
503
+ 501,Nightcrawler,(2014),117 min,7.8,76
504
+ 502,The Intouchables,(2011),112 min,8.5,57
505
+ 503,Finding Nemo,(2003),100 min,8.2,90
506
+ 504,Once Upon a Time in America,(1984),229 min,8.3,75
507
+ 505,The Social Network,(2010),120 min,7.8,95
508
+ 506,The Martian,(2015),144 min,8.0,80
509
+ 507,Coco,(I) (2017),105 min,8.4,81
510
+ 508,Jaws,(1975),124 min,8.1,87
511
+ 509,Iron Man,(2008),126 min,7.9,79
512
+ 510,The Help,(2011),146 min,8.1,62
513
+ 511,Zootopia,(2016),108 min,8.0,78
514
+ 512,Moana,(I) (2016),107 min,7.6,81
515
+ 513,Fargo,(1996),98 min,8.1,85
516
+ 514,The Imitation Game,(2014),114 min,8.0,71
517
+ 515,The Blind Side,(2009),129 min,7.6,53
518
+ 516,Black Hawk Down,(2001),144 min,7.7,74
519
+ 517,Once Upon a Time in the West,(1968),165 min,8.5,80
520
+ 518,Dead Poets Society,(1989),128 min,8.1,79
521
+ 519,The Exorcist,(1973),122 min,8.1,81
522
+ 520,Hell or High Water,(II) (2016),102 min,7.6,88
523
+ 521,The Girl with the Dragon Tattoo,(2011),158 min,7.8,71
524
+ 522,Blue Is the Warmest Colour,(2013),180 min,7.7,90
525
+ 523,Edward Scissorhands,(1990),105 min,7.9,74
526
+ 524,Kung Fu Panda,(2008),92 min,7.6,74
527
+ 525,Casino,(1995),178 min,8.2,73
528
+ 526,Inside Out,(I) (2015),95 min,8.2,94
529
+ 527,Dances with Wolves,(1990),181 min,8.0,72
530
+ 528,Toy Story,(1995),81 min,8.3,96
531
+ 529,Little Miss Sunshine,(2006),101 min,7.8,80
532
+ 530,Chinatown,(1974),130 min,8.2,92
533
+ 531,Apocalypto,(2006),139 min,7.8,68
534
+ 532,Edge of Tomorrow,(2014),113 min,7.9,71
535
+ 533,Skyfall,(2012),143 min,7.8,81
536
+ 534,Deadpool 2,(2018),119 min,7.7,66
537
+ 535,Howl's Moving Castle,(2004),119 min,8.2,80
538
+ 536,Ferris Bueller's Day Off,(1986),103 min,7.8,61
539
+ 537,Star Trek,(2009),127 min,7.9,82
540
+ 538,Atonement,(2007),123 min,7.8,85
541
+ 539,Thor: Ragnarok,(2017),130 min,7.9,74
542
+ 540,E.T. the Extra-Terrestrial,(1982),115 min,7.9,91
543
+ 541,Lion,(2016),118 min,8.0,69
544
+ 542,Spotlight,(I) (2015),129 min,8.1,93
545
+ 543,Casablanca,(1942),102 min,8.5,100
546
+ 544,Manchester by the Sea,(2016),137 min,7.8,96
547
+ 545,Pan's Labyrinth,(2006),118 min,8.2,98
548
+ 546,Guardians of the Galaxy Vol. 2,(2017),136 min,7.6,67
549
+ 547,The Wizard of Oz,(1939),102 min,8.1,92
550
+ 548,Psycho,(1960),109 min,8.5,97
551
+ 549,Before Sunrise,(1995),101 min,8.1,77
552
+ 550,What's Eating Gilbert Grape,(1993),118 min,7.7,73
553
+ 551,The Game,(1997),129 min,7.7,63
554
+ 552,Blue Velvet,(1986),120 min,7.7,76
555
+ 553,Your Name.,(2016),106 min,8.4,79
556
+ 554,In the Heat of the Night,(1967),110 min,7.9,76
557
+ 555,Star Wars: Episode V - The Empire Strikes Back,(1980),124 min,8.7,82
558
+ 556,The Deer Hunter,(1978),183 min,8.1,86
559
+ 557,Another Round,(2020),117 min,7.7,79
560
+ 558,"Lock, Stock and Two Smoking Barrels",(1998),107 min,8.2,66
561
+ 559,500 Days of Summer,(2009),95 min,7.7,76
562
+ 560,Star Wars: Episode VI - Return of the Jedi,(1983),131 min,8.3,58
563
+ 561,The Hobbit: The Desolation of Smaug,(2013),161 min,7.8,66
564
+ 562,Into the Wild,(2007),148 min,8.1,73
565
+ 563,Room,(I) (2015),118 min,8.1,86
566
+ 564,The Incredibles,(2004),115 min,8.0,90
567
+ 565,My Cousin Vinny,(1992),120 min,7.6,68
568
+ 566,Memories of Murder,(2003),132 min,8.1,82
569
+ 567,A Beautiful Mind,(2001),135 min,8.2,72
570
+ 568,Groundhog Day,(1993),101 min,8.1,72
571
+ 569,A Star Is Born,(2018),136 min,7.6,88
572
+ 570,It's a Wonderful Life,(1946),130 min,8.6,89
573
+ 571,12 Years a Slave,(2013),134 min,8.1,96
574
+ 572,Predator,(1987),107 min,7.8,47
575
+ 573,The Curious Case of Benjamin Button,(2008),166 min,7.8,70
576
+ 574,Birdman or (The Unexpected Virtue of Ignorance),(2014),119 min,7.7,87
577
+ 575,When Harry Met Sally...,(1989),95 min,7.7,76
578
+ 576,Warrior,(2011),140 min,8.2,71
579
+ 577,Stardust,(2007),127 min,7.6,66
580
+ 578,3 Idiots,(2009),170 min,8.4,67
581
+ 579,True Grit,(2010),110 min,7.6,80
582
+ 580,Moneyball,(2011),133 min,7.6,87
583
+ 581,Saw,(2004),103 min,7.6,46
584
+ 582,RoboCop,(1987),102 min,7.6,70
585
+ 583,"O Brother, Where Art Thou?",(2000),107 min,7.7,69
586
+ 584,Beauty and the Beast,(1991),84 min,8.0,95
587
+ 585,The Fugitive,(1993),130 min,7.8,87
588
+ 586,Gone with the Wind,(1939),238 min,8.2,97
589
+ 587,A Few Good Men,(1992),138 min,7.7,62
590
+ 588,Marriage Story,(2019),137 min,7.9,94
591
+ 589,Crash,(I) (2004),112 min,7.8,66
592
+ 590,The Last Samurai,(2003),154 min,7.8,55
593
+ 591,Portrait of a Lady on Fire,(2019),122 min,8.1,95
594
+ 592,The Untouchables,(1987),119 min,7.8,79
595
+ 593,Amélie,(2001),122 min,8.3,69
596
+ 594,Lost in Translation,(2003),102 min,7.7,91
597
+ 595,Blazing Saddles,(1974),93 min,7.7,73
598
+ 596,Incendies,(2010),131 min,8.3,80
599
+ 597,Inside Man,(2006),129 min,7.6,76
600
+ 598,WALL·E,(2008),98 min,8.4,95
601
+ 599,The Invisible Man,(1933),71 min,7.6,87
602
+ 600,Sound of Metal,(2019),120 min,7.7,82
603
+ 601,Tangled,(2010),100 min,7.7,71
604
+ 602,Gravity,(2013),91 min,7.7,96
605
+ 603,Platoon,(1986),120 min,8.1,92
606
+ 604,Star Wars: Episode III - Revenge of the Sith,(2005),140 min,7.6,68
607
+ 605,Cast Away,(2000),143 min,7.8,73
608
+ 606,"Monsters, Inc.",(2001),92 min,8.1,79
609
+ 607,Mr. Nobody,(2009),141 min,7.8,63
610
+ 608,Empire of the Sun,(1987),153 min,7.7,62
611
+ 609,L.A. Confidential,(1997),138 min,8.2,91
612
+ 610,Deliverance,(1972),109 min,7.7,80
613
+ 611,Clerks,(1994),92 min,7.7,70
614
+ 612,The Machinist,(2004),101 min,7.7,61
615
+ 613,Children of Men,(2006),109 min,7.9,84
616
+ 614,Taken,(I) (2008),90 min,7.8,51
617
+ 615,Training Day,(2001),122 min,7.7,69
618
+ 616,V for Vendetta,(2005),132 min,8.2,62
619
+ 617,Hachi: A Dog's Tale,(2009),93 min,8.1,-
620
+ 618,The Naked Gun: From the Files of Police Squad!,(1988),85 min,7.6,76
621
+ 619,Y tu mamá también,(2001),106 min,7.7,89
622
+ 620,The Lives of Others,(2006),137 min,8.4,89
623
+ 621,The Butterfly Effect,(2004),113 min,7.6,30
624
+ 622,Doctor Zhivago,(1965),197 min,7.9,69
625
+ 623,The Sandlot,(1993),101 min,7.8,55
626
+ 624,Up,(2009),96 min,8.3,88
627
+ 625,Captain America: Civil War,(2016),147 min,7.8,75
628
+ 626,Hot Fuzz,(2007),121 min,7.8,81
629
+ 627,How to Train Your Dragon,(2010),98 min,8.1,75
630
+ 628,Halloween,(1978),91 min,7.7,87
631
+ 629,Gone Baby Gone,(2007),114 min,7.6,72
632
+ 630,The Invisible Guest,(2016),106 min,8.0,-
633
+ 631,The Last of the Mohicans,(1992),112 min,7.7,76
634
+ 632,Willy Wonka & the Chocolate Factory,(1971),100 min,7.8,67
635
+ 633,Coraline,(2009),100 min,7.7,80
636
+ 634,"Crouching Tiger, Hidden Dragon",(2000),120 min,7.9,94
637
+ 635,Soul,(2020),100 min,8.0,83
638
+ 636,What We Do in the Shadows,(2014),86 min,7.6,76
639
+ 637,The Pursuit of Happyness,(2006),117 min,8.0,64
640
+ 638,The Bourne Identity,(2002),119 min,7.9,68
641
+ 639,Donnie Brasco,(1997),127 min,7.7,76
642
+ 640,Silver Linings Playbook,(2012),122 min,7.7,81
643
+ 641,The Magnificent Seven,(1960),128 min,7.7,74
644
+ 642,X-Men: First Class,(2011),131 min,7.7,65
645
+ 643,Unforgiven,(1992),130 min,8.2,85
646
+ 644,Mystic River,(2003),138 min,7.9,84
647
+ 645,Magnolia,(1999),188 min,8.0,78
648
+ 646,Lawrence of Arabia,(1962),218 min,8.3,100
649
+ 647,Aladdin,(1992),90 min,8.0,86
650
+ 648,Grave of the Fireflies,(1988),89 min,8.5,94
651
+ 649,Wonder,(I) (2017),113 min,7.9,66
652
+ 650,Downfall,(2004),156 min,8.2,82
653
+ 651,Fantastic Mr. Fox,(2009),87 min,7.9,83
654
+ 652,12 Monkeys,(1995),129 min,8.0,74
655
+ 653,First Blood,(1982),93 min,7.7,61
656
+ 654,The Boy in the Striped Pajamas,(2008),94 min,7.7,55
657
+ 655,The Fighter,(I) (2010),116 min,7.8,79
658
+ 656,The Count of Monte Cristo,(2002),131 min,7.7,61
659
+ 657,Slumdog Millionaire,(2008),120 min,8.0,84
660
+ 658,Back to the Future Part II,(1989),108 min,7.8,57
661
+ 659,The Lego Movie,(2014),100 min,7.7,83
662
+ 660,Seven Samurai,(1954),207 min,8.6,98
663
+ 661,Captain America: The Winter Soldier,(2014),136 min,7.8,70
664
+ 662,Dallas Buyers Club,(2013),117 min,7.9,77
665
+ 663,Some Like It Hot,(1959),121 min,8.2,98
666
+ 664,Rain Man,(1988),133 min,8.0,65
667
+ 665,All Quiet on the Western Front,(1930),152 min,8.1,91
668
+ 666,The Thin Red Line,(1998),170 min,7.6,78
669
+ 667,Capernaum,(2018),126 min,8.4,75
670
+ 668,Rush,(I) (2013),123 min,8.1,74
671
+ 669,District 9,(2009),112 min,7.9,81
672
+ 670,Perfect Blue,(1997),81 min,8.0,67
673
+ 671,The Graduate,(1967),106 min,8.0,83
674
+ 672,Princess Mononoke,(1997),134 min,8.4,76
675
+ 673,Life of Pi,(2012),127 min,7.9,79
676
+ 674,The Royal Tenenbaums,(2001),110 min,7.6,76
677
+ 675,Big Fish,(2003),125 min,8.0,58
678
+ 676,Midnight in Paris,(2011),94 min,7.7,81
679
+ 677,Blood Diamond,(2006),143 min,8.0,64
680
+ 678,Sense and Sensibility,(1995),136 min,7.7,84
681
+ 679,Shaun of the Dead,(2004),99 min,7.9,76
682
+ 680,Argo,(2012),120 min,7.7,86
683
+ 681,Drishyam,(2015),163 min,8.2,-
684
+ 682,Lucky Number Slevin,(2006),110 min,7.7,53
685
+ 683,Mary Poppins,(1964),139 min,7.8,88
686
+ 684,Mulan,(1998),87 min,7.6,71
687
+ 685,X-Men: Days of Future Past,(2014),132 min,7.9,75
688
+ 686,Citizen Kane,(1941),119 min,8.3,100
689
+ 687,Gran Torino,(2008),116 min,8.1,72
690
+ 688,Isle of Dogs,(2018),101 min,7.8,82
691
+ 689,3:10 to Yuma,(2007),122 min,7.7,76
692
+ 690,Toy Story 4,(2019),100 min,7.7,84
693
+ 691,Toy Story 3,(2010),103 min,8.3,92
694
+ 692,Million Dollar Baby,(2004),132 min,8.1,86
695
+ 693,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,(1964),95 min,8.4,97
696
+ 694,Despicable Me,(2010),95 min,7.6,72
697
+ 695,Serenity,(2005),119 min,7.8,74
698
+ 696,In the Mood for Love,(2000),98 min,8.1,86
699
+ 697,The Mitchells vs the Machines,(2021),114 min,7.6,81
700
+ 698,Vertigo,(1958),128 min,8.3,100
701
+ 699,Scent of a Woman,(1992),156 min,8.0,59
702
+ 700,Raging Bull,(1980),129 min,8.2,89
703
+ 701,Captain Fantastic,(2016),118 min,7.8,72
704
+ 702,I Saw the Devil,(2010),144 min,7.8,67
705
+ 703,Monty Python and the Holy Grail,(1975),91 min,8.2,91
706
+ 704,Cinema Paradiso,(1988),155 min,8.5,80
707
+ 705,Misery,(1990),107 min,7.8,75
708
+ 706,The Fault in Our Stars,(2014),126 min,7.7,69
709
+ 707,A Bronx Tale,(1993),121 min,7.8,80
710
+ 708,North by Northwest,(1959),136 min,8.3,98
711
+ 709,American Gangster,(2007),157 min,7.8,76
712
+ 710,Rear Window,(1954),112 min,8.5,100
713
+ 711,The Fly,(1986),96 min,7.6,79
714
+ 712,The King's Speech,(2010),118 min,8.0,88
715
+ 713,As Good as It Gets,(1997),139 min,7.7,67
716
+ 714,The Holy Mountain,(1973),114 min,7.8,76
717
+ 715,Gattaca,(1997),106 min,7.8,64
718
+ 716,Kill Bill: Vol. 2,(2004),137 min,8.0,83
719
+ 717,The Secret in Their Eyes,(2009),129 min,8.2,80
720
+ 718,Apollo 13,(I) (1995),140 min,7.7,77
721
+ 719,Big Hero 6,(2014),102 min,7.8,74
722
+ 720,Stalker,(1979),162 min,8.1,-
723
+ 721,Wreck-It Ralph,(2012),101 min,7.7,72
724
+ 722,Rosemary's Baby,(1968),137 min,8.0,96
725
+ 723,Close Encounters of the Third Kind,(1977),138 min,7.6,90
726
+ 724,Who Framed Roger Rabbit,(1988),104 min,7.7,83
727
+ 725,Metropolis,(1927),153 min,8.3,98
728
+ 726,My Neighbor Totoro,(1988),86 min,8.1,86
729
+ 727,Wild Tales,(2014),122 min,8.1,77
730
+ 728,Young Frankenstein,(1974),106 min,8.0,80
731
+ 729,Paddington 2,(2017),103 min,7.8,88
732
+ 730,Star Trek II: The Wrath of Khan,(1982),113 min,7.7,68
733
+ 731,Walk the Line,(2005),136 min,7.8,72
734
+ 732,Moon,(2009),97 min,7.8,67
735
+ 733,The Boat,(1981),149 min,8.4,86
736
+ 734,The Elephant Man,(1980),124 min,8.2,78
737
+ 735,The Others,(2001),104 min,7.6,74
738
+ 736,Man on Fire,(2004),146 min,7.7,47
739
+ 737,The Wrestler,(2008),109 min,7.9,80
740
+ 738,Singin' in the Rain,(1952),103 min,8.3,99
741
+ 739,Planet of the Apes,(1968),112 min,8.0,79
742
+ 740,Eastern Promises,(2007),100 min,7.6,83
743
+ 741,The Boondock Saints,(1999),108 min,7.7,44
744
+ 742,Moonrise Kingdom,(2012),94 min,7.8,84
745
+ 743,Captain Phillips,(2013),134 min,7.8,82
746
+ 744,Before Sunset,(2004),80 min,8.1,90
747
+ 745,Barry Lyndon,(1975),185 min,8.1,89
748
+ 746,Boyz n the Hood,(1991),112 min,7.8,76
749
+ 747,Boyhood,(I) (2014),165 min,7.9,100
750
+ 748,Evil Dead II,(1987),84 min,7.7,72
751
+ 749,Glengarry Glen Ross,(1992),100 min,7.7,82
752
+ 750,Dark City,(1998),100 min,7.6,66
753
+ 751,Lethal Weapon,(1987),109 min,7.6,68
754
+ 752,Butch Cassidy and the Sundance Kid,(1969),110 min,8.0,66
755
+ 753,Baahubali: The Beginning,(2015),159 min,8.0,-
756
+ 754,The Bourne Supremacy,(2004),108 min,7.7,73
757
+ 755,To Kill a Mockingbird,(1962),129 min,8.3,88
758
+ 756,Straight Outta Compton,(2015),147 min,7.8,72
759
+ 757,The Theory of Everything,(2014),123 min,7.7,71
760
+ 758,Being John Malkovich,(1999),113 min,7.8,90
761
+ 759,Akira,(1988),124 min,8.0,67
762
+ 760,The Great Escape,(1963),172 min,8.2,86
763
+ 761,The Iron Giant,(1999),86 min,8.1,85
764
+ 762,Judgment at Nuremberg,(1961),179 min,8.3,60
765
+ 763,Dog Day Afternoon,(1975),125 min,8.0,86
766
+ 764,The Raid: Redemption,(2011),101 min,7.6,73
767
+ 765,Sita Ramam,(2022),163 min,8.6,-
768
+ 766,The Birds,(1963),119 min,7.6,90
769
+ 767,Flipped,(I) (2010),90 min,7.7,45
770
+ 768,The Skin I Live In,(2011),120 min,7.6,70
771
+ 769,Do the Right Thing,(1989),120 min,7.9,93
772
+ 770,The Nightmare Before Christmas,(1993),76 min,7.9,82
773
+ 771,Star Trek Into Darkness,(2013),132 min,7.7,72
774
+ 772,End of Watch,(2012),109 min,7.6,68
775
+ 773,Carlito's Way,(1993),144 min,7.9,66
776
+ 774,Midnight Cowboy,(1969),113 min,7.8,79
777
+ 775,The Verdict,(1982),129 min,7.7,77
778
+ 776,Fiddler on the Roof,(1971),181 min,8.0,67
779
+ 777,Dogville,(2003),178 min,8.0,59
780
+ 778,The Road Warrior,(1981),96 min,7.6,77
781
+ 779,Toy Story 2,(1999),92 min,7.9,88
782
+ 780,The Red Shoes,(1948),135 min,8.1,-
783
+ 781,La haine,(1995),98 min,8.1,-
784
+ 782,Fried Green Tomatoes,(1991),130 min,7.7,64
785
+ 783,The Trial of the Chicago 7,(2020),129 min,7.7,76
786
+ 784,The Killing Fields,(1984),141 min,7.8,76
787
+ 785,Dawn of the Planet of the Apes,(2014),130 min,7.6,79
788
+ 786,Adaptation.,(2002),115 min,7.7,83
789
+ 787,Roma,(2018),135 min,7.7,96
790
+ 788,Witness for the Prosecution,(1957),116 min,8.4,76
791
+ 789,Spartacus,(1960),197 min,7.9,87
792
+ 790,Before Midnight,(2013),109 min,7.9,94
793
+ 791,Brazil,(1985),132 min,7.9,84
794
+ 792,Happiness,(1998),134 min,7.7,81
795
+ 793,Serpico,(1973),130 min,7.7,81
796
+ 794,Shoplifters,(2018),121 min,7.9,93
797
+ 795,Let the Right One In,(2008),114 min,7.9,82
798
+ 796,The Conversation,(1974),113 min,7.8,87
799
+ 797,The Ten Commandments,(1956),220 min,7.9,-
800
+ 798,"Blood In, Blood Out",(1993),180 min,7.9,47
801
+ 799,The Day of the Jackal,(1973),143 min,7.8,80
802
+ 800,Billy Elliot,(2000),110 min,7.7,74
803
+ 801,Die Hard with a Vengeance,(1995),128 min,7.6,58
804
+ 802,Philadelphia,(1993),125 min,7.7,66
805
+ 803,Life of Brian,(1979),94 min,8.0,77
806
+ 804,Sunset Blvd.,(1950),110 min,8.4,-
807
+ 805,Awakenings,(1990),121 min,7.8,74
808
+ 806,Hunt for the Wilderpeople,(2016),101 min,7.8,81
809
+ 807,The Girl with the Dragon Tattoo,(2009),152 min,7.8,76
810
+ 808,The Jungle Book,(1967),78 min,7.6,65
811
+ 809,A Christmas Story,(1983),93 min,7.9,77
812
+ 810,Amores Perros,(2000),154 min,8.1,83
813
+ 811,Ghost in the Shell,(1995),83 min,7.9,76
814
+ 812,The French Connection,(1971),104 min,7.7,94
815
+ 813,"Paris, Texas",(1984),145 min,8.1,81
816
+ 814,Charade,(1963),113 min,7.9,83
817
+ 815,Chungking Express,(1994),102 min,8.0,78
818
+ 816,High Noon,(1952),85 min,8.0,89
819
+ 817,Ben-Hur,(1959),212 min,8.1,90
820
+ 818,The Longest Day,(1962),178 min,7.7,75
821
+ 819,Dark Waters,(2019),126 min,7.6,73
822
+ 820,The Apartment,(1960),125 min,8.3,94
823
+ 821,How to Train Your Dragon 2,(2014),102 min,7.8,77
824
+ 822,Dangal,(2016),161 min,8.3,-
825
+ 823,The Seventh Seal,(1957),96 min,8.1,88
826
+ 824,Glory,(1989),122 min,7.8,78
827
+ 825,Naked,(1993),131 min,7.7,85
828
+ 826,The Man from Earth,(2007),87 min,7.9,-
829
+ 827,The Man Who Shot Liberty Valance,(1962),123 min,8.1,94
830
+ 828,Match Point,(2005),124 min,7.6,72
831
+ 829,The Raid 2,(2014),150 min,7.9,71
832
+ 830,The Bourne Ultimatum,(2007),115 min,8.0,85
833
+ 831,The Fall,(I) (2006),117 min,7.8,64
834
+ 832,The Dirty Dozen,(1967),150 min,7.7,73
835
+ 833,Goldfinger,(1964),110 min,7.7,87
836
+ 834,A Fistful of Dollars,(1964),99 min,7.9,65
837
+ 835,Klaus,(2019),96 min,8.2,65
838
+ 836,Sling Blade,(1996),135 min,8.0,84
839
+ 837,A Silent Voice: The Movie,(2016),130 min,8.1,78
840
+ 838,Paths of Glory,(1957),88 min,8.4,90
841
+ 839,For a Few Dollars More,(1965),132 min,8.2,74
842
+ 840,8½,(1963),138 min,8.0,92
843
+ 841,50/50,(2011),100 min,7.6,72
844
+ 842,Annie Hall,(1977),93 min,8.0,92
845
+ 843,Snow White and the Seven Dwarfs,(1937),83 min,7.6,96
846
+ 844,The King of Comedy,(1982),109 min,7.8,73
847
+ 845,A Separation,(2011),123 min,8.3,95
848
+ 846,Harold and Maude,(1971),91 min,7.9,62
849
+ 847,Persona,(1966),83 min,8.1,86
850
+ 848,Dirty Harry,(1971),102 min,7.7,87
851
+ 849,Harakiri,(1962),133 min,8.6,85
852
+ 850,Rio Bravo,(1959),141 min,8.0,93
853
+ 851,The Taking of Pelham One Two Three,(1974),104 min,7.6,68
854
+ 852,Ran,(1985),162 min,8.2,96
855
+ 853,After Hours,(I) (1985),97 min,7.6,90
856
+ 854,Kiki's Delivery Service,(1989),103 min,7.8,83
857
+ 855,The Artist,(I) (2011),100 min,7.9,89
858
+ 856,Roman Holiday,(1953),118 min,8.0,78
859
+ 857,Cool Hand Luke,(1967),127 min,8.1,92
860
+ 858,White Heat,(1949),114 min,8.1,-
861
+ 859,The Hustler,(1961),134 min,8.0,90
862
+ 860,The Great Beauty,(2013),141 min,7.7,86
863
+ 861,Ponyo,(2008),101 min,7.6,86
864
+ 862,All the President's Men,(1976),138 min,7.9,84
865
+ 863,The Best Offer,(2013),131 min,7.8,49
866
+ 864,M,(1931),99 min,8.3,-
867
+ 865,Bonnie and Clyde,(1967),111 min,7.7,86
868
+ 866,Detachment,(2011),98 min,7.7,52
869
+ 867,21 Grams,(2003),124 min,7.6,70
870
+ 868,Tumbbad,(2018),104 min,8.2,-
871
+ 869,This Is England,(2006),101 min,7.7,86
872
+ 870,Ikiru,(1952),143 min,8.3,91
873
+ 871,The Searchers,(1956),119 min,7.9,94
874
+ 872,Kung Fu Hustle,(2004),99 min,7.7,78
875
+ 873,Gandhi,(1982),191 min,8.0,79
876
+ 874,In the Name of the Father,(1993),133 min,8.1,84
877
+ 875,Dawn of the Dead,(1978),127 min,7.8,71
878
+ 876,The Color Purple,(1985),154 min,7.7,78
879
+ 877,The Outlaw Josey Wales,(1976),135 min,7.8,69
880
+ 878,Drishyam 2,(2021),152 min,8.4,-
881
+ 879,The Remains of the Day,(1993),134 min,7.8,86
882
+ 880,Rushmore,(1998),93 min,7.6,86
883
+ 881,Malcolm X,(1992),202 min,7.7,73
884
+ 882,The Third Man,(1949),93 min,8.1,97
885
+ 883,Network,(1976),121 min,8.1,83
886
+ 884,Ray,(I) (2004),152 min,7.7,73
887
+ 885,A Streetcar Named Desire,(1951),122 min,7.9,97
888
+ 886,My Fair Lady,(1964),170 min,7.8,95
889
+ 887,Hotel Rwanda,(2004),121 min,8.1,79
890
+ 888,The Last Picture Show,(1971),118 min,8.0,93
891
+ 889,Enter the Dragon,(1973),102 min,7.6,83
892
+ 890,Demon Slayer the Movie: Mugen Train,(2020),117 min,8.2,72
893
+ 891,Vikram,(2022),175 min,8.3,-
894
+ 892,Rope,(1948),80 min,7.9,73
895
+ 893,Cabaret,(1972),124 min,7.8,80
896
+ 894,The Bridge on the River Kwai,(1957),161 min,8.2,87
897
+ 895,Nosferatu,(1922),94 min,7.9,-
898
+ 896,The Name of the Rose,(1986),130 min,7.7,54
899
+ 897,Mississippi Burning,(1988),128 min,7.8,65
900
+ 898,The Wild Bunch,(1969),135 min,7.9,98
901
+ 899,Fantastic Planet,(1973),72 min,7.7,73
902
+ 900,Baahubali 2: The Conclusion,(2017),167 min,8.2,-
903
+ 901,Three Colors: Blue,(1993),94 min,7.9,85
904
+ 902,Belle de Jour,(1967),100 min,7.7,-
905
+ 903,Papillon,(1973),151 min,8.0,58
906
+ 904,Infernal Affairs,(2002),101 min,8.0,75
907
+ 905,Solaris,(1972),167 min,8.0,93
908
+ 906,Seven Pounds,(2008),123 min,7.6,36
909
+ 907,Togo,(2019),113 min,7.9,69
910
+ 908,The Maltese Falcon,(1941),100 min,8.0,97
911
+ 909,"Quo Vadis, Aida?",(2020),101 min,8.0,97
912
+ 910,Ip Man,(2008),106 min,8.0,59
913
+ 911,The Insider,(1999),157 min,7.8,84
914
+ 912,Night of the Living Dead,(1968),96 min,7.8,89
915
+ 913,Finding Neverland,(2004),106 min,7.7,67
916
+ 914,The Manchurian Candidate,(1962),126 min,7.9,94
917
+ 915,The Day the Earth Stood Still,(1951),92 min,7.8,-
918
+ 916,Once,(I) (2007),86 min,7.8,89
919
+ 917,K.G.F: Chapter 2,(2022),168 min,8.3,-
920
+ 918,Changeling,(2008),141 min,7.8,63
921
+ 919,Sabrina,(1954),113 min,7.6,72
922
+ 920,Kramer vs. Kramer,(1979),105 min,7.8,77
923
+ 921,Being There,(1979),130 min,8.0,83
924
+ 922,On the Waterfront,(1954),108 min,8.1,91
925
+ 923,La Dolce Vita,(1960),174 min,8.0,95
926
+ 924,Rashomon,(1950),88 min,8.2,98
927
+ 925,The Night of the Hunter,(1955),92 min,8.0,99
928
+ 926,Pink Floyd: The Wall,(1982),95 min,8.0,47
929
+ 927,Ordinary People,(1980),124 min,7.7,86
930
+ 928,Cinderella Man,(2005),144 min,8.0,69
931
+ 929,The Right Stuff,(1983),193 min,7.8,91
932
+ 930,From Here to Eternity,(1953),118 min,7.6,85
933
+ 931,Jai Bhim,(2021),164 min,8.8,-
934
+ 932,Hero,(2002),120 min,7.9,85
935
+ 933,Rebecca,(1940),130 min,8.1,86
936
+ 934,Double Indemnity,(1944),107 min,8.3,95
937
+ 935,"South Park: Bigger, Longer & Uncut",(1999),81 min,7.7,73
938
+ 936,The Last King of Scotland,(2006),123 min,7.6,74
939
+ 937,The Last Emperor,(1987),163 min,7.7,76
940
+ 938,Dancer in the Dark,(2000),140 min,7.9,61
941
+ 939,25th Hour,(2002),135 min,7.6,69
942
+ 940,Mommy,(I) (2014),139 min,8.0,74
943
+ 941,All That Jazz,(1979),123 min,7.8,72
944
+ 942,Dial M for Murder,(1954),105 min,8.2,75
945
+ 943,What Ever Happened to Baby Jane?,(1962),134 min,8.0,75
946
+ 944,Patton,(1970),172 min,7.9,91
947
+ 945,Hamlet,(1996),242 min,7.8,-
948
+ 946,Castle in the Sky,(1986),125 min,8.0,78
949
+ 947,Ed Wood,(1994),127 min,7.8,70
950
+ 948,Paper Moon,(1973),102 min,8.1,77
951
+ 949,Paprika,(2006),90 min,7.7,81
952
+ 950,The Celebration,(1998),105 min,8.1,82
953
+ 951,Miller's Crossing,(1990),115 min,7.7,66
954
+ 952,Perfect Strangers,(2016),96 min,7.7,-
955
+ 953,Badlands,(1973),94 min,7.7,93
956
+ 954,Zulu,(1964),138 min,7.7,77
957
+ 955,Breaking the Waves,(1996),159 min,7.8,79
958
+ 956,The Bridges of Madison County,(1995),135 min,7.6,69
959
+ 957,Mary and Max,(2009),92 min,8.1,-
960
+ 958,Barton Fink,(1991),116 min,7.6,69
961
+ 959,Open Your Eyes,(1997),119 min,7.7,-
962
+ 960,Like Stars on Earth,(2007),165 min,8.3,-
963
+ 961,Stagecoach,(1939),96 min,7.8,93
964
+ 962,Pride,(I) (2014),119 min,7.8,79
965
+ 963,Me and Earl and the Dying Girl,(2015),105 min,7.7,74
966
+ 964,Notorious,(1946),102 min,7.9,100
967
+ 965,All About Eve,(1950),138 min,8.2,98
968
+ 966,My Left Foot,(1989),103 min,7.9,97
969
+ 967,Nausicaä of the Valley of the Wind,(1984),117 min,8.0,86
970
+ 968,King Kong,(1933),100 min,7.9,90
971
+ 969,Waking Life,(2001),99 min,7.7,83
972
+ 970,The Best Years of Our Lives,(1946),170 min,8.1,93
973
+ 971,The Treasure of the Sierra Madre,(1948),126 min,8.2,98
974
+ 972,The Wind Rises,(2013),126 min,7.7,83
975
+ 973,Days of Heaven,(1978),94 min,7.8,93
976
+ 974,The Great Dictator,(1940),125 min,8.4,-
977
+ 975,Run Lola Run,(1998),80 min,7.7,77
978
+ 976,Rebel Without a Cause,(1955),111 min,7.6,89
979
+ 977,Wings of Desire,(1987),128 min,8.0,79
980
+ 978,Gaslight,(1944),114 min,7.8,78
981
+ 979,Mother,(2009),129 min,7.8,79
982
+ 980,The Conformist,(1970),113 min,7.9,100
983
+ 981,Modern Times,(1936),87 min,8.5,96
984
+ 982,The Grapes of Wrath,(1940),129 min,8.1,96
985
+ 983,Neon Genesis Evangelion: The End of Evangelion,(1997),87 min,8.0,-
986
+ 984,October Sky,(1999),108 min,7.8,71
987
+ 985,The Quiet Man,(1952),129 min,7.7,85
988
+ 986,It Happened One Night,(1934),105 min,8.1,87
989
+ 987,Kubo and the Two Strings,(2016),101 min,7.7,84
990
+ 988,Three Colors: Red,(1994),99 min,8.1,100
991
+ 989,Kaithi,(2019),145 min,8.5,-
992
+ 990,The Straight Story,(1999),112 min,8.0,86
993
+ 991,The Adventures of Robin Hood,(1938),102 min,7.9,97
994
+ 992,Wolfwalkers,(2020),103 min,8.0,87
995
+ 993,PK,(2014),153 min,8.1,-
996
+ 994,United 93,(2006),111 min,7.6,90
997
+ 995,Anatomy of a Murder,(1959),161 min,8.0,95
998
+ 996,Once Were Warriors,(1994),102 min,7.9,77
999
+ 997,Breathless,(1960),90 min,7.7,-
1000
+ 998,I Am Sam,(2001),132 min,7.6,28
1001
+ 999,Fanny and Alexander,(1982),188 min,8.1,100
1002
+ 1000,Bicycle Thieves,(1948),89 min,8.3,-
1003
+ 1001,The Lion in Winter,(1968),134 min,7.9,-
1004
+ 1002,Short Term 12,(2013),96 min,7.9,82
1005
+ 1003,Strangers on a Train,(1951),101 min,7.9,88
1006
+ 1004,Freaks,(1932),64 min,7.8,80
1007
+ 1005,Letters from Iwo Jima,(2006),141 min,7.9,89
1008
+ 1006,The Big Sleep,(1946),114 min,7.9,86
1009
+ 1007,Beasts of No Nation,(2015),137 min,7.7,79
1010
+ 1008,The Philadelphia Story,(1940),112 min,7.9,96
1011
+ 1009,Frankenstein,(1931),70 min,7.8,91
1012
+ 1010,Nebraska,(2013),115 min,7.7,86
1013
+ 1011,The Man from Nowhere,(2010),119 min,7.7,-
1014
+ 1012,The Man Who Would Be King,(1975),129 min,7.8,91
1015
+ 1013,Whisper of the Heart,(1995),111 min,7.9,75
1016
+ 1014,The Cabinet of Dr. Caligari,(1920),67 min,8.0,-
1017
+ 1015,In Cold Blood,(1967),134 min,7.9,89
1018
+ 1016,The Chaser,(2008),125 min,7.8,64
1019
+ 1017,Who's Afraid of Virginia Woolf?,(1966),131 min,8.0,75
1020
+ 1018,Elite Squad,(2007),115 min,8.0,33
1021
+ 1019,Black Book,(2006),145 min,7.7,71
1022
+ 1020,Gangs of Wasseypur,(2012),321 min,8.2,89
1023
+ 1021,Mirror,(1975),107 min,8.0,80
1024
+ 1022,Miracle in Cell No. 7,(2019),132 min,8.2,-
1025
+ 1023,Lilya 4-Ever,(2002),109 min,7.8,82
1026
+ 1024,777 Charlie,(2022),136 min,8.9,-
1027
+ 1025,The Thin Man,(1934),91 min,7.9,86
1028
+ 1026,Guess Who's Coming to Dinner,(1967),108 min,7.8,63
1029
+ 1027,East of Eden,(1955),118 min,7.8,72
1030
+ 1028,Touch of Evil,(1958),95 min,8.0,99
1031
+ 1029,The 400 Blows,(1959),99 min,8.1,-
1032
+ 1030,Short Cuts,(1993),188 min,7.7,81
1033
+ 1031,Amour,(2012),127 min,7.9,95
1034
+ 1032,The African Queen,(1951),105 min,7.7,91
1035
+ 1033,Fantasia,(1940),124 min,7.7,96
1036
+ 1034,Andhadhun,(2018),139 min,8.2,-
1037
+ 1035,Control,(2007),122 min,7.6,78
1038
+ 1036,Yojimbo,(1961),110 min,8.2,93
1039
+ 1037,The Odd Couple,(1968),105 min,7.6,86
1040
+ 1038,City Lights,(1931),87 min,8.5,99
1041
+ 1039,The Leopard,(1963),186 min,8.0,100
1042
+ 1040,Secrets & Lies,(1996),136 min,8.0,91
1043
+ 1041,Leviathan,(2014),140 min,7.6,92
1044
+ 1042,The Vanishing,(1988),107 min,7.7,-
1045
+ 1043,The Double Life of Véronique,(1991),98 min,7.7,86
1046
+ 1044,Head-On,(2004),121 min,7.9,78
1047
+ 1045,Loving Vincent,(2017),94 min,7.8,62
1048
+ 1046,Hannah and Her Sisters,(1986),107 min,7.8,90
1049
+ 1047,Philomena,(2013),98 min,7.6,77
1050
+ 1048,A Very Long Engagement,(2004),133 min,7.6,76
1051
+ 1049,High and Low,(1963),143 min,8.4,90
1052
+ 1050,Porco Rosso,(1992),94 min,7.7,83
1053
+ 1051,Good Bye Lenin!,(2003),121 min,7.7,68
1054
+ 1052,Bringing Up Baby,(1938),102 min,7.8,91
1055
+ 1053,Tokyo Story,(1953),136 min,8.2,100
1056
+ 1054,Wild Strawberries,(1957),91 min,8.1,88
1057
+ 1055,The Legend of 1900,(1998),169 min,8.0,58
1058
+ 1056,Batman: Mask of the Phantasm,(1993),76 min,7.8,65
1059
+ 1057,A Woman Under the Influence,(1974),155 min,8.1,88
1060
+ 1058,Talk to Her,(2002),112 min,7.9,86
1061
+ 1059,Children of Heaven,(1997),89 min,8.2,77
1062
+ 1060,Red River,(1948),133 min,7.8,-
1063
+ 1061,Manhattan,(1979),96 min,7.8,83
1064
+ 1062,Mr. Smith Goes to Washington,(1939),129 min,8.1,73
1065
+ 1063,Nobody Knows,(2004),141 min,8.0,88
1066
+ 1064,His Girl Friday,(1940),92 min,7.8,-
1067
+ 1065,"Goodbye, Children",(1987),104 min,8.0,88
1068
+ 1066,Z,(1969),127 min,8.2,86
1069
+ 1067,The Bride of Frankenstein,(1935),75 min,7.8,95
1070
+ 1068,The Killing,(1956),84 min,8.0,91
1071
+ 1069,"Aguirre, the Wrath of God",(1972),95 min,7.8,-
1072
+ 1070,Andrei Rublev,(1966),205 min,8.1,-
1073
+ 1071,K.G.F: Chapter 1,(2018),156 min,8.2,-
1074
+ 1072,A Taxi Driver,(2017),137 min,7.9,69
1075
+ 1073,Underground,(1995),167 min,8.1,79
1076
+ 1074,The Message,(1976),177 min,8.1,-
1077
+ 1075,The Station Agent,(2003),89 min,7.6,81
1078
+ 1076,Le Samouraï,(1967),101 min,8.0,-
1079
+ 1077,All About My Mother,(1999),101 min,7.8,87
1080
+ 1078,The White Ribbon,(2009),144 min,7.8,82
1081
+ 1079,The World's Fastest Indian,(2005),127 min,7.8,68
1082
+ 1080,Arsenic and Old Lace,(1944),118 min,7.9,-
1083
+ 1081,3-Iron,(2004),88 min,7.9,72
1084
+ 1082,The Little Prince,(2015),108 min,7.7,70
1085
+ 1083,"I, Daniel Blake",(2016),100 min,7.8,78
1086
+ 1084,The Discreet Charm of the Bourgeoisie,(1972),102 min,7.8,93
1087
+ 1085,Fitzcarraldo,(1982),158 min,8.0,-
1088
+ 1086,When Marnie Was There,(2014),103 min,7.7,72
1089
+ 1087,The Diving Bell and the Butterfly,(2007),112 min,8.0,92
1090
+ 1088,Happy Together,(1997),96 min,7.7,70
1091
+ 1089,The Tale of The Princess Kaguya,(2013),137 min,8.0,89
1092
+ 1090,Shadow of a Doubt,(1943),108 min,7.8,94
1093
+ 1091,Harvey,(1950),104 min,7.9,-
1094
+ 1092,Inherit the Wind,(1960),128 min,8.1,75
1095
+ 1093,Cat on a Hot Tin Roof,(1958),108 min,7.9,84
1096
+ 1094,Song of the Sea,(2014),93 min,8.0,85
1097
+ 1095,Dilwale Dulhania Le Jayenge,(1995),181 min,8.0,-
1098
+ 1096,My Name Is Khan,(2010),165 min,7.9,50
1099
+ 1097,Hedwig and the Angry Inch,(2001),95 min,7.7,85
1100
+ 1098,Scarface,(1932),93 min,7.7,87
1101
+ 1099,The Triplets of Belleville,(2003),80 min,7.7,91
1102
+ 1100,The Kid,(1921),68 min,8.3,-
1103
+ 1101,Land of Mine,(2015),100 min,7.8,75
1104
+ 1102,The Motorcycle Diaries,(2004),126 min,7.7,75
1105
+ 1103,The General,(1926),67 min,8.1,-
1106
+ 1104,Laura,(1944),88 min,7.9,-
1107
+ 1105,Wait Until Dark,(1967),108 min,7.7,81
1108
+ 1106,The Lady Vanishes,(1938),96 min,7.8,98
1109
+ 1107,Rocketry: The Nambi Effect,(2022),157 min,8.8,-
1110
+ 1108,Stalag 17,(1953),120 min,8.0,84
1111
+ 1109,Invasion of the Body Snatchers,(1956),80 min,7.7,92
1112
+ 1110,Zindagi Na Milegi Dobara,(2011),155 min,8.2,-
1113
+ 1111,Shershaah,(2021),135 min,8.4,-
1114
+ 1112,Farewell My Concubine,(1993),171 min,8.1,83
1115
+ 1113,Kal Ho Naa Ho,(2003),186 min,7.9,54
1116
+ 1114,Hard Boiled,(1992),128 min,7.7,-
1117
+ 1115,Ayla: The Daughter of War,(2017),125 min,8.3,-
1118
+ 1116,To Be or Not to Be,(1942),99 min,8.2,86
1119
+ 1117,Sunrise,(1927),94 min,8.1,95
1120
+ 1118,My Sassy Girl,(2001),137 min,8.0,-
1121
+ 1119,Lagaan: Once Upon a Time in India,(2001),224 min,8.1,84
1122
+ 1120,Night on Earth,(1991),129 min,7.7,68
1123
+ 1121,I Remember,(1973),123 min,7.9,-
1124
+ 1122,La strada,(1954),108 min,8.0,-
1125
+ 1123,The Passion of Joan of Arc,(1928),114 min,8.2,-
1126
+ 1124,A Prophet,(2009),155 min,7.8,90
1127
+ 1125,The Battle of Algiers,(1966),121 min,8.1,96
1128
+ 1126,Out of the Past,(1947),97 min,8.0,85
1129
+ 1127,Evil,(2003),113 min,7.7,61
1130
+ 1128,Persepolis,(2007),96 min,8.0,90
1131
+ 1129,Nostalghia,(1983),125 min,8.0,-
1132
+ 1130,To Have and Have Not,(1944),100 min,7.8,90
1133
+ 1131,The Umbrellas of Cherbourg,(1964),91 min,7.8,86
1134
+ 1132,Cowboy Bebop: The Movie,(2001),115 min,7.8,61
1135
+ 1133,Sardar Udham,(2021),164 min,8.4,-
1136
+ 1134,The Lunchbox,(2013),104 min,7.8,76
1137
+ 1135,The Sacrifice,(1986),149 min,7.9,-
1138
+ 1136,The Broken Circle Breakdown,(2012),111 min,7.7,70
1139
+ 1137,Brief Encounter,(1945),86 min,8.0,92
1140
+ 1138,Cape Fear,(1962),106 min,7.7,76
1141
+ 1139,Dersu Uzala,(1975),142 min,8.2,-
1142
+ 1140,The Sea Inside,(I) (2004),126 min,8.0,74
1143
+ 1141,Winter Sleep,(2014),196 min,8.1,88
1144
+ 1142,Eyes Without a Face,(1960),90 min,7.6,90
1145
+ 1143,The Shop Around the Corner,(1940),99 min,8.0,96
1146
+ 1144,Sleuth,(1972),138 min,8.0,-
1147
+ 1145,Drishyam,(2013),160 min,8.3,-
1148
+ 1146,Pather Panchali,(1955),125 min,8.3,-
1149
+ 1147,Miracle on 34th Street,(1947),96 min,7.9,88
1150
+ 1148,L'Avventura,(1960),144 min,7.8,-
1151
+ 1149,Jules and Jim,(1962),105 min,7.7,97
1152
+ 1150,The Salesman,(2016),124 min,7.7,85
1153
+ 1151,Nine Queens,(2000),114 min,7.9,80
1154
+ 1152,The Experiment,(2001),120 min,7.7,60
1155
+ 1153,Key Largo,(1948),100 min,7.7,-
1156
+ 1154,A Man for All Seasons,(1966),120 min,7.7,72
1157
+ 1155,Swades,(2004),189 min,8.2,-
1158
+ 1156,In a Lonely Place,(1950),94 min,7.9,-
1159
+ 1157,Dreams,(1990),119 min,7.7,-
1160
+ 1158,Shine,(1996),105 min,7.6,87
1161
+ 1159,Wolf Children,(2012),117 min,8.1,71
1162
+ 1160,Battleship Potemkin,(1925),66 min,7.9,97
1163
+ 1161,Diabolique,(1955),117 min,8.1,-
1164
+ 1162,The Wages of Fear,(1953),131 min,8.2,85
1165
+ 1163,Cries & Whispers,(1972),91 min,8.0,-
1166
+ 1164,Confessions,(2010),106 min,7.7,-
1167
+ 1165,"Black Cat, White Cat",(1998),127 min,8.0,73
1168
+ 1166,The Chorus,(2004),97 min,7.8,56
1169
+ 1167,Joint Security Area,(2000),110 min,7.7,58
1170
+ 1168,Gully Boy,(2019),154 min,7.9,65
1171
+ 1169,"4 Months, 3 Weeks and 2 Days",(2007),113 min,7.9,97
1172
+ 1170,Ninja Scroll,(1993),94 min,7.8,-
1173
+ 1171,"Spring, Summer, Fall, Winter... and Spring",(2003),103 min,8.0,85
1174
+ 1172,Adam's Apples,(2005),94 min,7.7,51
1175
+ 1173,The Hidden Fortress,(1958),126 min,8.1,89
1176
+ 1174,Taste of Cherry,(1997),95 min,7.7,80
1177
+ 1175,"Like Father, Like Son",(2013),121 min,7.8,73
1178
+ 1176,Kagemusha,(1980),162 min,7.9,84
1179
+ 1177,After the Wedding,(2006),120 min,7.7,78
1180
+ 1178,The Asphalt Jungle,(1950),112 min,7.8,85
1181
+ 1179,Throne of Blood,(1957),110 min,8.1,-
1182
+ 1180,You Can't Take It with You,(1938),126 min,7.8,-
1183
+ 1181,The Gold Rush,(1925),95 min,8.1,-
1184
+ 1182,Frost/Nixon,(2008),122 min,7.7,80
1185
+ 1183,Autumn Sonata,(1978),99 min,8.1,-
1186
+ 1184,Vivre Sa Vie,(1962),85 min,7.9,-
1187
+ 1185,The Way He Looks,(2014),96 min,7.9,71
1188
+ 1186,Tokyo Godfathers,(2003),92 min,7.8,73
1189
+ 1187,The Killer,(1989),111 min,7.8,82
1190
+ 1188,The Innocents,(1961),100 min,7.8,88
1191
+ 1189,Sherlock Jr.,(1924),45 min,8.2,-
1192
+ 1190,My Father and My Son,(2005),112 min,8.2,-
1193
+ 1191,In America,(2002),105 min,7.7,76
1194
+ 1192,Mildred Pierce,(1945),111 min,7.9,88
1195
+ 1193,Sweet Smell of Success,(1957),96 min,8.0,100
1196
+ 1194,Time of the Gypsies,(1988),142 min,8.1,-
1197
+ 1195,The Caine Mutiny,(1954),124 min,7.7,63
1198
+ 1196,Joyeux Noel,(2005),116 min,7.7,70
1199
+ 1197,Down by Law,(1986),107 min,7.7,75
1200
+ 1198,Departures,(2008),130 min,8.0,68
1201
+ 1199,Millennium Actress,(2001),87 min,7.8,70
1202
+ 1200,Crimes and Misdemeanors,(1989),104 min,7.8,77
1203
+ 1201,My Life as a Zucchini,(2016),70 min,7.7,85
1204
+ 1202,Ace in the Hole,(1951),111 min,8.1,72
1205
+ 1203,The Muppet Christmas Carol,(1992),85 min,7.7,64
1206
+ 1204,The Magdalene Sisters,(2002),114 min,7.7,83
1207
+ 1205,The Breadwinner,(2017),94 min,7.7,78
1208
+ 1206,Barfi!,(2012),151 min,8.1,-
1209
+ 1207,Once Upon a Time in Anatolia,(2011),157 min,7.8,82
1210
+ 1208,The Exterminating Angel,(1962),95 min,8.0,-
1211
+ 1209,Le Cercle Rouge,(1970),140 min,7.9,91
1212
+ 1210,Munna Bhai M.B.B.S.,(2003),156 min,8.1,-
1213
+ 1211,Soorarai Pottru,(2020),153 min,8.7,-
1214
+ 1212,Raise the Red Lantern,(1991),125 min,8.1,-
1215
+ 1213,Rang De Basanti,(2006),167 min,8.1,-
1216
+ 1214,Elevator to the Gallows,(1958),91 min,7.9,94
1217
+ 1215,Hiroshima Mon Amour,(1959),90 min,7.9,-
1218
+ 1216,Ivan's Childhood,(1962),95 min,8.0,-
1219
+ 1217,Sullivan's Travels,(1941),90 min,7.9,-
1220
+ 1218,The Rules of the Game,(1939),110 min,7.9,98
1221
+ 1219,About Elly,(2009),119 min,7.9,87
1222
+ 1220,The Virgin Spring,(1960),89 min,8.1,-
1223
+ 1221,The Girl Who Leapt Through Time,(2006),98 min,7.7,66
1224
+ 1222,The Lost Weekend,(1945),101 min,7.9,-
1225
+ 1223,Celda 211,(2009),113 min,7.6,-
1226
+ 1224,Jab We Met,(2007),138 min,7.9,-
1227
+ 1225,The Big Heat,(1953),89 min,7.9,-
1228
+ 1226,Elite Squad 2: The Enemy Within,(2010),115 min,8.0,71
1229
+ 1227,Dil Chahta Hai,(2001),183 min,8.1,-
1230
+ 1228,Nights of Cabiria,(1957),110 min,8.1,-
1231
+ 1229,Tangerines,(2013),87 min,8.1,73
1232
+ 1230,The Purple Rose of Cairo,(1985),82 min,7.7,75
1233
+ 1231,The Postman,(1994),108 min,7.8,81
1234
+ 1232,Duck Soup,(1933),69 min,7.8,93
1235
+ 1233,Rififi,(1955),118 min,8.1,97
1236
+ 1234,Bajrangi Bhaijaan,(2015),163 min,8.1,-
1237
+ 1235,G.O.R.A.,(2004),127 min,8.0,-
1238
+ 1236,Haider,(2014),160 min,8.0,-
1239
+ 1237,Pink,(III) (2016),136 min,8.1,-
1240
+ 1238,Kind Hearts and Coronets,(1949),106 min,8.0,-
1241
+ 1239,Through a Glass Darkly,(1961),90 min,8.0,84
1242
+ 1240,Raatchasan,(2018),170 min,8.3,-
1243
+ 1241,The Return,(2003),110 min,7.9,82
1244
+ 1242,Beauty and the Beast,(1946),93 min,7.9,92
1245
+ 1243,Fireworks,(1997),103 min,7.7,-
1246
+ 1244,No Man's Land,(I) (2001),98 min,7.9,84
1247
+ 1245,Central Station,(1998),110 min,8.0,80
1248
+ 1246,Chhichhore,(2019),143 min,8.3,-
1249
+ 1247,Vikram Vedha,(2017),147 min,8.2,-
1250
+ 1248,Uri: The Surgical Strike,(2019),138 min,8.2,-
1251
+ 1249,Article 15,(2019),130 min,8.1,-
1252
+ 1250,Talvar,(2015),132 min,8.1,-
1253
+ 1251,"Rome, Open City",(1945),103 min,8.0,-
1254
+ 1252,Jean de Florette,(1986),120 min,8.1,-
1255
+ 1253,Queen,(2013),146 min,8.1,-
1256
+ 1254,The Grand Illusion,(1937),113 min,8.1,-
1257
+ 1255,C.R.A.Z.Y.,(2005),129 min,7.9,81
1258
+ 1256,Knockin' on Heaven's Door,(1997),87 min,7.8,-
1259
+ 1257,Sholay,(1975),162 min,8.1,-
1260
+ 1258,Love and Death,(1975),85 min,7.7,89
1261
+ 1259,Zelig,(1983),79 min,7.7,-
1262
+ 1260,OMG: Oh My God!,(2012),125 min,8.1,-
1263
+ 1261,The Past,(2013),130 min,7.7,85
1264
+ 1262,Tae Guk Gi: The Brotherhood of War,(2004),140 min,8.0,64
1265
+ 1263,Badhaai Ho,(2018),124 min,7.9,-
1266
+ 1264,96,(II) (2018),158 min,8.5,-
1267
+ 1265,Veer Zaara,(2004),192 min,7.8,67
1268
+ 1266,A Wednesday,(2008),104 min,8.1,-
1269
+ 1267,Sanjuro,(1962),96 min,8.0,-
1270
+ 1268,Dev.D,(2009),144 min,7.9,-
1271
+ 1269,Hindi Medium,(2017),132 min,7.8,-
1272
+ 1270,M.S. Dhoni: The Untold Story,(2016),184 min,7.9,-
1273
+ 1271,The Edge of Heaven,(2007),122 min,7.7,85
1274
+ 1272,Winter Light,(1963),81 min,8.0,-
1275
+ 1273,The Bandit,(1996),128 min,8.1,-
1276
+ 1274,Umberto D.,(1952),89 min,8.2,92
1277
+ 1275,A Night at the Opera,(1935),96 min,7.8,-
1278
+ 1276,Super 30,(2019),154 min,7.9,-
1279
+ 1277,Airlift,(2016),130 min,7.9,-
1280
+ 1278,Bhaag Milkha Bhaag,(2013),186 min,8.2,-
1281
+ 1279,Asuran,(2019),141 min,8.4,-
1282
+ 1280,The Circus,(1928),72 min,8.1,90
1283
+ 1281,Let's Go! India,(2007),153 min,8.1,68
1284
+ 1282,Pad Man,(2018),140 min,7.9,-
1285
+ 1283,Kahaani,(2012),122 min,8.1,-
1286
+ 1284,Vicky Donor,(2012),126 min,7.8,-
1287
+ 1285,Masaan,(2015),109 min,8.1,-
1288
+ 1286,"Carry On, Munna Bhai",(2006),144 min,8.0,-
1289
+ 1287,Hera Pheri,(2000),156 min,8.1,-
1290
+ 1288,Black,(2005),122 min,8.1,-
1291
+ 1289,The Breath,(2009),128 min,8.0,-
1292
+ 1290,Vizontele,(2001),110 min,8.0,-
1293
+ 1291,Udaan,(2010),134 min,8.1,-
1294
+ 1292,Andaz Apna Apna,(1994),160 min,8.0,-
1295
+ 1293,Paan Singh Tomar,(2012),135 min,8.2,-
1296
+ 1294,Baby,(I) (2015),159 min,7.9,-
1297
+ 1295,English Vinglish,(2012),134 min,7.8,-
1298
+ 1296,Everything's Gonna Be Great,(1998),107 min,8.1,-
1299
+ 1297,Anand,(1971),122 min,8.1,-
1300
+ 1298,Special 26,(2013),144 min,8.0,-
1301
+ 1299,Sarfarosh,(1999),174 min,8.1,-
movies2.csv ADDED
@@ -0,0 +1,1140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,movie,year,time_minute,imdb_rating,metascore
2
+ 0,Avatar: The Way of Water,2022,192,7.8,67.0
3
+ 1,Puss in Boots: The Last Wish,2022,102,7.9,75.0
4
+ 2,The Banshees of Inisherin,2022,114,7.8,87.0
5
+ 3,Everything Everywhere All at Once,2022,139,8.0,81.0
6
+ 4,The Fabelmans,2022,151,7.7,84.0
7
+ 5,Knives Out,2019,130,7.9,82.0
8
+ 6,Avatar,2009,162,7.9,83.0
9
+ 7,Top Gun: Maverick,2022,130,8.3,78.0
10
+ 8,Aftersun,2022,102,7.8,95.0
11
+ 9,All Quiet on the Western Front,2022,148,7.8,76.0
12
+ 10,Guillermo del Toro's Pinocchio,2022,117,7.7,79.0
13
+ 11,RRR,2022,187,7.9,83.0
14
+ 12,The Godfather,1972,175,9.2,100.0
15
+ 13,The Batman,2022,176,7.8,72.0
16
+ 14,Once Upon a Time in Hollywood,2019,161,7.6,83.0
17
+ 15,The Shawshank Redemption,1994,142,9.3,81.0
18
+ 16,Interstellar,2014,169,8.6,74.0
19
+ 17,Harry Potter and the Sorcerer's Stone,2001,152,7.6,65.0
20
+ 18,Titanic,1997,194,7.9,75.0
21
+ 19,Pulp Fiction,1994,154,8.9,94.0
22
+ 20,Dune,2021,155,8.0,74.0
23
+ 21,The Goonies,1985,114,7.7,62.0
24
+ 22,Spider-Man: No Way Home,2021,148,8.2,71.0
25
+ 23,The Wolf of Wall Street,2013,180,8.2,75.0
26
+ 24,American Psycho,2000,102,7.6,64.0
27
+ 25,The Dark Knight,2008,152,9.0,84.0
28
+ 26,Inception,2010,148,8.8,74.0
29
+ 27,Fight Club,1999,139,8.8,66.0
30
+ 28,Whiplash,2014,106,8.5,89.0
31
+ 29,The Gentlemen,2019,113,7.8,51.0
32
+ 30,The Blues Brothers,1980,133,7.9,60.0
33
+ 31,Good Will Hunting,1997,126,8.3,70.0
34
+ 32,Heat,1995,170,8.3,76.0
35
+ 33,Avengers: Endgame,2019,181,8.4,78.0
36
+ 34,The Lord of the Rings: The Fellowship of the Ring,2001,178,8.8,92.0
37
+ 35,Parasite,2019,132,8.5,96.0
38
+ 36,Blade Runner 2049,2017,164,8.0,81.0
39
+ 37,Prisoners,2013,153,8.1,70.0
40
+ 38,In Bruges,2008,107,7.9,67.0
41
+ 39,Jurassic Park,1993,127,8.2,68.0
42
+ 40,A Man Called Ove,2015,116,7.7,70.0
43
+ 41,Road to Perdition,2002,117,7.7,72.0
44
+ 42,Schindler's List,1993,195,9.0,94.0
45
+ 43,Goodfellas,1990,145,8.7,91.0
46
+ 44,Forrest Gump,1994,142,8.8,82.0
47
+ 45,Joker,2019,122,8.4,59.0
48
+ 46,Inglourious Basterds,2009,153,8.3,69.0
49
+ 47,Black Swan,2010,108,8.0,79.0
50
+ 48,The Prestige,2006,130,8.5,66.0
51
+ 49,Get Out,2017,104,7.7,85.0
52
+ 50,Indiana Jones and the Raiders of the Lost Ark,1981,115,8.4,85.0
53
+ 51,The Departed,2006,151,8.5,85.0
54
+ 52,Drive,2011,100,7.8,78.0
55
+ 53,Green Book,2018,130,8.2,69.0
56
+ 54,Tombstone,1993,130,7.8,50.0
57
+ 55,Léon: The Professional,1994,110,8.5,64.0
58
+ 56,The Godfather: Part II,1974,202,9.0,90.0
59
+ 57,Sicario,2015,121,7.6,82.0
60
+ 58,Django Unchained,2012,165,8.4,81.0
61
+ 59,Requiem for a Dream,2000,102,8.3,71.0
62
+ 60,Gladiator,2000,155,8.5,67.0
63
+ 61,Apocalypse Now,1979,147,8.5,94.0
64
+ 62,Sing Street,2016,106,7.9,79.0
65
+ 63,The Grand Budapest Hotel,2014,99,8.1,88.0
66
+ 64,Gone Girl,2014,149,8.1,79.0
67
+ 65,The Breakfast Club,1985,97,7.8,66.0
68
+ 66,La La Land,2016,128,8.0,94.0
69
+ 67,12 Angry Men,1957,96,9.0,96.0
70
+ 68,Pride & Prejudice,2005,129,7.8,82.0
71
+ 69,Se7en,1995,127,8.6,65.0
72
+ 70,American Beauty,1999,122,8.4,84.0
73
+ 71,Hidden Figures,2016,127,7.8,74.0
74
+ 72,Shutter Island,2010,138,8.2,63.0
75
+ 73,Life Is Beautiful,1997,116,8.6,59.0
76
+ 74,Rogue One: A Star Wars Story,2016,133,7.8,65.0
77
+ 75,The Green Mile,1999,189,8.6,61.0
78
+ 76,The Lord of the Rings: The Return of the King,2003,201,9.0,94.0
79
+ 77,The Silence of the Lambs,1991,118,8.6,85.0
80
+ 78,The Matrix,1999,136,8.7,73.0
81
+ 79,Mad Max: Fury Road,2015,120,8.1,90.0
82
+ 80,Alien,1979,117,8.5,89.0
83
+ 81,Harry Potter and the Goblet of Fire,2005,157,7.7,81.0
84
+ 82,Back to the Future,1985,116,8.5,87.0
85
+ 83,Rocky,1976,120,8.1,70.0
86
+ 84,No Country for Old Men,2007,122,8.2,92.0
87
+ 85,Mission: Impossible - Fallout,2018,147,7.7,86.0
88
+ 86,Bohemian Rhapsody,2018,134,7.9,49.0
89
+ 87,Reservoir Dogs,1992,99,8.3,79.0
90
+ 88,Hacksaw Ridge,2016,139,8.1,71.0
91
+ 89,Her,2013,126,8.0,91.0
92
+ 90,"Three Billboards Outside Ebbing, Missouri",2017,115,8.1,88.0
93
+ 91,Eternal Sunshine of the Spotless Mind,2004,108,8.3,89.0
94
+ 92,Little Women,2019,135,7.8,91.0
95
+ 93,Taxi Driver,1976,114,8.2,94.0
96
+ 94,CODA,2021,111,8.0,72.0
97
+ 95,The Worst Person in the World,2021,128,7.8,90.0
98
+ 96,Star Wars: Episode IV - A New Hope,1977,121,8.6,90.0
99
+ 97,"The Good, the Bad and the Ugly",1966,178,8.8,90.0
100
+ 98,Harry Potter and the Deathly Hallows: Part 2,2011,130,8.1,85.0
101
+ 99,1917,2019,119,8.2,78.0
102
+ 100,Guardians of the Galaxy,2014,121,8.0,76.0
103
+ 101,The Dark Knight Rises,2012,164,8.4,78.0
104
+ 102,The Sting,1973,129,8.3,83.0
105
+ 103,The Father,2020,97,8.2,88.0
106
+ 104,The Usual Suspects,1995,106,8.5,77.0
107
+ 105,Memento,2000,113,8.4,81.0
108
+ 106,The Princess Bride,1987,98,8.0,77.0
109
+ 107,Aliens,1986,137,8.4,84.0
110
+ 108,Wind River,2017,107,7.7,73.0
111
+ 109,American History X,1998,119,8.5,62.0
112
+ 110,Pirates of the Caribbean: The Curse of the Black Pearl,2003,143,8.1,63.0
113
+ 111,Thirteen Lives,2022,147,7.8,66.0
114
+ 112,Avengers: Infinity War,2018,149,8.4,68.0
115
+ 113,Scarface,1983,170,8.3,65.0
116
+ 114,Blade Runner,1982,117,8.1,84.0
117
+ 115,The Fifth Element,1997,126,7.6,52.0
118
+ 116,Harry Potter and the Deathly Hallows: Part 1,2010,146,7.7,65.0
119
+ 117,Ex Machina,2014,108,7.7,78.0
120
+ 118,Kingsman: The Secret Service,2014,129,7.7,60.0
121
+ 119,About Time,2013,123,7.8,55.0
122
+ 120,The Hateful Eight,2015,168,7.8,68.0
123
+ 121,Oldboy,2003,101,8.4,77.0
124
+ 122,Saving Private Ryan,1998,169,8.6,91.0
125
+ 123,The Shining,1980,146,8.4,66.0
126
+ 124,A Clockwork Orange,1971,136,8.3,77.0
127
+ 125,Donnie Darko,2001,113,8.0,88.0
128
+ 126,Harry Potter and the Prisoner of Azkaban,2004,142,7.9,82.0
129
+ 127,Spider-Man: Into the Spider-Verse,2018,117,8.4,87.0
130
+ 128,Terminator 2: Judgment Day,1991,137,8.6,75.0
131
+ 129,Brokeback Mountain,2005,134,7.7,87.0
132
+ 130,Logan,2017,137,8.1,77.0
133
+ 131,The Hobbit: An Unexpected Journey,2012,169,7.8,58.0
134
+ 132,Ford v Ferrari,2019,152,8.1,81.0
135
+ 133,Mulholland Drive,2001,147,7.9,86.0
136
+ 135,Indiana Jones and the Last Crusade,1989,127,8.2,65.0
137
+ 136,Zodiac,2007,157,7.7,79.0
138
+ 137,Call Me by Your Name,2017,132,7.8,94.0
139
+ 138,Snatch,2000,102,8.2,55.0
140
+ 139,Batman Begins,2005,140,8.2,70.0
141
+ 140,The Handmaiden,2016,145,8.1,84.0
142
+ 141,Zack Snyder's Justice League,2021,242,8.0,54.0
143
+ 142,Shrek,2001,90,7.9,84.0
144
+ 143,Superbad,2007,113,7.6,76.0
145
+ 144,Searching,2018,102,7.6,71.0
146
+ 145,The Big Short,2015,130,7.8,81.0
147
+ 146,The Irishman,2019,209,7.8,94.0
148
+ 147,Stand by Me,1986,89,8.1,75.0
149
+ 148,Dunkirk,2017,106,7.8,94.0
150
+ 149,The Hangover,2009,100,7.7,73.0
151
+ 150,Spirited Away,2001,125,8.6,96.0
152
+ 151,The Big Lebowski,1998,117,8.1,71.0
153
+ 152,The Truman Show,1998,103,8.2,90.0
154
+ 153,Star Wars: Episode VII - The Force Awakens,2015,138,7.8,80.0
155
+ 154,Arrival,2016,116,7.9,81.0
156
+ 155,Amadeus,1984,160,8.4,88.0
157
+ 156,The Lord of the Rings: The Two Towers,2002,179,8.8,87.0
158
+ 157,The Lion King,1994,88,8.5,88.0
159
+ 158,The Terminator,1984,107,8.1,84.0
160
+ 159,Catch Me If You Can,2002,141,8.1,75.0
161
+ 160,Sin City,2005,124,8.0,74.0
162
+ 161,Primal Fear,1996,129,7.7,47.0
163
+ 162,The Notebook,2004,123,7.8,53.0
164
+ 163,The Sixth Sense,1999,107,8.2,64.0
165
+ 164,Home Alone,1990,103,7.7,63.0
166
+ 165,One Flew Over the Cuckoo's Nest,1975,133,8.7,84.0
167
+ 166,The Sound of Music,1965,172,8.1,63.0
168
+ 167,The Revenant,2015,156,8.0,76.0
169
+ 168,Die Hard,1988,132,8.2,72.0
170
+ 169,Braveheart,1995,178,8.4,68.0
171
+ 170,The Hunt,2012,115,8.3,77.0
172
+ 171,Trainspotting,1996,93,8.1,83.0
173
+ 172,Ratatouille,2007,111,8.1,96.0
174
+ 173,Ocean's Eleven,2001,116,7.7,74.0
175
+ 174,Kill Bill: Vol. 1,2003,111,8.2,69.0
176
+ 175,2001: A Space Odyssey,1968,149,8.3,84.0
177
+ 176,City of God,2002,130,8.6,79.0
178
+ 177,This Is Spinal Tap,1984,82,7.9,92.0
179
+ 178,Airplane!,1980,88,7.7,78.0
180
+ 179,True Romance,1993,119,7.9,59.0
181
+ 180,Ghostbusters,1984,105,7.8,71.0
182
+ 181,There Will Be Blood,2007,158,8.2,93.0
183
+ 182,Minority Report,2002,145,7.6,80.0
184
+ 183,Remember the Titans,2000,113,7.8,48.0
185
+ 184,Deadpool,2016,108,8.0,65.0
186
+ 185,300,2006,117,7.6,52.0
187
+ 186,Kick-Ass,2010,117,7.6,66.0
188
+ 187,The Avengers,2012,143,8.0,69.0
189
+ 188,Casino Royale,2006,144,8.0,80.0
190
+ 189,The Perks of Being a Wallflower,2012,103,7.9,67.0
191
+ 190,Jojo Rabbit,2019,108,7.9,58.0
192
+ 191,Full Metal Jacket,1987,116,8.3,76.0
193
+ 192,Watchmen,2009,162,7.6,56.0
194
+ 194,The Pianist,2002,150,8.5,85.0
195
+ 195,JFK,1991,189,8.0,72.0
196
+ 196,Office Space,1999,89,7.6,68.0
197
+ 197,Almost Famous,2000,122,7.9,90.0
198
+ 198,The Thing,1982,109,8.2,57.0
199
+ 199,Hamilton,2020,160,8.4,89.0
200
+ 200,Boogie Nights,1997,155,7.9,85.0
201
+ 201,Nightcrawler,2014,117,7.8,76.0
202
+ 202,The Intouchables,2011,112,8.5,57.0
203
+ 203,Finding Nemo,2003,100,8.2,90.0
204
+ 204,Once Upon a Time in America,1984,229,8.3,75.0
205
+ 205,The Social Network,2010,120,7.8,95.0
206
+ 206,The Martian,2015,144,8.0,80.0
207
+ 207,Coco,2017,105,8.4,81.0
208
+ 208,Jaws,1975,124,8.1,87.0
209
+ 209,Iron Man,2008,126,7.9,79.0
210
+ 210,The Help,2011,146,8.1,62.0
211
+ 211,Zootopia,2016,108,8.0,78.0
212
+ 212,Moana,2016,107,7.6,81.0
213
+ 213,Fargo,1996,98,8.1,85.0
214
+ 214,The Imitation Game,2014,114,8.0,71.0
215
+ 215,The Blind Side,2009,129,7.6,53.0
216
+ 216,Black Hawk Down,2001,144,7.7,74.0
217
+ 217,Once Upon a Time in the West,1968,165,8.5,80.0
218
+ 218,Dead Poets Society,1989,128,8.1,79.0
219
+ 219,The Exorcist,1973,122,8.1,81.0
220
+ 220,Hell or High Water,2016,102,7.6,88.0
221
+ 221,The Girl with the Dragon Tattoo,2011,158,7.8,71.0
222
+ 222,Blue Is the Warmest Colour,2013,180,7.7,90.0
223
+ 223,Edward Scissorhands,1990,105,7.9,74.0
224
+ 224,Kung Fu Panda,2008,92,7.6,74.0
225
+ 225,Casino,1995,178,8.2,73.0
226
+ 226,Inside Out,2015,95,8.2,94.0
227
+ 227,Dances with Wolves,1990,181,8.0,72.0
228
+ 228,Toy Story,1995,81,8.3,96.0
229
+ 229,Little Miss Sunshine,2006,101,7.8,80.0
230
+ 230,Chinatown,1974,130,8.2,92.0
231
+ 231,Apocalypto,2006,139,7.8,68.0
232
+ 232,Edge of Tomorrow,2014,113,7.9,71.0
233
+ 233,Skyfall,2012,143,7.8,81.0
234
+ 234,Deadpool 2,2018,119,7.7,66.0
235
+ 235,Howl's Moving Castle,2004,119,8.2,80.0
236
+ 236,Ferris Bueller's Day Off,1986,103,7.8,61.0
237
+ 237,Star Trek,2009,127,7.9,82.0
238
+ 238,Atonement,2007,123,7.8,85.0
239
+ 239,Thor: Ragnarok,2017,130,7.9,74.0
240
+ 240,E.T. the Extra-Terrestrial,1982,115,7.9,91.0
241
+ 241,Lion,2016,118,8.0,69.0
242
+ 242,Spotlight,2015,129,8.1,93.0
243
+ 243,Casablanca,1942,102,8.5,100.0
244
+ 244,Manchester by the Sea,2016,137,7.8,96.0
245
+ 245,Pan's Labyrinth,2006,118,8.2,98.0
246
+ 246,Guardians of the Galaxy Vol. 2,2017,136,7.6,67.0
247
+ 247,The Wizard of Oz,1939,102,8.1,92.0
248
+ 248,Psycho,1960,109,8.5,97.0
249
+ 249,Before Sunrise,1995,101,8.1,77.0
250
+ 250,What's Eating Gilbert Grape,1993,118,7.7,73.0
251
+ 251,The Game,1997,129,7.7,63.0
252
+ 252,Blue Velvet,1986,120,7.7,76.0
253
+ 253,Your Name.,2016,106,8.4,79.0
254
+ 254,In the Heat of the Night,1967,110,7.9,76.0
255
+ 255,Star Wars: Episode V - The Empire Strikes Back,1980,124,8.7,82.0
256
+ 256,The Deer Hunter,1978,183,8.1,86.0
257
+ 257,Another Round,2020,117,7.7,79.0
258
+ 258,"Lock, Stock and Two Smoking Barrels",1998,107,8.2,66.0
259
+ 259,500 Days of Summer,2009,95,7.7,76.0
260
+ 260,Star Wars: Episode VI - Return of the Jedi,1983,131,8.3,58.0
261
+ 261,The Hobbit: The Desolation of Smaug,2013,161,7.8,66.0
262
+ 262,Into the Wild,2007,148,8.1,73.0
263
+ 263,Room,2015,118,8.1,86.0
264
+ 264,The Incredibles,2004,115,8.0,90.0
265
+ 265,My Cousin Vinny,1992,120,7.6,68.0
266
+ 266,Memories of Murder,2003,132,8.1,82.0
267
+ 267,A Beautiful Mind,2001,135,8.2,72.0
268
+ 268,Groundhog Day,1993,101,8.1,72.0
269
+ 269,A Star Is Born,2018,136,7.6,88.0
270
+ 270,It's a Wonderful Life,1946,130,8.6,89.0
271
+ 271,12 Years a Slave,2013,134,8.1,96.0
272
+ 272,Predator,1987,107,7.8,47.0
273
+ 273,The Curious Case of Benjamin Button,2008,166,7.8,70.0
274
+ 274,Birdman or (The Unexpected Virtue of Ignorance),2014,119,7.7,87.0
275
+ 275,When Harry Met Sally...,1989,95,7.7,76.0
276
+ 276,Warrior,2011,140,8.2,71.0
277
+ 277,Stardust,2007,127,7.6,66.0
278
+ 278,3 Idiots,2009,170,8.4,67.0
279
+ 279,True Grit,2010,110,7.6,80.0
280
+ 280,Moneyball,2011,133,7.6,87.0
281
+ 281,Saw,2004,103,7.6,46.0
282
+ 282,RoboCop,1987,102,7.6,70.0
283
+ 283,"O Brother, Where Art Thou?",2000,107,7.7,69.0
284
+ 284,Beauty and the Beast,1991,84,8.0,95.0
285
+ 285,The Fugitive,1993,130,7.8,87.0
286
+ 286,Gone with the Wind,1939,238,8.2,97.0
287
+ 287,A Few Good Men,1992,138,7.7,62.0
288
+ 288,Marriage Story,2019,137,7.9,94.0
289
+ 289,Crash,2004,112,7.8,66.0
290
+ 290,The Last Samurai,2003,154,7.8,55.0
291
+ 291,Portrait of a Lady on Fire,2019,122,8.1,95.0
292
+ 292,The Untouchables,1987,119,7.8,79.0
293
+ 293,Amélie,2001,122,8.3,69.0
294
+ 294,Lost in Translation,2003,102,7.7,91.0
295
+ 295,Blazing Saddles,1974,93,7.7,73.0
296
+ 296,Incendies,2010,131,8.3,80.0
297
+ 297,Inside Man,2006,129,7.6,76.0
298
+ 298,WALL·E,2008,98,8.4,95.0
299
+ 299,The Invisible Man,1933,71,7.6,87.0
300
+ 300,Avatar: The Way of Water,2022,192,7.8,67.0
301
+ 301,Puss in Boots: The Last Wish,2022,102,7.9,75.0
302
+ 302,The Banshees of Inisherin,2022,114,7.8,87.0
303
+ 303,Everything Everywhere All at Once,2022,139,8.0,81.0
304
+ 304,The Fabelmans,2022,151,7.7,84.0
305
+ 305,Knives Out,2019,130,7.9,82.0
306
+ 306,Avatar,2009,162,7.9,83.0
307
+ 307,Top Gun: Maverick,2022,130,8.3,78.0
308
+ 308,Aftersun,2022,102,7.8,95.0
309
+ 309,All Quiet on the Western Front,2022,148,7.8,76.0
310
+ 310,Guillermo del Toro's Pinocchio,2022,117,7.7,79.0
311
+ 311,RRR,2022,187,7.9,83.0
312
+ 312,The Godfather,1972,175,9.2,100.0
313
+ 313,The Batman,2022,176,7.8,72.0
314
+ 314,Once Upon a Time in Hollywood,2019,161,7.6,83.0
315
+ 315,The Shawshank Redemption,1994,142,9.3,81.0
316
+ 316,Interstellar,2014,169,8.6,74.0
317
+ 317,Harry Potter and the Sorcerer's Stone,2001,152,7.6,65.0
318
+ 318,Titanic,1997,194,7.9,75.0
319
+ 319,Pulp Fiction,1994,154,8.9,94.0
320
+ 320,Dune,2021,155,8.0,74.0
321
+ 321,The Goonies,1985,114,7.7,62.0
322
+ 322,Spider-Man: No Way Home,2021,148,8.2,71.0
323
+ 323,The Wolf of Wall Street,2013,180,8.2,75.0
324
+ 324,American Psycho,2000,102,7.6,64.0
325
+ 325,The Dark Knight,2008,152,9.0,84.0
326
+ 326,Inception,2010,148,8.8,74.0
327
+ 327,Fight Club,1999,139,8.8,66.0
328
+ 328,Whiplash,2014,106,8.5,89.0
329
+ 329,The Gentlemen,2019,113,7.8,51.0
330
+ 330,The Blues Brothers,1980,133,7.9,60.0
331
+ 331,Good Will Hunting,1997,126,8.3,70.0
332
+ 332,Heat,1995,170,8.3,76.0
333
+ 333,Avengers: Endgame,2019,181,8.4,78.0
334
+ 334,The Lord of the Rings: The Fellowship of the Ring,2001,178,8.8,92.0
335
+ 335,Parasite,2019,132,8.5,96.0
336
+ 336,Blade Runner 2049,2017,164,8.0,81.0
337
+ 337,Prisoners,2013,153,8.1,70.0
338
+ 338,In Bruges,2008,107,7.9,67.0
339
+ 339,Jurassic Park,1993,127,8.2,68.0
340
+ 340,A Man Called Ove,2015,116,7.7,70.0
341
+ 341,Road to Perdition,2002,117,7.7,72.0
342
+ 342,Schindler's List,1993,195,9.0,94.0
343
+ 343,Goodfellas,1990,145,8.7,91.0
344
+ 344,Forrest Gump,1994,142,8.8,82.0
345
+ 345,Joker,2019,122,8.4,59.0
346
+ 346,Inglourious Basterds,2009,153,8.3,69.0
347
+ 347,Black Swan,2010,108,8.0,79.0
348
+ 348,The Prestige,2006,130,8.5,66.0
349
+ 349,Get Out,2017,104,7.7,85.0
350
+ 350,Indiana Jones and the Raiders of the Lost Ark,1981,115,8.4,85.0
351
+ 351,The Departed,2006,151,8.5,85.0
352
+ 352,Drive,2011,100,7.8,78.0
353
+ 353,Green Book,2018,130,8.2,69.0
354
+ 354,Tombstone,1993,130,7.8,50.0
355
+ 355,Léon: The Professional,1994,110,8.5,64.0
356
+ 356,The Godfather: Part II,1974,202,9.0,90.0
357
+ 357,Sicario,2015,121,7.6,82.0
358
+ 358,Django Unchained,2012,165,8.4,81.0
359
+ 359,Requiem for a Dream,2000,102,8.3,71.0
360
+ 360,Gladiator,2000,155,8.5,67.0
361
+ 361,Apocalypse Now,1979,147,8.5,94.0
362
+ 362,Sing Street,2016,106,7.9,79.0
363
+ 363,The Grand Budapest Hotel,2014,99,8.1,88.0
364
+ 364,Gone Girl,2014,149,8.1,79.0
365
+ 365,The Breakfast Club,1985,97,7.8,66.0
366
+ 366,La La Land,2016,128,8.0,94.0
367
+ 367,12 Angry Men,1957,96,9.0,96.0
368
+ 368,Pride & Prejudice,2005,129,7.8,82.0
369
+ 369,Se7en,1995,127,8.6,65.0
370
+ 370,American Beauty,1999,122,8.4,84.0
371
+ 371,Hidden Figures,2016,127,7.8,74.0
372
+ 372,Shutter Island,2010,138,8.2,63.0
373
+ 373,Life Is Beautiful,1997,116,8.6,59.0
374
+ 374,Rogue One: A Star Wars Story,2016,133,7.8,65.0
375
+ 375,The Green Mile,1999,189,8.6,61.0
376
+ 376,The Lord of the Rings: The Return of the King,2003,201,9.0,94.0
377
+ 377,The Silence of the Lambs,1991,118,8.6,85.0
378
+ 378,The Matrix,1999,136,8.7,73.0
379
+ 379,Mad Max: Fury Road,2015,120,8.1,90.0
380
+ 380,Alien,1979,117,8.5,89.0
381
+ 381,Harry Potter and the Goblet of Fire,2005,157,7.7,81.0
382
+ 382,Back to the Future,1985,116,8.5,87.0
383
+ 383,Rocky,1976,120,8.1,70.0
384
+ 384,No Country for Old Men,2007,122,8.2,92.0
385
+ 385,Mission: Impossible - Fallout,2018,147,7.7,86.0
386
+ 386,Bohemian Rhapsody,2018,134,7.9,49.0
387
+ 387,Reservoir Dogs,1992,99,8.3,79.0
388
+ 388,Hacksaw Ridge,2016,139,8.1,71.0
389
+ 389,Her,2013,126,8.0,91.0
390
+ 390,"Three Billboards Outside Ebbing, Missouri",2017,115,8.1,88.0
391
+ 391,Eternal Sunshine of the Spotless Mind,2004,108,8.3,89.0
392
+ 392,Little Women,2019,135,7.8,91.0
393
+ 393,Taxi Driver,1976,114,8.2,94.0
394
+ 394,CODA,2021,111,8.0,72.0
395
+ 395,The Worst Person in the World,2021,128,7.8,90.0
396
+ 396,Star Wars: Episode IV - A New Hope,1977,121,8.6,90.0
397
+ 397,"The Good, the Bad and the Ugly",1966,178,8.8,90.0
398
+ 398,Harry Potter and the Deathly Hallows: Part 2,2011,130,8.1,85.0
399
+ 399,1917,2019,119,8.2,78.0
400
+ 400,Guardians of the Galaxy,2014,121,8.0,76.0
401
+ 401,The Dark Knight Rises,2012,164,8.4,78.0
402
+ 402,The Sting,1973,129,8.3,83.0
403
+ 403,The Father,2020,97,8.2,88.0
404
+ 404,The Usual Suspects,1995,106,8.5,77.0
405
+ 405,Memento,2000,113,8.4,81.0
406
+ 406,The Princess Bride,1987,98,8.0,77.0
407
+ 407,Aliens,1986,137,8.4,84.0
408
+ 408,Wind River,2017,107,7.7,73.0
409
+ 409,American History X,1998,119,8.5,62.0
410
+ 410,Pirates of the Caribbean: The Curse of the Black Pearl,2003,143,8.1,63.0
411
+ 411,Thirteen Lives,2022,147,7.8,66.0
412
+ 412,Avengers: Infinity War,2018,149,8.4,68.0
413
+ 413,Scarface,1983,170,8.3,65.0
414
+ 414,Blade Runner,1982,117,8.1,84.0
415
+ 415,The Fifth Element,1997,126,7.6,52.0
416
+ 416,Harry Potter and the Deathly Hallows: Part 1,2010,146,7.7,65.0
417
+ 417,Ex Machina,2014,108,7.7,78.0
418
+ 418,Kingsman: The Secret Service,2014,129,7.7,60.0
419
+ 419,About Time,2013,123,7.8,55.0
420
+ 420,The Hateful Eight,2015,168,7.8,68.0
421
+ 421,Oldboy,2003,101,8.4,77.0
422
+ 422,Saving Private Ryan,1998,169,8.6,91.0
423
+ 423,The Shining,1980,146,8.4,66.0
424
+ 424,A Clockwork Orange,1971,136,8.3,77.0
425
+ 425,Donnie Darko,2001,113,8.0,88.0
426
+ 426,Harry Potter and the Prisoner of Azkaban,2004,142,7.9,82.0
427
+ 427,Spider-Man: Into the Spider-Verse,2018,117,8.4,87.0
428
+ 428,Terminator 2: Judgment Day,1991,137,8.6,75.0
429
+ 429,Brokeback Mountain,2005,134,7.7,87.0
430
+ 430,Logan,2017,137,8.1,77.0
431
+ 431,The Hobbit: An Unexpected Journey,2012,169,7.8,58.0
432
+ 432,Ford v Ferrari,2019,152,8.1,81.0
433
+ 433,Mulholland Drive,2001,147,7.9,86.0
434
+ 435,Indiana Jones and the Last Crusade,1989,127,8.2,65.0
435
+ 436,Zodiac,2007,157,7.7,79.0
436
+ 437,Call Me by Your Name,2017,132,7.8,94.0
437
+ 438,Snatch,2000,102,8.2,55.0
438
+ 439,Batman Begins,2005,140,8.2,70.0
439
+ 440,The Handmaiden,2016,145,8.1,84.0
440
+ 441,Zack Snyder's Justice League,2021,242,8.0,54.0
441
+ 442,Shrek,2001,90,7.9,84.0
442
+ 443,Superbad,2007,113,7.6,76.0
443
+ 444,Searching,2018,102,7.6,71.0
444
+ 445,The Big Short,2015,130,7.8,81.0
445
+ 446,The Irishman,2019,209,7.8,94.0
446
+ 447,Stand by Me,1986,89,8.1,75.0
447
+ 448,Dunkirk,2017,106,7.8,94.0
448
+ 449,The Hangover,2009,100,7.7,73.0
449
+ 450,Spirited Away,2001,125,8.6,96.0
450
+ 451,The Big Lebowski,1998,117,8.1,71.0
451
+ 452,The Truman Show,1998,103,8.2,90.0
452
+ 453,Star Wars: Episode VII - The Force Awakens,2015,138,7.8,80.0
453
+ 454,Arrival,2016,116,7.9,81.0
454
+ 455,Amadeus,1984,160,8.4,88.0
455
+ 456,The Lord of the Rings: The Two Towers,2002,179,8.8,87.0
456
+ 457,The Lion King,1994,88,8.5,88.0
457
+ 458,The Terminator,1984,107,8.1,84.0
458
+ 459,Catch Me If You Can,2002,141,8.1,75.0
459
+ 460,Sin City,2005,124,8.0,74.0
460
+ 461,Primal Fear,1996,129,7.7,47.0
461
+ 462,The Notebook,2004,123,7.8,53.0
462
+ 463,The Sixth Sense,1999,107,8.2,64.0
463
+ 464,Home Alone,1990,103,7.7,63.0
464
+ 465,One Flew Over the Cuckoo's Nest,1975,133,8.7,84.0
465
+ 466,The Sound of Music,1965,172,8.1,63.0
466
+ 467,The Revenant,2015,156,8.0,76.0
467
+ 468,Die Hard,1988,132,8.2,72.0
468
+ 469,Braveheart,1995,178,8.4,68.0
469
+ 470,The Hunt,2012,115,8.3,77.0
470
+ 471,Trainspotting,1996,93,8.1,83.0
471
+ 472,Ratatouille,2007,111,8.1,96.0
472
+ 473,Ocean's Eleven,2001,116,7.7,74.0
473
+ 474,Kill Bill: Vol. 1,2003,111,8.2,69.0
474
+ 475,2001: A Space Odyssey,1968,149,8.3,84.0
475
+ 476,City of God,2002,130,8.6,79.0
476
+ 477,This Is Spinal Tap,1984,82,7.9,92.0
477
+ 478,Airplane!,1980,88,7.7,78.0
478
+ 479,True Romance,1993,119,7.9,59.0
479
+ 480,Ghostbusters,1984,105,7.8,71.0
480
+ 481,There Will Be Blood,2007,158,8.2,93.0
481
+ 482,Minority Report,2002,145,7.6,80.0
482
+ 483,Remember the Titans,2000,113,7.8,48.0
483
+ 484,Deadpool,2016,108,8.0,65.0
484
+ 485,300,2006,117,7.6,52.0
485
+ 486,Kick-Ass,2010,117,7.6,66.0
486
+ 487,The Avengers,2012,143,8.0,69.0
487
+ 488,Casino Royale,2006,144,8.0,80.0
488
+ 489,The Perks of Being a Wallflower,2012,103,7.9,67.0
489
+ 490,Jojo Rabbit,2019,108,7.9,58.0
490
+ 491,Full Metal Jacket,1987,116,8.3,76.0
491
+ 492,Watchmen,2009,162,7.6,56.0
492
+ 494,The Pianist,2002,150,8.5,85.0
493
+ 495,JFK,1991,189,8.0,72.0
494
+ 496,Office Space,1999,89,7.6,68.0
495
+ 497,Almost Famous,2000,122,7.9,90.0
496
+ 498,The Thing,1982,109,8.2,57.0
497
+ 499,Hamilton,2020,160,8.4,89.0
498
+ 500,Boogie Nights,1997,155,7.9,85.0
499
+ 501,Nightcrawler,2014,117,7.8,76.0
500
+ 502,The Intouchables,2011,112,8.5,57.0
501
+ 503,Finding Nemo,2003,100,8.2,90.0
502
+ 504,Once Upon a Time in America,1984,229,8.3,75.0
503
+ 505,The Social Network,2010,120,7.8,95.0
504
+ 506,The Martian,2015,144,8.0,80.0
505
+ 507,Coco,2017,105,8.4,81.0
506
+ 508,Jaws,1975,124,8.1,87.0
507
+ 509,Iron Man,2008,126,7.9,79.0
508
+ 510,The Help,2011,146,8.1,62.0
509
+ 511,Zootopia,2016,108,8.0,78.0
510
+ 512,Moana,2016,107,7.6,81.0
511
+ 513,Fargo,1996,98,8.1,85.0
512
+ 514,The Imitation Game,2014,114,8.0,71.0
513
+ 515,The Blind Side,2009,129,7.6,53.0
514
+ 516,Black Hawk Down,2001,144,7.7,74.0
515
+ 517,Once Upon a Time in the West,1968,165,8.5,80.0
516
+ 518,Dead Poets Society,1989,128,8.1,79.0
517
+ 519,The Exorcist,1973,122,8.1,81.0
518
+ 520,Hell or High Water,2016,102,7.6,88.0
519
+ 521,The Girl with the Dragon Tattoo,2011,158,7.8,71.0
520
+ 522,Blue Is the Warmest Colour,2013,180,7.7,90.0
521
+ 523,Edward Scissorhands,1990,105,7.9,74.0
522
+ 524,Kung Fu Panda,2008,92,7.6,74.0
523
+ 525,Casino,1995,178,8.2,73.0
524
+ 526,Inside Out,2015,95,8.2,94.0
525
+ 527,Dances with Wolves,1990,181,8.0,72.0
526
+ 528,Toy Story,1995,81,8.3,96.0
527
+ 529,Little Miss Sunshine,2006,101,7.8,80.0
528
+ 530,Chinatown,1974,130,8.2,92.0
529
+ 531,Apocalypto,2006,139,7.8,68.0
530
+ 532,Edge of Tomorrow,2014,113,7.9,71.0
531
+ 533,Skyfall,2012,143,7.8,81.0
532
+ 534,Deadpool 2,2018,119,7.7,66.0
533
+ 535,Howl's Moving Castle,2004,119,8.2,80.0
534
+ 536,Ferris Bueller's Day Off,1986,103,7.8,61.0
535
+ 537,Star Trek,2009,127,7.9,82.0
536
+ 538,Atonement,2007,123,7.8,85.0
537
+ 539,Thor: Ragnarok,2017,130,7.9,74.0
538
+ 540,E.T. the Extra-Terrestrial,1982,115,7.9,91.0
539
+ 541,Lion,2016,118,8.0,69.0
540
+ 542,Spotlight,2015,129,8.1,93.0
541
+ 543,Casablanca,1942,102,8.5,100.0
542
+ 544,Manchester by the Sea,2016,137,7.8,96.0
543
+ 545,Pan's Labyrinth,2006,118,8.2,98.0
544
+ 546,Guardians of the Galaxy Vol. 2,2017,136,7.6,67.0
545
+ 547,The Wizard of Oz,1939,102,8.1,92.0
546
+ 548,Psycho,1960,109,8.5,97.0
547
+ 549,Before Sunrise,1995,101,8.1,77.0
548
+ 550,What's Eating Gilbert Grape,1993,118,7.7,73.0
549
+ 551,The Game,1997,129,7.7,63.0
550
+ 552,Blue Velvet,1986,120,7.7,76.0
551
+ 553,Your Name.,2016,106,8.4,79.0
552
+ 554,In the Heat of the Night,1967,110,7.9,76.0
553
+ 555,Star Wars: Episode V - The Empire Strikes Back,1980,124,8.7,82.0
554
+ 556,The Deer Hunter,1978,183,8.1,86.0
555
+ 557,Another Round,2020,117,7.7,79.0
556
+ 558,"Lock, Stock and Two Smoking Barrels",1998,107,8.2,66.0
557
+ 559,500 Days of Summer,2009,95,7.7,76.0
558
+ 560,Star Wars: Episode VI - Return of the Jedi,1983,131,8.3,58.0
559
+ 561,The Hobbit: The Desolation of Smaug,2013,161,7.8,66.0
560
+ 562,Into the Wild,2007,148,8.1,73.0
561
+ 563,Room,2015,118,8.1,86.0
562
+ 564,The Incredibles,2004,115,8.0,90.0
563
+ 565,My Cousin Vinny,1992,120,7.6,68.0
564
+ 566,Memories of Murder,2003,132,8.1,82.0
565
+ 567,A Beautiful Mind,2001,135,8.2,72.0
566
+ 568,Groundhog Day,1993,101,8.1,72.0
567
+ 569,A Star Is Born,2018,136,7.6,88.0
568
+ 570,It's a Wonderful Life,1946,130,8.6,89.0
569
+ 571,12 Years a Slave,2013,134,8.1,96.0
570
+ 572,Predator,1987,107,7.8,47.0
571
+ 573,The Curious Case of Benjamin Button,2008,166,7.8,70.0
572
+ 574,Birdman or (The Unexpected Virtue of Ignorance),2014,119,7.7,87.0
573
+ 575,When Harry Met Sally...,1989,95,7.7,76.0
574
+ 576,Warrior,2011,140,8.2,71.0
575
+ 577,Stardust,2007,127,7.6,66.0
576
+ 578,3 Idiots,2009,170,8.4,67.0
577
+ 579,True Grit,2010,110,7.6,80.0
578
+ 580,Moneyball,2011,133,7.6,87.0
579
+ 581,Saw,2004,103,7.6,46.0
580
+ 582,RoboCop,1987,102,7.6,70.0
581
+ 583,"O Brother, Where Art Thou?",2000,107,7.7,69.0
582
+ 584,Beauty and the Beast,1991,84,8.0,95.0
583
+ 585,The Fugitive,1993,130,7.8,87.0
584
+ 586,Gone with the Wind,1939,238,8.2,97.0
585
+ 587,A Few Good Men,1992,138,7.7,62.0
586
+ 588,Marriage Story,2019,137,7.9,94.0
587
+ 589,Crash,2004,112,7.8,66.0
588
+ 590,The Last Samurai,2003,154,7.8,55.0
589
+ 591,Portrait of a Lady on Fire,2019,122,8.1,95.0
590
+ 592,The Untouchables,1987,119,7.8,79.0
591
+ 593,Amélie,2001,122,8.3,69.0
592
+ 594,Lost in Translation,2003,102,7.7,91.0
593
+ 595,Blazing Saddles,1974,93,7.7,73.0
594
+ 596,Incendies,2010,131,8.3,80.0
595
+ 597,Inside Man,2006,129,7.6,76.0
596
+ 598,WALL·E,2008,98,8.4,95.0
597
+ 599,The Invisible Man,1933,71,7.6,87.0
598
+ 600,Sound of Metal,2019,120,7.7,82.0
599
+ 601,Tangled,2010,100,7.7,71.0
600
+ 602,Gravity,2013,91,7.7,96.0
601
+ 603,Platoon,1986,120,8.1,92.0
602
+ 604,Star Wars: Episode III - Revenge of the Sith,2005,140,7.6,68.0
603
+ 605,Cast Away,2000,143,7.8,73.0
604
+ 606,"Monsters, Inc.",2001,92,8.1,79.0
605
+ 607,Mr. Nobody,2009,141,7.8,63.0
606
+ 608,Empire of the Sun,1987,153,7.7,62.0
607
+ 609,L.A. Confidential,1997,138,8.2,91.0
608
+ 610,Deliverance,1972,109,7.7,80.0
609
+ 611,Clerks,1994,92,7.7,70.0
610
+ 612,The Machinist,2004,101,7.7,61.0
611
+ 613,Children of Men,2006,109,7.9,84.0
612
+ 614,Taken,2008,90,7.8,51.0
613
+ 615,Training Day,2001,122,7.7,69.0
614
+ 616,V for Vendetta,2005,132,8.2,62.0
615
+ 618,The Naked Gun: From the Files of Police Squad!,1988,85,7.6,76.0
616
+ 619,Y tu mamá también,2001,106,7.7,89.0
617
+ 620,The Lives of Others,2006,137,8.4,89.0
618
+ 621,The Butterfly Effect,2004,113,7.6,30.0
619
+ 622,Doctor Zhivago,1965,197,7.9,69.0
620
+ 623,The Sandlot,1993,101,7.8,55.0
621
+ 624,Up,2009,96,8.3,88.0
622
+ 625,Captain America: Civil War,2016,147,7.8,75.0
623
+ 626,Hot Fuzz,2007,121,7.8,81.0
624
+ 627,How to Train Your Dragon,2010,98,8.1,75.0
625
+ 628,Halloween,1978,91,7.7,87.0
626
+ 629,Gone Baby Gone,2007,114,7.6,72.0
627
+ 631,The Last of the Mohicans,1992,112,7.7,76.0
628
+ 632,Willy Wonka & the Chocolate Factory,1971,100,7.8,67.0
629
+ 633,Coraline,2009,100,7.7,80.0
630
+ 634,"Crouching Tiger, Hidden Dragon",2000,120,7.9,94.0
631
+ 635,Soul,2020,100,8.0,83.0
632
+ 636,What We Do in the Shadows,2014,86,7.6,76.0
633
+ 637,The Pursuit of Happyness,2006,117,8.0,64.0
634
+ 638,The Bourne Identity,2002,119,7.9,68.0
635
+ 639,Donnie Brasco,1997,127,7.7,76.0
636
+ 640,Silver Linings Playbook,2012,122,7.7,81.0
637
+ 641,The Magnificent Seven,1960,128,7.7,74.0
638
+ 642,X-Men: First Class,2011,131,7.7,65.0
639
+ 643,Unforgiven,1992,130,8.2,85.0
640
+ 644,Mystic River,2003,138,7.9,84.0
641
+ 645,Magnolia,1999,188,8.0,78.0
642
+ 646,Lawrence of Arabia,1962,218,8.3,100.0
643
+ 647,Aladdin,1992,90,8.0,86.0
644
+ 648,Grave of the Fireflies,1988,89,8.5,94.0
645
+ 649,Wonder,2017,113,7.9,66.0
646
+ 650,Downfall,2004,156,8.2,82.0
647
+ 651,Fantastic Mr. Fox,2009,87,7.9,83.0
648
+ 652,12 Monkeys,1995,129,8.0,74.0
649
+ 653,First Blood,1982,93,7.7,61.0
650
+ 654,The Boy in the Striped Pajamas,2008,94,7.7,55.0
651
+ 655,The Fighter,2010,116,7.8,79.0
652
+ 656,The Count of Monte Cristo,2002,131,7.7,61.0
653
+ 657,Slumdog Millionaire,2008,120,8.0,84.0
654
+ 658,Back to the Future Part II,1989,108,7.8,57.0
655
+ 659,The Lego Movie,2014,100,7.7,83.0
656
+ 660,Seven Samurai,1954,207,8.6,98.0
657
+ 661,Captain America: The Winter Soldier,2014,136,7.8,70.0
658
+ 662,Dallas Buyers Club,2013,117,7.9,77.0
659
+ 663,Some Like It Hot,1959,121,8.2,98.0
660
+ 664,Rain Man,1988,133,8.0,65.0
661
+ 665,All Quiet on the Western Front,1930,152,8.1,91.0
662
+ 666,The Thin Red Line,1998,170,7.6,78.0
663
+ 667,Capernaum,2018,126,8.4,75.0
664
+ 668,Rush,2013,123,8.1,74.0
665
+ 669,District 9,2009,112,7.9,81.0
666
+ 670,Perfect Blue,1997,81,8.0,67.0
667
+ 671,The Graduate,1967,106,8.0,83.0
668
+ 672,Princess Mononoke,1997,134,8.4,76.0
669
+ 673,Life of Pi,2012,127,7.9,79.0
670
+ 674,The Royal Tenenbaums,2001,110,7.6,76.0
671
+ 675,Big Fish,2003,125,8.0,58.0
672
+ 676,Midnight in Paris,2011,94,7.7,81.0
673
+ 677,Blood Diamond,2006,143,8.0,64.0
674
+ 678,Sense and Sensibility,1995,136,7.7,84.0
675
+ 679,Shaun of the Dead,2004,99,7.9,76.0
676
+ 680,Argo,2012,120,7.7,86.0
677
+ 682,Lucky Number Slevin,2006,110,7.7,53.0
678
+ 683,Mary Poppins,1964,139,7.8,88.0
679
+ 684,Mulan,1998,87,7.6,71.0
680
+ 685,X-Men: Days of Future Past,2014,132,7.9,75.0
681
+ 686,Citizen Kane,1941,119,8.3,100.0
682
+ 687,Gran Torino,2008,116,8.1,72.0
683
+ 688,Isle of Dogs,2018,101,7.8,82.0
684
+ 689,3:10 to Yuma,2007,122,7.7,76.0
685
+ 690,Toy Story 4,2019,100,7.7,84.0
686
+ 691,Toy Story 3,2010,103,8.3,92.0
687
+ 692,Million Dollar Baby,2004,132,8.1,86.0
688
+ 693,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,1964,95,8.4,97.0
689
+ 694,Despicable Me,2010,95,7.6,72.0
690
+ 695,Serenity,2005,119,7.8,74.0
691
+ 696,In the Mood for Love,2000,98,8.1,86.0
692
+ 697,The Mitchells vs the Machines,2021,114,7.6,81.0
693
+ 698,Vertigo,1958,128,8.3,100.0
694
+ 699,Scent of a Woman,1992,156,8.0,59.0
695
+ 700,Raging Bull,1980,129,8.2,89.0
696
+ 701,Captain Fantastic,2016,118,7.8,72.0
697
+ 702,I Saw the Devil,2010,144,7.8,67.0
698
+ 703,Monty Python and the Holy Grail,1975,91,8.2,91.0
699
+ 704,Cinema Paradiso,1988,155,8.5,80.0
700
+ 705,Misery,1990,107,7.8,75.0
701
+ 706,The Fault in Our Stars,2014,126,7.7,69.0
702
+ 707,A Bronx Tale,1993,121,7.8,80.0
703
+ 708,North by Northwest,1959,136,8.3,98.0
704
+ 709,American Gangster,2007,157,7.8,76.0
705
+ 710,Rear Window,1954,112,8.5,100.0
706
+ 711,The Fly,1986,96,7.6,79.0
707
+ 712,The King's Speech,2010,118,8.0,88.0
708
+ 713,As Good as It Gets,1997,139,7.7,67.0
709
+ 714,The Holy Mountain,1973,114,7.8,76.0
710
+ 715,Gattaca,1997,106,7.8,64.0
711
+ 716,Kill Bill: Vol. 2,2004,137,8.0,83.0
712
+ 717,The Secret in Their Eyes,2009,129,8.2,80.0
713
+ 718,Apollo 13,1995,140,7.7,77.0
714
+ 719,Big Hero 6,2014,102,7.8,74.0
715
+ 721,Wreck-It Ralph,2012,101,7.7,72.0
716
+ 722,Rosemary's Baby,1968,137,8.0,96.0
717
+ 723,Close Encounters of the Third Kind,1977,138,7.6,90.0
718
+ 724,Who Framed Roger Rabbit,1988,104,7.7,83.0
719
+ 725,Metropolis,1927,153,8.3,98.0
720
+ 726,My Neighbor Totoro,1988,86,8.1,86.0
721
+ 727,Wild Tales,2014,122,8.1,77.0
722
+ 728,Young Frankenstein,1974,106,8.0,80.0
723
+ 729,Paddington 2,2017,103,7.8,88.0
724
+ 730,Star Trek II: The Wrath of Khan,1982,113,7.7,68.0
725
+ 731,Walk the Line,2005,136,7.8,72.0
726
+ 732,Moon,2009,97,7.8,67.0
727
+ 733,The Boat,1981,149,8.4,86.0
728
+ 734,The Elephant Man,1980,124,8.2,78.0
729
+ 735,The Others,2001,104,7.6,74.0
730
+ 736,Man on Fire,2004,146,7.7,47.0
731
+ 737,The Wrestler,2008,109,7.9,80.0
732
+ 738,Singin' in the Rain,1952,103,8.3,99.0
733
+ 739,Planet of the Apes,1968,112,8.0,79.0
734
+ 740,Eastern Promises,2007,100,7.6,83.0
735
+ 741,The Boondock Saints,1999,108,7.7,44.0
736
+ 742,Moonrise Kingdom,2012,94,7.8,84.0
737
+ 743,Captain Phillips,2013,134,7.8,82.0
738
+ 744,Before Sunset,2004,80,8.1,90.0
739
+ 745,Barry Lyndon,1975,185,8.1,89.0
740
+ 746,Boyz n the Hood,1991,112,7.8,76.0
741
+ 747,Boyhood,2014,165,7.9,100.0
742
+ 748,Evil Dead II,1987,84,7.7,72.0
743
+ 749,Glengarry Glen Ross,1992,100,7.7,82.0
744
+ 750,Dark City,1998,100,7.6,66.0
745
+ 751,Lethal Weapon,1987,109,7.6,68.0
746
+ 752,Butch Cassidy and the Sundance Kid,1969,110,8.0,66.0
747
+ 754,The Bourne Supremacy,2004,108,7.7,73.0
748
+ 755,To Kill a Mockingbird,1962,129,8.3,88.0
749
+ 756,Straight Outta Compton,2015,147,7.8,72.0
750
+ 757,The Theory of Everything,2014,123,7.7,71.0
751
+ 758,Being John Malkovich,1999,113,7.8,90.0
752
+ 759,Akira,1988,124,8.0,67.0
753
+ 760,The Great Escape,1963,172,8.2,86.0
754
+ 761,The Iron Giant,1999,86,8.1,85.0
755
+ 762,Judgment at Nuremberg,1961,179,8.3,60.0
756
+ 763,Dog Day Afternoon,1975,125,8.0,86.0
757
+ 764,The Raid: Redemption,2011,101,7.6,73.0
758
+ 766,The Birds,1963,119,7.6,90.0
759
+ 767,Flipped,2010,90,7.7,45.0
760
+ 768,The Skin I Live In,2011,120,7.6,70.0
761
+ 769,Do the Right Thing,1989,120,7.9,93.0
762
+ 770,The Nightmare Before Christmas,1993,76,7.9,82.0
763
+ 771,Star Trek Into Darkness,2013,132,7.7,72.0
764
+ 772,End of Watch,2012,109,7.6,68.0
765
+ 773,Carlito's Way,1993,144,7.9,66.0
766
+ 774,Midnight Cowboy,1969,113,7.8,79.0
767
+ 775,The Verdict,1982,129,7.7,77.0
768
+ 776,Fiddler on the Roof,1971,181,8.0,67.0
769
+ 777,Dogville,2003,178,8.0,59.0
770
+ 778,The Road Warrior,1981,96,7.6,77.0
771
+ 779,Toy Story 2,1999,92,7.9,88.0
772
+ 782,Fried Green Tomatoes,1991,130,7.7,64.0
773
+ 783,The Trial of the Chicago 7,2020,129,7.7,76.0
774
+ 784,The Killing Fields,1984,141,7.8,76.0
775
+ 785,Dawn of the Planet of the Apes,2014,130,7.6,79.0
776
+ 786,Adaptation.,2002,115,7.7,83.0
777
+ 787,Roma,2018,135,7.7,96.0
778
+ 788,Witness for the Prosecution,1957,116,8.4,76.0
779
+ 789,Spartacus,1960,197,7.9,87.0
780
+ 790,Before Midnight,2013,109,7.9,94.0
781
+ 791,Brazil,1985,132,7.9,84.0
782
+ 792,Happiness,1998,134,7.7,81.0
783
+ 793,Serpico,1973,130,7.7,81.0
784
+ 794,Shoplifters,2018,121,7.9,93.0
785
+ 795,Let the Right One In,2008,114,7.9,82.0
786
+ 796,The Conversation,1974,113,7.8,87.0
787
+ 798,"Blood In, Blood Out",1993,180,7.9,47.0
788
+ 799,The Day of the Jackal,1973,143,7.8,80.0
789
+ 800,Billy Elliot,2000,110,7.7,74.0
790
+ 801,Die Hard with a Vengeance,1995,128,7.6,58.0
791
+ 802,Philadelphia,1993,125,7.7,66.0
792
+ 803,Life of Brian,1979,94,8.0,77.0
793
+ 805,Awakenings,1990,121,7.8,74.0
794
+ 806,Hunt for the Wilderpeople,2016,101,7.8,81.0
795
+ 807,The Girl with the Dragon Tattoo,2009,152,7.8,76.0
796
+ 808,The Jungle Book,1967,78,7.6,65.0
797
+ 809,A Christmas Story,1983,93,7.9,77.0
798
+ 810,Amores Perros,2000,154,8.1,83.0
799
+ 811,Ghost in the Shell,1995,83,7.9,76.0
800
+ 812,The French Connection,1971,104,7.7,94.0
801
+ 813,"Paris, Texas",1984,145,8.1,81.0
802
+ 814,Charade,1963,113,7.9,83.0
803
+ 815,Chungking Express,1994,102,8.0,78.0
804
+ 816,High Noon,1952,85,8.0,89.0
805
+ 817,Ben-Hur,1959,212,8.1,90.0
806
+ 818,The Longest Day,1962,178,7.7,75.0
807
+ 819,Dark Waters,2019,126,7.6,73.0
808
+ 820,The Apartment,1960,125,8.3,94.0
809
+ 821,How to Train Your Dragon 2,2014,102,7.8,77.0
810
+ 823,The Seventh Seal,1957,96,8.1,88.0
811
+ 824,Glory,1989,122,7.8,78.0
812
+ 825,Naked,1993,131,7.7,85.0
813
+ 827,The Man Who Shot Liberty Valance,1962,123,8.1,94.0
814
+ 828,Match Point,2005,124,7.6,72.0
815
+ 829,The Raid 2,2014,150,7.9,71.0
816
+ 830,The Bourne Ultimatum,2007,115,8.0,85.0
817
+ 831,The Fall,2006,117,7.8,64.0
818
+ 832,The Dirty Dozen,1967,150,7.7,73.0
819
+ 833,Goldfinger,1964,110,7.7,87.0
820
+ 834,A Fistful of Dollars,1964,99,7.9,65.0
821
+ 835,Klaus,2019,96,8.2,65.0
822
+ 836,Sling Blade,1996,135,8.0,84.0
823
+ 837,A Silent Voice: The Movie,2016,130,8.1,78.0
824
+ 838,Paths of Glory,1957,88,8.4,90.0
825
+ 839,For a Few Dollars More,1965,132,8.2,74.0
826
+ 840,8½,1963,138,8.0,92.0
827
+ 841,50/50,2011,100,7.6,72.0
828
+ 842,Annie Hall,1977,93,8.0,92.0
829
+ 843,Snow White and the Seven Dwarfs,1937,83,7.6,96.0
830
+ 844,The King of Comedy,1982,109,7.8,73.0
831
+ 845,A Separation,2011,123,8.3,95.0
832
+ 846,Harold and Maude,1971,91,7.9,62.0
833
+ 847,Persona,1966,83,8.1,86.0
834
+ 848,Dirty Harry,1971,102,7.7,87.0
835
+ 849,Harakiri,1962,133,8.6,85.0
836
+ 850,Rio Bravo,1959,141,8.0,93.0
837
+ 851,The Taking of Pelham One Two Three,1974,104,7.6,68.0
838
+ 852,Ran,1985,162,8.2,96.0
839
+ 853,After Hours,1985,97,7.6,90.0
840
+ 854,Kiki's Delivery Service,1989,103,7.8,83.0
841
+ 855,The Artist,2011,100,7.9,89.0
842
+ 856,Roman Holiday,1953,118,8.0,78.0
843
+ 857,Cool Hand Luke,1967,127,8.1,92.0
844
+ 859,The Hustler,1961,134,8.0,90.0
845
+ 860,The Great Beauty,2013,141,7.7,86.0
846
+ 861,Ponyo,2008,101,7.6,86.0
847
+ 862,All the President's Men,1976,138,7.9,84.0
848
+ 863,The Best Offer,2013,131,7.8,49.0
849
+ 865,Bonnie and Clyde,1967,111,7.7,86.0
850
+ 866,Detachment,2011,98,7.7,52.0
851
+ 867,21 Grams,2003,124,7.6,70.0
852
+ 869,This Is England,2006,101,7.7,86.0
853
+ 870,Ikiru,1952,143,8.3,91.0
854
+ 871,The Searchers,1956,119,7.9,94.0
855
+ 872,Kung Fu Hustle,2004,99,7.7,78.0
856
+ 873,Gandhi,1982,191,8.0,79.0
857
+ 874,In the Name of the Father,1993,133,8.1,84.0
858
+ 875,Dawn of the Dead,1978,127,7.8,71.0
859
+ 876,The Color Purple,1985,154,7.7,78.0
860
+ 877,The Outlaw Josey Wales,1976,135,7.8,69.0
861
+ 879,The Remains of the Day,1993,134,7.8,86.0
862
+ 880,Rushmore,1998,93,7.6,86.0
863
+ 881,Malcolm X,1992,202,7.7,73.0
864
+ 882,The Third Man,1949,93,8.1,97.0
865
+ 883,Network,1976,121,8.1,83.0
866
+ 884,Ray,2004,152,7.7,73.0
867
+ 885,A Streetcar Named Desire,1951,122,7.9,97.0
868
+ 886,My Fair Lady,1964,170,7.8,95.0
869
+ 887,Hotel Rwanda,2004,121,8.1,79.0
870
+ 888,The Last Picture Show,1971,118,8.0,93.0
871
+ 889,Enter the Dragon,1973,102,7.6,83.0
872
+ 890,Demon Slayer the Movie: Mugen Train,2020,117,8.2,72.0
873
+ 892,Rope,1948,80,7.9,73.0
874
+ 893,Cabaret,1972,124,7.8,80.0
875
+ 894,The Bridge on the River Kwai,1957,161,8.2,87.0
876
+ 896,The Name of the Rose,1986,130,7.7,54.0
877
+ 897,Mississippi Burning,1988,128,7.8,65.0
878
+ 898,The Wild Bunch,1969,135,7.9,98.0
879
+ 899,Fantastic Planet,1973,72,7.7,73.0
880
+ 901,Three Colors: Blue,1993,94,7.9,85.0
881
+ 903,Papillon,1973,151,8.0,58.0
882
+ 904,Infernal Affairs,2002,101,8.0,75.0
883
+ 905,Solaris,1972,167,8.0,93.0
884
+ 906,Seven Pounds,2008,123,7.6,36.0
885
+ 907,Togo,2019,113,7.9,69.0
886
+ 908,The Maltese Falcon,1941,100,8.0,97.0
887
+ 909,"Quo Vadis, Aida?",2020,101,8.0,97.0
888
+ 910,Ip Man,2008,106,8.0,59.0
889
+ 911,The Insider,1999,157,7.8,84.0
890
+ 912,Night of the Living Dead,1968,96,7.8,89.0
891
+ 913,Finding Neverland,2004,106,7.7,67.0
892
+ 914,The Manchurian Candidate,1962,126,7.9,94.0
893
+ 916,Once,2007,86,7.8,89.0
894
+ 918,Changeling,2008,141,7.8,63.0
895
+ 919,Sabrina,1954,113,7.6,72.0
896
+ 920,Kramer vs. Kramer,1979,105,7.8,77.0
897
+ 921,Being There,1979,130,8.0,83.0
898
+ 922,On the Waterfront,1954,108,8.1,91.0
899
+ 923,La Dolce Vita,1960,174,8.0,95.0
900
+ 924,Rashomon,1950,88,8.2,98.0
901
+ 925,The Night of the Hunter,1955,92,8.0,99.0
902
+ 926,Pink Floyd: The Wall,1982,95,8.0,47.0
903
+ 927,Ordinary People,1980,124,7.7,86.0
904
+ 928,Cinderella Man,2005,144,8.0,69.0
905
+ 929,The Right Stuff,1983,193,7.8,91.0
906
+ 930,From Here to Eternity,1953,118,7.6,85.0
907
+ 932,Hero,2002,120,7.9,85.0
908
+ 933,Rebecca,1940,130,8.1,86.0
909
+ 934,Double Indemnity,1944,107,8.3,95.0
910
+ 935,"South Park: Bigger, Longer & Uncut",1999,81,7.7,73.0
911
+ 936,The Last King of Scotland,2006,123,7.6,74.0
912
+ 937,The Last Emperor,1987,163,7.7,76.0
913
+ 938,Dancer in the Dark,2000,140,7.9,61.0
914
+ 939,25th Hour,2002,135,7.6,69.0
915
+ 940,Mommy,2014,139,8.0,74.0
916
+ 941,All That Jazz,1979,123,7.8,72.0
917
+ 942,Dial M for Murder,1954,105,8.2,75.0
918
+ 943,What Ever Happened to Baby Jane?,1962,134,8.0,75.0
919
+ 944,Patton,1970,172,7.9,91.0
920
+ 946,Castle in the Sky,1986,125,8.0,78.0
921
+ 947,Ed Wood,1994,127,7.8,70.0
922
+ 948,Paper Moon,1973,102,8.1,77.0
923
+ 949,Paprika,2006,90,7.7,81.0
924
+ 950,The Celebration,1998,105,8.1,82.0
925
+ 951,Miller's Crossing,1990,115,7.7,66.0
926
+ 953,Badlands,1973,94,7.7,93.0
927
+ 954,Zulu,1964,138,7.7,77.0
928
+ 955,Breaking the Waves,1996,159,7.8,79.0
929
+ 956,The Bridges of Madison County,1995,135,7.6,69.0
930
+ 958,Barton Fink,1991,116,7.6,69.0
931
+ 961,Stagecoach,1939,96,7.8,93.0
932
+ 962,Pride,2014,119,7.8,79.0
933
+ 963,Me and Earl and the Dying Girl,2015,105,7.7,74.0
934
+ 964,Notorious,1946,102,7.9,100.0
935
+ 965,All About Eve,1950,138,8.2,98.0
936
+ 966,My Left Foot,1989,103,7.9,97.0
937
+ 967,Nausicaä of the Valley of the Wind,1984,117,8.0,86.0
938
+ 968,King Kong,1933,100,7.9,90.0
939
+ 969,Waking Life,2001,99,7.7,83.0
940
+ 970,The Best Years of Our Lives,1946,170,8.1,93.0
941
+ 971,The Treasure of the Sierra Madre,1948,126,8.2,98.0
942
+ 972,The Wind Rises,2013,126,7.7,83.0
943
+ 973,Days of Heaven,1978,94,7.8,93.0
944
+ 975,Run Lola Run,1998,80,7.7,77.0
945
+ 976,Rebel Without a Cause,1955,111,7.6,89.0
946
+ 977,Wings of Desire,1987,128,8.0,79.0
947
+ 978,Gaslight,1944,114,7.8,78.0
948
+ 979,Mother,2009,129,7.8,79.0
949
+ 980,The Conformist,1970,113,7.9,100.0
950
+ 981,Modern Times,1936,87,8.5,96.0
951
+ 982,The Grapes of Wrath,1940,129,8.1,96.0
952
+ 984,October Sky,1999,108,7.8,71.0
953
+ 985,The Quiet Man,1952,129,7.7,85.0
954
+ 986,It Happened One Night,1934,105,8.1,87.0
955
+ 987,Kubo and the Two Strings,2016,101,7.7,84.0
956
+ 988,Three Colors: Red,1994,99,8.1,100.0
957
+ 990,The Straight Story,1999,112,8.0,86.0
958
+ 991,The Adventures of Robin Hood,1938,102,7.9,97.0
959
+ 992,Wolfwalkers,2020,103,8.0,87.0
960
+ 994,United 93,2006,111,7.6,90.0
961
+ 995,Anatomy of a Murder,1959,161,8.0,95.0
962
+ 996,Once Were Warriors,1994,102,7.9,77.0
963
+ 998,I Am Sam,2001,132,7.6,28.0
964
+ 999,Fanny and Alexander,1982,188,8.1,100.0
965
+ 1002,Short Term 12,2013,96,7.9,82.0
966
+ 1003,Strangers on a Train,1951,101,7.9,88.0
967
+ 1004,Freaks,1932,64,7.8,80.0
968
+ 1005,Letters from Iwo Jima,2006,141,7.9,89.0
969
+ 1006,The Big Sleep,1946,114,7.9,86.0
970
+ 1007,Beasts of No Nation,2015,137,7.7,79.0
971
+ 1008,The Philadelphia Story,1940,112,7.9,96.0
972
+ 1009,Frankenstein,1931,70,7.8,91.0
973
+ 1010,Nebraska,2013,115,7.7,86.0
974
+ 1012,The Man Who Would Be King,1975,129,7.8,91.0
975
+ 1013,Whisper of the Heart,1995,111,7.9,75.0
976
+ 1015,In Cold Blood,1967,134,7.9,89.0
977
+ 1016,The Chaser,2008,125,7.8,64.0
978
+ 1017,Who's Afraid of Virginia Woolf?,1966,131,8.0,75.0
979
+ 1018,Elite Squad,2007,115,8.0,33.0
980
+ 1019,Black Book,2006,145,7.7,71.0
981
+ 1020,Gangs of Wasseypur,2012,321,8.2,89.0
982
+ 1021,Mirror,1975,107,8.0,80.0
983
+ 1023,Lilya 4-Ever,2002,109,7.8,82.0
984
+ 1025,The Thin Man,1934,91,7.9,86.0
985
+ 1026,Guess Who's Coming to Dinner,1967,108,7.8,63.0
986
+ 1027,East of Eden,1955,118,7.8,72.0
987
+ 1028,Touch of Evil,1958,95,8.0,99.0
988
+ 1030,Short Cuts,1993,188,7.7,81.0
989
+ 1031,Amour,2012,127,7.9,95.0
990
+ 1032,The African Queen,1951,105,7.7,91.0
991
+ 1033,Fantasia,1940,124,7.7,96.0
992
+ 1035,Control,2007,122,7.6,78.0
993
+ 1036,Yojimbo,1961,110,8.2,93.0
994
+ 1037,The Odd Couple,1968,105,7.6,86.0
995
+ 1038,City Lights,1931,87,8.5,99.0
996
+ 1039,The Leopard,1963,186,8.0,100.0
997
+ 1040,Secrets & Lies,1996,136,8.0,91.0
998
+ 1041,Leviathan,2014,140,7.6,92.0
999
+ 1043,The Double Life of Véronique,1991,98,7.7,86.0
1000
+ 1044,Head-On,2004,121,7.9,78.0
1001
+ 1045,Loving Vincent,2017,94,7.8,62.0
1002
+ 1046,Hannah and Her Sisters,1986,107,7.8,90.0
1003
+ 1047,Philomena,2013,98,7.6,77.0
1004
+ 1048,A Very Long Engagement,2004,133,7.6,76.0
1005
+ 1049,High and Low,1963,143,8.4,90.0
1006
+ 1050,Porco Rosso,1992,94,7.7,83.0
1007
+ 1051,Good Bye Lenin!,2003,121,7.7,68.0
1008
+ 1052,Bringing Up Baby,1938,102,7.8,91.0
1009
+ 1053,Tokyo Story,1953,136,8.2,100.0
1010
+ 1054,Wild Strawberries,1957,91,8.1,88.0
1011
+ 1055,The Legend of 1900,1998,169,8.0,58.0
1012
+ 1056,Batman: Mask of the Phantasm,1993,76,7.8,65.0
1013
+ 1057,A Woman Under the Influence,1974,155,8.1,88.0
1014
+ 1058,Talk to Her,2002,112,7.9,86.0
1015
+ 1059,Children of Heaven,1997,89,8.2,77.0
1016
+ 1061,Manhattan,1979,96,7.8,83.0
1017
+ 1062,Mr. Smith Goes to Washington,1939,129,8.1,73.0
1018
+ 1063,Nobody Knows,2004,141,8.0,88.0
1019
+ 1065,"Goodbye, Children",1987,104,8.0,88.0
1020
+ 1066,Z,1969,127,8.2,86.0
1021
+ 1067,The Bride of Frankenstein,1935,75,7.8,95.0
1022
+ 1068,The Killing,1956,84,8.0,91.0
1023
+ 1072,A Taxi Driver,2017,137,7.9,69.0
1024
+ 1073,Underground,1995,167,8.1,79.0
1025
+ 1075,The Station Agent,2003,89,7.6,81.0
1026
+ 1077,All About My Mother,1999,101,7.8,87.0
1027
+ 1078,The White Ribbon,2009,144,7.8,82.0
1028
+ 1079,The World's Fastest Indian,2005,127,7.8,68.0
1029
+ 1081,3-Iron,2004,88,7.9,72.0
1030
+ 1082,The Little Prince,2015,108,7.7,70.0
1031
+ 1083,"I, Daniel Blake",2016,100,7.8,78.0
1032
+ 1084,The Discreet Charm of the Bourgeoisie,1972,102,7.8,93.0
1033
+ 1086,When Marnie Was There,2014,103,7.7,72.0
1034
+ 1087,The Diving Bell and the Butterfly,2007,112,8.0,92.0
1035
+ 1088,Happy Together,1997,96,7.7,70.0
1036
+ 1089,The Tale of The Princess Kaguya,2013,137,8.0,89.0
1037
+ 1090,Shadow of a Doubt,1943,108,7.8,94.0
1038
+ 1092,Inherit the Wind,1960,128,8.1,75.0
1039
+ 1093,Cat on a Hot Tin Roof,1958,108,7.9,84.0
1040
+ 1094,Song of the Sea,2014,93,8.0,85.0
1041
+ 1096,My Name Is Khan,2010,165,7.9,50.0
1042
+ 1097,Hedwig and the Angry Inch,2001,95,7.7,85.0
1043
+ 1098,Scarface,1932,93,7.7,87.0
1044
+ 1099,The Triplets of Belleville,2003,80,7.7,91.0
1045
+ 1101,Land of Mine,2015,100,7.8,75.0
1046
+ 1102,The Motorcycle Diaries,2004,126,7.7,75.0
1047
+ 1105,Wait Until Dark,1967,108,7.7,81.0
1048
+ 1106,The Lady Vanishes,1938,96,7.8,98.0
1049
+ 1108,Stalag 17,1953,120,8.0,84.0
1050
+ 1109,Invasion of the Body Snatchers,1956,80,7.7,92.0
1051
+ 1112,Farewell My Concubine,1993,171,8.1,83.0
1052
+ 1113,Kal Ho Naa Ho,2003,186,7.9,54.0
1053
+ 1116,To Be or Not to Be,1942,99,8.2,86.0
1054
+ 1117,Sunrise,1927,94,8.1,95.0
1055
+ 1119,Lagaan: Once Upon a Time in India,2001,224,8.1,84.0
1056
+ 1120,Night on Earth,1991,129,7.7,68.0
1057
+ 1124,A Prophet,2009,155,7.8,90.0
1058
+ 1125,The Battle of Algiers,1966,121,8.1,96.0
1059
+ 1126,Out of the Past,1947,97,8.0,85.0
1060
+ 1127,Evil,2003,113,7.7,61.0
1061
+ 1128,Persepolis,2007,96,8.0,90.0
1062
+ 1130,To Have and Have Not,1944,100,7.8,90.0
1063
+ 1131,The Umbrellas of Cherbourg,1964,91,7.8,86.0
1064
+ 1132,Cowboy Bebop: The Movie,2001,115,7.8,61.0
1065
+ 1134,The Lunchbox,2013,104,7.8,76.0
1066
+ 1136,The Broken Circle Breakdown,2012,111,7.7,70.0
1067
+ 1137,Brief Encounter,1945,86,8.0,92.0
1068
+ 1138,Cape Fear,1962,106,7.7,76.0
1069
+ 1140,The Sea Inside,2004,126,8.0,74.0
1070
+ 1141,Winter Sleep,2014,196,8.1,88.0
1071
+ 1142,Eyes Without a Face,1960,90,7.6,90.0
1072
+ 1143,The Shop Around the Corner,1940,99,8.0,96.0
1073
+ 1147,Miracle on 34th Street,1947,96,7.9,88.0
1074
+ 1149,Jules and Jim,1962,105,7.7,97.0
1075
+ 1150,The Salesman,2016,124,7.7,85.0
1076
+ 1151,Nine Queens,2000,114,7.9,80.0
1077
+ 1152,The Experiment,2001,120,7.7,60.0
1078
+ 1154,A Man for All Seasons,1966,120,7.7,72.0
1079
+ 1158,Shine,1996,105,7.6,87.0
1080
+ 1159,Wolf Children,2012,117,8.1,71.0
1081
+ 1160,Battleship Potemkin,1925,66,7.9,97.0
1082
+ 1162,The Wages of Fear,1953,131,8.2,85.0
1083
+ 1165,"Black Cat, White Cat",1998,127,8.0,73.0
1084
+ 1166,The Chorus,2004,97,7.8,56.0
1085
+ 1167,Joint Security Area,2000,110,7.7,58.0
1086
+ 1168,Gully Boy,2019,154,7.9,65.0
1087
+ 1169,"4 Months, 3 Weeks and 2 Days",2007,113,7.9,97.0
1088
+ 1171,"Spring, Summer, Fall, Winter... and Spring",2003,103,8.0,85.0
1089
+ 1172,Adam's Apples,2005,94,7.7,51.0
1090
+ 1173,The Hidden Fortress,1958,126,8.1,89.0
1091
+ 1174,Taste of Cherry,1997,95,7.7,80.0
1092
+ 1175,"Like Father, Like Son",2013,121,7.8,73.0
1093
+ 1176,Kagemusha,1980,162,7.9,84.0
1094
+ 1177,After the Wedding,2006,120,7.7,78.0
1095
+ 1178,The Asphalt Jungle,1950,112,7.8,85.0
1096
+ 1182,Frost/Nixon,2008,122,7.7,80.0
1097
+ 1185,The Way He Looks,2014,96,7.9,71.0
1098
+ 1186,Tokyo Godfathers,2003,92,7.8,73.0
1099
+ 1187,The Killer,1989,111,7.8,82.0
1100
+ 1188,The Innocents,1961,100,7.8,88.0
1101
+ 1191,In America,2002,105,7.7,76.0
1102
+ 1192,Mildred Pierce,1945,111,7.9,88.0
1103
+ 1193,Sweet Smell of Success,1957,96,8.0,100.0
1104
+ 1195,The Caine Mutiny,1954,124,7.7,63.0
1105
+ 1196,Joyeux Noel,2005,116,7.7,70.0
1106
+ 1197,Down by Law,1986,107,7.7,75.0
1107
+ 1198,Departures,2008,130,8.0,68.0
1108
+ 1199,Millennium Actress,2001,87,7.8,70.0
1109
+ 1200,Crimes and Misdemeanors,1989,104,7.8,77.0
1110
+ 1201,My Life as a Zucchini,2016,70,7.7,85.0
1111
+ 1202,Ace in the Hole,1951,111,8.1,72.0
1112
+ 1203,The Muppet Christmas Carol,1992,85,7.7,64.0
1113
+ 1204,The Magdalene Sisters,2002,114,7.7,83.0
1114
+ 1205,The Breadwinner,2017,94,7.7,78.0
1115
+ 1207,Once Upon a Time in Anatolia,2011,157,7.8,82.0
1116
+ 1209,Le Cercle Rouge,1970,140,7.9,91.0
1117
+ 1214,Elevator to the Gallows,1958,91,7.9,94.0
1118
+ 1218,The Rules of the Game,1939,110,7.9,98.0
1119
+ 1219,About Elly,2009,119,7.9,87.0
1120
+ 1221,The Girl Who Leapt Through Time,2006,98,7.7,66.0
1121
+ 1226,Elite Squad 2: The Enemy Within,2010,115,8.0,71.0
1122
+ 1229,Tangerines,2013,87,8.1,73.0
1123
+ 1230,The Purple Rose of Cairo,1985,82,7.7,75.0
1124
+ 1231,The Postman,1994,108,7.8,81.0
1125
+ 1232,Duck Soup,1933,69,7.8,93.0
1126
+ 1233,Rififi,1955,118,8.1,97.0
1127
+ 1239,Through a Glass Darkly,1961,90,8.0,84.0
1128
+ 1241,The Return,2003,110,7.9,82.0
1129
+ 1242,Beauty and the Beast,1946,93,7.9,92.0
1130
+ 1244,No Man's Land,2001,98,7.9,84.0
1131
+ 1245,Central Station,1998,110,8.0,80.0
1132
+ 1255,C.R.A.Z.Y.,2005,129,7.9,81.0
1133
+ 1258,Love and Death,1975,85,7.7,89.0
1134
+ 1261,The Past,2013,130,7.7,85.0
1135
+ 1262,Tae Guk Gi: The Brotherhood of War,2004,140,8.0,64.0
1136
+ 1265,Veer Zaara,2004,192,7.8,67.0
1137
+ 1271,The Edge of Heaven,2007,122,7.7,85.0
1138
+ 1274,Umberto D.,1952,89,8.2,92.0
1139
+ 1280,The Circus,1928,72,8.1,90.0
1140
+ 1281,Let's Go! India,2007,153,8.1,68.0
movies3.csv ADDED
@@ -0,0 +1,250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Action,Adventure,Fantasy,Sci-Fi,Animation,Comedy,Family,Mystery,Romance,Drama,Crime,Thriller,War,Musical,Biography
2
+ 0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0
3
+ 1,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0
4
+ 2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
5
+ 3,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0
6
+ 4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
7
+ 5,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0
8
+ 6,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0
9
+ 7,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0
10
+ 8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
11
+ 9,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0
12
+ 10,0,0,1,0,1,0,1,0,0,1,0,0,0,1,0
13
+ 11,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0
14
+ 12,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
15
+ 13,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0
16
+ 14,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
17
+ 15,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
18
+ 16,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0
19
+ 17,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0
20
+ 18,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
21
+ 19,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
22
+ 20,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0
23
+ 21,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0
24
+ 22,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0
25
+ 23,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1
26
+ 24,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
27
+ 25,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0
28
+ 26,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0
29
+ 27,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
30
+ 28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
31
+ 29,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0
32
+ 30,1,1,0,0,0,1,0,0,0,0,1,0,0,1,0
33
+ 31,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
34
+ 32,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0
35
+ 33,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0
36
+ 34,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0
37
+ 35,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0
38
+ 36,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0
39
+ 37,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
40
+ 38,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0
41
+ 39,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0
42
+ 40,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0
43
+ 41,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
44
+ 42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
45
+ 43,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1
46
+ 44,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
47
+ 45,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
48
+ 46,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0
49
+ 47,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0
50
+ 48,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0
51
+ 49,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0
52
+ 50,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
53
+ 51,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
54
+ 52,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0
55
+ 53,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1
56
+ 54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
57
+ 55,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0
58
+ 56,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
59
+ 57,1,0,0,0,0,0,0,1,0,1,1,1,0,0,0
60
+ 58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
61
+ 59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
62
+ 60,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0
63
+ 61,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0
64
+ 62,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0
65
+ 63,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0
66
+ 64,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0
67
+ 65,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
68
+ 66,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0
69
+ 67,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
70
+ 68,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
71
+ 69,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
72
+ 70,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
73
+ 71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
74
+ 72,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0
75
+ 73,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0
76
+ 74,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
77
+ 75,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0
78
+ 76,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0
79
+ 77,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
80
+ 78,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0
81
+ 79,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0
82
+ 80,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
83
+ 81,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0
84
+ 82,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0
85
+ 83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
86
+ 84,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
87
+ 85,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0
88
+ 86,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
89
+ 87,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0
90
+ 88,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1
91
+ 89,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0
92
+ 90,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0
93
+ 91,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0
94
+ 92,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
95
+ 93,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
96
+ 94,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
97
+ 95,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0
98
+ 96,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0
99
+ 97,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
100
+ 98,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0
101
+ 99,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0
102
+ 100,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0
103
+ 101,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0
104
+ 102,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0
105
+ 103,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0
106
+ 104,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
107
+ 105,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0
108
+ 106,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0
109
+ 107,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0
110
+ 108,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
111
+ 109,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
112
+ 110,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
113
+ 111,1,1,0,0,0,0,0,0,0,1,0,1,0,0,1
114
+ 112,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
115
+ 113,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
116
+ 114,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0
117
+ 115,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
118
+ 116,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0
119
+ 117,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0
120
+ 118,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0
121
+ 119,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0
122
+ 120,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
123
+ 121,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0
124
+ 122,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0
125
+ 123,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
126
+ 124,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0
127
+ 125,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0
128
+ 126,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0
129
+ 127,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0
130
+ 128,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0
131
+ 129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
132
+ 130,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0
133
+ 131,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
134
+ 132,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1
135
+ 133,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0
136
+ 134,1,1,0,0,0,0,0,0,0,1,0,1,0,0,0
137
+ 135,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
138
+ 136,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
139
+ 137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
140
+ 138,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0
141
+ 139,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0
142
+ 140,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0
143
+ 141,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0
144
+ 142,0,1,1,0,1,1,1,0,1,0,0,0,0,0,0
145
+ 143,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
146
+ 144,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0
147
+ 145,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1
148
+ 146,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1
149
+ 147,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
150
+ 148,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0
151
+ 149,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
152
+ 150,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0
153
+ 151,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0
154
+ 152,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
155
+ 153,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
156
+ 154,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0
157
+ 155,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
158
+ 156,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0
159
+ 157,0,1,0,0,1,0,1,0,0,1,0,0,0,1,0
160
+ 158,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0
161
+ 159,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1
162
+ 160,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0
163
+ 161,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
164
+ 162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
165
+ 163,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0
166
+ 164,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
167
+ 165,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
168
+ 166,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1
169
+ 167,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0
170
+ 168,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0
171
+ 169,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1
172
+ 170,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
173
+ 171,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
174
+ 172,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0
175
+ 173,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0
176
+ 174,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0
177
+ 175,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0
178
+ 176,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
179
+ 177,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
180
+ 178,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
181
+ 179,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0
182
+ 180,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0
183
+ 181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
184
+ 182,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0
185
+ 183,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
186
+ 184,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0
187
+ 185,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0
188
+ 186,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0
189
+ 187,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0
190
+ 188,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0
191
+ 189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
192
+ 190,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0
193
+ 191,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0
194
+ 192,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0
195
+ 193,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0
196
+ 194,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1
197
+ 195,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0
198
+ 196,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
199
+ 197,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0
200
+ 198,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0
201
+ 199,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1
202
+ 200,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
203
+ 201,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
204
+ 202,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1
205
+ 203,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0
206
+ 204,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
207
+ 205,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
208
+ 206,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0
209
+ 207,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0
210
+ 208,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0
211
+ 209,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
212
+ 210,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
213
+ 211,0,1,0,0,1,1,1,1,0,0,1,0,0,0,0
214
+ 212,0,1,1,0,1,1,1,0,0,0,0,0,0,1,0
215
+ 213,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
216
+ 214,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1
217
+ 215,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
218
+ 216,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0
219
+ 217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
220
+ 218,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
221
+ 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
222
+ 220,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
223
+ 221,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0
224
+ 222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0
225
+ 223,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0
226
+ 224,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0
227
+ 225,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0
228
+ 226,0,1,1,0,1,1,1,0,0,1,0,0,0,0,0
229
+ 227,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
230
+ 228,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0
231
+ 229,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0
232
+ 230,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0
233
+ 231,1,1,0,0,0,0,0,0,0,1,0,1,0,0,0
234
+ 232,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0
235
+ 233,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0
236
+ 234,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0
237
+ 235,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0
238
+ 236,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
239
+ 237,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
240
+ 238,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0
241
+ 239,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0
242
+ 240,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0
243
+ 241,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1
244
+ 242,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1
245
+ 243,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0
246
+ 244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
247
+ 245,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0
248
+ 246,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0
249
+ 247,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0
250
+ 248,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0