diff --git a/courses/foundation/intro-to-using-ai/README.md b/FINAL-PROJECT/README.md
similarity index 100%
rename from courses/foundation/intro-to-using-ai/README.md
rename to FINAL-PROJECT/README.md
diff --git a/JS3-hw.js b/JS3-hw.js
new file mode 100644
index 000000000..0d511ab00
--- /dev/null
+++ b/JS3-hw.js
@@ -0,0 +1,262 @@
+//#1 Item array removal
+
+const names = [
+ "Peter",
+ "Ahmad",
+ "Yana",
+ "kristina",
+ "Rasmus",
+ "Samuel",
+ "Katrine",
+ "Tala",
+];
+
+const nameToRemove = names.indexOf("Ahmad");
+if (nameToRemove !== -1) {
+ names.splice(nameToRemove, 1);
+}
+
+console.log(names);
+
+//#2 Calculate time to reach the destination in minutes
+
+const travelInformation = {
+ speed: 50,
+ destinationDistance: 432,
+};
+
+function calculateTravelTimeInMinutes(distance, speed) {
+ return (distance/speed) * 60;
+};
+
+console.log(
+ calculateTravelTimeInMinutes(
+ travelInformation.destinationDistance,
+ travelInformation.speed
+ )
+);
+
+
+
+const travelTimeInMinutes = calculateTravelTimeInMinutes(
+ travelInformation.destinationDistance,
+ travelInformation.speed
+);
+
+//Converted minutes into hours and minutes
+
+function calculateTravelTimeInHoursAndMinutes(totalMinutes) {
+ if (totalMinutes < 60) {
+ return `${totalMinutes} minutes`;
+ }
+ const hours = Math.floor(totalMinutes / 60);
+ const minutes = Math.round(totalMinutes % 60);
+ return `${hours} hours ${minutes} minutes`;
+}
+console.log(calculateTravelTimeInHoursAndMinutes(travelTimeInInMinutes)
+); // 8 hours and 38 minutes
+
+//#3 Series duration of my life
+
+const seriesDurations = [
+ {
+ title: "Lost",
+ days: 3,
+ hours: 16,
+ minutes: 30,
+ },
+ {
+ title: "The Residence",
+ days: 0,
+ hours: 7,
+ minutes: 44,
+ },
+ {
+ title: "The The Queen's Gambit",
+ days: 0,
+ hours: 6,
+ minutes: 32,
+ },
+];
+
+//Calculate total series duration in minutes
+
+ let totalSeriesDurationInMinutes = 0;
+
+ for (const duration of seriesDurations) {
+ totalSeriesDurationInMinutes +=((duration.days*24*60)+(duration.hours *60)+duration.minutes);
+ }
+
+console.log(totalSeriesDurationInMinutes);
+
+// Convert Life span into minutes
+
+function convertLifeSpanYearsIntoMinutes(years) {
+ return (years*525600);//1 year = 525600 minutes
+}
+
+//Ask for age
+let lifeSpanInYears = prompt("How old are you?");
+lifeSpanInYears = Number(lifeSpanInYears);
+
+function validateLifeSpanInput(lifeSpanInYears) {
+ if (isNaN(lifeSpanInYears) || lifeSpanInYears === "" || lifeSpanInYears == null) {
+ console.log("Please enter a valid number.");
+ return;
+ }
+
+const lifeSpanInMinutes = convertLifeSpanYearsIntoMinutes(lifeSpanInYears);
+
+//Calculate series duration as a percentage of life span
+function seriesDurationsOutOfLifeSpan(seriesMinutes, lifeSpanMinutes) {
+ return (seriesMinutes/lifeSpanMinutes) * 100;
+};
+
+console.log(
+ "Series duration as percentage of life span:",
+ seriesDurationsOutOfLifeSpan(
+ totalSeriesDurationInMinutes,
+ lifeSpanInMinutes
+ ).toFixed(2) + "%"
+);
+
+
+//#4 Note taking app
+
+//Save a note
+
+let notes = [];
+
+ function saveNote(content, id) {
+ if (content.trim() !== "") {
+ notes.push({ id, content })
+ }
+ }
+
+saveNote("Pick up groceries", 1);
+saveNote("Do laundry", 2);
+
+console.log("Current notes:", notes);
+
+//Get a note by id
+
+function getNote(id){
+ //Check if id is missing or not a number
+ if (id === undefined ||
+ typeof id !== "number") {
+ console.log("Error");
+ return;
+ }
+ //Loop to find the note with the id
+ for (let i = 0; i < notes.length; i++) {
+ if (notes[i].id === id) {
+ return notes[i]; // return the note object
+ }
+ }
+ //If the id is not found
+ return "Not found";
+ }
+
+const firstNote = getNote(1);
+console.log(firstNote); // {content: 'Pick up groceries', id: 1}
+
+//Log out notes
+
+function logOutNotesFormatted() {
+ for (let note of notes) {
+ console.log(`The note with id: ${note.id}, has the following note text:${note.content}`);
+ }
+ }
+
+logOutNotesFormatted();
+
+//Delete a note
+
+//Keep undeleted notes
+function deleteNote(id) {
+ let newNotes = [];
+ for (let i = 0; i < notes.length; i++) {
+ if (notes[i].id !== id) {
+ newNotes.push(notes[i]);
+ }
+ }
+ notes = newNotes;
+
+
+}
+
+//#5 Adding an activity
+
+let activities = [
+ {
+ date: '23/7-18',
+ activity: 'Youtube',
+ duration: 30,
+ },
+ {
+ date: '24/7-18',
+ activity: 'Instagram',
+ duration: 40,
+ },
+ {
+ date: '25/7-18',
+ activity: 'Facebook',
+ duration: 50,
+ }
+];
+
+function addActivities(date, activity, duration) {
+ activities.push({
+ date: date,
+ activity: activity,
+ duration: duration
+ });
+}
+
+addActivities('26/7-18', 'Twitter', 10);
+console.log(activities);
+
+
+//Calculate total Activity Duration
+
+function getTotalDuration() {
+
+ let totalActivitiesDurationInMinutes = 0;
+
+ for (const activity of activities) {
+ totalActivitiesDurationInMinutes += activity.duration;
+ }
+ return totalActivitiesDurationInMinutes;
+}
+
+//Show my status
+
+function showStatus() {
+ const totalActivitiesDurationInMinutes = getTotalDuration();
+
+ if (totalActivitiesDurationInMinutes === 0) {
+ return("Add some activities before calling showStatus");
+ }
+
+ return (`You have added ${activities.length} activities. They amount to ${totalActivitiesDurationInMinutes} min. of usage.`)
+}
+JS
+console.log(showStatus());
+
+
+//Usage limit
+
+let timeToUseSmartphone = Number(prompt("How long can you use the smartphone?"));
+
+timeToUseSmartphone = Number(timeToUseSmartphone);
+
+function canUseMoreSmartphone(timeLimit, totalActivitiesDurationInMinutes) {
+
+ if (totalActivitiesDurationInMinutes < timeLimit) {
+ console.log("You can use the smartphone!");
+ } else {
+ console.log("You have reached your limit, no more smartphoning for you!")
+ }
+}
+
+ canUseMoreSmartphone(timeToUseSmartphone, getTotalDuration());
\ No newline at end of file
diff --git a/JS4 HW/index.html b/JS4 HW/index.html
new file mode 100644
index 000000000..772e91ec3
--- /dev/null
+++ b/JS4 HW/index.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+ JS4-HW
+
+
+ Hello
+
+
+
\ No newline at end of file
diff --git a/JS4 HW/index.js b/JS4 HW/index.js
new file mode 100644
index 000000000..41550c5fe
--- /dev/null
+++ b/JS4 HW/index.js
@@ -0,0 +1,119 @@
+const userName = "";
+
+const todoList = [];
+
+function getReply(command = "") {
+
+ if (command.toLowerCase().includes("hello my name is")) {
+ const userName = command.split(" ").pop();
+ return `Nice to meet you ${userName} `;
+ }
+
+ if (command.toLowerCase().includes("what is my name?")) {
+ if (userName != "") {
+ return (`Your name is ${userName}`)
+ } else {
+ return ("Please, introduce yourself")
+ };
+ }
+
+ if ((command.toLowerCase().includes("todo")) &&
+ command.toLowerCase().includes("add")) {
+ const task = (command.substring("add ".length, command.length - " to my todo".length));
+ todoList.push(task);
+ return `${task} added to your todo`;
+ }
+
+ if (command.toLowerCase().includes("what is on my todo")) {
+ return todoList;
+ }
+
+ if ((command.toLowerCase().includes("todo")) &&
+ (command.toLowerCase().includes("remove"))) {
+ const taskToRemove = command.substring("remove ".length, command.length - " from my todo".length);
+ if (todoList.includes(taskToRemove)) {
+ return "Removed " + todoList.splice(todoList.indexOf(taskToRemove), 1) + " from your todo";
+ } else {
+ return "There is no such activity in todo."+ (todoList.indexOf(taskToRemove));
+ }
+ }
+
+ if ((command.includes("+")) ||
+ (command.includes("-")) ||
+ (command.includes("*")) ||
+ (command.includes("/"))) {
+ const mathExpression = command.split(" ");
+
+ if (mathExpression.length !== 3) {
+ return "Invalid math expression";
+ }
+ const a = Number(mathExpression[0]);
+ const operator = mathExpression[1];
+ const b = Number(mathExpression[2]);
+
+ if (Number.isNaN(a) && Number.isNaN(b)) {
+ return "Invalid numbers in expression";
+ }
+ switch (operator) {
+ case "+":
+ return a + b;
+ break;
+
+ case "-":
+ return a - b;
+ break;
+
+ case "/":
+ if (b === 0) {
+ return "Division by zero is not allowed";
+ }
+ return a / b;
+ break;
+
+ case "*":
+ return a * b;
+ }
+ }
+
+ if (command.toLowerCase().includes("what day is it today")) {
+ //respond with the date in a human readable format. ;
+ const date = new Date();
+ return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear();
+ }
+
+ if (command.toLowerCase().includes("set a timer for")) {
+ const timeString = command.substring("set a timer for ".length, command.length - " minutes".length);
+ const time = Number(timeString);
+ return `Timer set for ${time} minutes`;
+ }
+
+ return ("Sorry, command is not recognized.");
+}
+
+console.log("What is my name?");
+console.log(getReply("What is my name?"));
+console.log("Hello my name is Benjamin");
+console.log(getReply("Hello my name is Benjamin"));
+console.log("What is my name?")
+console.log(getReply("What is my name?"));
+console.log("Add fishing to my todo");
+console.log(getReply("Add fishing to my todo"));
+console.log("Add singing in the shower to my todo");
+console.log(getReply("Add singing in the shower to my todo"));
+console.log("Add shopping to my todo");
+console.log(getReply("Add shopping to my todo"));
+console.log("What is on my todo?");
+console.log(getReply("What is on my todo?"));
+console.log("Remove fishing from my todo");
+console.log(getReply("Remove fishing from my todo"));
+console.log("Remove singing in the shower from my todo");
+console.log(getReply("Remove singing in the shower from my todo"));
+console.log("What is on my todo?");
+console.log(getReply("What is on my todo?"));
+console.log("What day is it today?");
+console.log(getReply("What day is it today?"));
+console.log("Set a timer for 5 minutes");
+console.log(getReply("Set a timer for 4 minutes"));
+console.log(getReply());
+console.log("3 + 3");
+console.log(getReply("3 + 3"));
\ No newline at end of file
diff --git a/Recipe-app-diagram.jpg b/Recipe-app-diagram.jpg
new file mode 100644
index 000000000..655b06fe0
Binary files /dev/null and b/Recipe-app-diagram.jpg differ
diff --git a/ai-week1-mila/README.md b/ai-week1-mila/README.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/ai-week1-mila/index.html b/ai-week1-mila/index.html
new file mode 100644
index 000000000..b1a3d4251
--- /dev/null
+++ b/ai-week1-mila/index.html
@@ -0,0 +1,29 @@
+
+
+
+
+
+ Index
+
+
+
+
+
+
+
+ Hi, I’m Mila — a front-end developer who believes every website should tell a story.
+ After years in linguistics and tour guiding, I fell in love with coding and creating beautiful, secure, and user-friendly websites.
+ I’m passionate about learning new technologies, exploring cybersecurity, and designing interfaces that make people feel comfortable, inspired, and safe online.
+ Outside of coding, I enjoy:
+
+
+ books,
+ lifelong learning,
+ cozy hygge moments.
+
+ Change background
+
+
+
\ No newline at end of file
diff --git a/ai-week1-mila/reflection.md b/ai-week1-mila/reflection.md
new file mode 100644
index 000000000..cf78b380d
--- /dev/null
+++ b/ai-week1-mila/reflection.md
@@ -0,0 +1,19 @@
+Reflection
+
+I. Identify and share 3 new things you learned from AI in the above task.
+
+ 1. It took minimum time to create Minimal HTML5 boilerplate using Copilot agent. I intentionally completed almost all teh tasks using AI.
+ 2. The comparison between Internal CSS, External CSS, Inline CSS, their pros and cons.
+ 3. The solution to how to change the background depending on the size of device was so simple and nice. AI helped me providing the information on the fonts that are highly readable, modern and blog-friendly, it also suggests combination for body and heading.
+ 4. Difference between const and let. As I am a complete beginner in JavaScript, I found the video on how to make the background be randomly changed when the button is clicked. I copied the code form the video, checked if it worked and asked Copilot to explain the code step by step. Then I asked it to improve the text and found out that const is a better choice to be used.
+
+Where did you have to tweak or correct Copilot’s suggestions to suit your needs?
+The common reason I had to tweak Copilot was because of its desire to make things more complex and grandeur. As for the explanations I also often asked for three types of explanations (for a 5 year old kid, for a complete beginner and an experienced front-end developer).
+
+How would you explain the difference between using Copilot to generate code for you vs. using it as an effective learning partner?
+While the code being generated we get the work done for us, when we ask questions and specify the unclear moments, we keep the code under control, can develop our skills and avoid mistakes, otherwise we stagnate or even worse.
+
+Identify 3 risks of relying too much on AI tools when learning at HackYourFuture.
+- not learning;
+- making errors we cannot notice and understand;
+- wasting time instead of developing;
diff --git a/ai-week1-mila/script.js b/ai-week1-mila/script.js
new file mode 100644
index 000000000..c438392f0
--- /dev/null
+++ b/ai-week1-mila/script.js
@@ -0,0 +1,11 @@
+const changeBgButton = document.querySelector('button');
+
+if (changeBgButton) {
+ changeBgButton.addEventListener('click', () => {
+ document.body.style.backgroundColor = getRandomColor();
+ });
+}
+
+function getRandomColor() {
+ const color = "#" + Math.floor(Math.random() * 16777215).toString(16).padStart(6, '0');
+ return color;}
\ No newline at end of file
diff --git a/ai-week1-mila/style.css b/ai-week1-mila/style.css
new file mode 100644
index 000000000..35f374fe2
--- /dev/null
+++ b/ai-week1-mila/style.css
@@ -0,0 +1,37 @@
+
+body {
+ background-color:white;
+}
+
+ h1 {
+ text-align: center;
+ font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem);
+ font-family: 'merriweather', sans-serif;
+}
+p {
+ font-weight: 400;
+ margin-bottom: 0.25rem;
+ font-size: 1rem;
+ font-family: 'inter', sans-serif;
+}
+
+button {
+ display: block;
+ margin: 0 auto;
+ padding: 5px 20px;
+ font-size: 1rem;
+}
+
+@media (max-width: 1200px) {
+ body {
+ background-color: lightgreen; /* For medium screens */
+ }
+}
+
+@media (max-width: 768px) {
+ body {
+ background-color: pink; /* For smaller screens */
+ }
+}
+
+
diff --git a/courses/frontend/advanced-javascript/week1/movies/data.js b/courses/frontend/advanced-javascript/week1/movies/data.js
new file mode 100644
index 000000000..6dd8cb5aa
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/movies/data.js
@@ -0,0 +1,44577 @@
+export const movies = [
+ {
+ title: "'Breaker' Morant",
+ year: 1980,
+ rating: 7.9,
+ votes: 10702,
+ running_times: 6420,
+},
+ {
+ title: "'Crocodile' Dundee II",
+ year: 1988,
+ rating: 5.5,
+ votes: 47180,
+ running_times: 6480,
+ },
+ {
+ title: "(500) Days of Summer",
+ year: 2009,
+ rating: 7.7,
+ votes: 412368,
+ running_times: 5700,
+ },
+ {
+ title: "*batteries not included",
+ year: 1987,
+ rating: 6.6,
+ votes: 25636,
+ running_times: 6360,
+ },
+ {
+ title: "...E tu vivrai nel terrore! L'aldilà",
+ year: 1981,
+ rating: 6.9,
+ votes: 16484,
+ running_times: 5220,
+ },
+ {
+ title: "...and justice for all.",
+ year: 1979,
+ rating: 7.4,
+ votes: 25408,
+ running_times: 7140,
+ },
+ { title: "10", year: 1979, rating: 6, votes: 13152, running_times: 7320 },
+ {
+ title: "10 Cloverfield Lane",
+ year: 2016,
+ rating: 7.2,
+ votes: 216151,
+ running_times: 6240,
+ },
+ {
+ title: "10 Items or Less",
+ year: 2006,
+ rating: 6.7,
+ votes: 13342,
+ running_times: 4920,
+ },
+ {
+ title: "10 Things I Hate About You",
+ year: 1999,
+ rating: 7.2,
+ votes: 247070,
+ running_times: 5820,
+ },
+ {
+ title: "10 Years",
+ year: 2011,
+ rating: 6.1,
+ votes: 20790,
+ running_times: 6000,
+ },
+ {
+ title: "10,000 BC",
+ year: 2008,
+ rating: 5.1,
+ votes: 114750,
+ running_times: 6540,
+ },
+ {
+ title: "100 Feet",
+ year: 2008,
+ rating: 5.5,
+ votes: 10979,
+ running_times: 6240,
+ },
+ {
+ title: "100 Girls",
+ year: 2000,
+ rating: 5.9,
+ votes: 19232,
+ running_times: 5640,
+ },
+ {
+ title: "101 Dalmatians",
+ year: 1996,
+ rating: 5.7,
+ votes: 83245,
+ running_times: 6180,
+ },
+ {
+ title: "102 Dalmatians",
+ year: 2000,
+ rating: 4.9,
+ votes: 28927,
+ running_times: 6000,
+ },
+ {
+ title: "11-11-11",
+ year: 2011,
+ rating: 4,
+ votes: 11425,
+ running_times: 5400,
+ },
+ {
+ title: "11:14",
+ year: 2003,
+ rating: 7.2,
+ votes: 40149,
+ running_times: 5700,
+ },
+ {
+ title: "12 Angry Men",
+ year: 1957,
+ rating: 8.9,
+ votes: 518449,
+ running_times: 5760,
+ },
+ {
+ title: "12 Rounds",
+ year: 2009,
+ rating: 5.6,
+ votes: 24457,
+ running_times: 6480,
+ },
+ {
+ title: "12 Years a Slave",
+ year: 2013,
+ rating: 8.1,
+ votes: 513047,
+ running_times: 8040,
+ },
+ {
+ title: "127 Hours",
+ year: 2010,
+ rating: 7.6,
+ votes: 302809,
+ running_times: 5640,
+ },
+ { title: "13", year: 2010, rating: 6.1, votes: 36623, running_times: 5460 },
+ {
+ title: "13 Going on 30",
+ year: 2004,
+ rating: 6.1,
+ votes: 134434,
+ running_times: 5880,
+ },
+ {
+ title: "13 Hours",
+ year: 2016,
+ rating: 7.3,
+ votes: 85771,
+ running_times: 8640,
+ },
+ {
+ title: "13 Sins",
+ year: 2014,
+ rating: 6.3,
+ votes: 26738,
+ running_times: 5580,
+ },
+ { title: "13th", year: 2016, rating: 8.2, votes: 15188, running_times: 6000 },
+ {
+ title: "1408",
+ year: 2007,
+ rating: 6.8,
+ votes: 228738,
+ running_times: 6840,
+ },
+ {
+ title: "1492: Conquest of Paradise",
+ year: 1992,
+ rating: 6.5,
+ votes: 24439,
+ running_times: 9240,
+ },
+ {
+ title: "15 Minutes",
+ year: 2001,
+ rating: 6.1,
+ votes: 44647,
+ running_times: 7200,
+ },
+ {
+ title: "16 Blocks",
+ year: 2006,
+ rating: 6.6,
+ votes: 117443,
+ running_times: 6600,
+ },
+ {
+ title: "17 Again",
+ year: 2009,
+ rating: 6.4,
+ votes: 156663,
+ running_times: 6120,
+ },
+ { title: "1922", year: 2017, rating: 6.4, votes: 15416, running_times: 6120 },
+ { title: "1941", year: 1979, rating: 5.9, votes: 27172, running_times: 8760 },
+ {
+ title: "2 Days in New York",
+ year: 2012,
+ rating: 6,
+ votes: 12766,
+ running_times: 5760,
+ },
+ {
+ title: "2 Days in Paris",
+ year: 2007,
+ rating: 6.8,
+ votes: 28106,
+ running_times: 5760,
+ },
+ {
+ title: "2 Days in the Valley",
+ year: 1996,
+ rating: 6.5,
+ votes: 16528,
+ running_times: 6240,
+ },
+ {
+ title: "2 Fast 2 Furious",
+ year: 2003,
+ rating: 5.9,
+ votes: 213674,
+ running_times: 6420,
+ },
+ {
+ title: "2 Guns",
+ year: 2013,
+ rating: 6.7,
+ votes: 170412,
+ running_times: 6540,
+ },
+ {
+ title: "20,000 Leagues Under the Sea",
+ year: 1954,
+ rating: 7.2,
+ votes: 24094,
+ running_times: 7620,
+ },
+ {
+ title: "200 Cigarettes",
+ year: 1999,
+ rating: 5.9,
+ votes: 13532,
+ running_times: 6060,
+ },
+ {
+ title: "2001 Maniacs",
+ year: 2005,
+ rating: 5.4,
+ votes: 10889,
+ running_times: 5220,
+ },
+ {
+ title: "2001: A Space Odyssey",
+ year: 1968,
+ rating: 8.3,
+ votes: 481800,
+ running_times: 9660,
+ },
+ {
+ title: "2001: A Space Travesty",
+ year: 2000,
+ rating: 3.4,
+ votes: 10094,
+ running_times: 5940,
+ },
+ { title: "2010", year: 1984, rating: 6.8, votes: 44155, running_times: 6960 },
+ {
+ title: "2012",
+ year: 2009,
+ rating: 5.8,
+ votes: 306797,
+ running_times: 9480,
+ },
+ {
+ title: "20th Century Women",
+ year: 2016,
+ rating: 7.4,
+ votes: 22965,
+ running_times: 7140,
+ },
+ {
+ title: "21 & Over",
+ year: 2013,
+ rating: 5.9,
+ votes: 65298,
+ running_times: 5580,
+ },
+ { title: "21", year: 2008, rating: 6.8, votes: 203251, running_times: 7380 },
+ {
+ title: "21 Grams",
+ year: 2003,
+ rating: 7.7,
+ votes: 202129,
+ running_times: 7440,
+ },
+ {
+ title: "21 Jump Street",
+ year: 2012,
+ rating: 7.2,
+ votes: 446476,
+ running_times: 6540,
+ },
+ {
+ title: "22 Jump Street",
+ year: 2014,
+ rating: 7.1,
+ votes: 292991,
+ running_times: 6720,
+ },
+ {
+ title: "24 Hour Party People",
+ year: 2002,
+ rating: 7.4,
+ votes: 28750,
+ running_times: 7020,
+ },
+ {
+ title: "25th Hour",
+ year: 2002,
+ rating: 7.7,
+ votes: 157063,
+ running_times: 8100,
+ },
+ {
+ title: "27 Dresses",
+ year: 2008,
+ rating: 6.1,
+ votes: 134861,
+ running_times: 6660,
+ },
+ {
+ title: "28 Days",
+ year: 2000,
+ rating: 6,
+ votes: 37395,
+ running_times: 6180,
+ },
+ {
+ title: "28 Days Later...",
+ year: 2002,
+ rating: 7.6,
+ votes: 323591,
+ running_times: 6780,
+ },
+ {
+ title: "28 Weeks Later",
+ year: 2007,
+ rating: 7,
+ votes: 228033,
+ running_times: 6000,
+ },
+ { title: "2:22", year: 2017, rating: 5.7, votes: 10266, running_times: 5880 },
+ {
+ title: "3 Days to Kill",
+ year: 2014,
+ rating: 6.2,
+ votes: 75906,
+ running_times: 7380,
+ },
+ {
+ title: "3 Idiots",
+ year: 2009,
+ rating: 8.4,
+ votes: 256619,
+ running_times: 10200,
+ },
+ {
+ title: "3 Men and a Baby",
+ year: 1987,
+ rating: 5.9,
+ votes: 39924,
+ running_times: 6120,
+ },
+ {
+ title: "3 Men and a Little Lady",
+ year: 1990,
+ rating: 5.3,
+ votes: 19005,
+ running_times: 6240,
+ },
+ {
+ title: "3 Ninjas",
+ year: 1992,
+ rating: 5.2,
+ votes: 17582,
+ running_times: 5880,
+ },
+ {
+ title: "3 Women",
+ year: 1977,
+ rating: 7.9,
+ votes: 10852,
+ running_times: 7440,
+ },
+ {
+ title: "30 Days of Night",
+ year: 2007,
+ rating: 6.6,
+ votes: 148004,
+ running_times: 6780,
+ },
+ {
+ title: "30 Minutes or Less",
+ year: 2011,
+ rating: 6.1,
+ votes: 83073,
+ running_times: 4980,
+ },
+ { title: "300", year: 2006, rating: 7.7, votes: 654380, running_times: 7020 },
+ {
+ title: "3000 Miles to Graceland",
+ year: 2001,
+ rating: 5.9,
+ votes: 39646,
+ running_times: 7500,
+ },
+ {
+ title: "300: Rise of an Empire",
+ year: 2014,
+ rating: 6.2,
+ votes: 245690,
+ running_times: 6120,
+ },
+ { title: "31", year: 2016, rating: 5, votes: 12536, running_times: 6120 },
+ { title: "360", year: 2011, rating: 6.2, votes: 14275, running_times: 6600 },
+ {
+ title: "3:10 to Yuma",
+ year: 1957,
+ rating: 7.6,
+ votes: 15498,
+ running_times: 5520,
+ },
+ {
+ title: "3:10 to Yuma",
+ year: 2007,
+ rating: 7.7,
+ votes: 254591,
+ running_times: 7320,
+ },
+ {
+ title: "40 Days and 40 Nights",
+ year: 2002,
+ rating: 5.6,
+ votes: 64777,
+ running_times: 5760,
+ },
+ { title: "42", year: 2013, rating: 7.5, votes: 71968, running_times: 7680 },
+ {
+ title: "45 Years",
+ year: 2015,
+ rating: 7.1,
+ votes: 24269,
+ running_times: 5460,
+ },
+ {
+ title: "47 Meters Down",
+ year: 2017,
+ rating: 5.7,
+ votes: 23125,
+ running_times: 5340,
+ },
+ {
+ title: "47 Ronin",
+ year: 2013,
+ rating: 6.3,
+ votes: 127026,
+ running_times: 7680,
+ },
+ {
+ title: "48 Hrs.",
+ year: 1982,
+ rating: 6.9,
+ votes: 58092,
+ running_times: 5760,
+ },
+ {
+ title: "4: Rise of the Silver Surfer",
+ year: 2007,
+ rating: 5.6,
+ votes: 225698,
+ running_times: 5520,
+ },
+ {
+ title: "5 Days of War",
+ year: 2011,
+ rating: 5.6,
+ votes: 12658,
+ running_times: 6780,
+ },
+ {
+ title: "5 to 7",
+ year: 2014,
+ rating: 7.1,
+ votes: 13647,
+ running_times: 6000,
+ },
+ {
+ title: "50 First Dates",
+ year: 2004,
+ rating: 6.8,
+ votes: 286325,
+ running_times: 5940,
+ },
+ {
+ title: "50/50",
+ year: 2011,
+ rating: 7.7,
+ votes: 287608,
+ running_times: 6000,
+ },
+ { title: "54", year: 1998, rating: 5.8, votes: 28964, running_times: 7260 },
+ {
+ title: "6 Bullets",
+ year: 2012,
+ rating: 6.1,
+ votes: 12351,
+ running_times: 6900,
+ },
+ {
+ title: "6 Souls",
+ year: 2010,
+ rating: 6.1,
+ votes: 27608,
+ running_times: 6720,
+ },
+ {
+ title: "8 Mile",
+ year: 2002,
+ rating: 7.1,
+ votes: 208201,
+ running_times: 6600,
+ },
+ {
+ title: "8 femmes",
+ year: 2002,
+ rating: 7.1,
+ votes: 25351,
+ running_times: 6660,
+ },
+ {
+ title: "88 Minutes",
+ year: 2007,
+ rating: 5.9,
+ votes: 69067,
+ running_times: 6480,
+ },
+ { title: "8MM", year: 1999, rating: 6.5, votes: 110165, running_times: 7380 },
+ { title: "8½", year: 1963, rating: 8.1, votes: 88077, running_times: 8280 },
+ { title: "9", year: 2009, rating: 7.1, votes: 118743, running_times: 4740 },
+ {
+ title: "9 Songs",
+ year: 2004,
+ rating: 4.9,
+ votes: 19175,
+ running_times: 4260,
+ },
+ {
+ title: "99 Homes",
+ year: 2014,
+ rating: 7.1,
+ votes: 23100,
+ running_times: 6720,
+ },
+ {
+ title: "A Beautiful Mind",
+ year: 2001,
+ rating: 8.2,
+ votes: 692444,
+ running_times: 8100,
+ },
+ {
+ title: "A Better Life",
+ year: 2011,
+ rating: 7.2,
+ votes: 13931,
+ running_times: 5880,
+ },
+ {
+ title: "A Bigger Splash",
+ year: 2015,
+ rating: 6.4,
+ votes: 17641,
+ running_times: 7500,
+ },
+ {
+ title: "A Boy and His Dog",
+ year: 1975,
+ rating: 6.6,
+ votes: 14010,
+ running_times: 5460,
+ },
+ {
+ title: "A Bridge Too Far",
+ year: 1977,
+ rating: 7.4,
+ votes: 43717,
+ running_times: 10500,
+ },
+ {
+ title: "A Bronx Tale",
+ year: 1993,
+ rating: 7.8,
+ votes: 107443,
+ running_times: 7260,
+ },
+ {
+ title: "A Bug's Life",
+ year: 1998,
+ rating: 7.2,
+ votes: 229465,
+ running_times: 5700,
+ },
+ {
+ title: "A Christmas Carol",
+ year: 2009,
+ rating: 6.8,
+ votes: 82681,
+ running_times: 5760,
+ },
+ {
+ title: "A Christmas Story",
+ year: 1983,
+ rating: 8,
+ votes: 113032,
+ running_times: 5640,
+ },
+ {
+ title: "A Cinderella Story",
+ year: 2004,
+ rating: 5.9,
+ votes: 69295,
+ running_times: 5700,
+ },
+ {
+ title: "A Civil Action",
+ year: 1998,
+ rating: 6.5,
+ votes: 24558,
+ running_times: 6900,
+ },
+ {
+ title: "A Clockwork Orange",
+ year: 1971,
+ rating: 8.3,
+ votes: 623645,
+ running_times: 8160,
+ },
+ {
+ title: "A Close Shave",
+ year: 1995,
+ rating: 8.2,
+ votes: 33053,
+ running_times: 1800,
+ },
+ {
+ title: "A Cock and Bull Story",
+ year: 2005,
+ rating: 6.8,
+ votes: 11624,
+ running_times: 5640,
+ },
+ {
+ title: "A Cure for Wellness",
+ year: 2016,
+ rating: 6.4,
+ votes: 50746,
+ running_times: 8760,
+ },
+ {
+ title: "A Dangerous Method",
+ year: 2011,
+ rating: 6.5,
+ votes: 87773,
+ running_times: 5940,
+ },
+ {
+ title: "A Day at the Races",
+ year: 1937,
+ rating: 7.7,
+ votes: 11369,
+ running_times: 6660,
+ },
+ {
+ title: "A Dirty Shame",
+ year: 2004,
+ rating: 5.1,
+ votes: 11191,
+ running_times: 5340,
+ },
+ {
+ title: "A Dog's Purpose",
+ year: 2017,
+ rating: 6.9,
+ votes: 38675,
+ running_times: 6000,
+ },
+ {
+ title: "A Face in the Crowd",
+ year: 1957,
+ rating: 8.2,
+ votes: 10910,
+ running_times: 7560,
+ },
+ {
+ title: "A Fantastic Fear of Everything",
+ year: 2012,
+ rating: 5.9,
+ votes: 12446,
+ running_times: 6000,
+ },
+ {
+ title: "A Few Best Men",
+ year: 2011,
+ rating: 5.7,
+ votes: 11321,
+ running_times: 5820,
+ },
+ {
+ title: "A Few Good Men",
+ year: 1992,
+ rating: 7.7,
+ votes: 198227,
+ running_times: 8280,
+ },
+ {
+ title: "A Fish Called Wanda",
+ year: 1988,
+ rating: 7.6,
+ votes: 115086,
+ running_times: 6480,
+ },
+ {
+ title: "A Ghost Story",
+ year: 2017,
+ rating: 6.9,
+ votes: 21003,
+ running_times: 5520,
+ },
+ {
+ title: "A Good Day to Die Hard",
+ year: 2013,
+ rating: 5.3,
+ votes: 177298,
+ running_times: 6060,
+ },
+ {
+ title: "A Good Old Fashioned Orgy",
+ year: 2011,
+ rating: 6.2,
+ votes: 18997,
+ running_times: 5700,
+ },
+ {
+ title: "A Good Woman",
+ year: 2004,
+ rating: 6.5,
+ votes: 10271,
+ running_times: 5580,
+ },
+ {
+ title: "A Good Year",
+ year: 2006,
+ rating: 6.9,
+ votes: 77087,
+ running_times: 7020,
+ },
+ {
+ title: "A Goofy Movie",
+ year: 1995,
+ rating: 6.8,
+ votes: 37406,
+ running_times: 4680,
+ },
+ {
+ title: "A Grand Day Out",
+ year: 1989,
+ rating: 7.8,
+ votes: 25751,
+ running_times: 1380,
+ },
+ {
+ title: "A Guide to Recognizing Your Saints",
+ year: 2006,
+ rating: 7,
+ votes: 23140,
+ running_times: 6000,
+ },
+ {
+ title: "A Guy Thing",
+ year: 2003,
+ rating: 5.6,
+ votes: 15052,
+ running_times: 6060,
+ },
+ {
+ title: "A Hard Day's Night",
+ year: 1964,
+ rating: 7.7,
+ votes: 34132,
+ running_times: 5220,
+ },
+ {
+ title: "A Haunted House",
+ year: 2013,
+ rating: 5.1,
+ votes: 37624,
+ running_times: 5160,
+ },
+ {
+ title: "A Haunted House 2",
+ year: 2014,
+ rating: 4.7,
+ votes: 16458,
+ running_times: 5160,
+ },
+ {
+ title: "A History of Violence",
+ year: 2005,
+ rating: 7.5,
+ votes: 200459,
+ running_times: 5760,
+ },
+ {
+ title: "A Hologram for the King",
+ year: 2016,
+ rating: 6.1,
+ votes: 30336,
+ running_times: 5880,
+ },
+ {
+ title: "A Home at the End of the World",
+ year: 2004,
+ rating: 6.8,
+ votes: 12481,
+ running_times: 5820,
+ },
+ {
+ title: "A Knight's Tale",
+ year: 2001,
+ rating: 6.9,
+ votes: 147493,
+ running_times: 8640,
+ },
+ {
+ title: "A Late Quartet",
+ year: 2012,
+ rating: 7.1,
+ votes: 12157,
+ running_times: 6300,
+ },
+ {
+ title: "A League of Their Own",
+ year: 1992,
+ rating: 7.2,
+ votes: 77777,
+ running_times: 7680,
+ },
+ {
+ title: "A Life Less Ordinary",
+ year: 1997,
+ rating: 6.4,
+ votes: 31642,
+ running_times: 6180,
+ },
+ {
+ title: "A Little Bit of Heaven",
+ year: 2011,
+ rating: 6.3,
+ votes: 25008,
+ running_times: 6360,
+ },
+ {
+ title: "A Little Chaos",
+ year: 2014,
+ rating: 6.5,
+ votes: 15692,
+ running_times: 6720,
+ },
+ {
+ title: "A Little Princess",
+ year: 1995,
+ rating: 7.7,
+ votes: 27204,
+ running_times: 5820,
+ },
+ {
+ title: "A Lonely Place to Die",
+ year: 2011,
+ rating: 6.3,
+ votes: 23882,
+ running_times: 5940,
+ },
+ {
+ title: "A Long Way Down",
+ year: 2014,
+ rating: 6.4,
+ votes: 27396,
+ running_times: 5760,
+ },
+ {
+ title: "A Lot Like Love",
+ year: 2005,
+ rating: 6.6,
+ votes: 61471,
+ running_times: 6420,
+ },
+ {
+ title: "A Love Song for Bobby Long",
+ year: 2004,
+ rating: 7.2,
+ votes: 23145,
+ running_times: 7140,
+ },
+ {
+ title: "A Man Apart",
+ year: 2003,
+ rating: 6.1,
+ votes: 40595,
+ running_times: 6540,
+ },
+ {
+ title: "A Man for All Seasons",
+ year: 1966,
+ rating: 7.9,
+ votes: 25716,
+ running_times: 7200,
+ },
+ {
+ title: "A Matter of Life and Death",
+ year: 1946,
+ rating: 8.1,
+ votes: 15190,
+ running_times: 6240,
+ },
+ {
+ title: "A Matter of Loaf and Death",
+ year: 2008,
+ rating: 7.6,
+ votes: 11464,
+ running_times: 1800,
+ },
+ {
+ title: "A Midsummer Night's Dream",
+ year: 1999,
+ rating: 6.5,
+ votes: 22260,
+ running_times: 6960,
+ },
+ {
+ title: "A Midsummer Night's Sex Comedy",
+ year: 1982,
+ rating: 6.7,
+ votes: 16072,
+ running_times: 5280,
+ },
+ {
+ title: "A Mighty Heart",
+ year: 2007,
+ rating: 6.7,
+ votes: 25029,
+ running_times: 6480,
+ },
+ {
+ title: "A Mighty Wind",
+ year: 2003,
+ rating: 7.3,
+ votes: 23379,
+ running_times: 5460,
+ },
+ {
+ title: "A Million Ways to Die in the West",
+ year: 2014,
+ rating: 6.1,
+ votes: 149454,
+ running_times: 8160,
+ },
+ {
+ title: "A Monster Calls",
+ year: 2016,
+ rating: 7.5,
+ votes: 54692,
+ running_times: 6480,
+ },
+ {
+ title: "A Most Violent Year",
+ year: 2014,
+ rating: 7,
+ votes: 53486,
+ running_times: 7500,
+ },
+ {
+ title: "A Most Wanted Man",
+ year: 2014,
+ rating: 6.8,
+ votes: 63277,
+ running_times: 7320,
+ },
+ {
+ title: "A Night at the Opera",
+ year: 1935,
+ rating: 8,
+ votes: 26694,
+ running_times: 5760,
+ },
+ {
+ title: "A Night at the Roxbury",
+ year: 1998,
+ rating: 6.2,
+ votes: 51079,
+ running_times: 4920,
+ },
+ {
+ title: "A Night to Remember",
+ year: 1958,
+ rating: 7.9,
+ votes: 11342,
+ running_times: 7380,
+ },
+ {
+ title: "A Nightmare on Elm Street",
+ year: 1984,
+ rating: 7.5,
+ votes: 168011,
+ running_times: 6060,
+ },
+ {
+ title: "A Nightmare on Elm Street",
+ year: 2010,
+ rating: 5.2,
+ votes: 80750,
+ running_times: 5700,
+ },
+ {
+ title: "A Nightmare on Elm Street 3: Dream Warriors",
+ year: 1987,
+ rating: 6.6,
+ votes: 56620,
+ running_times: 5760,
+ },
+ {
+ title: "A Nightmare on Elm Street 4: The Dream Master",
+ year: 1988,
+ rating: 5.7,
+ votes: 40437,
+ running_times: 5940,
+ },
+ {
+ title: "A Nightmare on Elm Street Part 2: Freddy's Revenge",
+ year: 1985,
+ rating: 5.4,
+ votes: 49036,
+ running_times: 5220,
+ },
+ {
+ title: "A Nightmare on Elm Street: The Dream Child",
+ year: 1989,
+ rating: 5.1,
+ votes: 33151,
+ running_times: 5340,
+ },
+ {
+ title: "A Passage to India",
+ year: 1984,
+ rating: 7.4,
+ votes: 14283,
+ running_times: 9840,
+ },
+ {
+ title: "A Perfect Day",
+ year: 2015,
+ rating: 6.8,
+ votes: 14727,
+ running_times: 6360,
+ },
+ {
+ title: "A Perfect Getaway",
+ year: 2009,
+ rating: 6.5,
+ votes: 60120,
+ running_times: 6480,
+ },
+ {
+ title: "A Perfect Murder",
+ year: 1998,
+ rating: 6.5,
+ votes: 68812,
+ running_times: 6420,
+ },
+ {
+ title: "A Perfect World",
+ year: 1993,
+ rating: 7.5,
+ votes: 62447,
+ running_times: 8280,
+ },
+ {
+ title: "A Place in the Sun",
+ year: 1951,
+ rating: 7.8,
+ votes: 16542,
+ running_times: 7320,
+ },
+ {
+ title: "A Prairie Home Companion",
+ year: 2006,
+ rating: 6.8,
+ votes: 20330,
+ running_times: 6300,
+ },
+ {
+ title: "A River Runs Through It",
+ year: 1992,
+ rating: 7.3,
+ votes: 45327,
+ running_times: 7380,
+ },
+ {
+ title: "A Room with a View",
+ year: 1985,
+ rating: 7.4,
+ votes: 32554,
+ running_times: 7020,
+ },
+ {
+ title: "A Scanner Darkly",
+ year: 2006,
+ rating: 7.1,
+ votes: 95310,
+ running_times: 6000,
+ },
+ {
+ title: "A Series of Unfortunate Events",
+ year: 2004,
+ rating: 6.8,
+ votes: 173998,
+ running_times: 6480,
+ },
+ {
+ title: "A Serious Man",
+ year: 2009,
+ rating: 7,
+ votes: 111295,
+ running_times: 6360,
+ },
+ {
+ title: "A Shot in the Dark",
+ year: 1964,
+ rating: 7.6,
+ votes: 21546,
+ running_times: 6120,
+ },
+ {
+ title: "A Simple Plan",
+ year: 1998,
+ rating: 7.5,
+ votes: 54525,
+ running_times: 7260,
+ },
+ {
+ title: "A Single Man",
+ year: 2009,
+ rating: 7.6,
+ votes: 93627,
+ running_times: 5940,
+ },
+ {
+ title: "A Sound of Thunder",
+ year: 2005,
+ rating: 4.2,
+ votes: 17277,
+ running_times: 6600,
+ },
+ {
+ title: "A Star Is Born",
+ year: 1954,
+ rating: 7.8,
+ votes: 11576,
+ running_times: 10860,
+ },
+ {
+ title: "A Street Cat Named Bob",
+ year: 2016,
+ rating: 7.4,
+ votes: 18086,
+ running_times: 6180,
+ },
+ {
+ title: "A Streetcar Named Desire",
+ year: 1951,
+ rating: 8,
+ votes: 84993,
+ running_times: 7500,
+ },
+ {
+ title: "A Thousand Words",
+ year: 2012,
+ rating: 5.9,
+ votes: 33739,
+ running_times: 5460,
+ },
+ {
+ title: "A Time to Kill",
+ year: 1996,
+ rating: 7.4,
+ votes: 110362,
+ running_times: 8940,
+ },
+ {
+ title: "A Very Harold & Kumar 3D Christmas",
+ year: 2011,
+ rating: 6.3,
+ votes: 58988,
+ running_times: 5760,
+ },
+ {
+ title: "A View to a Kill",
+ year: 1985,
+ rating: 6.3,
+ votes: 74476,
+ running_times: 7860,
+ },
+ {
+ title: "A Walk Among the Tombstones",
+ year: 2014,
+ rating: 6.5,
+ votes: 96762,
+ running_times: 6840,
+ },
+ {
+ title: "A Walk in the Clouds",
+ year: 1995,
+ rating: 6.7,
+ votes: 26854,
+ running_times: 6120,
+ },
+ {
+ title: "A Walk in the Woods",
+ year: 2015,
+ rating: 6.3,
+ votes: 19128,
+ running_times: 6240,
+ },
+ {
+ title: "A Walk to Remember",
+ year: 2002,
+ rating: 7.4,
+ votes: 176490,
+ running_times: 6060,
+ },
+ {
+ title: "A Wednesday",
+ year: 2008,
+ rating: 8.3,
+ votes: 56214,
+ running_times: 6240,
+ },
+ {
+ title: "A Woman Under the Influence",
+ year: 1974,
+ rating: 8.2,
+ votes: 16018,
+ running_times: 9300,
+ },
+ {
+ title: "A.C.O.D.",
+ year: 2013,
+ rating: 5.7,
+ votes: 11540,
+ running_times: 5280,
+ },
+ { title: "ARQ", year: 2016, rating: 6.4, votes: 22206, running_times: 5280 },
+ { title: "ATM", year: 2012, rating: 4.7, votes: 20365, running_times: 5400 },
+ {
+ title: "AVP: Alien vs. Predator",
+ year: 2004,
+ rating: 5.6,
+ votes: 159110,
+ running_times: 6540,
+ },
+ {
+ title: "AVPR: Aliens vs Predator - Requiem",
+ year: 2007,
+ rating: 4.7,
+ votes: 101047,
+ running_times: 6120,
+ },
+ {
+ title: "Abduction",
+ year: 2011,
+ rating: 5.1,
+ votes: 68802,
+ running_times: 6360,
+ },
+ {
+ title: "About Last Night",
+ year: 2014,
+ rating: 6.1,
+ votes: 18754,
+ running_times: 6000,
+ },
+ {
+ title: "About Last Night...",
+ year: 1986,
+ rating: 6.2,
+ votes: 12416,
+ running_times: 6780,
+ },
+ {
+ title: "About Schmidt",
+ year: 2002,
+ rating: 7.2,
+ votes: 112727,
+ running_times: 7500,
+ },
+ {
+ title: "About Time",
+ year: 2013,
+ rating: 7.8,
+ votes: 232322,
+ running_times: 7380,
+ },
+ {
+ title: "About a Boy",
+ year: 2002,
+ rating: 7.1,
+ votes: 152115,
+ running_times: 6060,
+ },
+ {
+ title: "Above the Law",
+ year: 1988,
+ rating: 6,
+ votes: 24301,
+ running_times: 5940,
+ },
+ {
+ title: "Above the Rim",
+ year: 1994,
+ rating: 6.6,
+ votes: 11650,
+ running_times: 5760,
+ },
+ {
+ title: "Abraham Lincoln: Vampire Hunter",
+ year: 2012,
+ rating: 5.9,
+ votes: 136196,
+ running_times: 6300,
+ },
+ {
+ title: "Absentia",
+ year: 2011,
+ rating: 5.8,
+ votes: 14480,
+ running_times: 5220,
+ },
+ {
+ title: "Absolute Power",
+ year: 1997,
+ rating: 6.7,
+ votes: 42869,
+ running_times: 7260,
+ },
+ {
+ title: "Absolutely Anything",
+ year: 2015,
+ rating: 6,
+ votes: 29541,
+ running_times: 5100,
+ },
+ {
+ title: "Accepted",
+ year: 2006,
+ rating: 6.5,
+ votes: 111434,
+ running_times: 5580,
+ },
+ {
+ title: "Ace Ventura: Pet Detective",
+ year: 1994,
+ rating: 6.9,
+ votes: 236240,
+ running_times: 5160,
+ },
+ {
+ title: "Ace Ventura: When Nature Calls",
+ year: 1995,
+ rating: 6.3,
+ votes: 174677,
+ running_times: 5400,
+ },
+ {
+ title: "Ace in the Hole",
+ year: 1951,
+ rating: 8.2,
+ votes: 21834,
+ running_times: 6660,
+ },
+ {
+ title: "Across the Universe",
+ year: 2007,
+ rating: 7.4,
+ votes: 97183,
+ running_times: 7980,
+ },
+ {
+ title: "Act of Valor",
+ year: 2012,
+ rating: 6.5,
+ votes: 61069,
+ running_times: 6600,
+ },
+ { title: "Adam", year: 2009, rating: 7.2, votes: 31090, running_times: 5940 },
+ {
+ title: "Adam's Rib",
+ year: 1949,
+ rating: 7.6,
+ votes: 16857,
+ running_times: 6060,
+ },
+ {
+ title: "Adaptation.",
+ year: 2002,
+ rating: 7.7,
+ votes: 155220,
+ running_times: 6840,
+ },
+ {
+ title: "Addams Family Values",
+ year: 1993,
+ rating: 6.6,
+ votes: 63626,
+ running_times: 5640,
+ },
+ {
+ title: "Addicted to Love",
+ year: 1997,
+ rating: 6.1,
+ votes: 20962,
+ running_times: 6000,
+ },
+ {
+ title: "Admission",
+ year: 2013,
+ rating: 5.7,
+ votes: 30216,
+ running_times: 6420,
+ },
+ {
+ title: "Adoration",
+ year: 2013,
+ rating: 6.2,
+ votes: 26611,
+ running_times: 6720,
+ },
+ {
+ title: "Adult World",
+ year: 2013,
+ rating: 6.2,
+ votes: 14875,
+ running_times: 5820,
+ },
+ {
+ title: "Adulthood",
+ year: 2008,
+ rating: 6.7,
+ votes: 10672,
+ running_times: 5940,
+ },
+ {
+ title: "Adventureland",
+ year: 2009,
+ rating: 6.8,
+ votes: 139933,
+ running_times: 6420,
+ },
+ {
+ title: "Adventures in Babysitting",
+ year: 1987,
+ rating: 6.9,
+ votes: 31300,
+ running_times: 6120,
+ },
+ {
+ title: "Afflicted",
+ year: 2013,
+ rating: 6.3,
+ votes: 18513,
+ running_times: 5100,
+ },
+ {
+ title: "Affliction",
+ year: 1997,
+ rating: 7,
+ votes: 12755,
+ running_times: 6840,
+ },
+ {
+ title: "After Earth",
+ year: 2013,
+ rating: 4.9,
+ votes: 170966,
+ running_times: 6000,
+ },
+ {
+ title: "After Hours",
+ year: 1985,
+ rating: 7.7,
+ votes: 44784,
+ running_times: 5820,
+ },
+ {
+ title: "After the Dark",
+ year: 2013,
+ rating: 5.7,
+ votes: 18607,
+ running_times: 6420,
+ },
+ {
+ title: "After the Sunset",
+ year: 2004,
+ rating: 6.3,
+ votes: 40364,
+ running_times: 5820,
+ },
+ {
+ title: "After.Life",
+ year: 2009,
+ rating: 5.9,
+ votes: 32865,
+ running_times: 6240,
+ },
+ {
+ title: "Aftermath",
+ year: 2017,
+ rating: 5.7,
+ votes: 12202,
+ running_times: 5640,
+ },
+ {
+ title: "Agent Cody Banks",
+ year: 2003,
+ rating: 5.1,
+ votes: 28946,
+ running_times: 6120,
+ },
+ {
+ title: "Agent Cody Banks 2: Destination London",
+ year: 2004,
+ rating: 4.5,
+ votes: 12154,
+ running_times: 6000,
+ },
+ {
+ title: "Agneepath",
+ year: 2012,
+ rating: 7,
+ votes: 19127,
+ running_times: 10440,
+ },
+ {
+ title: "Agora",
+ year: 2009,
+ rating: 7.2,
+ votes: 57484,
+ running_times: 8460,
+ },
+ {
+ title: "Aguirre, der Zorn Gottes",
+ year: 1972,
+ rating: 8,
+ votes: 42543,
+ running_times: 5700,
+ },
+ {
+ title: "Ah fei zing zyun",
+ year: 1990,
+ rating: 7.6,
+ votes: 13683,
+ running_times: 5640,
+ },
+ {
+ title: "Ain't Them Bodies Saints",
+ year: 2013,
+ rating: 6.4,
+ votes: 18005,
+ running_times: 5760,
+ },
+ { title: "Air", year: 2015, rating: 5.1, votes: 10524, running_times: 5700 },
+ {
+ title: "Air America",
+ year: 1990,
+ rating: 5.7,
+ votes: 23513,
+ running_times: 6780,
+ },
+ {
+ title: "Air Bud",
+ year: 1997,
+ rating: 5.1,
+ votes: 14077,
+ running_times: 5880,
+ },
+ {
+ title: "Air Force One",
+ year: 1997,
+ rating: 6.5,
+ votes: 157206,
+ running_times: 7440,
+ },
+ {
+ title: "Airheads",
+ year: 1994,
+ rating: 6.1,
+ votes: 40608,
+ running_times: 5520,
+ },
+ {
+ title: "Airplane II: The Sequel",
+ year: 1982,
+ rating: 6.1,
+ votes: 41313,
+ running_times: 5100,
+ },
+ {
+ title: "Airplane!",
+ year: 1980,
+ rating: 7.8,
+ votes: 176142,
+ running_times: 5280,
+ },
+ {
+ title: "Airport",
+ year: 1970,
+ rating: 6.6,
+ votes: 14456,
+ running_times: 8220,
+ },
+ {
+ title: "Ajeossi",
+ year: 2010,
+ rating: 7.8,
+ votes: 49601,
+ running_times: 7140,
+ },
+ {
+ title: "Akeelah and the Bee",
+ year: 2006,
+ rating: 7.5,
+ votes: 16346,
+ running_times: 6720,
+ },
+ {
+ title: "Aladdin",
+ year: 1992,
+ rating: 8,
+ votes: 291038,
+ running_times: 5400,
+ },
+ {
+ title: "Alan Partridge: Alpha Papa",
+ year: 2013,
+ rating: 7,
+ votes: 26193,
+ running_times: 5400,
+ },
+ {
+ title: "Albert Nobbs",
+ year: 2011,
+ rating: 6.7,
+ votes: 21042,
+ running_times: 6780,
+ },
+ {
+ title: "Alex & Emma",
+ year: 2003,
+ rating: 5.6,
+ votes: 12051,
+ running_times: 5760,
+ },
+ {
+ title: "Alex Cross",
+ year: 2012,
+ rating: 5.1,
+ votes: 29794,
+ running_times: 6060,
+ },
+ {
+ title: "Alexander",
+ year: 2004,
+ rating: 5.6,
+ votes: 147126,
+ running_times: 12840,
+ },
+ {
+ title: "Alexander and the Terrible, Horrible, No Good, Very Bad Day",
+ year: 2014,
+ rating: 6.2,
+ votes: 33699,
+ running_times: 4860,
+ },
+ {
+ title: "Alexis Zorbas",
+ year: 1964,
+ rating: 7.8,
+ votes: 16943,
+ running_times: 8520,
+ },
+ {
+ title: "Alferd Packer: The Musical",
+ year: 1993,
+ rating: 7.2,
+ votes: 10661,
+ running_times: 5820,
+ },
+ {
+ title: "Alfie",
+ year: 1966,
+ rating: 7.1,
+ votes: 11435,
+ running_times: 6840,
+ },
+ {
+ title: "Alfie",
+ year: 2004,
+ rating: 6.2,
+ votes: 46025,
+ running_times: 6180,
+ },
+ { title: "Ali", year: 2001, rating: 6.8, votes: 83884, running_times: 9900 },
+ {
+ title: "Ali Baba ve 7 Cüceler",
+ year: 2015,
+ rating: 6.1,
+ votes: 12986,
+ running_times: 6840,
+ },
+ {
+ title: "Ali G Indahouse",
+ year: 2002,
+ rating: 6.2,
+ votes: 73785,
+ running_times: 5100,
+ },
+ {
+ title: "Alice",
+ year: 1990,
+ rating: 6.6,
+ votes: 11437,
+ running_times: 6360,
+ },
+ {
+ title: "Alice Doesn't Live Here Anymore",
+ year: 1974,
+ rating: 7.4,
+ votes: 17090,
+ running_times: 6720,
+ },
+ {
+ title: "Alice Through the Looking Glass",
+ year: 2016,
+ rating: 6.2,
+ votes: 65458,
+ running_times: 6780,
+ },
+ {
+ title: "Alice in Wonderland",
+ year: 1951,
+ rating: 7.4,
+ votes: 106178,
+ running_times: 4500,
+ },
+ {
+ title: "Alice in Wonderland",
+ year: 2010,
+ rating: 6.5,
+ votes: 334849,
+ running_times: 6480,
+ },
+ {
+ title: "Alien",
+ year: 1979,
+ rating: 8.5,
+ votes: 643183,
+ running_times: 7020,
+ },
+ {
+ title: "Alien Nation",
+ year: 1988,
+ rating: 6.3,
+ votes: 12239,
+ running_times: 5460,
+ },
+ {
+ title: "Alien: Covenant",
+ year: 2017,
+ rating: 6.5,
+ votes: 176022,
+ running_times: 7320,
+ },
+ {
+ title: "Alien: Resurrection",
+ year: 1997,
+ rating: 6.2,
+ votes: 193440,
+ running_times: 6960,
+ },
+ {
+ title: "Aliens",
+ year: 1986,
+ rating: 8.4,
+ votes: 547487,
+ running_times: 9240,
+ },
+ {
+ title: "Aliens in the Attic",
+ year: 2009,
+ rating: 5.4,
+ votes: 18127,
+ running_times: 5160,
+ },
+ {
+ title: "Alien³",
+ year: 1992,
+ rating: 6.4,
+ votes: 234564,
+ running_times: 8700,
+ },
+ {
+ title: "Alive",
+ year: 1993,
+ rating: 7.1,
+ votes: 42628,
+ running_times: 7200,
+ },
+ {
+ title: "All About Eve",
+ year: 1950,
+ rating: 8.3,
+ votes: 93769,
+ running_times: 8280,
+ },
+ {
+ title: "All About Steve",
+ year: 2009,
+ rating: 4.8,
+ votes: 35167,
+ running_times: 5940,
+ },
+ {
+ title: "All About the Benjamins",
+ year: 2002,
+ rating: 5.8,
+ votes: 10378,
+ running_times: 5700,
+ },
+ {
+ title: "All Dogs Go to Heaven",
+ year: 1989,
+ rating: 6.7,
+ votes: 29536,
+ running_times: 5040,
+ },
+ {
+ title: "All Eyez on Me",
+ year: 2017,
+ rating: 5.8,
+ votes: 12426,
+ running_times: 8340,
+ },
+ {
+ title: "All Good Things",
+ year: 2010,
+ rating: 6.3,
+ votes: 45790,
+ running_times: 6060,
+ },
+ {
+ title: "All Is Lost",
+ year: 2013,
+ rating: 6.9,
+ votes: 65230,
+ running_times: 6360,
+ },
+ {
+ title: "All Quiet on the Western Front",
+ year: 1930,
+ rating: 8.1,
+ votes: 50226,
+ running_times: 8820,
+ },
+ {
+ title: "All That Heaven Allows",
+ year: 1955,
+ rating: 7.7,
+ votes: 10431,
+ running_times: 5340,
+ },
+ {
+ title: "All That Jazz",
+ year: 1979,
+ rating: 7.8,
+ votes: 21615,
+ running_times: 7380,
+ },
+ {
+ title: "All of Me",
+ year: 1984,
+ rating: 6.7,
+ votes: 14228,
+ running_times: 5580,
+ },
+ {
+ title: "All the Boys Love Mandy Lane",
+ year: 2006,
+ rating: 5.6,
+ votes: 27574,
+ running_times: 5400,
+ },
+ {
+ title: "All the King's Men",
+ year: 1949,
+ rating: 7.6,
+ votes: 10818,
+ running_times: 6600,
+ },
+ {
+ title: "All the King's Men",
+ year: 2006,
+ rating: 6.2,
+ votes: 21751,
+ running_times: 7680,
+ },
+ {
+ title: "All the President's Men",
+ year: 1976,
+ rating: 8,
+ votes: 82613,
+ running_times: 8280,
+ },
+ {
+ title: "All the Pretty Horses",
+ year: 2000,
+ rating: 5.8,
+ votes: 11937,
+ running_times: 13200,
+ },
+ {
+ title: "All the Right Moves",
+ year: 1983,
+ rating: 5.9,
+ votes: 13281,
+ running_times: 5460,
+ },
+ {
+ title: "Allegiant",
+ year: 2016,
+ rating: 5.7,
+ votes: 79153,
+ running_times: 7200,
+ },
+ {
+ title: "Allied",
+ year: 2016,
+ rating: 7.1,
+ votes: 101406,
+ running_times: 7440,
+ },
+ {
+ title: "Almost Famous",
+ year: 2000,
+ rating: 7.9,
+ votes: 222016,
+ running_times: 9720,
+ },
+ {
+ title: "Almost Heroes",
+ year: 1998,
+ rating: 5.8,
+ votes: 13847,
+ running_times: 5400,
+ },
+ {
+ title: "Aloha",
+ year: 2015,
+ rating: 5.4,
+ votes: 47563,
+ running_times: 6300,
+ },
+ {
+ title: "Alone in the Dark",
+ year: 2005,
+ rating: 2.3,
+ votes: 39084,
+ running_times: 5940,
+ },
+ {
+ title: "Along Came Polly",
+ year: 2004,
+ rating: 5.9,
+ votes: 112528,
+ running_times: 5400,
+ },
+ {
+ title: "Along Came a Spider",
+ year: 2001,
+ rating: 6.3,
+ votes: 63476,
+ running_times: 6240,
+ },
+ {
+ title: "Alpha Dog",
+ year: 2006,
+ rating: 6.9,
+ votes: 91925,
+ running_times: 7320,
+ },
+ {
+ title: "Alpha and Omega",
+ year: 2010,
+ rating: 5.3,
+ votes: 11716,
+ running_times: 5400,
+ },
+ {
+ title: "Altered States",
+ year: 1980,
+ rating: 6.9,
+ votes: 26407,
+ running_times: 6120,
+ },
+ {
+ title: "Alvin and the Chipmunks",
+ year: 2007,
+ rating: 5.2,
+ votes: 62965,
+ running_times: 5520,
+ },
+ {
+ title: "Alvin and the Chipmunks: Chipwrecked",
+ year: 2011,
+ rating: 4.4,
+ votes: 25279,
+ running_times: 5220,
+ },
+ {
+ title: "Alvin and the Chipmunks: The Road Chip",
+ year: 2015,
+ rating: 5.1,
+ votes: 12390,
+ running_times: 5520,
+ },
+ {
+ title: "Alvin and the Chipmunks: The Squeakquel",
+ year: 2009,
+ rating: 4.5,
+ votes: 35242,
+ running_times: 5340,
+ },
+ {
+ title: "Always",
+ year: 1989,
+ rating: 6.4,
+ votes: 24085,
+ running_times: 7320,
+ },
+ {
+ title: "Amadeus",
+ year: 1984,
+ rating: 8.3,
+ votes: 303203,
+ running_times: 10800,
+ },
+ {
+ title: "Amanda Knox",
+ year: 2016,
+ rating: 7,
+ votes: 12227,
+ running_times: 5520,
+ },
+ {
+ title: "Amazing Grace",
+ year: 2006,
+ rating: 7.5,
+ votes: 22038,
+ running_times: 7080,
+ },
+ {
+ title: "Amelia",
+ year: 2009,
+ rating: 5.8,
+ votes: 10698,
+ running_times: 6660,
+ },
+ {
+ title: "Amen.",
+ year: 2002,
+ rating: 7.3,
+ votes: 11925,
+ running_times: 7920,
+ },
+ {
+ title: "America's Sweethearts",
+ year: 2001,
+ rating: 5.7,
+ votes: 49926,
+ running_times: 6120,
+ },
+ {
+ title: "American Assassin",
+ year: 2017,
+ rating: 6.2,
+ votes: 28116,
+ running_times: 6720,
+ },
+ {
+ title: "American Beauty",
+ year: 1999,
+ rating: 8.4,
+ votes: 911446,
+ running_times: 7320,
+ },
+ {
+ title: "American Dreamz",
+ year: 2006,
+ rating: 5.5,
+ votes: 23250,
+ running_times: 6420,
+ },
+ {
+ title: "American Gangster",
+ year: 2007,
+ rating: 7.8,
+ votes: 345631,
+ running_times: 10560,
+ },
+ {
+ title: "American Gigolo",
+ year: 1980,
+ rating: 6.2,
+ votes: 17629,
+ running_times: 7020,
+ },
+ {
+ title: "American Graffiti",
+ year: 1973,
+ rating: 7.5,
+ votes: 68973,
+ running_times: 12600,
+ },
+ {
+ title: "American Heist",
+ year: 2014,
+ rating: 5.2,
+ votes: 14405,
+ running_times: 5640,
+ },
+ {
+ title: "American History X",
+ year: 1998,
+ rating: 8.5,
+ votes: 868976,
+ running_times: 7140,
+ },
+ {
+ title: "American Honey",
+ year: 2016,
+ rating: 7,
+ votes: 24638,
+ running_times: 9780,
+ },
+ {
+ title: "American Hustle",
+ year: 2013,
+ rating: 7.3,
+ votes: 390260,
+ running_times: 8280,
+ },
+ {
+ title: "American Made",
+ year: 2017,
+ rating: 7.2,
+ votes: 54330,
+ running_times: 6900,
+ },
+ {
+ title: "American Mary",
+ year: 2012,
+ rating: 6.3,
+ votes: 18886,
+ running_times: 6180,
+ },
+ {
+ title: "American Movie",
+ year: 1999,
+ rating: 7.9,
+ votes: 14634,
+ running_times: 6420,
+ },
+ {
+ title: "American Ninja",
+ year: 1985,
+ rating: 5.4,
+ votes: 11392,
+ running_times: 5700,
+ },
+ {
+ title: "American Outlaws",
+ year: 2001,
+ rating: 6,
+ votes: 12644,
+ running_times: 5640,
+ },
+ {
+ title: "American Pie",
+ year: 1999,
+ rating: 7,
+ votes: 334732,
+ running_times: 5700,
+ },
+ {
+ title: "American Pie 2",
+ year: 2001,
+ rating: 6.4,
+ votes: 213276,
+ running_times: 6480,
+ },
+ {
+ title: "American Psycho",
+ year: 2000,
+ rating: 7.6,
+ votes: 396021,
+ running_times: 6120,
+ },
+ {
+ title: "American Reunion",
+ year: 2012,
+ rating: 6.7,
+ votes: 182331,
+ running_times: 6780,
+ },
+ {
+ title: "American Sniper",
+ year: 2014,
+ rating: 7.3,
+ votes: 368132,
+ running_times: 7980,
+ },
+ {
+ title: "American Splendor",
+ year: 2003,
+ rating: 7.5,
+ votes: 43842,
+ running_times: 6060,
+ },
+ {
+ title: "American Ultra",
+ year: 2015,
+ rating: 6.1,
+ votes: 68944,
+ running_times: 5760,
+ },
+ {
+ title: "American Wedding",
+ year: 2003,
+ rating: 6.3,
+ votes: 172946,
+ running_times: 6180,
+ },
+ {
+ title: "Amistad",
+ year: 1997,
+ rating: 7.3,
+ votes: 61388,
+ running_times: 9300,
+ },
+ {
+ title: "Amour",
+ year: 2012,
+ rating: 7.9,
+ votes: 78257,
+ running_times: 7620,
+ },
+ { title: "Amy", year: 2015, rating: 7.8, votes: 38716, running_times: 7680 },
+ {
+ title: "An Affair to Remember",
+ year: 1957,
+ rating: 7.6,
+ votes: 23942,
+ running_times: 6900,
+ },
+ {
+ title: "An American Crime",
+ year: 2007,
+ rating: 7.4,
+ votes: 27534,
+ running_times: 5880,
+ },
+ {
+ title: "An American Haunting",
+ year: 2005,
+ rating: 5,
+ votes: 23087,
+ running_times: 5460,
+ },
+ {
+ title: "An American Tail",
+ year: 1986,
+ rating: 6.9,
+ votes: 41433,
+ running_times: 4800,
+ },
+ {
+ title: "An American Tail: Fievel Goes West",
+ year: 1991,
+ rating: 6.5,
+ votes: 19175,
+ running_times: 4500,
+ },
+ {
+ title: "An American Werewolf in London",
+ year: 1981,
+ rating: 7.6,
+ votes: 74437,
+ running_times: 5820,
+ },
+ {
+ title: "An American Werewolf in Paris",
+ year: 1997,
+ rating: 5.1,
+ votes: 20423,
+ running_times: 6300,
+ },
+ {
+ title: "An American in Paris",
+ year: 1951,
+ rating: 7.2,
+ votes: 24711,
+ running_times: 6840,
+ },
+ {
+ title: "An Education",
+ year: 2009,
+ rating: 7.3,
+ votes: 117913,
+ running_times: 6000,
+ },
+ {
+ title: "An Ideal Husband",
+ year: 1999,
+ rating: 6.9,
+ votes: 13647,
+ running_times: 5820,
+ },
+ {
+ title: "An Inconvenient Truth",
+ year: 2006,
+ rating: 7.5,
+ votes: 73591,
+ running_times: 5760,
+ },
+ {
+ title: "An Officer and a Gentleman",
+ year: 1982,
+ rating: 7,
+ votes: 41135,
+ running_times: 7440,
+ },
+ {
+ title: "An Unfinished Life",
+ year: 2005,
+ rating: 7,
+ votes: 25784,
+ running_times: 6480,
+ },
+ {
+ title: "Anaconda",
+ year: 1997,
+ rating: 4.7,
+ votes: 80526,
+ running_times: 5340,
+ },
+ {
+ title: "Anacondas: The Hunt for the Blood Orchid",
+ year: 2004,
+ rating: 4.6,
+ votes: 24190,
+ running_times: 5820,
+ },
+ {
+ title: "Analyze That",
+ year: 2002,
+ rating: 5.9,
+ votes: 74001,
+ running_times: 5760,
+ },
+ {
+ title: "Analyze This",
+ year: 1999,
+ rating: 6.7,
+ votes: 131399,
+ running_times: 6540,
+ },
+ {
+ title: "Anastasia",
+ year: 1997,
+ rating: 7.1,
+ votes: 95743,
+ running_times: 5640,
+ },
+ {
+ title: "Anatomy of a Murder",
+ year: 1959,
+ rating: 8.1,
+ votes: 50250,
+ running_times: 9600,
+ },
+ {
+ title: "Anchorman 2: The Legend Continues",
+ year: 2013,
+ rating: 6.3,
+ votes: 143995,
+ running_times: 8580,
+ },
+ {
+ title: "Anchorman: The Legend of Ron Burgundy",
+ year: 2004,
+ rating: 7.2,
+ votes: 288977,
+ running_times: 6240,
+ },
+ {
+ title: "And Now for Something Completely Different",
+ year: 1971,
+ rating: 7.6,
+ votes: 25816,
+ running_times: 5280,
+ },
+ {
+ title: "And So It Goes",
+ year: 2014,
+ rating: 5.8,
+ votes: 10471,
+ running_times: 5640,
+ },
+ {
+ title: "And Soon the Darkness",
+ year: 2010,
+ rating: 5.2,
+ votes: 14637,
+ running_times: 5460,
+ },
+ {
+ title: "And Then There Were None",
+ year: 1945,
+ rating: 7.6,
+ votes: 10271,
+ running_times: 5820,
+ },
+ {
+ title: "Angel Eyes",
+ year: 2001,
+ rating: 5.6,
+ votes: 20391,
+ running_times: 6120,
+ },
+ {
+ title: "Angel Heart",
+ year: 1987,
+ rating: 7.3,
+ votes: 68210,
+ running_times: 6780,
+ },
+ {
+ title: "Angela's Ashes",
+ year: 1999,
+ rating: 7.3,
+ votes: 18063,
+ running_times: 8700,
+ },
+ {
+ title: "Angels & Demons",
+ year: 2009,
+ rating: 6.7,
+ votes: 235481,
+ running_times: 8760,
+ },
+ {
+ title: "Angels in the Outfield",
+ year: 1994,
+ rating: 6.1,
+ votes: 24230,
+ running_times: 6120,
+ },
+ {
+ title: "Angels with Dirty Faces",
+ year: 1938,
+ rating: 8,
+ votes: 17119,
+ running_times: 5820,
+ },
+ {
+ title: "Anger Management",
+ year: 2003,
+ rating: 6.2,
+ votes: 181738,
+ running_times: 6360,
+ },
+ {
+ title: "Angry Birds",
+ year: 2016,
+ rating: 6.3,
+ votes: 61016,
+ running_times: 5820,
+ },
+ {
+ title: "Angus, Thongs and Perfect Snogging",
+ year: 2008,
+ rating: 6.4,
+ votes: 22067,
+ running_times: 6000,
+ },
+ {
+ title: "Animal Crackers",
+ year: 1930,
+ rating: 7.7,
+ votes: 11502,
+ running_times: 5880,
+ },
+ {
+ title: "Animal Factory",
+ year: 2000,
+ rating: 6.6,
+ votes: 11266,
+ running_times: 5640,
+ },
+ {
+ title: "Animal Farm",
+ year: 1954,
+ rating: 7.2,
+ votes: 11658,
+ running_times: 4320,
+ },
+ {
+ title: "Animal House",
+ year: 1978,
+ rating: 7.6,
+ votes: 97022,
+ running_times: 6540,
+ },
+ {
+ title: "Animal Kingdom",
+ year: 2010,
+ rating: 7.3,
+ votes: 48897,
+ running_times: 6780,
+ },
+ { title: "Anna", year: 2013, rating: 6.5, votes: 17073, running_times: 5940 },
+ {
+ title: "Anna Karenina",
+ year: 2012,
+ rating: 6.6,
+ votes: 78137,
+ running_times: 7740,
+ },
+ {
+ title: "Anna and the King",
+ year: 1999,
+ rating: 6.7,
+ votes: 32703,
+ running_times: 8880,
+ },
+ {
+ title: "Annabelle",
+ year: 2014,
+ rating: 5.4,
+ votes: 103295,
+ running_times: 5940,
+ },
+ {
+ title: "Annabelle: Creation",
+ year: 2017,
+ rating: 6.6,
+ votes: 58319,
+ running_times: 6540,
+ },
+ {
+ title: "Annapolis",
+ year: 2006,
+ rating: 5.8,
+ votes: 18758,
+ running_times: 6480,
+ },
+ {
+ title: "Annie",
+ year: 1982,
+ rating: 6.5,
+ votes: 33623,
+ running_times: 7620,
+ },
+ {
+ title: "Annie",
+ year: 2014,
+ rating: 5.3,
+ votes: 28526,
+ running_times: 7080,
+ },
+ {
+ title: "Annie Hall",
+ year: 1977,
+ rating: 8.1,
+ votes: 217245,
+ running_times: 5580,
+ },
+ {
+ title: "Anomalisa",
+ year: 2015,
+ rating: 7.2,
+ votes: 49074,
+ running_times: 5400,
+ },
+ {
+ title: "Anonymous",
+ year: 2011,
+ rating: 6.9,
+ votes: 36351,
+ running_times: 7800,
+ },
+ {
+ title: "Another 48 Hrs.",
+ year: 1990,
+ rating: 5.8,
+ votes: 32415,
+ running_times: 5580,
+ },
+ {
+ title: "Another Earth",
+ year: 2011,
+ rating: 7,
+ votes: 80028,
+ running_times: 5520,
+ },
+ {
+ title: "Another Stakeout",
+ year: 1993,
+ rating: 5.5,
+ votes: 11646,
+ running_times: 6480,
+ },
+ {
+ title: "Another Woman",
+ year: 1988,
+ rating: 7.4,
+ votes: 10953,
+ running_times: 4860,
+ },
+ {
+ title: "Another Year",
+ year: 2010,
+ rating: 7.3,
+ votes: 25033,
+ running_times: 7740,
+ },
+ {
+ title: "Ant-Man",
+ year: 2015,
+ rating: 7.3,
+ votes: 399388,
+ running_times: 7020,
+ },
+ {
+ title: "Anthropoid",
+ year: 2016,
+ rating: 7.2,
+ votes: 30614,
+ running_times: 7200,
+ },
+ {
+ title: "Antichrist",
+ year: 2009,
+ rating: 6.6,
+ votes: 97620,
+ running_times: 6480,
+ },
+ {
+ title: "Antitrust",
+ year: 2001,
+ rating: 6.1,
+ votes: 26509,
+ running_times: 6300,
+ },
+ {
+ title: "Antiviral",
+ year: 2012,
+ rating: 5.7,
+ votes: 10297,
+ running_times: 6480,
+ },
+ {
+ title: "Antwone Fisher",
+ year: 2002,
+ rating: 7.3,
+ votes: 28617,
+ running_times: 7200,
+ },
+ {
+ title: "Antz",
+ year: 1998,
+ rating: 6.6,
+ votes: 132303,
+ running_times: 4980,
+ },
+ {
+ title: "Anvil: The Story of Anvil",
+ year: 2008,
+ rating: 8,
+ votes: 14104,
+ running_times: 4800,
+ },
+ {
+ title: "Any Given Sunday",
+ year: 1999,
+ rating: 6.8,
+ votes: 102436,
+ running_times: 9720,
+ },
+ {
+ title: "Any Which Way You Can",
+ year: 1980,
+ rating: 6,
+ votes: 14435,
+ running_times: 6960,
+ },
+ {
+ title: "Anything Else",
+ year: 2003,
+ rating: 6.4,
+ votes: 26831,
+ running_times: 6480,
+ },
+ {
+ title: "Anywhere But Here",
+ year: 1999,
+ rating: 6.2,
+ votes: 15513,
+ running_times: 6840,
+ },
+ {
+ title: "Apocalypse Now",
+ year: 1979,
+ rating: 8.5,
+ votes: 497723,
+ running_times: 19800,
+ },
+ {
+ title: "Apollo 13",
+ year: 1995,
+ rating: 7.6,
+ votes: 227008,
+ running_times: 8400,
+ },
+ {
+ title: "Apollo 18",
+ year: 2011,
+ rating: 5.2,
+ votes: 49390,
+ running_times: 5160,
+ },
+ {
+ title: "Appaloosa",
+ year: 2008,
+ rating: 6.8,
+ votes: 53205,
+ running_times: 6900,
+ },
+ {
+ title: "April Fool's Day",
+ year: 1986,
+ rating: 6.2,
+ votes: 11611,
+ running_times: 5340,
+ },
+ {
+ title: "Apt Pupil",
+ year: 1998,
+ rating: 6.7,
+ votes: 31118,
+ running_times: 6720,
+ },
+ {
+ title: "Aqua Teen Hunger Force Colon Movie Film for Theaters",
+ year: 2007,
+ rating: 6.9,
+ votes: 12541,
+ running_times: 5160,
+ },
+ {
+ title: "Aquamarine",
+ year: 2006,
+ rating: 5.3,
+ votes: 33298,
+ running_times: 6240,
+ },
+ {
+ title: "Arachnophobia",
+ year: 1990,
+ rating: 6.4,
+ votes: 54159,
+ running_times: 6180,
+ },
+ {
+ title: "Ararat",
+ year: 2002,
+ rating: 6.6,
+ votes: 10789,
+ running_times: 6900,
+ },
+ {
+ title: "Arbitrage",
+ year: 2012,
+ rating: 6.6,
+ votes: 44620,
+ running_times: 6420,
+ },
+ {
+ title: "Are We Done Yet?",
+ year: 2007,
+ rating: 4.1,
+ votes: 16925,
+ running_times: 5520,
+ },
+ {
+ title: "Are We There Yet?",
+ year: 2005,
+ rating: 4.6,
+ votes: 24773,
+ running_times: 5700,
+ },
+ {
+ title: "Are You Here",
+ year: 2013,
+ rating: 5.3,
+ votes: 12834,
+ running_times: 6840,
+ },
+ {
+ title: "Area 51",
+ year: 2015,
+ rating: 4.2,
+ votes: 10299,
+ running_times: 5460,
+ },
+ {
+ title: "Argo",
+ year: 2012,
+ rating: 7.7,
+ votes: 497169,
+ running_times: 7800,
+ },
+ {
+ title: "Arizona Dream",
+ year: 1993,
+ rating: 7.4,
+ votes: 36586,
+ running_times: 8520,
+ },
+ {
+ title: "Arlington Road",
+ year: 1999,
+ rating: 7.2,
+ votes: 73649,
+ running_times: 7020,
+ },
+ {
+ title: "Armageddon",
+ year: 1998,
+ rating: 6.6,
+ votes: 347486,
+ running_times: 9180,
+ },
+ {
+ title: "Armored",
+ year: 2009,
+ rating: 5.7,
+ votes: 27421,
+ running_times: 5280,
+ },
+ {
+ title: "Army of Darkness",
+ year: 1992,
+ rating: 7.6,
+ votes: 140929,
+ running_times: 5760,
+ },
+ {
+ title: "Arn: Tempelriddaren",
+ year: 2007,
+ rating: 6.6,
+ votes: 19100,
+ running_times: 16200,
+ },
+ {
+ title: "Around the World in 80 Days",
+ year: 1956,
+ rating: 6.8,
+ votes: 20004,
+ running_times: 10980,
+ },
+ {
+ title: "Around the World in 80 Days",
+ year: 2004,
+ rating: 5.8,
+ votes: 74283,
+ running_times: 7200,
+ },
+ {
+ title: "Arrival",
+ year: 2016,
+ rating: 8,
+ votes: 414134,
+ running_times: 6960,
+ },
+ {
+ title: "Arsenic and Old Lace",
+ year: 1944,
+ rating: 8,
+ votes: 58127,
+ running_times: 7080,
+ },
+ {
+ title: "Art School Confidential",
+ year: 2006,
+ rating: 6.3,
+ votes: 15550,
+ running_times: 6120,
+ },
+ {
+ title: "Arthur",
+ year: 1981,
+ rating: 6.9,
+ votes: 22746,
+ running_times: 5820,
+ },
+ {
+ title: "Arthur",
+ year: 2011,
+ rating: 5.7,
+ votes: 47295,
+ running_times: 6600,
+ },
+ {
+ title: "Arthur Christmas",
+ year: 2011,
+ rating: 7.1,
+ votes: 40559,
+ running_times: 5820,
+ },
+ {
+ title: "Arthur et les Minimoys",
+ year: 2006,
+ rating: 6,
+ votes: 28009,
+ running_times: 6240,
+ },
+ {
+ title: "Artificial Intelligence: AI",
+ year: 2001,
+ rating: 7.1,
+ votes: 258640,
+ running_times: 8760,
+ },
+ {
+ title: "As Above, So Below",
+ year: 2014,
+ rating: 6.2,
+ votes: 58359,
+ running_times: 5580,
+ },
+ {
+ title: "As Good as It Gets",
+ year: 1997,
+ rating: 7.7,
+ votes: 240006,
+ running_times: 8340,
+ },
+ {
+ title: "Ashby",
+ year: 2015,
+ rating: 6.4,
+ votes: 12069,
+ running_times: 6000,
+ },
+ {
+ title: "Assassin's Creed",
+ year: 2016,
+ rating: 5.8,
+ votes: 142293,
+ running_times: 6900,
+ },
+ {
+ title: "Assassination Games",
+ year: 2011,
+ rating: 6.2,
+ votes: 14739,
+ running_times: 6060,
+ },
+ {
+ title: "Assassination of a High School President",
+ year: 2008,
+ rating: 6.3,
+ votes: 14585,
+ running_times: 5580,
+ },
+ {
+ title: "Assassins",
+ year: 1995,
+ rating: 6.3,
+ votes: 68009,
+ running_times: 7920,
+ },
+ {
+ title: "Assault on Precinct 13",
+ year: 1976,
+ rating: 7.4,
+ votes: 35219,
+ running_times: 5460,
+ },
+ {
+ title: "Assault on Precinct 13",
+ year: 2005,
+ rating: 6.3,
+ votes: 68464,
+ running_times: 6540,
+ },
+ {
+ title: "Astro Boy",
+ year: 2009,
+ rating: 6.3,
+ votes: 28054,
+ running_times: 5640,
+ },
+ {
+ title: "At Close Range",
+ year: 1986,
+ rating: 7,
+ votes: 11734,
+ running_times: 6660,
+ },
+ {
+ title: "At First Sight",
+ year: 1999,
+ rating: 5.9,
+ votes: 11898,
+ running_times: 7680,
+ },
+ {
+ title: "Atlantic City, USA",
+ year: 1980,
+ rating: 7.4,
+ votes: 12335,
+ running_times: 6240,
+ },
+ {
+ title: "Atlantis: The Lost Empire",
+ year: 2001,
+ rating: 6.8,
+ votes: 82313,
+ running_times: 5700,
+ },
+ {
+ title: "Atlas Shrugged: Part I",
+ year: 2011,
+ rating: 5.7,
+ votes: 11880,
+ running_times: 5820,
+ },
+ {
+ title: "Atomic Blonde",
+ year: 2017,
+ rating: 6.8,
+ votes: 84987,
+ running_times: 6900,
+ },
+ {
+ title: "Atonement",
+ year: 2007,
+ rating: 7.8,
+ votes: 210033,
+ running_times: 7380,
+ },
+ {
+ title: "Attack of the Killer Tomatoes!",
+ year: 1978,
+ rating: 4.6,
+ votes: 10524,
+ running_times: 5400,
+ },
+ {
+ title: "Attack the Block",
+ year: 2011,
+ rating: 6.6,
+ votes: 88476,
+ running_times: 5280,
+ },
+ {
+ title: "Au revoir les enfants",
+ year: 1987,
+ rating: 8,
+ votes: 26271,
+ running_times: 6240,
+ },
+ {
+ title: "Auf der anderen Seite",
+ year: 2007,
+ rating: 7.9,
+ votes: 27515,
+ running_times: 7320,
+ },
+ {
+ title: "August Rush",
+ year: 2007,
+ rating: 7.5,
+ votes: 93885,
+ running_times: 6840,
+ },
+ {
+ title: "August: Osage County",
+ year: 2013,
+ rating: 7.2,
+ votes: 74140,
+ running_times: 7260,
+ },
+ {
+ title: "Austenland",
+ year: 2013,
+ rating: 6.3,
+ votes: 16601,
+ running_times: 5820,
+ },
+ {
+ title: "Austin Powers in Goldmember",
+ year: 2002,
+ rating: 6.2,
+ votes: 173560,
+ running_times: 5640,
+ },
+ {
+ title: "Austin Powers: International Man of Mystery",
+ year: 1997,
+ rating: 7,
+ votes: 195127,
+ running_times: 5640,
+ },
+ {
+ title: "Austin Powers: The Spy Who Shagged Me",
+ year: 1999,
+ rating: 6.6,
+ votes: 192813,
+ running_times: 5700,
+ },
+ {
+ title: "Australia",
+ year: 2008,
+ rating: 6.6,
+ votes: 108464,
+ running_times: 9900,
+ },
+ {
+ title: "Auto Focus",
+ year: 2002,
+ rating: 6.6,
+ votes: 11840,
+ running_times: 6300,
+ },
+ {
+ title: "Autoreiji",
+ year: 2010,
+ rating: 6.8,
+ votes: 10080,
+ running_times: 6540,
+ },
+ {
+ title: "Autumn in New York",
+ year: 2000,
+ rating: 5.5,
+ votes: 21753,
+ running_times: 6180,
+ },
+ {
+ title: "Autómata",
+ year: 2014,
+ rating: 6.1,
+ votes: 47310,
+ running_times: 6540,
+ },
+ {
+ title: "Avatar",
+ year: 2009,
+ rating: 7.8,
+ votes: 965391,
+ running_times: 10680,
+ },
+ {
+ title: "Avengers: Age of Ultron",
+ year: 2015,
+ rating: 7.4,
+ votes: 549839,
+ running_times: 8460,
+ },
+ {
+ title: "Awake",
+ year: 2007,
+ rating: 6.5,
+ votes: 66756,
+ running_times: 5040,
+ },
+ {
+ title: "Awakenings",
+ year: 1990,
+ rating: 7.8,
+ votes: 102781,
+ running_times: 7260,
+ },
+ {
+ title: "Away We Go",
+ year: 2009,
+ rating: 7.1,
+ votes: 47856,
+ running_times: 5880,
+ },
+ {
+ title: "Away from Her",
+ year: 2006,
+ rating: 7.6,
+ votes: 19754,
+ running_times: 6600,
+ },
+ {
+ title: "Ayla: The Daughter of War",
+ year: 2017,
+ rating: 9.1,
+ votes: 15688,
+ running_times: 7500,
+ },
+ {
+ title: "BASEketball",
+ year: 1998,
+ rating: 6.6,
+ votes: 51153,
+ running_times: 6180,
+ },
+ {
+ title: "Babe",
+ year: 1995,
+ rating: 6.8,
+ votes: 101472,
+ running_times: 5460,
+ },
+ {
+ title: "Babe: Pig in the City",
+ year: 1998,
+ rating: 5.8,
+ votes: 27221,
+ running_times: 5820,
+ },
+ {
+ title: "Babel",
+ year: 2006,
+ rating: 7.5,
+ votes: 259583,
+ running_times: 8580,
+ },
+ {
+ title: "Baby Boom",
+ year: 1987,
+ rating: 6.2,
+ votes: 11562,
+ running_times: 6600,
+ },
+ {
+ title: "Baby Boy",
+ year: 2001,
+ rating: 6.4,
+ votes: 10653,
+ running_times: 7800,
+ },
+ {
+ title: "Baby Driver",
+ year: 2017,
+ rating: 7.8,
+ votes: 228946,
+ running_times: 6720,
+ },
+ {
+ title: "Baby Geniuses",
+ year: 1999,
+ rating: 2.6,
+ votes: 21448,
+ running_times: 5820,
+ },
+ {
+ title: "Baby Mama",
+ year: 2008,
+ rating: 6,
+ votes: 36224,
+ running_times: 5940,
+ },
+ {
+ title: "Baby's Day Out",
+ year: 1994,
+ rating: 6,
+ votes: 37128,
+ running_times: 5940,
+ },
+ {
+ title: "Babylon A.D.",
+ year: 2008,
+ rating: 5.6,
+ votes: 86189,
+ running_times: 6060,
+ },
+ {
+ title: "Bachelor Party",
+ year: 1984,
+ rating: 6.3,
+ votes: 30852,
+ running_times: 6300,
+ },
+ {
+ title: "Bachelorette",
+ year: 2012,
+ rating: 5.3,
+ votes: 40392,
+ running_times: 5220,
+ },
+ {
+ title: "Back to School",
+ year: 1986,
+ rating: 6.6,
+ votes: 23321,
+ running_times: 5760,
+ },
+ {
+ title: "Back to the Future",
+ year: 1985,
+ rating: 8.5,
+ votes: 829676,
+ running_times: 6960,
+ },
+ {
+ title: "Back to the Future Part II",
+ year: 1989,
+ rating: 7.8,
+ votes: 382721,
+ running_times: 6480,
+ },
+ {
+ title: "Back to the Future Part III",
+ year: 1990,
+ rating: 7.4,
+ votes: 321449,
+ running_times: 7080,
+ },
+ {
+ title: "Backcountry",
+ year: 2014,
+ rating: 6,
+ votes: 13092,
+ running_times: 5520,
+ },
+ {
+ title: "Backdraft",
+ year: 1991,
+ rating: 6.7,
+ votes: 62230,
+ running_times: 8220,
+ },
+ {
+ title: "Bad Ass",
+ year: 2012,
+ rating: 5.5,
+ votes: 16900,
+ running_times: 5400,
+ },
+ {
+ title: "Bad Boy Bubby",
+ year: 1993,
+ rating: 7.4,
+ votes: 10399,
+ running_times: 6840,
+ },
+ {
+ title: "Bad Boys",
+ year: 1983,
+ rating: 7.2,
+ votes: 11737,
+ running_times: 7380,
+ },
+ {
+ title: "Bad Boys",
+ year: 1995,
+ rating: 6.8,
+ votes: 189209,
+ running_times: 7140,
+ },
+ {
+ title: "Bad Boys II",
+ year: 2003,
+ rating: 6.6,
+ votes: 192281,
+ running_times: 8820,
+ },
+ {
+ title: "Bad Company",
+ year: 2002,
+ rating: 5.6,
+ votes: 41533,
+ running_times: 7500,
+ },
+ {
+ title: "Bad Day at Black Rock",
+ year: 1955,
+ rating: 7.8,
+ votes: 15934,
+ running_times: 4860,
+ },
+ {
+ title: "Bad Girls",
+ year: 1994,
+ rating: 5.1,
+ votes: 10276,
+ running_times: 5940,
+ },
+ {
+ title: "Bad Grandpa",
+ year: 2013,
+ rating: 6.5,
+ votes: 82213,
+ running_times: 6120,
+ },
+ {
+ title: "Bad Lieutenant",
+ year: 1992,
+ rating: 7.1,
+ votes: 32064,
+ running_times: 5760,
+ },
+ {
+ title: "Bad Moms",
+ year: 2016,
+ rating: 6.2,
+ votes: 82020,
+ running_times: 6000,
+ },
+ {
+ title: "Bad News Bears",
+ year: 2005,
+ rating: 5.8,
+ votes: 18370,
+ running_times: 6780,
+ },
+ {
+ title: "Bad Santa",
+ year: 2003,
+ rating: 7.1,
+ votes: 119914,
+ running_times: 5940,
+ },
+ {
+ title: "Bad Santa 2",
+ year: 2016,
+ rating: 5.6,
+ votes: 14963,
+ running_times: 5520,
+ },
+ {
+ title: "Bad Taste",
+ year: 1987,
+ rating: 6.7,
+ votes: 38949,
+ running_times: 5880,
+ },
+ {
+ title: "Bad Teacher",
+ year: 2011,
+ rating: 5.7,
+ votes: 171167,
+ running_times: 5820,
+ },
+ {
+ title: "Bad Words",
+ year: 2013,
+ rating: 6.7,
+ votes: 41335,
+ running_times: 5340,
+ },
+ {
+ title: "Badlands",
+ year: 1973,
+ rating: 7.9,
+ votes: 53019,
+ running_times: 5640,
+ },
+ {
+ title: "Bailout: The Age of Greed",
+ year: 2013,
+ rating: 6.1,
+ votes: 18091,
+ running_times: 5940,
+ },
+ {
+ title: "Baiohazâdo: Dijenerêshon",
+ year: 2008,
+ rating: 6.6,
+ votes: 26286,
+ running_times: 5880,
+ },
+ { title: "Bait", year: 2012, rating: 5.2, votes: 13089, running_times: 5580 },
+ {
+ title: "Bakjwi",
+ year: 2009,
+ rating: 7.2,
+ votes: 34458,
+ running_times: 8880,
+ },
+ {
+ title: "Ballerina",
+ year: 2016,
+ rating: 6.8,
+ votes: 10767,
+ running_times: 5340,
+ },
+ {
+ title: "Ballistic: Ecks vs. Sever",
+ year: 2002,
+ rating: 3.6,
+ votes: 17379,
+ running_times: 5460,
+ },
+ {
+ title: "Balls of Fury",
+ year: 2007,
+ rating: 5.3,
+ votes: 37437,
+ running_times: 5400,
+ },
+ {
+ title: "Balto",
+ year: 1995,
+ rating: 7.1,
+ votes: 33431,
+ running_times: 4680,
+ },
+ {
+ title: "Bambi",
+ year: 1942,
+ rating: 7.3,
+ votes: 105971,
+ running_times: 4200,
+ },
+ {
+ title: "Bana Masal Anlatma",
+ year: 2015,
+ rating: 7.8,
+ votes: 11133,
+ running_times: 6180,
+ },
+ {
+ title: "Bananas",
+ year: 1971,
+ rating: 7.1,
+ votes: 29990,
+ running_times: 4920,
+ },
+ {
+ title: "Band Baaja Baaraat",
+ year: 2010,
+ rating: 7.3,
+ votes: 11333,
+ running_times: 8340,
+ },
+ {
+ title: "Bande à part",
+ year: 1964,
+ rating: 7.8,
+ votes: 18308,
+ running_times: 5700,
+ },
+ {
+ title: "Bandidas",
+ year: 2006,
+ rating: 5.7,
+ votes: 30735,
+ running_times: 5580,
+ },
+ {
+ title: "Bandits",
+ year: 2001,
+ rating: 6.5,
+ votes: 59840,
+ running_times: 7380,
+ },
+ {
+ title: "Bandslam",
+ year: 2009,
+ rating: 6.4,
+ votes: 12646,
+ running_times: 6660,
+ },
+ {
+ title: "Bang Bang You're Dead",
+ year: 2002,
+ rating: 7.9,
+ votes: 11636,
+ running_times: 5580,
+ },
+ {
+ title: "Bangkok Dangerous",
+ year: 2008,
+ rating: 5.4,
+ votes: 50670,
+ running_times: 5940,
+ },
+ {
+ title: "Banlieue 13: Ultimatum",
+ year: 2009,
+ rating: 6.5,
+ votes: 39420,
+ running_times: 6060,
+ },
+ {
+ title: "Barb Wire",
+ year: 1996,
+ rating: 3.2,
+ votes: 21839,
+ running_times: 6000,
+ },
+ {
+ title: "Barbarella",
+ year: 1968,
+ rating: 5.9,
+ votes: 26937,
+ running_times: 5880,
+ },
+ {
+ title: "Barbershop",
+ year: 2002,
+ rating: 6.3,
+ votes: 24682,
+ running_times: 6120,
+ },
+ {
+ title: "Barbershop 2: Back in Business",
+ year: 2004,
+ rating: 5.7,
+ votes: 11461,
+ running_times: 6360,
+ },
+ {
+ title: "Barbershop: The Next Cut",
+ year: 2016,
+ rating: 5.9,
+ votes: 11117,
+ running_times: 6660,
+ },
+ {
+ title: "Barefoot",
+ year: 2014,
+ rating: 6.6,
+ votes: 19458,
+ running_times: 5400,
+ },
+ {
+ title: "Barefoot in the Park",
+ year: 1967,
+ rating: 7,
+ votes: 13053,
+ running_times: 6360,
+ },
+ {
+ title: "Barely Lethal",
+ year: 2015,
+ rating: 5.4,
+ votes: 14428,
+ running_times: 5760,
+ },
+ {
+ title: "Barfly",
+ year: 1987,
+ rating: 7.3,
+ votes: 15840,
+ running_times: 6000,
+ },
+ {
+ title: "Barney's Version",
+ year: 2010,
+ rating: 7.3,
+ votes: 22142,
+ running_times: 8040,
+ },
+ {
+ title: "Barnyard",
+ year: 2006,
+ rating: 5.6,
+ votes: 22961,
+ running_times: 5400,
+ },
+ {
+ title: "Barry Lyndon",
+ year: 1975,
+ rating: 8.1,
+ votes: 114697,
+ running_times: 11100,
+ },
+ {
+ title: "Barton Fink",
+ year: 1991,
+ rating: 7.7,
+ votes: 97076,
+ running_times: 6960,
+ },
+ {
+ title: "Basic",
+ year: 2003,
+ rating: 6.5,
+ votes: 53220,
+ running_times: 5880,
+ },
+ {
+ title: "Basic Instinct",
+ year: 1992,
+ rating: 6.9,
+ votes: 145427,
+ running_times: 7680,
+ },
+ {
+ title: "Basic Instinct 2",
+ year: 2006,
+ rating: 4.3,
+ votes: 33147,
+ running_times: 6960,
+ },
+ {
+ title: "Basket Case",
+ year: 1982,
+ rating: 6.1,
+ votes: 12730,
+ running_times: 5460,
+ },
+ {
+ title: "Basquiat",
+ year: 1996,
+ rating: 6.9,
+ votes: 17003,
+ running_times: 6480,
+ },
+ {
+ title: "Bastille Day",
+ year: 2016,
+ rating: 6.3,
+ votes: 24569,
+ running_times: 5520,
+ },
+ {
+ title: "Batman & Robin",
+ year: 1997,
+ rating: 3.7,
+ votes: 204277,
+ running_times: 7500,
+ },
+ {
+ title: "Batman",
+ year: 1989,
+ rating: 7.6,
+ votes: 292105,
+ running_times: 7560,
+ },
+ {
+ title: "Batman Begins",
+ year: 2005,
+ rating: 8.3,
+ votes: 1089733,
+ running_times: 8400,
+ },
+ {
+ title: "Batman Forever",
+ year: 1995,
+ rating: 5.4,
+ votes: 206110,
+ running_times: 7260,
+ },
+ {
+ title: "Batman Returns",
+ year: 1992,
+ rating: 7,
+ votes: 234839,
+ running_times: 7560,
+ },
+ {
+ title: "Batman v Superman: Dawn of Justice",
+ year: 2016,
+ rating: 6.6,
+ votes: 512936,
+ running_times: 10980,
+ },
+ {
+ title: "Batman: Mask of the Phantasm",
+ year: 1993,
+ rating: 7.9,
+ votes: 34069,
+ running_times: 4560,
+ },
+ {
+ title: "Batman: The Killing Joke",
+ year: 2016,
+ rating: 6.5,
+ votes: 37257,
+ running_times: 5160,
+ },
+ {
+ title: "Batman: The Movie",
+ year: 1966,
+ rating: 6.5,
+ votes: 25655,
+ running_times: 6300,
+ },
+ {
+ title: "Battle Los Angeles",
+ year: 2011,
+ rating: 5.8,
+ votes: 161428,
+ running_times: 6960,
+ },
+ {
+ title: "Battle for the Planet of the Apes",
+ year: 1973,
+ rating: 5.5,
+ votes: 25097,
+ running_times: 5760,
+ },
+ {
+ title: "Battle in Seattle",
+ year: 2007,
+ rating: 6.7,
+ votes: 13340,
+ running_times: 5940,
+ },
+ {
+ title: "Battle of Britain",
+ year: 1969,
+ rating: 7,
+ votes: 17536,
+ running_times: 7920,
+ },
+ {
+ title: "Battle of the Bulge",
+ year: 1965,
+ rating: 6.8,
+ votes: 12257,
+ running_times: 10020,
+ },
+ {
+ title: "Battlefield Earth",
+ year: 2000,
+ rating: 2.4,
+ votes: 68599,
+ running_times: 7140,
+ },
+ {
+ title: "Battleship",
+ year: 2012,
+ rating: 5.8,
+ votes: 214998,
+ running_times: 7860,
+ },
+ {
+ title: "Baywatch",
+ year: 2017,
+ rating: 5.6,
+ votes: 82335,
+ running_times: 7260,
+ },
+ {
+ title: "Be Cool",
+ year: 2005,
+ rating: 5.7,
+ votes: 62138,
+ running_times: 7080,
+ },
+ {
+ title: "Be Kind Rewind",
+ year: 2008,
+ rating: 6.4,
+ votes: 83213,
+ running_times: 6120,
+ },
+ {
+ title: "Beaches",
+ year: 1988,
+ rating: 6.8,
+ votes: 19848,
+ running_times: 7380,
+ },
+ { title: "Bean", year: 1997, rating: 6.4, votes: 82345, running_times: 5340 },
+ {
+ title: "Beastly",
+ year: 2011,
+ rating: 5.6,
+ votes: 68792,
+ running_times: 5160,
+ },
+ {
+ title: "Beasts of No Nation",
+ year: 2015,
+ rating: 7.8,
+ votes: 54204,
+ running_times: 8220,
+ },
+ {
+ title: "Beasts of the Southern Wild",
+ year: 2012,
+ rating: 7.3,
+ votes: 74360,
+ running_times: 5580,
+ },
+ {
+ title: "Beautiful Creatures",
+ year: 2013,
+ rating: 6.2,
+ votes: 74302,
+ running_times: 7440,
+ },
+ {
+ title: "Beautiful Girls",
+ year: 1996,
+ rating: 7.2,
+ votes: 28097,
+ running_times: 6720,
+ },
+ {
+ title: "Beautiful Thing",
+ year: 1996,
+ rating: 7.7,
+ votes: 19989,
+ running_times: 5400,
+ },
+ {
+ title: "Beauty Shop",
+ year: 2005,
+ rating: 5.5,
+ votes: 14381,
+ running_times: 6300,
+ },
+ {
+ title: "Beauty and the Beast",
+ year: 1991,
+ rating: 8,
+ votes: 350813,
+ running_times: 5460,
+ },
+ {
+ title: "Beauty and the Beast",
+ year: 2017,
+ rating: 7.3,
+ votes: 184598,
+ running_times: 7740,
+ },
+ {
+ title: "Beavis and Butt-Head Do America",
+ year: 1996,
+ rating: 6.8,
+ votes: 45803,
+ running_times: 4860,
+ },
+ {
+ title: "Because I Said So",
+ year: 2007,
+ rating: 5.6,
+ votes: 34147,
+ running_times: 6120,
+ },
+ { title: "Becket", year: 1964, rating: 8, votes: 11879, running_times: 9000 },
+ {
+ title: "Becoming Jane",
+ year: 2007,
+ rating: 7.1,
+ votes: 50882,
+ running_times: 7200,
+ },
+ {
+ title: "Bedazzled",
+ year: 2000,
+ rating: 6,
+ votes: 86774,
+ running_times: 5580,
+ },
+ {
+ title: "Bedknobs and Broomsticks",
+ year: 1971,
+ rating: 7,
+ votes: 28432,
+ running_times: 8340,
+ },
+ {
+ title: "Bedtime Stories",
+ year: 2008,
+ rating: 6.1,
+ votes: 77344,
+ running_times: 5940,
+ },
+ {
+ title: "Bee Movie",
+ year: 2007,
+ rating: 6.1,
+ votes: 116761,
+ running_times: 5460,
+ },
+ {
+ title: "Beerfest",
+ year: 2006,
+ rating: 6.3,
+ votes: 57341,
+ running_times: 6600,
+ },
+ {
+ title: "Beethoven",
+ year: 1992,
+ rating: 5.6,
+ votes: 54880,
+ running_times: 5220,
+ },
+ {
+ title: "Beethoven's 2nd",
+ year: 1993,
+ rating: 4.8,
+ votes: 21277,
+ running_times: 5340,
+ },
+ {
+ title: "Beetlejuice",
+ year: 1988,
+ rating: 7.5,
+ votes: 210761,
+ running_times: 5520,
+ },
+ {
+ title: "Before I Fall",
+ year: 2017,
+ rating: 6.4,
+ votes: 25814,
+ running_times: 5880,
+ },
+ {
+ title: "Before I Go to Sleep",
+ year: 2014,
+ rating: 6.3,
+ votes: 57345,
+ running_times: 5520,
+ },
+ {
+ title: "Before I Wake",
+ year: 2016,
+ rating: 6.1,
+ votes: 21958,
+ running_times: 5820,
+ },
+ {
+ title: "Before Midnight",
+ year: 2013,
+ rating: 7.9,
+ votes: 110256,
+ running_times: 6540,
+ },
+ {
+ title: "Before Night Falls",
+ year: 2000,
+ rating: 7.3,
+ votes: 21900,
+ running_times: 7980,
+ },
+ {
+ title: "Before Sunrise",
+ year: 1995,
+ rating: 8.1,
+ votes: 210714,
+ running_times: 6060,
+ },
+ {
+ title: "Before Sunset",
+ year: 2004,
+ rating: 8,
+ votes: 185303,
+ running_times: 4800,
+ },
+ {
+ title: "Before We Go",
+ year: 2014,
+ rating: 6.9,
+ votes: 35613,
+ running_times: 5700,
+ },
+ {
+ title: "Before the Devil Knows You're Dead",
+ year: 2007,
+ rating: 7.3,
+ votes: 86289,
+ running_times: 7020,
+ },
+ {
+ title: "Before the Flood",
+ year: 2016,
+ rating: 8.3,
+ votes: 18725,
+ running_times: 5760,
+ },
+ {
+ title: "Before the Rain",
+ year: 1994,
+ rating: 8.1,
+ votes: 12111,
+ running_times: 6780,
+ },
+ {
+ title: "Begin Again",
+ year: 2013,
+ rating: 7.4,
+ votes: 118069,
+ running_times: 6240,
+ },
+ {
+ title: "Beginners",
+ year: 2010,
+ rating: 7.2,
+ votes: 79601,
+ running_times: 6300,
+ },
+ {
+ title: "Behind Enemy Lines",
+ year: 2001,
+ rating: 6.4,
+ votes: 91282,
+ running_times: 6360,
+ },
+ {
+ title: "Behind the Mask: The Rise of Leslie Vernon",
+ year: 2006,
+ rating: 6.8,
+ votes: 18319,
+ running_times: 5520,
+ },
+ {
+ title: "Being Flynn",
+ year: 2012,
+ rating: 6.4,
+ votes: 14976,
+ running_times: 6120,
+ },
+ {
+ title: "Being John Malkovich",
+ year: 1999,
+ rating: 7.8,
+ votes: 272442,
+ running_times: 6720,
+ },
+ {
+ title: "Being Julia",
+ year: 2004,
+ rating: 7,
+ votes: 11098,
+ running_times: 6240,
+ },
+ {
+ title: "Being There",
+ year: 1979,
+ rating: 8,
+ votes: 56236,
+ running_times: 7800,
+ },
+ {
+ title: "Bel Ami",
+ year: 2012,
+ rating: 5.4,
+ votes: 16345,
+ running_times: 6120,
+ },
+ {
+ title: "Belle",
+ year: 2013,
+ rating: 7.4,
+ votes: 23459,
+ running_times: 6000,
+ },
+ {
+ title: "Below",
+ year: 2002,
+ rating: 6.2,
+ votes: 18954,
+ running_times: 6300,
+ },
+ {
+ title: "Ben-Hur",
+ year: 1959,
+ rating: 8.1,
+ votes: 180774,
+ running_times: 13440,
+ },
+ {
+ title: "Ben-Hur",
+ year: 2016,
+ rating: 5.7,
+ votes: 33045,
+ running_times: 7380,
+ },
+ {
+ title: "Bend It Like Beckham",
+ year: 2002,
+ rating: 6.7,
+ votes: 95098,
+ running_times: 6900,
+ },
+ {
+ title: "Beneath the Planet of the Apes",
+ year: 1970,
+ rating: 6.1,
+ votes: 36158,
+ running_times: 5700,
+ },
+ {
+ title: "Benny & Joon",
+ year: 1993,
+ rating: 7.2,
+ votes: 49002,
+ running_times: 5880,
+ },
+ {
+ title: "Benny's Video",
+ year: 1992,
+ rating: 7.2,
+ votes: 10776,
+ running_times: 6300,
+ },
+ {
+ title: "Beowulf & Grendel",
+ year: 2005,
+ rating: 5.9,
+ votes: 16350,
+ running_times: 6180,
+ },
+ {
+ title: "Beowulf",
+ year: 1999,
+ rating: 4,
+ votes: 10148,
+ running_times: 5940,
+ },
+ {
+ title: "Beowulf",
+ year: 2007,
+ rating: 6.2,
+ votes: 149083,
+ running_times: 6900,
+ },
+ {
+ title: "Berberian Sound Studio",
+ year: 2012,
+ rating: 6.2,
+ votes: 11697,
+ running_times: 5520,
+ },
+ {
+ title: "Berlin Syndrome",
+ year: 2017,
+ rating: 6.3,
+ votes: 11929,
+ running_times: 6960,
+ },
+ {
+ title: "Bernie",
+ year: 2011,
+ rating: 6.8,
+ votes: 50518,
+ running_times: 6240,
+ },
+ {
+ title: "Best in Show",
+ year: 2000,
+ rating: 7.5,
+ votes: 48767,
+ running_times: 5400,
+ },
+ {
+ title: "Best of the Best",
+ year: 1989,
+ rating: 6.4,
+ votes: 10324,
+ running_times: 5820,
+ },
+ {
+ title: "Better Living Through Chemistry",
+ year: 2014,
+ rating: 6.3,
+ votes: 12403,
+ running_times: 5460,
+ },
+ {
+ title: "Better Off Dead...",
+ year: 1985,
+ rating: 7.2,
+ votes: 36214,
+ running_times: 5820,
+ },
+ {
+ title: "Beverly Hills Chihuahua",
+ year: 2008,
+ rating: 3.7,
+ votes: 18917,
+ running_times: 5460,
+ },
+ {
+ title: "Beverly Hills Cop",
+ year: 1984,
+ rating: 7.3,
+ votes: 138092,
+ running_times: 6300,
+ },
+ {
+ title: "Beverly Hills Cop II",
+ year: 1987,
+ rating: 6.5,
+ votes: 91948,
+ running_times: 6000,
+ },
+ {
+ title: "Beverly Hills Cop III",
+ year: 1994,
+ rating: 5.5,
+ votes: 65593,
+ running_times: 6240,
+ },
+ {
+ title: "Beverly Hills Ninja",
+ year: 1997,
+ rating: 5.5,
+ votes: 33242,
+ running_times: 5280,
+ },
+ {
+ title: "Bewitched",
+ year: 2005,
+ rating: 4.8,
+ votes: 61926,
+ running_times: 6120,
+ },
+ {
+ title: "Beyond Borders",
+ year: 2003,
+ rating: 6.5,
+ votes: 23974,
+ running_times: 7620,
+ },
+ {
+ title: "Beyond a Reasonable Doubt",
+ year: 2009,
+ rating: 5.9,
+ votes: 11253,
+ running_times: 6360,
+ },
+ {
+ title: "Beyond the Lights",
+ year: 2014,
+ rating: 6.9,
+ votes: 12882,
+ running_times: 6960,
+ },
+ {
+ title: "Beyond the Sea",
+ year: 2004,
+ rating: 6.7,
+ votes: 13535,
+ running_times: 7080,
+ },
+ {
+ title: "Bicentennial Man",
+ year: 1999,
+ rating: 6.8,
+ votes: 95874,
+ running_times: 7920,
+ },
+ { title: "Big", year: 1988, rating: 7.3, votes: 165755, running_times: 7800 },
+ {
+ title: "Big Daddy",
+ year: 1999,
+ rating: 6.4,
+ votes: 173724,
+ running_times: 5580,
+ },
+ {
+ title: "Big Eyes",
+ year: 2014,
+ rating: 7,
+ votes: 68354,
+ running_times: 6360,
+ },
+ {
+ title: "Big Fat Liar",
+ year: 2002,
+ rating: 5.4,
+ votes: 30820,
+ running_times: 5280,
+ },
+ {
+ title: "Big Fish",
+ year: 2003,
+ rating: 8,
+ votes: 372206,
+ running_times: 7500,
+ },
+ {
+ title: "Big Game",
+ year: 2014,
+ rating: 5.4,
+ votes: 25066,
+ running_times: 6600,
+ },
+ {
+ title: "Big Hero 6",
+ year: 2014,
+ rating: 7.8,
+ votes: 325944,
+ running_times: 6120,
+ },
+ {
+ title: "Big Miracle",
+ year: 2012,
+ rating: 6.5,
+ votes: 16311,
+ running_times: 6420,
+ },
+ {
+ title: "Big Momma's House",
+ year: 2000,
+ rating: 5.1,
+ votes: 71764,
+ running_times: 5940,
+ },
+ {
+ title: "Big Momma's House 2",
+ year: 2006,
+ rating: 4.6,
+ votes: 34990,
+ running_times: 5940,
+ },
+ {
+ title: "Big Mommas: Like Father, Like Son",
+ year: 2011,
+ rating: 4.4,
+ votes: 21699,
+ running_times: 6780,
+ },
+ {
+ title: "Big Night",
+ year: 1996,
+ rating: 7.3,
+ votes: 14157,
+ running_times: 6540,
+ },
+ {
+ title: "Big Nothing",
+ year: 2006,
+ rating: 6.8,
+ votes: 27146,
+ running_times: 5160,
+ },
+ {
+ title: "Big Stan",
+ year: 2007,
+ rating: 6.2,
+ votes: 36691,
+ running_times: 6300,
+ },
+ {
+ title: "Big Trouble",
+ year: 2002,
+ rating: 6.5,
+ votes: 18242,
+ running_times: 5100,
+ },
+ {
+ title: "Big Trouble in Little China",
+ year: 1986,
+ rating: 7.3,
+ votes: 103133,
+ running_times: 5940,
+ },
+ {
+ title: "Bigger Stronger Faster*",
+ year: 2008,
+ rating: 7.6,
+ votes: 12389,
+ running_times: 6300,
+ },
+ {
+ title: "Biker Boyz",
+ year: 2003,
+ rating: 4.6,
+ votes: 11604,
+ running_times: 6600,
+ },
+ {
+ title: "Bikur Ha-Tizmoret",
+ year: 2007,
+ rating: 7.6,
+ votes: 11513,
+ running_times: 5220,
+ },
+ {
+ title: "Bill & Ted's Bogus Journey",
+ year: 1991,
+ rating: 6.2,
+ votes: 53320,
+ running_times: 5580,
+ },
+ {
+ title: "Bill & Ted's Excellent Adventure",
+ year: 1989,
+ rating: 6.9,
+ votes: 91698,
+ running_times: 5400,
+ },
+ { title: "Bill", year: 2007, rating: 6.3, votes: 18340, running_times: 5580 },
+ {
+ title: "Billy Bathgate",
+ year: 1991,
+ rating: 5.9,
+ votes: 10143,
+ running_times: 6360,
+ },
+ {
+ title: "Billy Elliot",
+ year: 2000,
+ rating: 7.7,
+ votes: 105511,
+ running_times: 6600,
+ },
+ {
+ title: "Billy Lynn's Long Halftime Walk",
+ year: 2016,
+ rating: 6.3,
+ votes: 15639,
+ running_times: 6780,
+ },
+ {
+ title: "Billy Madison",
+ year: 1995,
+ rating: 6.4,
+ votes: 113436,
+ running_times: 5340,
+ },
+ {
+ title: "Biloxi Blues",
+ year: 1988,
+ rating: 6.6,
+ votes: 12664,
+ running_times: 6360,
+ },
+ {
+ title: "Bio-Dome",
+ year: 1996,
+ rating: 4.4,
+ votes: 22920,
+ running_times: 5700,
+ },
+ {
+ title: "Bird on a Wire",
+ year: 1990,
+ rating: 5.9,
+ votes: 33891,
+ running_times: 6600,
+ },
+ {
+ title: "Birdemic: Shock and Terror",
+ year: 2010,
+ rating: 1.8,
+ votes: 16894,
+ running_times: 6300,
+ },
+ {
+ title: "Birdman of Alcatraz",
+ year: 1962,
+ rating: 7.8,
+ votes: 13386,
+ running_times: 8820,
+ },
+ {
+ title: "Birdman or (The Unexpected Virtue of Ignorance)",
+ year: 2014,
+ rating: 7.8,
+ votes: 463395,
+ running_times: 7140,
+ },
+ {
+ title: "Birdy",
+ year: 1984,
+ rating: 7.3,
+ votes: 18621,
+ running_times: 7200,
+ },
+ {
+ title: "Birth",
+ year: 2004,
+ rating: 6.1,
+ votes: 31442,
+ running_times: 6000,
+ },
+ {
+ title: "Birthday Girl",
+ year: 2001,
+ rating: 6.1,
+ votes: 22488,
+ running_times: 5580,
+ },
+ {
+ title: "Bitch Slap",
+ year: 2009,
+ rating: 4.5,
+ votes: 12541,
+ running_times: 6540,
+ },
+ {
+ title: "Bitter Moon",
+ year: 1992,
+ rating: 7.2,
+ votes: 28437,
+ running_times: 8340,
+ },
+ {
+ title: "Black",
+ year: 2005,
+ rating: 8.2,
+ votes: 28133,
+ running_times: 7320,
+ },
+ {
+ title: "Black Christmas",
+ year: 1974,
+ rating: 7.2,
+ votes: 24393,
+ running_times: 5880,
+ },
+ {
+ title: "Black Christmas",
+ year: 2006,
+ rating: 4.6,
+ votes: 21469,
+ running_times: 5640,
+ },
+ {
+ title: "Black Death",
+ year: 2010,
+ rating: 6.4,
+ votes: 38775,
+ running_times: 6120,
+ },
+ {
+ title: "Black Dynamite",
+ year: 2009,
+ rating: 7.4,
+ votes: 38921,
+ running_times: 5040,
+ },
+ {
+ title: "Black Hawk Down",
+ year: 2001,
+ rating: 7.7,
+ votes: 317178,
+ running_times: 9120,
+ },
+ {
+ title: "Black Knight",
+ year: 2001,
+ rating: 4.8,
+ votes: 33164,
+ running_times: 5700,
+ },
+ {
+ title: "Black Mass",
+ year: 2015,
+ rating: 6.9,
+ votes: 142953,
+ running_times: 7380,
+ },
+ {
+ title: "Black Narcissus",
+ year: 1947,
+ rating: 8,
+ votes: 17316,
+ running_times: 6060,
+ },
+ {
+ title: "Black Rain",
+ year: 1989,
+ rating: 6.6,
+ votes: 42471,
+ running_times: 7500,
+ },
+ {
+ title: "Black Sea",
+ year: 2014,
+ rating: 6.4,
+ votes: 28893,
+ running_times: 6840,
+ },
+ {
+ title: "Black Sheep",
+ year: 1996,
+ rating: 6.2,
+ votes: 31823,
+ running_times: 5220,
+ },
+ {
+ title: "Black Sheep",
+ year: 2006,
+ rating: 5.8,
+ votes: 36324,
+ running_times: 5220,
+ },
+ {
+ title: "Black Snake Moan",
+ year: 2006,
+ rating: 7,
+ votes: 55960,
+ running_times: 6960,
+ },
+ {
+ title: "Black Swan",
+ year: 2010,
+ rating: 8,
+ votes: 601083,
+ running_times: 6480,
+ },
+ {
+ title: "Black Water",
+ year: 2007,
+ rating: 6,
+ votes: 10724,
+ running_times: 5400,
+ },
+ {
+ title: "Blackadder Back & Forth",
+ year: 1999,
+ rating: 7.7,
+ votes: 11766,
+ running_times: 1980,
+ },
+ {
+ title: "Blackfish",
+ year: 2013,
+ rating: 8.1,
+ votes: 51958,
+ running_times: 4980,
+ },
+ {
+ title: "Blackhat",
+ year: 2015,
+ rating: 5.4,
+ votes: 44981,
+ running_times: 7980,
+ },
+ {
+ title: "Blade",
+ year: 1998,
+ rating: 7.1,
+ votes: 209150,
+ running_times: 7200,
+ },
+ {
+ title: "Blade II",
+ year: 2002,
+ rating: 6.7,
+ votes: 173270,
+ running_times: 7020,
+ },
+ {
+ title: "Blade Runner",
+ year: 1982,
+ rating: 8.2,
+ votes: 549243,
+ running_times: 7020,
+ },
+ {
+ title: "Blade Runner 2049",
+ year: 2017,
+ rating: 8.4,
+ votes: 159689,
+ running_times: 9840,
+ },
+ {
+ title: "Blade: Trinity",
+ year: 2004,
+ rating: 5.9,
+ votes: 145063,
+ running_times: 7320,
+ },
+ {
+ title: "Blades of Glory",
+ year: 2007,
+ rating: 6.3,
+ votes: 138656,
+ running_times: 5580,
+ },
+ {
+ title: "Blair Witch",
+ year: 2016,
+ rating: 5,
+ votes: 31208,
+ running_times: 5340,
+ },
+ {
+ title: "Blank Check",
+ year: 1994,
+ rating: 5.2,
+ votes: 15623,
+ running_times: 5580,
+ },
+ {
+ title: "Blast from the Past",
+ year: 1999,
+ rating: 6.6,
+ votes: 52616,
+ running_times: 6720,
+ },
+ {
+ title: "Blazing Saddles",
+ year: 1974,
+ rating: 7.8,
+ votes: 106624,
+ running_times: 5580,
+ },
+ {
+ title: "Bleed for This",
+ year: 2016,
+ rating: 6.8,
+ votes: 16729,
+ running_times: 7020,
+ },
+ {
+ title: "Blended",
+ year: 2014,
+ rating: 6.5,
+ votes: 97403,
+ running_times: 7020,
+ },
+ {
+ title: "Bless the Child",
+ year: 2000,
+ rating: 5.1,
+ votes: 12753,
+ running_times: 6420,
+ },
+ {
+ title: "Blind Date",
+ year: 1987,
+ rating: 5.9,
+ votes: 18050,
+ running_times: 5700,
+ },
+ {
+ title: "Blind Dating",
+ year: 2006,
+ rating: 6.1,
+ votes: 10481,
+ running_times: 5700,
+ },
+ {
+ title: "Blind Fury",
+ year: 1989,
+ rating: 6.3,
+ votes: 11747,
+ running_times: 5160,
+ },
+ {
+ title: "Blindness",
+ year: 2008,
+ rating: 6.6,
+ votes: 62790,
+ running_times: 7260,
+ },
+ {
+ title: "Blitz",
+ year: 2011,
+ rating: 6.2,
+ votes: 73267,
+ running_times: 5820,
+ },
+ {
+ title: "Blood Diamond",
+ year: 2006,
+ rating: 8,
+ votes: 434531,
+ running_times: 8580,
+ },
+ {
+ title: "Blood Father",
+ year: 2016,
+ rating: 6.4,
+ votes: 45527,
+ running_times: 5280,
+ },
+ {
+ title: "Blood Simple.",
+ year: 1984,
+ rating: 7.7,
+ votes: 73424,
+ running_times: 5940,
+ },
+ {
+ title: "Blood Ties",
+ year: 2013,
+ rating: 6.5,
+ votes: 16346,
+ running_times: 8640,
+ },
+ {
+ title: "Blood Work",
+ year: 2002,
+ rating: 6.4,
+ votes: 36930,
+ running_times: 6600,
+ },
+ {
+ title: "Blood and Bone",
+ year: 2009,
+ rating: 6.7,
+ votes: 27624,
+ running_times: 5580,
+ },
+ {
+ title: "Blood and Chocolate",
+ year: 2007,
+ rating: 5.5,
+ votes: 16063,
+ running_times: 5880,
+ },
+ {
+ title: "Blood: The Last Vampire",
+ year: 2000,
+ rating: 6.7,
+ votes: 10762,
+ running_times: 2880,
+ },
+ {
+ title: "Blood: The Last Vampire",
+ year: 2009,
+ rating: 5.3,
+ votes: 13610,
+ running_times: 5460,
+ },
+ {
+ title: "BloodRayne",
+ year: 2005,
+ rating: 2.9,
+ votes: 31603,
+ running_times: 5700,
+ },
+ {
+ title: "Bloodsport",
+ year: 1988,
+ rating: 6.8,
+ votes: 64098,
+ running_times: 5520,
+ },
+ {
+ title: "Bloody Sunday",
+ year: 2002,
+ rating: 7.7,
+ votes: 21001,
+ running_times: 6420,
+ },
+ {
+ title: "Blow",
+ year: 2001,
+ rating: 7.6,
+ votes: 212868,
+ running_times: 7440,
+ },
+ {
+ title: "Blow Out",
+ year: 1981,
+ rating: 7.4,
+ votes: 32263,
+ running_times: 6420,
+ },
+ {
+ title: "Blown Away",
+ year: 1994,
+ rating: 6.2,
+ votes: 24653,
+ running_times: 7260,
+ },
+ {
+ title: "Blowup",
+ year: 1966,
+ rating: 7.6,
+ votes: 46137,
+ running_times: 6660,
+ },
+ {
+ title: "Blue Chips",
+ year: 1994,
+ rating: 6.1,
+ votes: 10259,
+ running_times: 6480,
+ },
+ {
+ title: "Blue Crush",
+ year: 2002,
+ rating: 5.6,
+ votes: 27345,
+ running_times: 6240,
+ },
+ {
+ title: "Blue Jasmine",
+ year: 2013,
+ rating: 7.3,
+ votes: 166439,
+ running_times: 5880,
+ },
+ {
+ title: "Blue Mountain State: The Rise of Thadland",
+ year: 2016,
+ rating: 5.9,
+ votes: 11882,
+ running_times: 5400,
+ },
+ {
+ title: "Blue Ruin",
+ year: 2013,
+ rating: 7.1,
+ votes: 52383,
+ running_times: 5400,
+ },
+ {
+ title: "Blue Steel",
+ year: 1989,
+ rating: 5.6,
+ votes: 10090,
+ running_times: 6120,
+ },
+ {
+ title: "Blue Streak",
+ year: 1999,
+ rating: 6.3,
+ votes: 64619,
+ running_times: 5580,
+ },
+ {
+ title: "Blue Thunder",
+ year: 1983,
+ rating: 6.4,
+ votes: 13524,
+ running_times: 6540,
+ },
+ {
+ title: "Blue Valentine",
+ year: 2010,
+ rating: 7.4,
+ votes: 156851,
+ running_times: 6720,
+ },
+ {
+ title: "Blue Velvet",
+ year: 1986,
+ rating: 7.8,
+ votes: 148871,
+ running_times: 10320,
+ },
+ {
+ title: "Blues Brothers 2000",
+ year: 1998,
+ rating: 4.8,
+ votes: 27755,
+ running_times: 7380,
+ },
+ {
+ title: "Boat Trip",
+ year: 2002,
+ rating: 4.9,
+ votes: 28039,
+ running_times: 5820,
+ },
+ {
+ title: "Bob Roberts",
+ year: 1992,
+ rating: 7,
+ votes: 12125,
+ running_times: 6120,
+ },
+ { title: "Bobby", year: 2006, rating: 7, votes: 39233, running_times: 7020 },
+ {
+ title: "Body Double",
+ year: 1984,
+ rating: 6.8,
+ votes: 22822,
+ running_times: 6840,
+ },
+ {
+ title: "Body Heat",
+ year: 1981,
+ rating: 7.4,
+ votes: 25400,
+ running_times: 6780,
+ },
+ {
+ title: "Body Snatchers",
+ year: 1993,
+ rating: 5.9,
+ votes: 14485,
+ running_times: 5220,
+ },
+ {
+ title: "Body of Evidence",
+ year: 1993,
+ rating: 4.4,
+ votes: 12109,
+ running_times: 6120,
+ },
+ {
+ title: "Body of Lies",
+ year: 2008,
+ rating: 7.1,
+ votes: 187229,
+ running_times: 7680,
+ },
+ {
+ title: "Bodyguard",
+ year: 2011,
+ rating: 4.6,
+ votes: 18446,
+ running_times: 7800,
+ },
+ {
+ title: "Boiler Room",
+ year: 2000,
+ rating: 7,
+ votes: 44177,
+ running_times: 7200,
+ },
+ {
+ title: "Bolt",
+ year: 2008,
+ rating: 6.9,
+ votes: 160434,
+ running_times: 5760,
+ },
+ {
+ title: "Bon Cop, Bad Cop",
+ year: 2006,
+ rating: 6.9,
+ votes: 10218,
+ running_times: 7200,
+ },
+ {
+ title: "Bone Tomahawk",
+ year: 2015,
+ rating: 7.1,
+ votes: 53235,
+ running_times: 7920,
+ },
+ {
+ title: "Bonnie and Clyde",
+ year: 1967,
+ rating: 7.9,
+ votes: 87339,
+ running_times: 6660,
+ },
+ {
+ title: "Boogeyman",
+ year: 2005,
+ rating: 4.1,
+ votes: 27541,
+ running_times: 5340,
+ },
+ {
+ title: "Boogie Nights",
+ year: 1997,
+ rating: 7.9,
+ votes: 204133,
+ running_times: 9300,
+ },
+ {
+ title: "Book of Shadows: Blair Witch 2",
+ year: 2000,
+ rating: 4,
+ votes: 31854,
+ running_times: 5400,
+ },
+ {
+ title: "Boomerang",
+ year: 1992,
+ rating: 5.4,
+ votes: 21930,
+ running_times: 7020,
+ },
+ {
+ title:
+ "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan",
+ year: 2006,
+ rating: 7.3,
+ votes: 315298,
+ running_times: 5040,
+ },
+ {
+ title: "Bordello of Blood",
+ year: 1996,
+ rating: 5.3,
+ votes: 11395,
+ running_times: 5220,
+ },
+ {
+ title: "Borgman",
+ year: 2013,
+ rating: 6.8,
+ votes: 13256,
+ running_times: 6780,
+ },
+ {
+ title: "Born Into Brothels: Calcutta's Red Light Kids",
+ year: 2004,
+ rating: 7.4,
+ votes: 13355,
+ running_times: 5100,
+ },
+ {
+ title: "Born on the Fourth of July",
+ year: 1989,
+ rating: 7.2,
+ votes: 83568,
+ running_times: 8700,
+ },
+ {
+ title: "Bottle Rocket",
+ year: 1996,
+ rating: 7.1,
+ votes: 59209,
+ running_times: 5700,
+ },
+ {
+ title: "Bottle Shock",
+ year: 2008,
+ rating: 6.8,
+ votes: 13142,
+ running_times: 6600,
+ },
+ {
+ title: "Bounce",
+ year: 2000,
+ rating: 5.7,
+ votes: 18442,
+ running_times: 6360,
+ },
+ {
+ title: "Bound",
+ year: 1996,
+ rating: 7.4,
+ votes: 44030,
+ running_times: 6540,
+ },
+ {
+ title: "Bound by Honor",
+ year: 1993,
+ rating: 8,
+ votes: 24940,
+ running_times: 19800,
+ },
+ {
+ title: "Boundin'",
+ year: 2003,
+ rating: 7,
+ votes: 10569,
+ running_times: 300,
+ },
+ {
+ title: "Bowfinger",
+ year: 1999,
+ rating: 6.4,
+ votes: 59927,
+ running_times: 5820,
+ },
+ {
+ title: "Bowling for Columbine",
+ year: 2002,
+ rating: 8,
+ votes: 129424,
+ running_times: 7200,
+ },
+ {
+ title: "Boxing Helena",
+ year: 1993,
+ rating: 4.6,
+ votes: 10175,
+ running_times: 6420,
+ },
+ { title: "Boy", year: 2010, rating: 7.5, votes: 12607, running_times: 5220 },
+ {
+ title: "Boy A",
+ year: 2007,
+ rating: 7.7,
+ votes: 34618,
+ running_times: 6120,
+ },
+ {
+ title: "Boyhood",
+ year: 2014,
+ rating: 7.9,
+ votes: 296371,
+ running_times: 9900,
+ },
+ {
+ title: "Boys Don't Cry",
+ year: 1999,
+ rating: 7.6,
+ votes: 82611,
+ running_times: 7080,
+ },
+ {
+ title: "Boys and Girls",
+ year: 2000,
+ rating: 5.4,
+ votes: 14502,
+ running_times: 5640,
+ },
+ {
+ title: "Boys on the Side",
+ year: 1995,
+ rating: 6.4,
+ votes: 10282,
+ running_times: 6900,
+ },
+ {
+ title: "Boyz n the Hood",
+ year: 1991,
+ rating: 7.8,
+ votes: 103550,
+ running_times: 6720,
+ },
+ {
+ title: "Braindead",
+ year: 1992,
+ rating: 7.5,
+ votes: 82550,
+ running_times: 6240,
+ },
+ {
+ title: "Brake",
+ year: 2012,
+ rating: 6.1,
+ votes: 10558,
+ running_times: 5520,
+ },
+ {
+ title: "Brassed Off",
+ year: 1996,
+ rating: 7.1,
+ votes: 16742,
+ running_times: 6180,
+ },
+ { title: "Brat", year: 1997, rating: 8, votes: 12125, running_times: 5940 },
+ {
+ title: "Bratz",
+ year: 2007,
+ rating: 2.9,
+ votes: 15681,
+ running_times: 6600,
+ },
+ {
+ title: "Brave",
+ year: 2012,
+ rating: 7.2,
+ votes: 306335,
+ running_times: 5580,
+ },
+ {
+ title: "Braveheart",
+ year: 1995,
+ rating: 8.4,
+ votes: 817912,
+ running_times: 13500,
+ },
+ {
+ title: "Brawl in Cell Block 99",
+ year: 2017,
+ rating: 7.2,
+ votes: 11487,
+ running_times: 7920,
+ },
+ {
+ title: "Brazil",
+ year: 1985,
+ rating: 8,
+ votes: 164563,
+ running_times: 8520,
+ },
+ { title: "Breach", year: 2007, rating: 7, votes: 53971, running_times: 6600 },
+ {
+ title: "Breakdown",
+ year: 1997,
+ rating: 6.9,
+ votes: 41285,
+ running_times: 5580,
+ },
+ {
+ title: "Breakfast at Tiffany's",
+ year: 1961,
+ rating: 7.7,
+ votes: 137679,
+ running_times: 6900,
+ },
+ {
+ title: "Breakfast on Pluto",
+ year: 2005,
+ rating: 7.3,
+ votes: 18572,
+ running_times: 7680,
+ },
+ {
+ title: "Breaking Away",
+ year: 1979,
+ rating: 7.7,
+ votes: 18743,
+ running_times: 6060,
+ },
+ {
+ title: "Breaking and Entering",
+ year: 2006,
+ rating: 6.5,
+ votes: 20696,
+ running_times: 7200,
+ },
+ {
+ title: "Breaking the Waves",
+ year: 1996,
+ rating: 7.9,
+ votes: 52970,
+ running_times: 9540,
+ },
+ {
+ title: "Breathe In",
+ year: 2013,
+ rating: 6.4,
+ votes: 12109,
+ running_times: 5880,
+ },
+ {
+ title: "Brewster's Millions",
+ year: 1985,
+ rating: 6.5,
+ votes: 30512,
+ running_times: 6120,
+ },
+ {
+ title: "Brick",
+ year: 2005,
+ rating: 7.4,
+ votes: 90277,
+ running_times: 6600,
+ },
+ {
+ title: "Brick Mansions",
+ year: 2014,
+ rating: 5.7,
+ votes: 35186,
+ running_times: 6000,
+ },
+ {
+ title: "Bride & Prejudice",
+ year: 2004,
+ rating: 6.2,
+ votes: 18303,
+ running_times: 7320,
+ },
+ {
+ title: "Bride Wars",
+ year: 2009,
+ rating: 5.5,
+ votes: 87239,
+ running_times: 5340,
+ },
+ {
+ title: "Bride of Chucky",
+ year: 1998,
+ rating: 5.4,
+ votes: 43904,
+ running_times: 5340,
+ },
+ {
+ title: "Bride of Frankenstein",
+ year: 1935,
+ rating: 7.9,
+ votes: 35950,
+ running_times: 4500,
+ },
+ {
+ title: "Bride of Re-Animator",
+ year: 1989,
+ rating: 6.3,
+ votes: 10648,
+ running_times: 5760,
+ },
+ {
+ title: "Brideshead Revisited",
+ year: 2008,
+ rating: 6.7,
+ votes: 10686,
+ running_times: 7980,
+ },
+ {
+ title: "Bridesmaids",
+ year: 2011,
+ rating: 6.8,
+ votes: 234286,
+ running_times: 7800,
+ },
+ {
+ title: "Bridge of Spies",
+ year: 2015,
+ rating: 7.6,
+ votes: 232893,
+ running_times: 8520,
+ },
+ {
+ title: "Bridge to Terabithia",
+ year: 2007,
+ rating: 7.2,
+ votes: 121347,
+ running_times: 5760,
+ },
+ {
+ title: "Bridget Jones's Baby",
+ year: 2016,
+ rating: 6.6,
+ votes: 50177,
+ running_times: 7080,
+ },
+ {
+ title: "Bridget Jones's Diary",
+ year: 2001,
+ rating: 6.7,
+ votes: 191145,
+ running_times: 5820,
+ },
+ {
+ title: "Bridget Jones: The Edge of Reason",
+ year: 2004,
+ rating: 5.9,
+ votes: 87286,
+ running_times: 6480,
+ },
+ {
+ title: "Brief Encounter",
+ year: 1945,
+ rating: 8.1,
+ votes: 28907,
+ running_times: 5160,
+ },
+ {
+ title: "Bright Star",
+ year: 2009,
+ rating: 7,
+ votes: 22780,
+ running_times: 7140,
+ },
+ {
+ title: "Brimstone",
+ year: 2016,
+ rating: 7.1,
+ votes: 20832,
+ running_times: 8880,
+ },
+ {
+ title: "Bring It On",
+ year: 2000,
+ rating: 6,
+ votes: 75286,
+ running_times: 5880,
+ },
+ {
+ title: "Bring Me the Head of Alfredo Garcia",
+ year: 1974,
+ rating: 7.5,
+ votes: 15116,
+ running_times: 6720,
+ },
+ {
+ title: "Bringing Down the House",
+ year: 2003,
+ rating: 5.6,
+ votes: 31573,
+ running_times: 6300,
+ },
+ {
+ title: "Bringing Out the Dead",
+ year: 1999,
+ rating: 6.8,
+ votes: 56164,
+ running_times: 7260,
+ },
+ {
+ title: "Bringing Up Baby",
+ year: 1938,
+ rating: 8,
+ votes: 47943,
+ running_times: 6120,
+ },
+ {
+ title: "Broadcast News",
+ year: 1987,
+ rating: 7.2,
+ votes: 23019,
+ running_times: 7980,
+ },
+ {
+ title: "Broadway Danny Rose",
+ year: 1984,
+ rating: 7.5,
+ votes: 20316,
+ running_times: 5040,
+ },
+ {
+ title: "Brokeback Mountain",
+ year: 2005,
+ rating: 7.7,
+ votes: 279350,
+ running_times: 8040,
+ },
+ {
+ title: "Brokedown Palace",
+ year: 1999,
+ rating: 6.4,
+ votes: 19642,
+ running_times: 6000,
+ },
+ {
+ title: "Broken",
+ year: 2012,
+ rating: 7.3,
+ votes: 11713,
+ running_times: 5460,
+ },
+ {
+ title: "Broken Arrow",
+ year: 1996,
+ rating: 6,
+ votes: 81632,
+ running_times: 6480,
+ },
+ {
+ title: "Broken City",
+ year: 2013,
+ rating: 6.2,
+ votes: 68201,
+ running_times: 6540,
+ },
+ {
+ title: "Broken Flowers",
+ year: 2005,
+ rating: 7.2,
+ votes: 87301,
+ running_times: 6360,
+ },
+ {
+ title: "Bronson",
+ year: 2008,
+ rating: 7.1,
+ votes: 99451,
+ running_times: 5520,
+ },
+ {
+ title: "Brooklyn",
+ year: 2015,
+ rating: 7.5,
+ votes: 101435,
+ running_times: 7020,
+ },
+ {
+ title: "Brooklyn's Finest",
+ year: 2009,
+ rating: 6.7,
+ votes: 55474,
+ running_times: 7920,
+ },
+ {
+ title: "Brother",
+ year: 2000,
+ rating: 7.2,
+ votes: 19732,
+ running_times: 6840,
+ },
+ {
+ title: "Brother Bear",
+ year: 2003,
+ rating: 6.8,
+ votes: 78629,
+ running_times: 5100,
+ },
+ {
+ title: "Brothers",
+ year: 2009,
+ rating: 7.1,
+ votes: 95987,
+ running_times: 6300,
+ },
+ {
+ title: "Brubaker",
+ year: 1980,
+ rating: 7.1,
+ votes: 13091,
+ running_times: 7860,
+ },
+ {
+ title: "Bruce Almighty",
+ year: 2003,
+ rating: 6.7,
+ votes: 322967,
+ running_times: 6060,
+ },
+ {
+ title: "Brüno",
+ year: 2009,
+ rating: 5.8,
+ votes: 126745,
+ running_times: 4860,
+ },
+ {
+ title: "Bubba Ho-Tep",
+ year: 2002,
+ rating: 7.2,
+ votes: 40966,
+ running_times: 5520,
+ },
+ {
+ title: "Bubble Boy",
+ year: 2001,
+ rating: 5.6,
+ votes: 27195,
+ running_times: 5040,
+ },
+ {
+ title: "Bucky Larson: Born to Be a Star",
+ year: 2011,
+ rating: 3.3,
+ votes: 10028,
+ running_times: 5820,
+ },
+ {
+ title: "Bud Abbott Lou Costello Meet Frankenstein",
+ year: 1948,
+ rating: 7.6,
+ votes: 12025,
+ running_times: 5400,
+ },
+ {
+ title: "Buena Vista Social Club",
+ year: 1999,
+ rating: 7.6,
+ votes: 14396,
+ running_times: 6300,
+ },
+ {
+ title: "Buffalo '66",
+ year: 1998,
+ rating: 7.5,
+ votes: 39780,
+ running_times: 6600,
+ },
+ {
+ title: "Buffalo Soldiers",
+ year: 2001,
+ rating: 6.9,
+ votes: 21482,
+ running_times: 5880,
+ },
+ {
+ title: "Buffy the Vampire Slayer",
+ year: 1992,
+ rating: 5.6,
+ votes: 34513,
+ running_times: 5160,
+ },
+ { title: "Bug", year: 2006, rating: 6.1, votes: 29613, running_times: 6120 },
+ {
+ title: "Bugsy",
+ year: 1991,
+ rating: 6.8,
+ votes: 22391,
+ running_times: 8940,
+ },
+ {
+ title: "Bugsy Malone",
+ year: 1976,
+ rating: 6.8,
+ votes: 13397,
+ running_times: 5580,
+ },
+ {
+ title: "Bull Durham",
+ year: 1988,
+ rating: 7.1,
+ votes: 39732,
+ running_times: 6480,
+ },
+ {
+ title: "Bullet to the Head",
+ year: 2012,
+ rating: 5.7,
+ votes: 42174,
+ running_times: 5520,
+ },
+ {
+ title: "Bulletproof",
+ year: 1996,
+ rating: 5.8,
+ votes: 31443,
+ running_times: 5040,
+ },
+ {
+ title: "Bulletproof Monk",
+ year: 2003,
+ rating: 5.5,
+ votes: 44196,
+ running_times: 6240,
+ },
+ {
+ title: "Bullets Over Broadway",
+ year: 1994,
+ rating: 7.5,
+ votes: 31528,
+ running_times: 5880,
+ },
+ {
+ title: "Bullitt",
+ year: 1968,
+ rating: 7.5,
+ votes: 50729,
+ running_times: 6840,
+ },
+ { title: "Bully", year: 2001, rating: 7, votes: 30991, running_times: 6780 },
+ {
+ title: "Bulworth",
+ year: 1998,
+ rating: 6.8,
+ votes: 22996,
+ running_times: 6480,
+ },
+ {
+ title: "Bunraku",
+ year: 2010,
+ rating: 6.2,
+ votes: 17571,
+ running_times: 7440,
+ },
+ {
+ title: "Buried",
+ year: 2010,
+ rating: 7,
+ votes: 129590,
+ running_times: 5700,
+ },
+ {
+ title: "Burke and Hare",
+ year: 2010,
+ rating: 6.2,
+ votes: 17376,
+ running_times: 5460,
+ },
+ {
+ title: "Burlesque",
+ year: 2010,
+ rating: 6.4,
+ votes: 66239,
+ running_times: 7140,
+ },
+ {
+ title: "Burn After Reading",
+ year: 2008,
+ rating: 7,
+ votes: 267214,
+ running_times: 5760,
+ },
+ {
+ title: "Burnt",
+ year: 2015,
+ rating: 6.6,
+ votes: 82978,
+ running_times: 6060,
+ },
+ {
+ title: "But I'm a Cheerleader",
+ year: 1999,
+ rating: 6.6,
+ votes: 21535,
+ running_times: 5100,
+ },
+ {
+ title: "Butch Cassidy and the Sundance Kid",
+ year: 1969,
+ rating: 8.1,
+ votes: 168819,
+ running_times: 6600,
+ },
+ {
+ title: "Butter",
+ year: 2011,
+ rating: 6.2,
+ votes: 18455,
+ running_times: 5400,
+ },
+ {
+ title: "Butterfly on a Wheel",
+ year: 2007,
+ rating: 6.7,
+ votes: 27161,
+ running_times: 5880,
+ },
+ {
+ title: "By the Sea",
+ year: 2015,
+ rating: 5.2,
+ votes: 13448,
+ running_times: 7320,
+ },
+ {
+ title: "Byzantium",
+ year: 2012,
+ rating: 6.5,
+ votes: 35211,
+ running_times: 7080,
+ },
+ {
+ title: "Byôsoku 5 senchimêtoru",
+ year: 2007,
+ rating: 7.7,
+ votes: 35965,
+ running_times: 3780,
+ },
+ {
+ title: "Bølgen",
+ year: 2015,
+ rating: 6.7,
+ votes: 21289,
+ running_times: 6300,
+ },
+ {
+ title: "C.R.A.Z.Y.",
+ year: 2005,
+ rating: 8,
+ votes: 28956,
+ running_times: 7620,
+ },
+ { title: "CHIPS", year: 2017, rating: 6, votes: 24799, running_times: 6060 },
+ {
+ title: "Cabaret",
+ year: 1972,
+ rating: 7.8,
+ votes: 39966,
+ running_times: 7440,
+ },
+ {
+ title: "Cabin Fever",
+ year: 2002,
+ rating: 5.6,
+ votes: 66293,
+ running_times: 5880,
+ },
+ {
+ title: "Cabin Fever 2: Spring Fever",
+ year: 2009,
+ rating: 4.3,
+ votes: 11073,
+ running_times: 5160,
+ },
+ {
+ title: "Caddyshack",
+ year: 1980,
+ rating: 7.3,
+ votes: 88789,
+ running_times: 5880,
+ },
+ {
+ title: "Caddyshack II",
+ year: 1988,
+ rating: 3.7,
+ votes: 13034,
+ running_times: 5880,
+ },
+ {
+ title: "Cadillac Man",
+ year: 1990,
+ rating: 5.6,
+ votes: 11472,
+ running_times: 5820,
+ },
+ {
+ title: "Cadillac Records",
+ year: 2008,
+ rating: 7,
+ votes: 16892,
+ running_times: 6540,
+ },
+ {
+ title: "Café Society",
+ year: 2016,
+ rating: 6.6,
+ votes: 52800,
+ running_times: 5760,
+ },
+ { title: "Cake", year: 2014, rating: 6.4, votes: 30781, running_times: 6120 },
+ {
+ title: "Calendar Girls",
+ year: 2003,
+ rating: 6.9,
+ votes: 20684,
+ running_times: 6480,
+ },
+ {
+ title: "Caligola",
+ year: 1979,
+ rating: 5.3,
+ votes: 29361,
+ running_times: 9360,
+ },
+ {
+ title: "Calvary",
+ year: 2014,
+ rating: 7.4,
+ votes: 47886,
+ running_times: 6120,
+ },
+ {
+ title: "Camp X-Ray",
+ year: 2014,
+ rating: 7,
+ votes: 33991,
+ running_times: 7020,
+ },
+ {
+ title: "Can't Buy Me Love",
+ year: 1987,
+ rating: 6.7,
+ votes: 26695,
+ running_times: 5640,
+ },
+ {
+ title: "Can't Hardly Wait",
+ year: 1998,
+ rating: 6.5,
+ votes: 39898,
+ running_times: 6060,
+ },
+ {
+ title: "Canadian Bacon",
+ year: 1995,
+ rating: 5.9,
+ votes: 14379,
+ running_times: 5460,
+ },
+ {
+ title: "Candy",
+ year: 2006,
+ rating: 7.3,
+ votes: 38489,
+ running_times: 6960,
+ },
+ {
+ title: "Candyman",
+ year: 1992,
+ rating: 6.6,
+ votes: 54767,
+ running_times: 5940,
+ },
+ {
+ title: "Cannibal Holocaust",
+ year: 1980,
+ rating: 6,
+ votes: 42774,
+ running_times: 5700,
+ },
+ {
+ title: "Cannonball Run II",
+ year: 1984,
+ rating: 4.9,
+ votes: 12651,
+ running_times: 6480,
+ },
+ {
+ title: "Cape Fear",
+ year: 1962,
+ rating: 7.8,
+ votes: 22104,
+ running_times: 6360,
+ },
+ {
+ title: "Cape Fear",
+ year: 1991,
+ rating: 7.3,
+ votes: 140015,
+ running_times: 7680,
+ },
+ {
+ title: "Capitalism: A Love Story",
+ year: 2009,
+ rating: 7.4,
+ votes: 37838,
+ running_times: 7620,
+ },
+ {
+ title: "Capote",
+ year: 2005,
+ rating: 7.4,
+ votes: 109265,
+ running_times: 6840,
+ },
+ {
+ title: "Capricorn One",
+ year: 1977,
+ rating: 6.8,
+ votes: 17173,
+ running_times: 7800,
+ },
+ {
+ title: "Captain America: Civil War",
+ year: 2016,
+ rating: 7.9,
+ votes: 457587,
+ running_times: 8820,
+ },
+ {
+ title: "Captain America: The First Avenger",
+ year: 2011,
+ rating: 6.9,
+ votes: 572492,
+ running_times: 7440,
+ },
+ {
+ title: "Captain America: The Winter Soldier",
+ year: 2014,
+ rating: 7.8,
+ votes: 570329,
+ running_times: 8160,
+ },
+ {
+ title: "Captain Blood",
+ year: 1935,
+ rating: 7.8,
+ votes: 10708,
+ running_times: 7140,
+ },
+ {
+ title: "Captain Corelli's Mandolin",
+ year: 2001,
+ rating: 5.9,
+ votes: 29674,
+ running_times: 7860,
+ },
+ {
+ title: "Captain Fantastic",
+ year: 2016,
+ rating: 7.9,
+ votes: 127916,
+ running_times: 7080,
+ },
+ {
+ title: "Captain Phillips",
+ year: 2013,
+ rating: 7.8,
+ votes: 358882,
+ running_times: 8040,
+ },
+ {
+ title: "Captain Ron",
+ year: 1992,
+ rating: 5.7,
+ votes: 18068,
+ running_times: 5760,
+ },
+ {
+ title: "Captain Underpants: The First Epic Movie",
+ year: 2017,
+ rating: 6.2,
+ votes: 13648,
+ running_times: 5340,
+ },
+ {
+ title: "Captivity",
+ year: 2007,
+ rating: 4.7,
+ votes: 21294,
+ running_times: 5760,
+ },
+ {
+ title: "Capturing the Friedmans",
+ year: 2003,
+ rating: 7.8,
+ votes: 20887,
+ running_times: 6420,
+ },
+ {
+ title: "Carlito's Way",
+ year: 1993,
+ rating: 7.9,
+ votes: 174852,
+ running_times: 8640,
+ },
+ {
+ title: "Carnage",
+ year: 2011,
+ rating: 7.2,
+ votes: 104582,
+ running_times: 4800,
+ },
+ {
+ title: "Carnival of Souls",
+ year: 1962,
+ rating: 7.2,
+ votes: 15495,
+ running_times: 5460,
+ },
+ {
+ title: "Carol",
+ year: 2015,
+ rating: 7.2,
+ votes: 84444,
+ running_times: 7080,
+ },
+ {
+ title: "Carrie",
+ year: 1976,
+ rating: 7.4,
+ votes: 138986,
+ running_times: 5880,
+ },
+ {
+ title: "Carrie",
+ year: 2013,
+ rating: 5.9,
+ votes: 117179,
+ running_times: 6000,
+ },
+ {
+ title: "Carriers",
+ year: 2009,
+ rating: 6,
+ votes: 37502,
+ running_times: 5040,
+ },
+ {
+ title: "Cars",
+ year: 2006,
+ rating: 7.1,
+ votes: 295881,
+ running_times: 7020,
+ },
+ {
+ title: "Cars 2",
+ year: 2011,
+ rating: 6.2,
+ votes: 119432,
+ running_times: 6360,
+ },
+ {
+ title: "Cars 3",
+ year: 2017,
+ rating: 6.9,
+ votes: 32897,
+ running_times: 6120,
+ },
+ {
+ title: "Cartel Land",
+ year: 2015,
+ rating: 7.4,
+ votes: 14922,
+ running_times: 6000,
+ },
+ {
+ title: "Casa de mi Padre",
+ year: 2012,
+ rating: 5.5,
+ votes: 18263,
+ running_times: 5040,
+ },
+ {
+ title: "Casablanca",
+ year: 1942,
+ rating: 8.5,
+ votes: 430019,
+ running_times: 6120,
+ },
+ {
+ title: "Casanova",
+ year: 2005,
+ rating: 6.5,
+ votes: 47010,
+ running_times: 6720,
+ },
+ {
+ title: "Case 39",
+ year: 2009,
+ rating: 6.2,
+ votes: 66072,
+ running_times: 6540,
+ },
+ {
+ title: "Cashback",
+ year: 2006,
+ rating: 7.2,
+ votes: 76620,
+ running_times: 6120,
+ },
+ {
+ title: "Casino",
+ year: 1995,
+ rating: 8.2,
+ votes: 372920,
+ running_times: 10680,
+ },
+ {
+ title: "Casino Jack",
+ year: 2010,
+ rating: 6.2,
+ votes: 15537,
+ running_times: 6480,
+ },
+ {
+ title: "Casino Royale",
+ year: 1967,
+ rating: 5.2,
+ votes: 23463,
+ running_times: 7860,
+ },
+ {
+ title: "Casino Royale",
+ year: 2006,
+ rating: 8,
+ votes: 508304,
+ running_times: 8640,
+ },
+ {
+ title: "Casper",
+ year: 1995,
+ rating: 6.1,
+ votes: 96437,
+ running_times: 6000,
+ },
+ {
+ title: "Cassandra's Dream",
+ year: 2007,
+ rating: 6.7,
+ votes: 46383,
+ running_times: 6480,
+ },
+ {
+ title: "Casse-tête chinois",
+ year: 2013,
+ rating: 7,
+ votes: 11298,
+ running_times: 7020,
+ },
+ {
+ title: "Cast Away",
+ year: 2000,
+ rating: 7.8,
+ votes: 435433,
+ running_times: 8580,
+ },
+ {
+ title: "Casualties of War",
+ year: 1989,
+ rating: 7.1,
+ votes: 35750,
+ running_times: 7140,
+ },
+ {
+ title: "Cat Ballou",
+ year: 1965,
+ rating: 6.9,
+ votes: 11292,
+ running_times: 5820,
+ },
+ {
+ title: "Cat People",
+ year: 1942,
+ rating: 7.4,
+ votes: 15253,
+ running_times: 4380,
+ },
+ {
+ title: "Cat People",
+ year: 1982,
+ rating: 6.1,
+ votes: 15650,
+ running_times: 7080,
+ },
+ {
+ title: "Cat on a Hot Tin Roof",
+ year: 1958,
+ rating: 8.1,
+ votes: 37011,
+ running_times: 6480,
+ },
+ {
+ title: "Cat's Eye",
+ year: 1985,
+ rating: 6.3,
+ votes: 18823,
+ running_times: 5640,
+ },
+ {
+ title: "Catch .44",
+ year: 2011,
+ rating: 4.6,
+ votes: 15331,
+ running_times: 5640,
+ },
+ {
+ title: "Catch Me If You Can",
+ year: 2002,
+ rating: 8.1,
+ votes: 624495,
+ running_times: 8460,
+ },
+ {
+ title: "Catch and Release",
+ year: 2006,
+ rating: 6,
+ votes: 20037,
+ running_times: 7440,
+ },
+ {
+ title: "Catch-22",
+ year: 1970,
+ rating: 7.2,
+ votes: 18485,
+ running_times: 7320,
+ },
+ {
+ title: "Catfish",
+ year: 2010,
+ rating: 7.1,
+ votes: 37245,
+ running_times: 5220,
+ },
+ {
+ title: "Cats & Dogs",
+ year: 2001,
+ rating: 5.1,
+ votes: 49443,
+ running_times: 5220,
+ },
+ {
+ title: "Cats & Dogs: The Revenge of Kitty Galore",
+ year: 2010,
+ rating: 4.3,
+ votes: 11291,
+ running_times: 4920,
+ },
+ {
+ title: "Catwoman",
+ year: 2004,
+ rating: 3.3,
+ votes: 94234,
+ running_times: 6240,
+ },
+ {
+ title: "Cave of Forgotten Dreams",
+ year: 2010,
+ rating: 7.4,
+ votes: 12911,
+ running_times: 5700,
+ },
+ {
+ title: "Cecil B. DeMented",
+ year: 2000,
+ rating: 6.2,
+ votes: 12003,
+ running_times: 5220,
+ },
+ {
+ title: "Cedar Rapids",
+ year: 2011,
+ rating: 6.3,
+ votes: 33876,
+ running_times: 5220,
+ },
+ {
+ title: "Celda 211",
+ year: 2009,
+ rating: 7.7,
+ votes: 54977,
+ running_times: 6780,
+ },
+ {
+ title: "Celebrity",
+ year: 1998,
+ rating: 6.3,
+ votes: 21809,
+ running_times: 6780,
+ },
+ {
+ title: "Celeste & Jesse Forever",
+ year: 2012,
+ rating: 6.6,
+ votes: 26184,
+ running_times: 5520,
+ },
+ { title: "Cell", year: 2016, rating: 4.3, votes: 18673, running_times: 5880 },
+ {
+ title: "Cellular",
+ year: 2004,
+ rating: 6.5,
+ votes: 83353,
+ running_times: 5640,
+ },
+ {
+ title: "Cemetery Junction",
+ year: 2010,
+ rating: 6.9,
+ votes: 18430,
+ running_times: 5700,
+ },
+ {
+ title: "Center Stage",
+ year: 2000,
+ rating: 6.7,
+ votes: 16679,
+ running_times: 6900,
+ },
+ {
+ title: "Central Intelligence",
+ year: 2016,
+ rating: 6.3,
+ votes: 109993,
+ running_times: 6960,
+ },
+ {
+ title: "Centurion",
+ year: 2010,
+ rating: 6.4,
+ votes: 69872,
+ running_times: 5820,
+ },
+ {
+ title: "Chain Reaction",
+ year: 1996,
+ rating: 5.6,
+ votes: 42923,
+ running_times: 6420,
+ },
+ {
+ title: "Chained",
+ year: 2012,
+ rating: 6.4,
+ votes: 13885,
+ running_times: 5640,
+ },
+ {
+ title: "Chakushin ari",
+ year: 2003,
+ rating: 6.2,
+ votes: 15089,
+ running_times: 6720,
+ },
+ {
+ title: "Chalet Girl",
+ year: 2011,
+ rating: 6.3,
+ votes: 20636,
+ running_times: 5820,
+ },
+ {
+ title: "Changeling",
+ year: 2008,
+ rating: 7.8,
+ votes: 211563,
+ running_times: 8460,
+ },
+ {
+ title: "Changing Lanes",
+ year: 2002,
+ rating: 6.5,
+ votes: 60854,
+ running_times: 5880,
+ },
+ {
+ title: "Chaos",
+ year: 2005,
+ rating: 6.5,
+ votes: 46470,
+ running_times: 6360,
+ },
+ {
+ title: "Chaos Theory",
+ year: 2008,
+ rating: 6.7,
+ votes: 29293,
+ running_times: 5220,
+ },
+ {
+ title: "Chaplin",
+ year: 1992,
+ rating: 7.6,
+ votes: 46419,
+ running_times: 8580,
+ },
+ {
+ title: "Chappie",
+ year: 2015,
+ rating: 6.8,
+ votes: 197879,
+ running_times: 7200,
+ },
+ {
+ title: "Charade",
+ year: 1963,
+ rating: 8,
+ votes: 54637,
+ running_times: 6780,
+ },
+ {
+ title: "Chariots of Fire",
+ year: 1981,
+ rating: 7.2,
+ votes: 44814,
+ running_times: 7500,
+ },
+ {
+ title: "Charlie Bartlett",
+ year: 2007,
+ rating: 7,
+ votes: 58841,
+ running_times: 5820,
+ },
+ {
+ title: "Charlie St. Cloud",
+ year: 2010,
+ rating: 6.5,
+ votes: 51299,
+ running_times: 5940,
+ },
+ {
+ title: "Charlie Wilson's War",
+ year: 2007,
+ rating: 7.1,
+ votes: 94821,
+ running_times: 6120,
+ },
+ {
+ title: "Charlie and the Chocolate Factory",
+ year: 2005,
+ rating: 6.7,
+ votes: 355757,
+ running_times: 6900,
+ },
+ {
+ title: "Charlie's Angels",
+ year: 2000,
+ rating: 5.5,
+ votes: 154142,
+ running_times: 5880,
+ },
+ {
+ title: "Charlie's Angels: Full Throttle",
+ year: 2003,
+ rating: 4.8,
+ votes: 106759,
+ running_times: 6420,
+ },
+ {
+ title: "Charlotte's Web",
+ year: 1973,
+ rating: 6.9,
+ votes: 14527,
+ running_times: 5640,
+ },
+ {
+ title: "Charlotte's Web",
+ year: 2006,
+ rating: 6.3,
+ votes: 30791,
+ running_times: 5820,
+ },
+ {
+ title: "Chasing Amy",
+ year: 1997,
+ rating: 7.3,
+ votes: 120382,
+ running_times: 6780,
+ },
+ {
+ title: "Chasing Liberty",
+ year: 2004,
+ rating: 6.1,
+ votes: 32180,
+ running_times: 6660,
+ },
+ {
+ title: "Chasing Mavericks",
+ year: 2012,
+ rating: 7.2,
+ votes: 27345,
+ running_times: 6960,
+ },
+ {
+ title: "Che: Part One",
+ year: 2008,
+ rating: 7.2,
+ votes: 40419,
+ running_times: 8040,
+ },
+ {
+ title: "Che: Part Two",
+ year: 2008,
+ rating: 6.9,
+ votes: 29183,
+ running_times: 8100,
+ },
+ {
+ title: "Cheap Thrills",
+ year: 2013,
+ rating: 6.8,
+ votes: 14997,
+ running_times: 5280,
+ },
+ {
+ title: "Cheaper by the Dozen",
+ year: 2003,
+ rating: 5.8,
+ votes: 81367,
+ running_times: 5880,
+ },
+ {
+ title: "Cheaper by the Dozen 2",
+ year: 2005,
+ rating: 5.5,
+ votes: 46696,
+ running_times: 5640,
+ },
+ {
+ title: "Chef",
+ year: 2014,
+ rating: 7.3,
+ votes: 158787,
+ running_times: 6840,
+ },
+ {
+ title: "Chennai Express",
+ year: 2013,
+ rating: 6,
+ votes: 40979,
+ running_times: 8460,
+ },
+ {
+ title: "Chernobyl Diaries",
+ year: 2012,
+ rating: 5,
+ votes: 56089,
+ running_times: 5160,
+ },
+ {
+ title: "Cherry Falls",
+ year: 2000,
+ rating: 5.1,
+ votes: 10550,
+ running_times: 5520,
+ },
+ {
+ title: "Chicago",
+ year: 2002,
+ rating: 7.2,
+ votes: 186928,
+ running_times: 6780,
+ },
+ {
+ title: "Chicken Little",
+ year: 2005,
+ rating: 5.8,
+ votes: 71208,
+ running_times: 4860,
+ },
+ {
+ title: "Chicken Run",
+ year: 2000,
+ rating: 7,
+ votes: 152354,
+ running_times: 5040,
+ },
+ {
+ title: "Child 44",
+ year: 2015,
+ rating: 6.5,
+ votes: 51699,
+ running_times: 8220,
+ },
+ {
+ title: "Child's Play",
+ year: 1988,
+ rating: 6.6,
+ votes: 69387,
+ running_times: 5220,
+ },
+ {
+ title: "Child's Play 2",
+ year: 1990,
+ rating: 5.8,
+ votes: 35756,
+ running_times: 5400,
+ },
+ {
+ title: "Child's Play 3",
+ year: 1991,
+ rating: 5,
+ votes: 28492,
+ running_times: 5400,
+ },
+ {
+ title: "Children of Men",
+ year: 2006,
+ rating: 7.9,
+ votes: 396186,
+ running_times: 6540,
+ },
+ {
+ title: "Children of a Lesser God",
+ year: 1986,
+ rating: 7.2,
+ votes: 12664,
+ running_times: 7140,
+ },
+ {
+ title: "Children of the Corn",
+ year: 1984,
+ rating: 5.6,
+ votes: 39139,
+ running_times: 5520,
+ },
+ {
+ title: "Chinatown",
+ year: 1974,
+ rating: 8.2,
+ votes: 240563,
+ running_times: 7800,
+ },
+ {
+ title: "Chinjeolhan geumjassi",
+ year: 2005,
+ rating: 7.6,
+ votes: 59464,
+ running_times: 6900,
+ },
+ {
+ title: "Chitty Chitty Bang Bang",
+ year: 1968,
+ rating: 6.9,
+ votes: 33986,
+ running_times: 8640,
+ },
+ {
+ title: "Chloe",
+ year: 2009,
+ rating: 6.3,
+ votes: 61084,
+ running_times: 5760,
+ },
+ {
+ title: "Chocolat",
+ year: 2000,
+ rating: 7.3,
+ votes: 160087,
+ running_times: 7260,
+ },
+ {
+ title: "Chocolate",
+ year: 2008,
+ rating: 7,
+ votes: 15889,
+ running_times: 6600,
+ },
+ {
+ title: "Choke",
+ year: 2008,
+ rating: 6.5,
+ votes: 29570,
+ running_times: 5520,
+ },
+ {
+ title: "Chopper",
+ year: 2000,
+ rating: 7.2,
+ votes: 33112,
+ running_times: 5640,
+ },
+ {
+ title: "Christine",
+ year: 1983,
+ rating: 6.7,
+ votes: 56332,
+ running_times: 6600,
+ },
+ {
+ title: "Christmas with the Kranks",
+ year: 2004,
+ rating: 5.2,
+ votes: 32280,
+ running_times: 5940,
+ },
+ {
+ title: "Chronicle",
+ year: 2012,
+ rating: 7.1,
+ votes: 218220,
+ running_times: 5340,
+ },
+ {
+ title: "Chung Hing sam lam",
+ year: 1994,
+ rating: 8.1,
+ votes: 46274,
+ running_times: 6120,
+ },
+ {
+ title: "Cinderella",
+ year: 1950,
+ rating: 7.3,
+ votes: 118829,
+ running_times: 4440,
+ },
+ {
+ title: "Cinderella",
+ year: 2015,
+ rating: 7,
+ votes: 123774,
+ running_times: 6840,
+ },
+ {
+ title: "Cinderella Man",
+ year: 2005,
+ rating: 8,
+ votes: 158231,
+ running_times: 8640,
+ },
+ { title: "Circle", year: 2015, rating: 6, votes: 22091, running_times: 5220 },
+ {
+ title: "Cirque du Freak: The Vampire's Assistant",
+ year: 2009,
+ rating: 5.9,
+ votes: 38122,
+ running_times: 6540,
+ },
+ {
+ title: "Citizen Kane",
+ year: 1941,
+ rating: 8.4,
+ votes: 329256,
+ running_times: 7140,
+ },
+ {
+ title: "Citizenfour",
+ year: 2014,
+ rating: 8.1,
+ votes: 44407,
+ running_times: 6840,
+ },
+ {
+ title: "City Hall",
+ year: 1996,
+ rating: 6.2,
+ votes: 17638,
+ running_times: 6660,
+ },
+ {
+ title: "City Island",
+ year: 2009,
+ rating: 7.4,
+ votes: 28457,
+ running_times: 6240,
+ },
+ {
+ title: "City Lights",
+ year: 1931,
+ rating: 8.6,
+ votes: 125731,
+ running_times: 5220,
+ },
+ {
+ title: "City Slickers",
+ year: 1991,
+ rating: 6.7,
+ votes: 41722,
+ running_times: 6780,
+ },
+ {
+ title: "City Slickers II: The Legend of Curly's Gold",
+ year: 1994,
+ rating: 5.5,
+ votes: 16077,
+ running_times: 6960,
+ },
+ {
+ title: "City by the Sea",
+ year: 2002,
+ rating: 6.1,
+ votes: 22301,
+ running_times: 6480,
+ },
+ {
+ title: "City of Angels",
+ year: 1998,
+ rating: 6.7,
+ votes: 100989,
+ running_times: 6840,
+ },
+ {
+ title: "City of Ember",
+ year: 2008,
+ rating: 6.5,
+ votes: 56656,
+ running_times: 5400,
+ },
+ {
+ title: "Clash of the Titans",
+ year: 1981,
+ rating: 6.9,
+ votes: 35380,
+ running_times: 7080,
+ },
+ {
+ title: "Clash of the Titans",
+ year: 2010,
+ rating: 5.8,
+ votes: 243626,
+ running_times: 6360,
+ },
+ {
+ title: "Cleaner",
+ year: 2007,
+ rating: 6.1,
+ votes: 34279,
+ running_times: 5580,
+ },
+ {
+ title: "Cleanskin",
+ year: 2012,
+ rating: 6.3,
+ votes: 18425,
+ running_times: 6480,
+ },
+ {
+ title: "Clear and Present Danger",
+ year: 1994,
+ rating: 6.9,
+ votes: 75175,
+ running_times: 8460,
+ },
+ {
+ title: "Cleopatra",
+ year: 1963,
+ rating: 7,
+ votes: 24093,
+ running_times: 19200,
+ },
+ {
+ title: "Clerks",
+ year: 1994,
+ rating: 7.8,
+ votes: 191979,
+ running_times: 6120,
+ },
+ {
+ title: "Clerks II",
+ year: 2006,
+ rating: 7.4,
+ votes: 120022,
+ running_times: 5820,
+ },
+ {
+ title: "Click",
+ year: 2006,
+ rating: 6.4,
+ votes: 266298,
+ running_times: 6420,
+ },
+ {
+ title: "Cliffhanger",
+ year: 1993,
+ rating: 6.4,
+ votes: 103922,
+ running_times: 7440,
+ },
+ {
+ title: "Clockers",
+ year: 1995,
+ rating: 6.9,
+ votes: 17806,
+ running_times: 7740,
+ },
+ {
+ title: "Clockstoppers",
+ year: 2002,
+ rating: 5.2,
+ votes: 12024,
+ running_times: 5640,
+ },
+ {
+ title: "Close Encounters of the Third Kind",
+ year: 1977,
+ rating: 7.7,
+ votes: 154463,
+ running_times: 8280,
+ },
+ {
+ title: "Closed Circuit",
+ year: 2013,
+ rating: 6.2,
+ votes: 19118,
+ running_times: 5760,
+ },
+ {
+ title: "Closer",
+ year: 2004,
+ rating: 7.3,
+ votes: 179295,
+ running_times: 6240,
+ },
+ {
+ title: "Cloud Atlas",
+ year: 2012,
+ rating: 7.5,
+ votes: 307896,
+ running_times: 10320,
+ },
+ {
+ title: "Clouds of Sils Maria",
+ year: 2014,
+ rating: 6.7,
+ votes: 22177,
+ running_times: 7440,
+ },
+ {
+ title: "Cloudy with a Chance of Meatballs",
+ year: 2009,
+ rating: 7,
+ votes: 169393,
+ running_times: 5400,
+ },
+ {
+ title: "Cloudy with a Chance of Meatballs 2",
+ year: 2013,
+ rating: 6.4,
+ votes: 72622,
+ running_times: 5700,
+ },
+ {
+ title: "Cloverfield",
+ year: 2008,
+ rating: 7,
+ votes: 322764,
+ running_times: 5100,
+ },
+ {
+ title: "Clown",
+ year: 2014,
+ rating: 5.7,
+ votes: 16910,
+ running_times: 6000,
+ },
+ {
+ title: "Club Dread",
+ year: 2004,
+ rating: 5.7,
+ votes: 25170,
+ running_times: 7140,
+ },
+ { title: "Clue", year: 1985, rating: 7.3, votes: 63435, running_times: 5820 },
+ {
+ title: "Clueless",
+ year: 1995,
+ rating: 6.8,
+ votes: 139268,
+ running_times: 5820,
+ },
+ {
+ title: "Coach Carter",
+ year: 2005,
+ rating: 7.3,
+ votes: 101888,
+ running_times: 8160,
+ },
+ {
+ title: "Coal Miner's Daughter",
+ year: 1980,
+ rating: 7.5,
+ votes: 14038,
+ running_times: 7440,
+ },
+ {
+ title: "Cobain: Montage of Heck",
+ year: 2015,
+ rating: 7.6,
+ votes: 23885,
+ running_times: 8700,
+ },
+ {
+ title: "Cobra",
+ year: 1986,
+ rating: 5.7,
+ votes: 55581,
+ running_times: 5220,
+ },
+ {
+ title: "Cocaine Cowboys",
+ year: 2006,
+ rating: 7.9,
+ votes: 11305,
+ running_times: 9120,
+ },
+ {
+ title: "Cockneys vs Zombies",
+ year: 2012,
+ rating: 5.9,
+ votes: 16293,
+ running_times: 5280,
+ },
+ {
+ title: "Cocktail",
+ year: 1988,
+ rating: 5.8,
+ votes: 66672,
+ running_times: 6240,
+ },
+ { title: "Coco", year: 2017, rating: 8.8, votes: 38493, running_times: 6300 },
+ {
+ title: "Coco avant Chanel",
+ year: 2009,
+ rating: 6.7,
+ votes: 34380,
+ running_times: 6660,
+ },
+ {
+ title: "Cocoon",
+ year: 1985,
+ rating: 6.7,
+ votes: 48540,
+ running_times: 7020,
+ },
+ {
+ title: "Cocoon: The Return",
+ year: 1988,
+ rating: 5.3,
+ votes: 13077,
+ running_times: 6960,
+ },
+ {
+ title: "Code 46",
+ year: 2003,
+ rating: 6.2,
+ votes: 18825,
+ running_times: 5580,
+ },
+ {
+ title: "Code Name: The Cleaner",
+ year: 2007,
+ rating: 4.5,
+ votes: 10369,
+ running_times: 5460,
+ },
+ {
+ title: "Coffee and Cigarettes",
+ year: 2003,
+ rating: 7.1,
+ votes: 51479,
+ running_times: 5700,
+ },
+ {
+ title: "Coherence",
+ year: 2013,
+ rating: 7.2,
+ votes: 74162,
+ running_times: 5340,
+ },
+ {
+ title: "Cold Creek Manor",
+ year: 2003,
+ rating: 4.9,
+ votes: 19224,
+ running_times: 7080,
+ },
+ {
+ title: "Cold Mountain",
+ year: 2003,
+ rating: 7.2,
+ votes: 125299,
+ running_times: 9240,
+ },
+ {
+ title: "Cold in July",
+ year: 2014,
+ rating: 6.8,
+ votes: 29209,
+ running_times: 6540,
+ },
+ {
+ title: "Collateral",
+ year: 2004,
+ rating: 7.6,
+ votes: 314995,
+ running_times: 6900,
+ },
+ {
+ title: "Collateral Beauty",
+ year: 2016,
+ rating: 6.8,
+ votes: 61621,
+ running_times: 5820,
+ },
+ {
+ title: "Collateral Damage",
+ year: 2002,
+ rating: 5.5,
+ votes: 65175,
+ running_times: 6480,
+ },
+ {
+ title: "College",
+ year: 2008,
+ rating: 4.6,
+ votes: 11386,
+ running_times: 5640,
+ },
+ {
+ title: "College Road Trip",
+ year: 2008,
+ rating: 4.3,
+ votes: 13947,
+ running_times: 4980,
+ },
+ {
+ title: "Collide",
+ year: 2016,
+ rating: 5.7,
+ votes: 10342,
+ running_times: 5940,
+ },
+ {
+ title: "Colombiana",
+ year: 2011,
+ rating: 6.4,
+ votes: 81904,
+ running_times: 6720,
+ },
+ {
+ title: "Colonia",
+ year: 2015,
+ rating: 7.1,
+ votes: 34529,
+ running_times: 6360,
+ },
+ {
+ title: "Color of Night",
+ year: 1994,
+ rating: 5.1,
+ votes: 19983,
+ running_times: 8400,
+ },
+ {
+ title: "Colors",
+ year: 1988,
+ rating: 6.7,
+ votes: 20690,
+ running_times: 7620,
+ },
+ {
+ title: "Colossal",
+ year: 2016,
+ rating: 6.2,
+ votes: 34754,
+ running_times: 6540,
+ },
+ { title: "Coma", year: 1978, rating: 6.9, votes: 14481, running_times: 6780 },
+ {
+ title: "Comet",
+ year: 2014,
+ rating: 6.8,
+ votes: 14582,
+ running_times: 5460,
+ },
+ {
+ title: "Coming Home",
+ year: 1978,
+ rating: 7.3,
+ votes: 10277,
+ running_times: 7620,
+ },
+ {
+ title: "Coming to America",
+ year: 1988,
+ rating: 7,
+ votes: 132385,
+ running_times: 6960,
+ },
+ {
+ title: "Commando",
+ year: 1985,
+ rating: 6.7,
+ votes: 123223,
+ running_times: 5520,
+ },
+ {
+ title: "Comme un chef",
+ year: 2012,
+ rating: 6.7,
+ votes: 13946,
+ running_times: 5040,
+ },
+ {
+ title: "Como agua para chocolate",
+ year: 1992,
+ rating: 7.2,
+ votes: 14661,
+ running_times: 6780,
+ },
+ {
+ title: "Compliance",
+ year: 2012,
+ rating: 6.4,
+ votes: 26887,
+ running_times: 5400,
+ },
+ {
+ title: "Con Air",
+ year: 1997,
+ rating: 6.8,
+ votes: 241529,
+ running_times: 7380,
+ },
+ {
+ title: "Conan the Barbarian",
+ year: 1982,
+ rating: 6.9,
+ votes: 120899,
+ running_times: 7740,
+ },
+ {
+ title: "Conan the Barbarian",
+ year: 2011,
+ rating: 5.2,
+ votes: 86384,
+ running_times: 6780,
+ },
+ {
+ title: "Conan the Destroyer",
+ year: 1984,
+ rating: 5.9,
+ votes: 66764,
+ running_times: 6180,
+ },
+ {
+ title: "Concussion",
+ year: 2015,
+ rating: 7.1,
+ votes: 66336,
+ running_times: 7380,
+ },
+ {
+ title: "Coneheads",
+ year: 1993,
+ rating: 5.3,
+ votes: 44457,
+ running_times: 5280,
+ },
+ {
+ title: "Confessions of a Dangerous Mind",
+ year: 2002,
+ rating: 7.1,
+ votes: 75279,
+ running_times: 6780,
+ },
+ {
+ title: "Confessions of a Shopaholic",
+ year: 2009,
+ rating: 5.9,
+ votes: 67162,
+ running_times: 6240,
+ },
+ {
+ title: "Confessions of a Teenage Drama Queen",
+ year: 2004,
+ rating: 4.6,
+ votes: 24723,
+ running_times: 5340,
+ },
+ {
+ title: "Confidence",
+ year: 2003,
+ rating: 6.7,
+ votes: 31438,
+ running_times: 5820,
+ },
+ {
+ title: "Congo",
+ year: 1995,
+ rating: 5.1,
+ votes: 37007,
+ running_times: 6540,
+ },
+ {
+ title: "Conquest of the Planet of the Apes",
+ year: 1972,
+ rating: 6.1,
+ votes: 25995,
+ running_times: 5280,
+ },
+ {
+ title: "Conspiracy Theory",
+ year: 1997,
+ rating: 6.7,
+ votes: 82265,
+ running_times: 8100,
+ },
+ {
+ title: "Constantine",
+ year: 2005,
+ rating: 6.9,
+ votes: 256735,
+ running_times: 7260,
+ },
+ {
+ title: "Contact",
+ year: 1997,
+ rating: 7.4,
+ votes: 220252,
+ running_times: 9000,
+ },
+ {
+ title: "Contagion",
+ year: 2011,
+ rating: 6.6,
+ votes: 191199,
+ running_times: 6360,
+ },
+ {
+ title: "Contraband",
+ year: 2012,
+ rating: 6.5,
+ votes: 106830,
+ running_times: 6540,
+ },
+ {
+ title: "Contracted",
+ year: 2013,
+ rating: 5.3,
+ votes: 12077,
+ running_times: 5040,
+ },
+ {
+ title: "Control",
+ year: 2007,
+ rating: 7.7,
+ votes: 54840,
+ running_times: 7320,
+ },
+ {
+ title: "Conversations with Other Women",
+ year: 2005,
+ rating: 7.1,
+ votes: 10768,
+ running_times: 5040,
+ },
+ {
+ title: "Conviction",
+ year: 2010,
+ rating: 7.2,
+ votes: 37479,
+ running_times: 6420,
+ },
+ {
+ title: "Convoy",
+ year: 1978,
+ rating: 6.3,
+ votes: 12446,
+ running_times: 6600,
+ },
+ {
+ title: "Coogan's Bluff",
+ year: 1968,
+ rating: 6.5,
+ votes: 12776,
+ running_times: 5580,
+ },
+ {
+ title: "Cookie's Fortune",
+ year: 1999,
+ rating: 6.9,
+ votes: 11591,
+ running_times: 7080,
+ },
+ {
+ title: "Cool Hand Luke",
+ year: 1967,
+ rating: 8.2,
+ votes: 132362,
+ running_times: 7560,
+ },
+ {
+ title: "Cool Runnings",
+ year: 1993,
+ rating: 6.9,
+ votes: 76261,
+ running_times: 5880,
+ },
+ {
+ title: "Cool World",
+ year: 1992,
+ rating: 4.8,
+ votes: 17941,
+ running_times: 8820,
+ },
+ {
+ title: "Cooties",
+ year: 2014,
+ rating: 5.6,
+ votes: 18063,
+ running_times: 5280,
+ },
+ {
+ title: "Cop Car",
+ year: 2015,
+ rating: 6.3,
+ votes: 24603,
+ running_times: 5280,
+ },
+ {
+ title: "Cop Land",
+ year: 1997,
+ rating: 6.9,
+ votes: 74641,
+ running_times: 7200,
+ },
+ {
+ title: "Cop Out",
+ year: 2010,
+ rating: 5.6,
+ votes: 78523,
+ running_times: 6420,
+ },
+ {
+ title: "Copenhagen",
+ year: 2014,
+ rating: 7.2,
+ votes: 10195,
+ running_times: 5880,
+ },
+ {
+ title: "Copie conforme",
+ year: 2010,
+ rating: 7.3,
+ votes: 16521,
+ running_times: 6360,
+ },
+ {
+ title: "Copycat",
+ year: 1995,
+ rating: 6.6,
+ votes: 45500,
+ running_times: 7380,
+ },
+ {
+ title: "Copying Beethoven",
+ year: 2006,
+ rating: 6.8,
+ votes: 11733,
+ running_times: 6240,
+ },
+ {
+ title: "Coraline",
+ year: 2009,
+ rating: 7.7,
+ votes: 164057,
+ running_times: 6000,
+ },
+ {
+ title: "Coriolanus",
+ year: 2011,
+ rating: 6.2,
+ votes: 28410,
+ running_times: 7380,
+ },
+ {
+ title: "Corky Romano",
+ year: 2001,
+ rating: 4.6,
+ votes: 11368,
+ running_times: 5160,
+ },
+ {
+ title: "Corpse Bride",
+ year: 2005,
+ rating: 7.4,
+ votes: 208321,
+ running_times: 4620,
+ },
+ {
+ title: "Corrina, Corrina",
+ year: 1994,
+ rating: 6.5,
+ votes: 10767,
+ running_times: 6900,
+ },
+ {
+ title: "Cosmopolis",
+ year: 2012,
+ rating: 5,
+ votes: 39968,
+ running_times: 6540,
+ },
+ {
+ title: "Country Strong",
+ year: 2010,
+ rating: 6.3,
+ votes: 15545,
+ running_times: 7020,
+ },
+ {
+ title: "Couples Retreat",
+ year: 2009,
+ rating: 5.5,
+ votes: 88557,
+ running_times: 6780,
+ },
+ {
+ title: "Courage Under Fire",
+ year: 1996,
+ rating: 6.6,
+ votes: 43563,
+ running_times: 6960,
+ },
+ {
+ title: "Courageous",
+ year: 2011,
+ rating: 7,
+ votes: 16551,
+ running_times: 7740,
+ },
+ {
+ title: "Cowboy Bebop: Tengoku no tobira",
+ year: 2001,
+ rating: 7.9,
+ votes: 35543,
+ running_times: 6900,
+ },
+ {
+ title: "Cowboys & Aliens",
+ year: 2011,
+ rating: 6,
+ votes: 184726,
+ running_times: 8100,
+ },
+ {
+ title: "Cowspiracy: The Sustainability Secret",
+ year: 2014,
+ rating: 8.4,
+ votes: 14590,
+ running_times: 5100,
+ },
+ {
+ title: "Coyote Ugly",
+ year: 2000,
+ rating: 5.6,
+ votes: 95982,
+ running_times: 6420,
+ },
+ {
+ title: "Cracks",
+ year: 2009,
+ rating: 6.7,
+ votes: 16901,
+ running_times: 6240,
+ },
+ {
+ title: "Cradle 2 the Grave",
+ year: 2003,
+ rating: 5.8,
+ votes: 37167,
+ running_times: 6060,
+ },
+ { title: "Crank", year: 2006, rating: 7, votes: 210220, running_times: 5580 },
+ {
+ title: "Crank: High Voltage",
+ year: 2009,
+ rating: 6.2,
+ votes: 122969,
+ running_times: 5760,
+ },
+ {
+ title: "Crash",
+ year: 1996,
+ rating: 6.4,
+ votes: 45105,
+ running_times: 6000,
+ },
+ {
+ title: "Crash",
+ year: 2004,
+ rating: 7.8,
+ votes: 382043,
+ running_times: 6900,
+ },
+ {
+ title: "Crazy Heart",
+ year: 2009,
+ rating: 7.3,
+ votes: 73969,
+ running_times: 6720,
+ },
+ {
+ title: "Crazy, Stupid, Love.",
+ year: 2011,
+ rating: 7.4,
+ votes: 409038,
+ running_times: 7080,
+ },
+ {
+ title: "Crazy/Beautiful",
+ year: 2001,
+ rating: 6.5,
+ votes: 22330,
+ running_times: 8100,
+ },
+ {
+ title: "Creation",
+ year: 2009,
+ rating: 6.7,
+ votes: 12373,
+ running_times: 6480,
+ },
+ {
+ title: "Creature from the Black Lagoon",
+ year: 1954,
+ rating: 7,
+ votes: 20009,
+ running_times: 4740,
+ },
+ {
+ title: "Creed",
+ year: 2015,
+ rating: 7.6,
+ votes: 186555,
+ running_times: 7980,
+ },
+ {
+ title: "Creep",
+ year: 2004,
+ rating: 5.6,
+ votes: 24964,
+ running_times: 5100,
+ },
+ {
+ title: "Creep",
+ year: 2014,
+ rating: 6.2,
+ votes: 20497,
+ running_times: 4620,
+ },
+ {
+ title: "Creepshow",
+ year: 1982,
+ rating: 6.9,
+ votes: 33804,
+ running_times: 7800,
+ },
+ {
+ title: "Creepshow 2",
+ year: 1987,
+ rating: 6,
+ votes: 17797,
+ running_times: 5520,
+ },
+ {
+ title: "Crimes and Misdemeanors",
+ year: 1989,
+ rating: 8,
+ votes: 46799,
+ running_times: 6240,
+ },
+ {
+ title: "Criminal",
+ year: 2016,
+ rating: 6.3,
+ votes: 43955,
+ running_times: 6780,
+ },
+ {
+ title: "Crimson Peak",
+ year: 2015,
+ rating: 6.5,
+ votes: 105157,
+ running_times: 7140,
+ },
+ {
+ title: "Crimson Tide",
+ year: 1995,
+ rating: 7.3,
+ votes: 87400,
+ running_times: 7380,
+ },
+ {
+ title: "Critters",
+ year: 1986,
+ rating: 6,
+ votes: 25883,
+ running_times: 4920,
+ },
+ {
+ title: "Critters 2",
+ year: 1988,
+ rating: 5.4,
+ votes: 11269,
+ running_times: 5160,
+ },
+ {
+ title: "Crocodile Dundee",
+ year: 1986,
+ rating: 6.5,
+ votes: 80228,
+ running_times: 5820,
+ },
+ {
+ title: "Crocodile Dundee in Los Angeles",
+ year: 2001,
+ rating: 4.8,
+ votes: 20997,
+ running_times: 5520,
+ },
+ {
+ title: "Cronos",
+ year: 1993,
+ rating: 6.7,
+ votes: 22058,
+ running_times: 5640,
+ },
+ {
+ title: "Cross of Iron",
+ year: 1977,
+ rating: 7.5,
+ votes: 22038,
+ running_times: 7920,
+ },
+ {
+ title: "Crossing Over",
+ year: 2009,
+ rating: 6.8,
+ votes: 20695,
+ running_times: 8400,
+ },
+ {
+ title: "Crossroads",
+ year: 1986,
+ rating: 7.1,
+ votes: 11548,
+ running_times: 5940,
+ },
+ {
+ title: "Crossroads",
+ year: 2002,
+ rating: 3.4,
+ votes: 35455,
+ running_times: 5580,
+ },
+ {
+ title: "Crouching Tiger, Hidden Dragon: Sword of Destiny",
+ year: 2016,
+ rating: 6.1,
+ votes: 13783,
+ running_times: 6180,
+ },
+ {
+ title: "Croupier",
+ year: 1998,
+ rating: 7.2,
+ votes: 16685,
+ running_times: 5640,
+ },
+ {
+ title: "Cruel Intentions",
+ year: 1999,
+ rating: 6.8,
+ votes: 158764,
+ running_times: 5820,
+ },
+ {
+ title: "Cruising",
+ year: 1980,
+ rating: 6.4,
+ votes: 14634,
+ running_times: 6120,
+ },
+ { title: "Crumb", year: 1994, rating: 8, votes: 15416, running_times: 7140 },
+ {
+ title: "Cry Freedom",
+ year: 1987,
+ rating: 7.5,
+ votes: 10789,
+ running_times: 9420,
+ },
+ {
+ title: "Cry Wolf",
+ year: 2005,
+ rating: 5.9,
+ votes: 23969,
+ running_times: 5400,
+ },
+ {
+ title: "Cry-Baby",
+ year: 1990,
+ rating: 6.5,
+ votes: 47450,
+ running_times: 5460,
+ },
+ {
+ title: "Crying Freeman",
+ year: 1995,
+ rating: 6.5,
+ votes: 10059,
+ running_times: 6120,
+ },
+ {
+ title: "Cuban Fury",
+ year: 2014,
+ rating: 6.2,
+ votes: 16055,
+ running_times: 5880,
+ },
+ {
+ title: "Cube",
+ year: 1997,
+ rating: 7.3,
+ votes: 177332,
+ running_times: 5400,
+ },
+ {
+ title: "Cube 2: Hypercube",
+ year: 2002,
+ rating: 5.6,
+ votes: 54831,
+ running_times: 5640,
+ },
+ {
+ title: "Cube Zero",
+ year: 2004,
+ rating: 5.7,
+ votes: 31210,
+ running_times: 5820,
+ },
+ { title: "Cujo", year: 1983, rating: 6, votes: 30871, running_times: 5580 },
+ {
+ title: "Cult of Chucky",
+ year: 2017,
+ rating: 5.2,
+ votes: 11206,
+ running_times: 7140,
+ },
+ {
+ title: "Curious George",
+ year: 2006,
+ rating: 6.5,
+ votes: 13591,
+ running_times: 5220,
+ },
+ {
+ title: "Curly Sue",
+ year: 1991,
+ rating: 5.8,
+ votes: 17904,
+ running_times: 6060,
+ },
+ {
+ title: "Curse of Chucky",
+ year: 2013,
+ rating: 5.6,
+ votes: 27291,
+ running_times: 5820,
+ },
+ { title: "Cursed", year: 2005, rating: 5, votes: 27579, running_times: 5940 },
+ {
+ title: "Cutthroat Island",
+ year: 1995,
+ rating: 5.6,
+ votes: 22715,
+ running_times: 7440,
+ },
+ { title: "Cyborg", year: 1989, rating: 5, votes: 25164, running_times: 5160 },
+ {
+ title: "Cypher",
+ year: 2002,
+ rating: 6.8,
+ votes: 28151,
+ running_times: 5700,
+ },
+ {
+ title: "Cyrus",
+ year: 2010,
+ rating: 6.3,
+ votes: 31474,
+ running_times: 5460,
+ },
+ {
+ title: "D-Tox",
+ year: 2002,
+ rating: 5.3,
+ votes: 20961,
+ running_times: 5760,
+ },
+ {
+ title: "D-War",
+ year: 2007,
+ rating: 3.6,
+ votes: 22115,
+ running_times: 6420,
+ },
+ {
+ title: "D.A.R.Y.L.",
+ year: 1985,
+ rating: 6.2,
+ votes: 10271,
+ running_times: 5940,
+ },
+ {
+ title: "D.E.B.S.",
+ year: 2004,
+ rating: 5.3,
+ votes: 12982,
+ running_times: 5460,
+ },
+ {
+ title: "D2: The Mighty Ducks",
+ year: 1994,
+ rating: 6,
+ votes: 30535,
+ running_times: 6360,
+ },
+ {
+ title: "D3: The Mighty Ducks",
+ year: 1996,
+ rating: 5.3,
+ votes: 20741,
+ running_times: 6240,
+ },
+ {
+ title: "DOA: Dead or Alive",
+ year: 2006,
+ rating: 4.8,
+ votes: 40160,
+ running_times: 5220,
+ },
+ {
+ title: "Dabba",
+ year: 2013,
+ rating: 7.8,
+ votes: 37643,
+ running_times: 6240,
+ },
+ {
+ title: "Daddy Day Camp",
+ year: 2007,
+ rating: 3,
+ votes: 13152,
+ running_times: 5580,
+ },
+ {
+ title: "Daddy Day Care",
+ year: 2003,
+ rating: 5.5,
+ votes: 53857,
+ running_times: 5520,
+ },
+ {
+ title: "Daddy's Home",
+ year: 2015,
+ rating: 6.1,
+ votes: 77927,
+ running_times: 5760,
+ },
+ {
+ title: "Dagon",
+ year: 2001,
+ rating: 6.3,
+ votes: 13890,
+ running_times: 5880,
+ },
+ {
+ title: "Dallas Buyers Club",
+ year: 2013,
+ rating: 8,
+ votes: 367890,
+ running_times: 7020,
+ },
+ {
+ title: "Damage",
+ year: 1992,
+ rating: 6.9,
+ votes: 13462,
+ running_times: 6660,
+ },
+ {
+ title: "Damien: Omen II",
+ year: 1978,
+ rating: 6.3,
+ votes: 24472,
+ running_times: 6420,
+ },
+ {
+ title: "Dan in Real Life",
+ year: 2007,
+ rating: 6.8,
+ votes: 90389,
+ running_times: 5880,
+ },
+ {
+ title: "Dance Flick",
+ year: 2009,
+ rating: 3.5,
+ votes: 10591,
+ running_times: 5280,
+ },
+ {
+ title: "Dance of the Dead",
+ year: 2008,
+ rating: 5.8,
+ votes: 10563,
+ running_times: 5220,
+ },
+ {
+ title: "Dance of the Vampires",
+ year: 1967,
+ rating: 7.3,
+ votes: 24957,
+ running_times: 6480,
+ },
+ {
+ title: "Dancer in the Dark",
+ year: 2000,
+ rating: 8,
+ votes: 86306,
+ running_times: 8400,
+ },
+ {
+ title: "Dances with Wolves",
+ year: 1990,
+ rating: 8,
+ votes: 203335,
+ running_times: 14160,
+ },
+ {
+ title: "Dangerous Beauty",
+ year: 1998,
+ rating: 7.3,
+ votes: 13633,
+ running_times: 6660,
+ },
+ {
+ title: "Dangerous Liaisons",
+ year: 1988,
+ rating: 7.7,
+ votes: 56386,
+ running_times: 7140,
+ },
+ {
+ title: "Dangerous Minds",
+ year: 1995,
+ rating: 6.4,
+ votes: 41341,
+ running_times: 5940,
+ },
+ {
+ title: "Danny Collins",
+ year: 2015,
+ rating: 7,
+ votes: 25060,
+ running_times: 6360,
+ },
+ {
+ title: "Dante's Peak",
+ year: 1997,
+ rating: 5.9,
+ votes: 68066,
+ running_times: 6480,
+ },
+ {
+ title: "Daredevil",
+ year: 2003,
+ rating: 5.3,
+ votes: 187093,
+ running_times: 7980,
+ },
+ {
+ title: "Dark Blue",
+ year: 2002,
+ rating: 6.6,
+ votes: 18322,
+ running_times: 7080,
+ },
+ {
+ title: "Dark City",
+ year: 1998,
+ rating: 7.7,
+ votes: 168451,
+ running_times: 6660,
+ },
+ {
+ title: "Dark Passage",
+ year: 1947,
+ rating: 7.6,
+ votes: 14253,
+ running_times: 6360,
+ },
+ {
+ title: "Dark Places",
+ year: 2015,
+ rating: 6.2,
+ votes: 33917,
+ running_times: 6780,
+ },
+ {
+ title: "Dark Shadows",
+ year: 2012,
+ rating: 6.2,
+ votes: 215809,
+ running_times: 6780,
+ },
+ {
+ title: "Dark Skies",
+ year: 2013,
+ rating: 6.3,
+ votes: 62454,
+ running_times: 5820,
+ },
+ {
+ title: "Dark Star",
+ year: 1974,
+ rating: 6.5,
+ votes: 18630,
+ running_times: 4980,
+ },
+ {
+ title: "Dark Water",
+ year: 2005,
+ rating: 5.6,
+ votes: 53540,
+ running_times: 6300,
+ },
+ {
+ title: "Darkman",
+ year: 1990,
+ rating: 6.4,
+ votes: 51054,
+ running_times: 5760,
+ },
+ {
+ title: "Darkness",
+ year: 2002,
+ rating: 5.4,
+ votes: 17484,
+ running_times: 6180,
+ },
+ {
+ title: "Darkness Falls",
+ year: 2003,
+ rating: 5,
+ votes: 27450,
+ running_times: 5760,
+ },
+ {
+ title: "Darr",
+ year: 1993,
+ rating: 7.9,
+ votes: 18344,
+ running_times: 10680,
+ },
+ {
+ title: "Das Boot",
+ year: 1981,
+ rating: 8.4,
+ votes: 187200,
+ running_times: 17580,
+ },
+ {
+ title: "Das Experiment",
+ year: 2001,
+ rating: 7.8,
+ votes: 83528,
+ running_times: 7200,
+ },
+ {
+ title: "Date Movie",
+ year: 2006,
+ rating: 2.7,
+ votes: 52564,
+ running_times: 5100,
+ },
+ {
+ title: "Date Night",
+ year: 2010,
+ rating: 6.3,
+ votes: 136609,
+ running_times: 6060,
+ },
+ { title: "Dave", year: 1993, rating: 6.8, votes: 43104, running_times: 6600 },
+ {
+ title: "Dawn of the Dead",
+ year: 1978,
+ rating: 8,
+ votes: 97223,
+ running_times: 9360,
+ },
+ {
+ title: "Dawn of the Dead",
+ year: 2004,
+ rating: 7.3,
+ votes: 208261,
+ running_times: 6600,
+ },
+ {
+ title: "Dawn of the Planet of the Apes",
+ year: 2014,
+ rating: 7.6,
+ votes: 362251,
+ running_times: 7800,
+ },
+ {
+ title: "Day & Night",
+ year: 2010,
+ rating: 8.1,
+ votes: 13289,
+ running_times: 360,
+ },
+ {
+ title: "Day of the Dead",
+ year: 1985,
+ rating: 7.2,
+ votes: 54076,
+ running_times: 6060,
+ },
+ {
+ title: "Day of the Woman",
+ year: 1978,
+ rating: 5.7,
+ votes: 21922,
+ running_times: 6060,
+ },
+ {
+ title: "Daybreakers",
+ year: 2009,
+ rating: 6.5,
+ votes: 111322,
+ running_times: 5880,
+ },
+ {
+ title: "Daydream Nation",
+ year: 2010,
+ rating: 6.4,
+ votes: 11338,
+ running_times: 5880,
+ },
+ {
+ title: "Daylight",
+ year: 1996,
+ rating: 5.8,
+ votes: 57247,
+ running_times: 6840,
+ },
+ {
+ title: "Days of Heaven",
+ year: 1978,
+ rating: 7.9,
+ votes: 42093,
+ running_times: 5640,
+ },
+ {
+ title: "Days of Thunder",
+ year: 1990,
+ rating: 5.9,
+ votes: 65974,
+ running_times: 6420,
+ },
+ {
+ title: "Dazed and Confused",
+ year: 1993,
+ rating: 7.7,
+ votes: 135321,
+ running_times: 6120,
+ },
+ {
+ title: "De battre mon coeur s'est arrêté",
+ year: 2005,
+ rating: 7.3,
+ votes: 16729,
+ running_times: 6480,
+ },
+ {
+ title: "De rouille et d'os",
+ year: 2012,
+ rating: 7.5,
+ votes: 54550,
+ running_times: 7200,
+ },
+ {
+ title: "De-Lovely",
+ year: 2004,
+ rating: 6.6,
+ votes: 10074,
+ running_times: 7500,
+ },
+ {
+ title: "Dead Again",
+ year: 1991,
+ rating: 7,
+ votes: 22986,
+ running_times: 6420,
+ },
+ {
+ title: "Dead Calm",
+ year: 1989,
+ rating: 6.8,
+ votes: 31732,
+ running_times: 5760,
+ },
+ {
+ title: "Dead End",
+ year: 2003,
+ rating: 6.7,
+ votes: 21560,
+ running_times: 5100,
+ },
+ {
+ title: "Dead Man",
+ year: 1995,
+ rating: 7.7,
+ votes: 78292,
+ running_times: 7260,
+ },
+ {
+ title: "Dead Man Down",
+ year: 2013,
+ rating: 6.5,
+ votes: 58376,
+ running_times: 7080,
+ },
+ {
+ title: "Dead Man Walking",
+ year: 1995,
+ rating: 7.6,
+ votes: 77979,
+ running_times: 7320,
+ },
+ {
+ title: "Dead Man on Campus",
+ year: 1998,
+ rating: 6.1,
+ votes: 12326,
+ running_times: 5760,
+ },
+ {
+ title: "Dead Man's Shoes",
+ year: 2004,
+ rating: 7.7,
+ votes: 43049,
+ running_times: 5400,
+ },
+ {
+ title: "Dead Men Don't Wear Plaid",
+ year: 1982,
+ rating: 6.8,
+ votes: 17854,
+ running_times: 5280,
+ },
+ {
+ title: "Dead Poets Society",
+ year: 1989,
+ rating: 8,
+ votes: 310883,
+ running_times: 7680,
+ },
+ {
+ title: "Dead Presidents",
+ year: 1995,
+ rating: 6.9,
+ votes: 16576,
+ running_times: 7140,
+ },
+ {
+ title: "Dead Ringers",
+ year: 1988,
+ rating: 7.3,
+ votes: 32622,
+ running_times: 6960,
+ },
+ {
+ title: "Dead Silence",
+ year: 2007,
+ rating: 6.2,
+ votes: 74013,
+ running_times: 5520,
+ },
+ {
+ title: "Deadfall",
+ year: 2012,
+ rating: 6.3,
+ votes: 34661,
+ running_times: 5700,
+ },
+ {
+ title: "Deadgirl",
+ year: 2008,
+ rating: 5.7,
+ votes: 16648,
+ running_times: 6060,
+ },
+ {
+ title: "Deadpool",
+ year: 2016,
+ rating: 8,
+ votes: 686133,
+ running_times: 6480,
+ },
+ {
+ title: "Dear Frankie",
+ year: 2004,
+ rating: 7.8,
+ votes: 19677,
+ running_times: 6300,
+ },
+ {
+ title: "Dear John",
+ year: 2010,
+ rating: 6.3,
+ votes: 117324,
+ running_times: 6480,
+ },
+ {
+ title: "Dear White People",
+ year: 2014,
+ rating: 6.2,
+ votes: 22550,
+ running_times: 6480,
+ },
+ {
+ title: "Dear Zachary: A Letter to a Son About His Father",
+ year: 2008,
+ rating: 8.6,
+ votes: 25811,
+ running_times: 5700,
+ },
+ {
+ title: "Death Becomes Her",
+ year: 1992,
+ rating: 6.5,
+ votes: 86672,
+ running_times: 6240,
+ },
+ {
+ title: "Death Note",
+ year: 2017,
+ rating: 4.6,
+ votes: 51215,
+ running_times: 6060,
+ },
+ {
+ title: "Death Proof",
+ year: 2007,
+ rating: 7.1,
+ votes: 227440,
+ running_times: 7260,
+ },
+ {
+ title: "Death Race",
+ year: 2008,
+ rating: 6.4,
+ votes: 177881,
+ running_times: 6660,
+ },
+ {
+ title: "Death Race 2000",
+ year: 1975,
+ rating: 6.2,
+ votes: 21390,
+ running_times: 5040,
+ },
+ {
+ title: "Death Sentence",
+ year: 2007,
+ rating: 6.8,
+ votes: 63505,
+ running_times: 6660,
+ },
+ {
+ title: "Death Warrant",
+ year: 1990,
+ rating: 5.6,
+ votes: 13976,
+ running_times: 5340,
+ },
+ {
+ title: "Death Wish",
+ year: 1974,
+ rating: 7,
+ votes: 27842,
+ running_times: 5580,
+ },
+ {
+ title: "Death Wish 3",
+ year: 1985,
+ rating: 5.9,
+ votes: 11198,
+ running_times: 5520,
+ },
+ {
+ title: "Death Wish II",
+ year: 1982,
+ rating: 6,
+ votes: 11457,
+ running_times: 5700,
+ },
+ {
+ title: "Death and the Maiden",
+ year: 1994,
+ rating: 7.3,
+ votes: 19027,
+ running_times: 6180,
+ },
+ {
+ title: "Death at a Funeral",
+ year: 2007,
+ rating: 7.4,
+ votes: 96036,
+ running_times: 5220,
+ },
+ {
+ title: "Death at a Funeral",
+ year: 2010,
+ rating: 5.7,
+ votes: 38975,
+ running_times: 5520,
+ },
+ {
+ title: "Death on the Nile",
+ year: 1978,
+ rating: 7.3,
+ votes: 22145,
+ running_times: 8400,
+ },
+ {
+ title: "Death to Smoochy",
+ year: 2002,
+ rating: 6.4,
+ votes: 35983,
+ running_times: 6540,
+ },
+ {
+ title: "Deathgasm",
+ year: 2015,
+ rating: 6.3,
+ votes: 12177,
+ running_times: 5160,
+ },
+ {
+ title: "December Boys",
+ year: 2007,
+ rating: 6.6,
+ votes: 10972,
+ running_times: 6300,
+ },
+ {
+ title: "Deception",
+ year: 2008,
+ rating: 6.1,
+ votes: 34624,
+ running_times: 6420,
+ },
+ {
+ title: "Deck the Halls",
+ year: 2006,
+ rating: 4.9,
+ votes: 18286,
+ running_times: 5580,
+ },
+ {
+ title: "Deconstructing Harry",
+ year: 1997,
+ rating: 7.4,
+ votes: 38001,
+ running_times: 5760,
+ },
+ {
+ title: "Deep Blue Sea",
+ year: 1999,
+ rating: 5.8,
+ votes: 106958,
+ running_times: 6300,
+ },
+ {
+ title: "Deep Impact",
+ year: 1998,
+ rating: 6.1,
+ votes: 143093,
+ running_times: 7200,
+ },
+ {
+ title: "Deep Rising",
+ year: 1998,
+ rating: 6,
+ votes: 28323,
+ running_times: 6360,
+ },
+ {
+ title: "Deepwater Horizon",
+ year: 2016,
+ rating: 7.2,
+ votes: 110464,
+ running_times: 6420,
+ },
+ {
+ title: "Defending Your Life",
+ year: 1991,
+ rating: 7.3,
+ votes: 14660,
+ running_times: 6720,
+ },
+ {
+ title: "Defendor",
+ year: 2009,
+ rating: 6.8,
+ votes: 33008,
+ running_times: 6060,
+ },
+ {
+ title: "Defiance",
+ year: 2008,
+ rating: 7.2,
+ votes: 124297,
+ running_times: 9600,
+ },
+ {
+ title: "Definitely, Maybe",
+ year: 2008,
+ rating: 7.2,
+ votes: 136326,
+ running_times: 6720,
+ },
+ {
+ title: "Deja Vu",
+ year: 2006,
+ rating: 7,
+ votes: 260387,
+ running_times: 7560,
+ },
+ {
+ title: "Delhi Belly",
+ year: 2011,
+ rating: 7.6,
+ votes: 21588,
+ running_times: 6180,
+ },
+ {
+ title: "Deliver Us from Evil",
+ year: 2014,
+ rating: 6.2,
+ votes: 59445,
+ running_times: 7080,
+ },
+ {
+ title: "Deliverance",
+ year: 1972,
+ rating: 7.7,
+ votes: 84402,
+ running_times: 6540,
+ },
+ {
+ title: "Delivery Man",
+ year: 2013,
+ rating: 6.4,
+ votes: 65838,
+ running_times: 6300,
+ },
+ {
+ title: "Dellamorte Dellamore",
+ year: 1994,
+ rating: 7.3,
+ votes: 17402,
+ running_times: 6300,
+ },
+ {
+ title: "Demain tout commence",
+ year: 2016,
+ rating: 7.4,
+ votes: 10878,
+ running_times: 7080,
+ },
+ {
+ title: "Demolition",
+ year: 2015,
+ rating: 7,
+ votes: 66447,
+ running_times: 6060,
+ },
+ {
+ title: "Demolition Man",
+ year: 1993,
+ rating: 6.6,
+ votes: 135026,
+ running_times: 6900,
+ },
+ {
+ title: "Demonic",
+ year: 2015,
+ rating: 5.3,
+ votes: 10386,
+ running_times: 4980,
+ },
+ {
+ title: "Den skaldede frisør",
+ year: 2012,
+ rating: 6.6,
+ votes: 11148,
+ running_times: 6960,
+ },
+ {
+ title: "Denial",
+ year: 2016,
+ rating: 6.6,
+ votes: 11827,
+ running_times: 6540,
+ },
+ {
+ title: "Dennis the Menace",
+ year: 1993,
+ rating: 5.5,
+ votes: 47952,
+ running_times: 5640,
+ },
+ {
+ title: "Der Baader Meinhof Komplex",
+ year: 2008,
+ rating: 7.4,
+ votes: 31874,
+ running_times: 11040,
+ },
+ {
+ title: "Der Himmel über Berlin",
+ year: 1987,
+ rating: 8.1,
+ votes: 52212,
+ running_times: 7680,
+ },
+ {
+ title: "Der Name der Rose",
+ year: 1986,
+ rating: 7.8,
+ votes: 88129,
+ running_times: 7800,
+ },
+ {
+ title: "Der amerikanische Freund",
+ year: 1977,
+ rating: 7.4,
+ votes: 10256,
+ running_times: 7500,
+ },
+ {
+ title: "Der blaue Engel",
+ year: 1930,
+ rating: 7.8,
+ votes: 11350,
+ running_times: 6480,
+ },
+ {
+ title: "Der rote Baron",
+ year: 2008,
+ rating: 6.4,
+ votes: 10408,
+ running_times: 7740,
+ },
+ {
+ title: "Derailed",
+ year: 2005,
+ rating: 6.6,
+ votes: 65502,
+ running_times: 6720,
+ },
+ {
+ title: "Desert Flower",
+ year: 2009,
+ rating: 7.4,
+ votes: 10105,
+ running_times: 7200,
+ },
+ {
+ title: "Desperado",
+ year: 1995,
+ rating: 7.2,
+ votes: 149465,
+ running_times: 6240,
+ },
+ {
+ title: "Desperate Measures",
+ year: 1998,
+ rating: 6.1,
+ votes: 14560,
+ running_times: 6000,
+ },
+ {
+ title: "Desperately Seeking Susan",
+ year: 1985,
+ rating: 5.9,
+ votes: 17678,
+ running_times: 6240,
+ },
+ {
+ title: "Despicable Me",
+ year: 2010,
+ rating: 7.7,
+ votes: 427150,
+ running_times: 5700,
+ },
+ {
+ title: "Despicable Me 2",
+ year: 2013,
+ rating: 7.4,
+ votes: 317679,
+ running_times: 5880,
+ },
+ {
+ title: "Despicable Me 3",
+ year: 2017,
+ rating: 6.3,
+ votes: 58386,
+ running_times: 5400,
+ },
+ {
+ title: "Detachment",
+ year: 2011,
+ rating: 7.7,
+ votes: 63889,
+ running_times: 5880,
+ },
+ {
+ title: "Detention",
+ year: 2011,
+ rating: 5.8,
+ votes: 13464,
+ running_times: 5580,
+ },
+ {
+ title: "Detour",
+ year: 1945,
+ rating: 7.4,
+ votes: 11049,
+ running_times: 4080,
+ },
+ {
+ title: "Detroit",
+ year: 2017,
+ rating: 7.5,
+ votes: 16424,
+ running_times: 8580,
+ },
+ {
+ title: "Detroit Rock City",
+ year: 1999,
+ rating: 6.8,
+ votes: 31978,
+ running_times: 5700,
+ },
+ {
+ title: "Deuce Bigalow: European Gigolo",
+ year: 2005,
+ rating: 4.6,
+ votes: 43661,
+ running_times: 4980,
+ },
+ {
+ title: "Deuce Bigalow: Male Gigolo",
+ year: 1999,
+ rating: 5.7,
+ votes: 63262,
+ running_times: 5280,
+ },
+ {
+ title: "Deux frères",
+ year: 2004,
+ rating: 7.1,
+ votes: 12776,
+ running_times: 6540,
+ },
+ {
+ title: "Deux jours, une nuit",
+ year: 2014,
+ rating: 7.4,
+ votes: 37791,
+ running_times: 5700,
+ },
+ {
+ title: "Dev.D",
+ year: 2009,
+ rating: 8.1,
+ votes: 23620,
+ running_times: 8640,
+ },
+ {
+ title: "Devil",
+ year: 2010,
+ rating: 6.2,
+ votes: 113748,
+ running_times: 4800,
+ },
+ {
+ title: "Devil in a Blue Dress",
+ year: 1995,
+ rating: 6.7,
+ votes: 14584,
+ running_times: 6120,
+ },
+ {
+ title: "Devil's Due",
+ year: 2014,
+ rating: 4.1,
+ votes: 14846,
+ running_times: 5340,
+ },
+ {
+ title: "Devil's Knot",
+ year: 2013,
+ rating: 6.1,
+ votes: 16589,
+ running_times: 6840,
+ },
+ {
+ title: "Dheepan",
+ year: 2015,
+ rating: 7.2,
+ votes: 10267,
+ running_times: 6900,
+ },
+ {
+ title: "Dhobi Ghat",
+ year: 2010,
+ rating: 7.1,
+ votes: 10542,
+ running_times: 6000,
+ },
+ {
+ title: "Dhoom:2",
+ year: 2006,
+ rating: 6.4,
+ votes: 19515,
+ running_times: 9120,
+ },
+ {
+ title: "Dhoom:3",
+ year: 2013,
+ rating: 5.4,
+ votes: 37312,
+ running_times: 10320,
+ },
+ {
+ title: "Diabolique",
+ year: 1996,
+ rating: 5.3,
+ votes: 11767,
+ running_times: 6420,
+ },
+ {
+ title: "Dial M for Murder",
+ year: 1954,
+ rating: 8.2,
+ votes: 122214,
+ running_times: 6300,
+ },
+ {
+ title: "Diamonds Are Forever",
+ year: 1971,
+ rating: 6.7,
+ votes: 80479,
+ running_times: 7200,
+ },
+ {
+ title: "Diana",
+ year: 2013,
+ rating: 5.5,
+ votes: 16578,
+ running_times: 6780,
+ },
+ {
+ title: "Diary of a Mad Black Woman",
+ year: 2005,
+ rating: 5.7,
+ votes: 11236,
+ running_times: 6960,
+ },
+ {
+ title: "Diary of a Wimpy Kid",
+ year: 2010,
+ rating: 6.2,
+ votes: 35635,
+ running_times: 5640,
+ },
+ {
+ title: "Diary of a Wimpy Kid: Dog Days",
+ year: 2012,
+ rating: 6.3,
+ votes: 17804,
+ running_times: 5640,
+ },
+ {
+ title: "Diary of a Wimpy Kid: Rodrick Rules",
+ year: 2011,
+ rating: 6.6,
+ votes: 21150,
+ running_times: 5940,
+ },
+ {
+ title: "Diary of the Dead",
+ year: 2007,
+ rating: 5.7,
+ votes: 42623,
+ running_times: 5700,
+ },
+ { title: "Dick", year: 1999, rating: 6.1, votes: 16753, running_times: 5640 },
+ {
+ title: "Dick Tracy",
+ year: 1990,
+ rating: 6.1,
+ votes: 50794,
+ running_times: 6300,
+ },
+ {
+ title: "Dickie Roberts: Former Child Star",
+ year: 2003,
+ rating: 5.6,
+ votes: 12350,
+ running_times: 5880,
+ },
+ {
+ title: "Did You Hear About the Morgans?",
+ year: 2009,
+ rating: 4.8,
+ votes: 31932,
+ running_times: 6180,
+ },
+ {
+ title: "Die Another Day",
+ year: 2002,
+ rating: 6.1,
+ votes: 180923,
+ running_times: 7980,
+ },
+ {
+ title: "Die Fälscher",
+ year: 2007,
+ rating: 7.6,
+ votes: 38896,
+ running_times: 5880,
+ },
+ {
+ title: "Die Hard",
+ year: 1988,
+ rating: 8.2,
+ votes: 655576,
+ running_times: 7920,
+ },
+ {
+ title: "Die Hard 2",
+ year: 1990,
+ rating: 7.1,
+ votes: 291702,
+ running_times: 7440,
+ },
+ {
+ title: "Die Hard with a Vengeance",
+ year: 1995,
+ rating: 7.6,
+ votes: 320519,
+ running_times: 7680,
+ },
+ {
+ title: "Die fetten Jahre sind vorbei",
+ year: 2004,
+ rating: 7.5,
+ votes: 28388,
+ running_times: 7620,
+ },
+ {
+ title: "Die unendliche Geschichte",
+ year: 1984,
+ rating: 7.4,
+ votes: 109827,
+ running_times: 6120,
+ },
+ {
+ title: "Dil Chahta Hai",
+ year: 2001,
+ rating: 8.2,
+ votes: 55585,
+ running_times: 10980,
+ },
+ {
+ title: "Dilwale Dulhania Le Jayenge",
+ year: 1995,
+ rating: 8.2,
+ votes: 52081,
+ running_times: 11340,
+ },
+ {
+ title: "Diner",
+ year: 1982,
+ rating: 7.2,
+ votes: 16075,
+ running_times: 6600,
+ },
+ {
+ title: "Dinner for Schmucks",
+ year: 2010,
+ rating: 5.9,
+ votes: 85267,
+ running_times: 6840,
+ },
+ {
+ title: "Dinosaur",
+ year: 2000,
+ rating: 6.5,
+ votes: 42813,
+ running_times: 4920,
+ },
+ {
+ title: "Dirty Dancing",
+ year: 1987,
+ rating: 6.9,
+ votes: 158022,
+ running_times: 6000,
+ },
+ {
+ title: "Dirty Dancing: Havana Nights",
+ year: 2004,
+ rating: 6,
+ votes: 23751,
+ running_times: 5160,
+ },
+ {
+ title: "Dirty Grandpa",
+ year: 2016,
+ rating: 6,
+ votes: 85369,
+ running_times: 6540,
+ },
+ {
+ title: "Dirty Harry",
+ year: 1971,
+ rating: 7.8,
+ votes: 123351,
+ running_times: 6120,
+ },
+ {
+ title: "Dirty Pretty Things",
+ year: 2002,
+ rating: 7.4,
+ votes: 36840,
+ running_times: 5820,
+ },
+ {
+ title: "Dirty Rotten Scoundrels",
+ year: 1988,
+ rating: 7.3,
+ votes: 54644,
+ running_times: 6600,
+ },
+ {
+ title: "Dirty Work",
+ year: 1998,
+ rating: 6.4,
+ votes: 21069,
+ running_times: 4920,
+ },
+ {
+ title: "Disaster Movie",
+ year: 2008,
+ rating: 1.9,
+ votes: 78624,
+ running_times: 5280,
+ },
+ {
+ title: "Disclosure",
+ year: 1994,
+ rating: 6,
+ votes: 39560,
+ running_times: 7680,
+ },
+ {
+ title: "Disconnect",
+ year: 2012,
+ rating: 7.6,
+ votes: 66555,
+ running_times: 6900,
+ },
+ {
+ title: "District 9",
+ year: 2009,
+ rating: 8,
+ votes: 571695,
+ running_times: 6720,
+ },
+ {
+ title: "Disturbia",
+ year: 2007,
+ rating: 6.9,
+ votes: 197793,
+ running_times: 6300,
+ },
+ {
+ title: "Disturbing Behavior",
+ year: 1998,
+ rating: 5.5,
+ votes: 18430,
+ running_times: 5040,
+ },
+ { title: "Diva", year: 1981, rating: 7.3, votes: 10052, running_times: 7020 },
+ {
+ title: "Divergent",
+ year: 2014,
+ rating: 6.7,
+ votes: 374171,
+ running_times: 8340,
+ },
+ {
+ title: "Divine Secrets of the Ya-Ya Sisterhood",
+ year: 2002,
+ rating: 6,
+ votes: 16225,
+ running_times: 6960,
+ },
+ {
+ title: "Django Unchained",
+ year: 2012,
+ rating: 8.4,
+ votes: 1087375,
+ running_times: 9900,
+ },
+ {
+ title: "Do the Right Thing",
+ year: 1989,
+ rating: 7.9,
+ votes: 66608,
+ running_times: 7200,
+ },
+ {
+ title: "Dobermann",
+ year: 1997,
+ rating: 6.6,
+ votes: 15076,
+ running_times: 6180,
+ },
+ {
+ title: "Doc Hollywood",
+ year: 1991,
+ rating: 6.1,
+ votes: 27982,
+ running_times: 6240,
+ },
+ {
+ title: "Doctor Dolittle",
+ year: 1998,
+ rating: 5.3,
+ votes: 80924,
+ running_times: 5100,
+ },
+ {
+ title: "Doctor Strange",
+ year: 2016,
+ rating: 7.5,
+ votes: 369625,
+ running_times: 6900,
+ },
+ {
+ title: "Doctor Zhivago",
+ year: 1965,
+ rating: 8,
+ votes: 59974,
+ running_times: 12000,
+ },
+ {
+ title: "Dodgeball: A True Underdog Story",
+ year: 2004,
+ rating: 6.7,
+ votes: 200273,
+ running_times: 5520,
+ },
+ {
+ title: "Dog Day Afternoon",
+ year: 1975,
+ rating: 8,
+ votes: 201845,
+ running_times: 7860,
+ },
+ {
+ title: "Dog Soldiers",
+ year: 2002,
+ rating: 6.8,
+ votes: 48200,
+ running_times: 6300,
+ },
+ {
+ title: "Doghouse",
+ year: 2009,
+ rating: 6.1,
+ votes: 19400,
+ running_times: 5340,
+ },
+ {
+ title: "Dogma",
+ year: 1999,
+ rating: 7.3,
+ votes: 190705,
+ running_times: 7800,
+ },
+ {
+ title: "Dogtown and Z-Boys",
+ year: 2001,
+ rating: 7.7,
+ votes: 10986,
+ running_times: 5460,
+ },
+ {
+ title: "Dogville",
+ year: 2003,
+ rating: 8,
+ votes: 116919,
+ running_times: 10680,
+ },
+ {
+ title: "Dolores Claiborne",
+ year: 1995,
+ rating: 7.4,
+ votes: 31617,
+ running_times: 7920,
+ },
+ {
+ title: "Dolphin Tale",
+ year: 2011,
+ rating: 6.9,
+ votes: 19277,
+ running_times: 6780,
+ },
+ {
+ title: "Dom Hemingway",
+ year: 2013,
+ rating: 6.2,
+ votes: 23217,
+ running_times: 5580,
+ },
+ {
+ title: "Dom za vesanje",
+ year: 1988,
+ rating: 8.3,
+ votes: 20308,
+ running_times: 16200,
+ },
+ {
+ title: "Domestic Disturbance",
+ year: 2001,
+ rating: 5.5,
+ votes: 22329,
+ running_times: 5520,
+ },
+ { title: "Domino", year: 2005, rating: 6, votes: 60282, running_times: 7620 },
+ {
+ title: "Don 2",
+ year: 2011,
+ rating: 7.1,
+ votes: 43541,
+ running_times: 8880,
+ },
+ {
+ title: "Don Jon",
+ year: 2013,
+ rating: 6.6,
+ votes: 205177,
+ running_times: 5400,
+ },
+ {
+ title: "Don Juan DeMarco",
+ year: 1994,
+ rating: 6.7,
+ votes: 43768,
+ running_times: 5820,
+ },
+ {
+ title: "Don't Be Afraid of the Dark",
+ year: 2010,
+ rating: 5.6,
+ votes: 42818,
+ running_times: 5940,
+ },
+ {
+ title:
+ "Don't Be a Menace to South Central While Drinking Your Juice in the Hood",
+ year: 1996,
+ rating: 6.6,
+ votes: 41316,
+ running_times: 5640,
+ },
+ {
+ title: "Don't Breathe",
+ year: 2016,
+ rating: 7.1,
+ votes: 147018,
+ running_times: 5280,
+ },
+ {
+ title: "Don't Look Now",
+ year: 1973,
+ rating: 7.3,
+ votes: 38356,
+ running_times: 6600,
+ },
+ {
+ title: "Don't Say a Word",
+ year: 2001,
+ rating: 6.3,
+ votes: 42979,
+ running_times: 6780,
+ },
+ {
+ title: "Don't Tell Mom the Babysitter's Dead",
+ year: 1991,
+ rating: 6.1,
+ votes: 23305,
+ running_times: 6120,
+ },
+ {
+ title: "Don't Think Twice",
+ year: 2016,
+ rating: 6.8,
+ votes: 12772,
+ running_times: 5520,
+ },
+ {
+ title: "Donnie Brasco",
+ year: 1997,
+ rating: 7.8,
+ votes: 241674,
+ running_times: 8820,
+ },
+ {
+ title: "Donnie Darko",
+ year: 2001,
+ rating: 8.1,
+ votes: 644118,
+ running_times: 7980,
+ },
+ {
+ title: "Doodlebug",
+ year: 1997,
+ rating: 7.1,
+ votes: 13264,
+ running_times: 180,
+ },
+ { title: "Doom", year: 2005, rating: 5.2, votes: 93106, running_times: 6780 },
+ {
+ title: "Doomsday",
+ year: 2008,
+ rating: 6,
+ votes: 65892,
+ running_times: 6780,
+ },
+ { title: "Dope", year: 2015, rating: 7.2, votes: 70696, running_times: 6180 },
+ {
+ title: "Dorian Gray",
+ year: 2009,
+ rating: 6.3,
+ votes: 55011,
+ running_times: 6720,
+ },
+ {
+ title: "Dostana",
+ year: 2008,
+ rating: 6.5,
+ votes: 11858,
+ running_times: 8700,
+ },
+ {
+ title: "Dou fo sin",
+ year: 2007,
+ rating: 6.8,
+ votes: 11247,
+ running_times: 5280,
+ },
+ {
+ title: "Double Impact",
+ year: 1991,
+ rating: 5.5,
+ votes: 31989,
+ running_times: 6600,
+ },
+ {
+ title: "Double Indemnity",
+ year: 1944,
+ rating: 8.3,
+ votes: 110821,
+ running_times: 6600,
+ },
+ {
+ title: "Double Jeopardy",
+ year: 1999,
+ rating: 6.4,
+ votes: 60879,
+ running_times: 6300,
+ },
+ {
+ title: "Double Team",
+ year: 1997,
+ rating: 4.7,
+ votes: 27220,
+ running_times: 5580,
+ },
+ {
+ title: "Doubt",
+ year: 2008,
+ rating: 7.5,
+ votes: 106866,
+ running_times: 6240,
+ },
+ {
+ title: "Down Periscope",
+ year: 1996,
+ rating: 6,
+ votes: 18230,
+ running_times: 5520,
+ },
+ {
+ title: "Down and Out in Beverly Hills",
+ year: 1986,
+ rating: 6.1,
+ votes: 13684,
+ running_times: 6180,
+ },
+ {
+ title: "Down by Law",
+ year: 1986,
+ rating: 7.8,
+ votes: 39932,
+ running_times: 6420,
+ },
+ {
+ title: "Down in the Valley",
+ year: 2005,
+ rating: 6.4,
+ votes: 17043,
+ running_times: 6840,
+ },
+ {
+ title: "Down to Earth",
+ year: 2001,
+ rating: 5.4,
+ votes: 19850,
+ running_times: 5220,
+ },
+ {
+ title: "Down to You",
+ year: 2000,
+ rating: 4.9,
+ votes: 12954,
+ running_times: 5460,
+ },
+ {
+ title: "Down with Love",
+ year: 2003,
+ rating: 6.3,
+ votes: 35365,
+ running_times: 6060,
+ },
+ {
+ title: "Dr. Dolittle 2",
+ year: 2001,
+ rating: 4.7,
+ votes: 36568,
+ running_times: 5220,
+ },
+ {
+ title: "Dr. Jekyll and Mr. Hyde",
+ year: 1931,
+ rating: 7.7,
+ votes: 10414,
+ running_times: 5880,
+ },
+ {
+ title: "Dr. No",
+ year: 1962,
+ rating: 7.3,
+ votes: 125450,
+ running_times: 6600,
+ },
+ {
+ title:
+ "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb",
+ year: 1964,
+ rating: 8.5,
+ votes: 379103,
+ running_times: 5700,
+ },
+ {
+ title: "Dr. T & the Women",
+ year: 2000,
+ rating: 4.6,
+ votes: 16257,
+ running_times: 7320,
+ },
+ {
+ title: "Dracula",
+ year: 1931,
+ rating: 7.6,
+ votes: 37354,
+ running_times: 4500,
+ },
+ {
+ title: "Dracula",
+ year: 1958,
+ rating: 7.4,
+ votes: 17052,
+ running_times: 4920,
+ },
+ {
+ title: "Dracula",
+ year: 1992,
+ rating: 7.5,
+ votes: 158038,
+ running_times: 9300,
+ },
+ {
+ title: "Dracula 2000",
+ year: 2000,
+ rating: 4.9,
+ votes: 28908,
+ running_times: 5940,
+ },
+ {
+ title: "Dracula Untold",
+ year: 2014,
+ rating: 6.3,
+ votes: 153899,
+ running_times: 5520,
+ },
+ {
+ title: "Dracula: Dead and Loving It",
+ year: 1995,
+ rating: 5.8,
+ votes: 33009,
+ running_times: 5280,
+ },
+ {
+ title: "Draft Day",
+ year: 2014,
+ rating: 6.8,
+ votes: 44200,
+ running_times: 6600,
+ },
+ {
+ title: "Drag Me to Hell",
+ year: 2009,
+ rating: 6.6,
+ votes: 168087,
+ running_times: 5940,
+ },
+ {
+ title: "Dragnet",
+ year: 1987,
+ rating: 5.9,
+ votes: 27668,
+ running_times: 6360,
+ },
+ {
+ title: "Dragon: The Bruce Lee Story",
+ year: 1993,
+ rating: 7,
+ votes: 23689,
+ running_times: 7200,
+ },
+ {
+ title: "DragonHeart",
+ year: 1996,
+ rating: 6.4,
+ votes: 82651,
+ running_times: 6180,
+ },
+ {
+ title: "Dragonball Evolution",
+ year: 2009,
+ rating: 2.6,
+ votes: 61559,
+ running_times: 6000,
+ },
+ {
+ title: "Dragonfly",
+ year: 2002,
+ rating: 6.1,
+ votes: 33351,
+ running_times: 6240,
+ },
+ {
+ title: "Dragonslayer",
+ year: 1981,
+ rating: 6.7,
+ votes: 11944,
+ running_times: 6540,
+ },
+ {
+ title: "Dread",
+ year: 2009,
+ rating: 5.7,
+ votes: 10792,
+ running_times: 6480,
+ },
+ {
+ title: "Dream House",
+ year: 2011,
+ rating: 6,
+ votes: 55422,
+ running_times: 5040,
+ },
+ {
+ title: "Dreamcatcher",
+ year: 2003,
+ rating: 5.5,
+ votes: 80773,
+ running_times: 8160,
+ },
+ {
+ title: "Dreamer: Inspired by a True Story",
+ year: 2005,
+ rating: 6.9,
+ votes: 10701,
+ running_times: 6360,
+ },
+ {
+ title: "Dreamgirls",
+ year: 2006,
+ rating: 6.5,
+ votes: 60700,
+ running_times: 8400,
+ },
+ {
+ title: "Dreamscape",
+ year: 1984,
+ rating: 6.3,
+ votes: 11483,
+ running_times: 5940,
+ },
+ {
+ title: "Dredd",
+ year: 2012,
+ rating: 7.1,
+ votes: 220351,
+ running_times: 5700,
+ },
+ {
+ title: "Dressed to Kill",
+ year: 1980,
+ rating: 7.1,
+ votes: 27122,
+ running_times: 6300,
+ },
+ {
+ title: "Drillbit Taylor",
+ year: 2008,
+ rating: 5.7,
+ votes: 52903,
+ running_times: 6600,
+ },
+ {
+ title: "Drinking Buddies",
+ year: 2013,
+ rating: 6.1,
+ votes: 50184,
+ running_times: 5400,
+ },
+ {
+ title: "Drive",
+ year: 2011,
+ rating: 7.8,
+ votes: 480193,
+ running_times: 6000,
+ },
+ {
+ title: "Drive Angry",
+ year: 2011,
+ rating: 5.4,
+ votes: 86046,
+ running_times: 6240,
+ },
+ {
+ title: "Drive Me Crazy",
+ year: 1999,
+ rating: 5.7,
+ votes: 15979,
+ running_times: 5460,
+ },
+ {
+ title: "Driven",
+ year: 2001,
+ rating: 4.5,
+ votes: 35985,
+ running_times: 6960,
+ },
+ {
+ title: "Driving Miss Daisy",
+ year: 1989,
+ rating: 7.4,
+ votes: 80605,
+ running_times: 5940,
+ },
+ {
+ title: "Drop Dead Fred",
+ year: 1991,
+ rating: 5.8,
+ votes: 23342,
+ running_times: 6180,
+ },
+ {
+ title: "Drop Dead Gorgeous",
+ year: 1999,
+ rating: 6.6,
+ votes: 28622,
+ running_times: 5820,
+ },
+ {
+ title: "Drop Zone",
+ year: 1994,
+ rating: 5.6,
+ votes: 16935,
+ running_times: 6060,
+ },
+ {
+ title: "Drowning Mona",
+ year: 2000,
+ rating: 5.6,
+ votes: 12216,
+ running_times: 5760,
+ },
+ {
+ title: "Drugstore Cowboy",
+ year: 1989,
+ rating: 7.4,
+ votes: 27237,
+ running_times: 6120,
+ },
+ {
+ title: "Drumline",
+ year: 2002,
+ rating: 5.7,
+ votes: 29808,
+ running_times: 7080,
+ },
+ {
+ title: "Du rififi chez les hommes",
+ year: 1955,
+ rating: 8.2,
+ votes: 20796,
+ running_times: 7080,
+ },
+ {
+ title: "Duck Soup",
+ year: 1933,
+ rating: 8,
+ votes: 49627,
+ running_times: 4080,
+ },
+ {
+ title: "DuckTales the Movie: Treasure of the Lost Lamp",
+ year: 1990,
+ rating: 6.9,
+ votes: 21820,
+ running_times: 4440,
+ },
+ {
+ title: "Dude, Where's My Car?",
+ year: 2000,
+ rating: 5.5,
+ votes: 122824,
+ running_times: 4980,
+ },
+ {
+ title: "Due Date",
+ year: 2010,
+ rating: 6.6,
+ votes: 288907,
+ running_times: 5700,
+ },
+ {
+ title: "Dumb and Dumber",
+ year: 1994,
+ rating: 7.3,
+ votes: 309873,
+ running_times: 6780,
+ },
+ {
+ title: "Dumb and Dumber To",
+ year: 2014,
+ rating: 5.6,
+ votes: 108504,
+ running_times: 6540,
+ },
+ {
+ title: "Dumb and Dumberer: When Harry Met Lloyd",
+ year: 2003,
+ rating: 3.4,
+ votes: 32270,
+ running_times: 5100,
+ },
+ {
+ title: "Dumbo",
+ year: 1941,
+ rating: 7.3,
+ votes: 96388,
+ running_times: 3840,
+ },
+ {
+ title: "Dune",
+ year: 1984,
+ rating: 6.6,
+ votes: 104438,
+ running_times: 11400,
+ },
+ {
+ title: "Dungeons & Dragons",
+ year: 2000,
+ rating: 3.7,
+ votes: 28833,
+ running_times: 6420,
+ },
+ {
+ title: "Dunkirk",
+ year: 2017,
+ rating: 8.2,
+ votes: 274342,
+ running_times: 6360,
+ },
+ {
+ title: "Dunston Checks In",
+ year: 1996,
+ rating: 5.3,
+ votes: 10452,
+ running_times: 5280,
+ },
+ {
+ title: "Duplex",
+ year: 2003,
+ rating: 5.9,
+ votes: 49293,
+ running_times: 5340,
+ },
+ {
+ title: "Duplicity",
+ year: 2009,
+ rating: 6.2,
+ votes: 43403,
+ running_times: 7500,
+ },
+ {
+ title: "Dutch",
+ year: 1991,
+ rating: 6.4,
+ votes: 10177,
+ running_times: 6420,
+ },
+ {
+ title: "Dying Young",
+ year: 1991,
+ rating: 5.9,
+ votes: 12716,
+ running_times: 6660,
+ },
+ {
+ title: "Dylan Dog: Dead of Night",
+ year: 2010,
+ rating: 5.1,
+ votes: 13629,
+ running_times: 6420,
+ },
+ {
+ title: "Dèmoni",
+ year: 1985,
+ rating: 6.7,
+ votes: 16120,
+ running_times: 5280,
+ },
+ {
+ title: "Død snø 2",
+ year: 2014,
+ rating: 6.9,
+ votes: 18637,
+ running_times: 6000,
+ },
+ {
+ title: "E.T. the Extra-Terrestrial",
+ year: 1982,
+ rating: 7.9,
+ votes: 309754,
+ running_times: 7200,
+ },
+ {
+ title: "Eagle Eye",
+ year: 2008,
+ rating: 6.6,
+ votes: 159498,
+ running_times: 7080,
+ },
+ {
+ title: "Eagle vs Shark",
+ year: 2007,
+ rating: 6.8,
+ votes: 18542,
+ running_times: 5580,
+ },
+ { title: "Earth", year: 2007, rating: 8, votes: 13297, running_times: 5760 },
+ {
+ title: "Earth Girls Are Easy",
+ year: 1988,
+ rating: 5.2,
+ votes: 17480,
+ running_times: 6000,
+ },
+ {
+ title: "Earth to Echo",
+ year: 2014,
+ rating: 5.8,
+ votes: 16868,
+ running_times: 5460,
+ },
+ {
+ title: "Earthlings",
+ year: 2005,
+ rating: 8.7,
+ votes: 14644,
+ running_times: 5700,
+ },
+ {
+ title: "Earthquake",
+ year: 1974,
+ rating: 5.8,
+ votes: 11463,
+ running_times: 9600,
+ },
+ {
+ title: "East Is East",
+ year: 1999,
+ rating: 6.9,
+ votes: 15380,
+ running_times: 5760,
+ },
+ {
+ title: "East of Eden",
+ year: 1955,
+ rating: 8,
+ votes: 33398,
+ running_times: 7080,
+ },
+ {
+ title: "Eastern Promises",
+ year: 2007,
+ rating: 7.7,
+ votes: 203215,
+ running_times: 6000,
+ },
+ {
+ title: "Easy A",
+ year: 2010,
+ rating: 7.1,
+ votes: 305254,
+ running_times: 5520,
+ },
+ {
+ title: "Easy Rider",
+ year: 1969,
+ rating: 7.4,
+ votes: 81753,
+ running_times: 5700,
+ },
+ {
+ title: "Easy Virtue",
+ year: 2008,
+ rating: 6.7,
+ votes: 17839,
+ running_times: 5820,
+ },
+ {
+ title: "Eat Pray Love",
+ year: 2010,
+ rating: 5.7,
+ votes: 70716,
+ running_times: 8400,
+ },
+ {
+ title: "Echelon Conspiracy",
+ year: 2009,
+ rating: 5.8,
+ votes: 17641,
+ running_times: 6300,
+ },
+ {
+ title: "Ed Wood",
+ year: 1994,
+ rating: 7.9,
+ votes: 150437,
+ running_times: 7620,
+ },
+ {
+ title: "Eddie Murphy: Raw",
+ year: 1987,
+ rating: 7.6,
+ votes: 16140,
+ running_times: 5580,
+ },
+ {
+ title: "Eddie the Eagle",
+ year: 2016,
+ rating: 7.4,
+ votes: 62469,
+ running_times: 6360,
+ },
+ {
+ title: "Eden Lake",
+ year: 2008,
+ rating: 6.8,
+ votes: 64341,
+ running_times: 5460,
+ },
+ {
+ title: "Edge of Darkness",
+ year: 2010,
+ rating: 6.6,
+ votes: 80466,
+ running_times: 7020,
+ },
+ {
+ title: "Edge of Tomorrow",
+ year: 2014,
+ rating: 7.9,
+ votes: 494688,
+ running_times: 6780,
+ },
+ {
+ title: "Edison",
+ year: 2005,
+ rating: 5.3,
+ votes: 13825,
+ running_times: 5940,
+ },
+ {
+ title: "Edmond",
+ year: 2005,
+ rating: 6.3,
+ votes: 10303,
+ running_times: 4920,
+ },
+ { title: "Edtv", year: 1999, rating: 6.1, votes: 37443, running_times: 7320 },
+ {
+ title: "Educating Rita",
+ year: 1983,
+ rating: 7.2,
+ votes: 10465,
+ running_times: 6600,
+ },
+ {
+ title: "Edward Scissorhands",
+ year: 1990,
+ rating: 7.9,
+ votes: 388885,
+ running_times: 6300,
+ },
+ {
+ title: "Efter brylluppet",
+ year: 2006,
+ rating: 7.8,
+ votes: 27865,
+ running_times: 7200,
+ },
+ {
+ title: "Eight Below",
+ year: 2006,
+ rating: 7.3,
+ votes: 52915,
+ running_times: 7200,
+ },
+ {
+ title: "Eight Crazy Nights",
+ year: 2002,
+ rating: 5.3,
+ votes: 19215,
+ running_times: 4560,
+ },
+ {
+ title: "Eight Legged Freaks",
+ year: 2002,
+ rating: 5.4,
+ votes: 46740,
+ running_times: 5940,
+ },
+ {
+ title: "Eight Men Out",
+ year: 1988,
+ rating: 7.3,
+ votes: 16091,
+ running_times: 7140,
+ },
+ {
+ title: "Ek Tha Tiger",
+ year: 2012,
+ rating: 5.4,
+ votes: 23349,
+ running_times: 7920,
+ },
+ {
+ title: "El Cid",
+ year: 1961,
+ rating: 7.3,
+ votes: 10715,
+ running_times: 10920,
+ },
+ {
+ title: "El Dorado",
+ year: 1967,
+ rating: 7.6,
+ votes: 19689,
+ running_times: 7560,
+ },
+ {
+ title: "El abrazo de la serpiente",
+ year: 2015,
+ rating: 7.9,
+ votes: 14165,
+ running_times: 7500,
+ },
+ {
+ title: "Election",
+ year: 1999,
+ rating: 7.3,
+ votes: 78350,
+ running_times: 6180,
+ },
+ {
+ title: "Elegy",
+ year: 2008,
+ rating: 6.8,
+ votes: 20349,
+ running_times: 6720,
+ },
+ {
+ title: "Elektra",
+ year: 2005,
+ rating: 4.8,
+ votes: 76634,
+ running_times: 6000,
+ },
+ {
+ title: "Elephant",
+ year: 2003,
+ rating: 7.2,
+ votes: 75743,
+ running_times: 4860,
+ },
+ { title: "Elf", year: 2003, rating: 6.9, votes: 166818, running_times: 5820 },
+ {
+ title: "Eliza Graves",
+ year: 2014,
+ rating: 6.8,
+ votes: 41308,
+ running_times: 6720,
+ },
+ {
+ title: "Elizabeth",
+ year: 1998,
+ rating: 7.5,
+ votes: 80820,
+ running_times: 7440,
+ },
+ {
+ title: "Elizabeth: The Golden Age",
+ year: 2007,
+ rating: 6.9,
+ votes: 58559,
+ running_times: 6840,
+ },
+ {
+ title: "Elizabethtown",
+ year: 2005,
+ rating: 6.4,
+ votes: 61503,
+ running_times: 7380,
+ },
+ {
+ title: "Ella Enchanted",
+ year: 2004,
+ rating: 6.3,
+ votes: 52416,
+ running_times: 5760,
+ },
+ {
+ title: "Elle s'appelait Sarah",
+ year: 2010,
+ rating: 7.5,
+ votes: 14100,
+ running_times: 6660,
+ },
+ {
+ title: "Elvis & Nixon",
+ year: 2016,
+ rating: 6.4,
+ votes: 10328,
+ running_times: 5160,
+ },
+ {
+ title: "Elysium",
+ year: 2013,
+ rating: 6.6,
+ votes: 370766,
+ running_times: 6540,
+ },
+ {
+ title: "Emergo",
+ year: 2011,
+ rating: 5.1,
+ votes: 10158,
+ running_times: 4800,
+ },
+ { title: "Emma", year: 1996, rating: 6.7, votes: 30394, running_times: 7200 },
+ {
+ title: "Emperor",
+ year: 2012,
+ rating: 6.5,
+ votes: 11452,
+ running_times: 6300,
+ },
+ {
+ title: "Empire Records",
+ year: 1995,
+ rating: 6.7,
+ votes: 41332,
+ running_times: 6420,
+ },
+ {
+ title: "Empire State",
+ year: 2013,
+ rating: 5.2,
+ votes: 16319,
+ running_times: 5640,
+ },
+ {
+ title: "Empire of the Sun",
+ year: 1987,
+ rating: 7.8,
+ votes: 97960,
+ running_times: 9180,
+ },
+ {
+ title: "Employee of the Month",
+ year: 2006,
+ rating: 5.5,
+ votes: 39579,
+ running_times: 6180,
+ },
+ {
+ title: "En duva satt på en gren och funderade på tillvaron",
+ year: 2014,
+ rating: 7,
+ votes: 12501,
+ running_times: 6060,
+ },
+ {
+ title: "En kongelig affære",
+ year: 2012,
+ rating: 7.6,
+ votes: 37904,
+ running_times: 8220,
+ },
+ {
+ title: "Enchanted",
+ year: 2007,
+ rating: 7.1,
+ votes: 154524,
+ running_times: 6420,
+ },
+ {
+ title: "Encino Man",
+ year: 1992,
+ rating: 5.7,
+ votes: 32299,
+ running_times: 5280,
+ },
+ {
+ title: "Encounters at the End of the World",
+ year: 2007,
+ rating: 7.8,
+ votes: 15121,
+ running_times: 5940,
+ },
+ {
+ title: "End of Days",
+ year: 1999,
+ rating: 5.7,
+ votes: 94909,
+ running_times: 7260,
+ },
+ {
+ title: "End of Watch",
+ year: 2012,
+ rating: 7.7,
+ votes: 198682,
+ running_times: 6540,
+ },
+ {
+ title: "Ender's Game",
+ year: 2013,
+ rating: 6.7,
+ votes: 199409,
+ running_times: 6840,
+ },
+ {
+ title: "Endless Love",
+ year: 2014,
+ rating: 6.3,
+ votes: 35053,
+ running_times: 6240,
+ },
+ {
+ title: "Enemy",
+ year: 2013,
+ rating: 6.9,
+ votes: 121880,
+ running_times: 5460,
+ },
+ {
+ title: "Enemy Mine",
+ year: 1985,
+ rating: 6.9,
+ votes: 37013,
+ running_times: 6480,
+ },
+ {
+ title: "Enemy at the Gates",
+ year: 2001,
+ rating: 7.6,
+ votes: 208107,
+ running_times: 7860,
+ },
+ {
+ title: "Enemy of the State",
+ year: 1998,
+ rating: 7.3,
+ votes: 201476,
+ running_times: 8400,
+ },
+ {
+ title: "English Vinglish",
+ year: 2012,
+ rating: 7.9,
+ votes: 26437,
+ running_times: 8040,
+ },
+ {
+ title: "Enigma",
+ year: 2001,
+ rating: 6.4,
+ votes: 18513,
+ running_times: 7140,
+ },
+ {
+ title: "Enough",
+ year: 2002,
+ rating: 5.7,
+ votes: 33306,
+ running_times: 6900,
+ },
+ {
+ title: "Enough Said",
+ year: 2013,
+ rating: 7.1,
+ votes: 52803,
+ running_times: 5580,
+ },
+ {
+ title: "Enron: The Smartest Guys in the Room",
+ year: 2005,
+ rating: 7.7,
+ votes: 13946,
+ running_times: 6600,
+ },
+ {
+ title: "Enter the Dragon",
+ year: 1973,
+ rating: 7.7,
+ votes: 83111,
+ running_times: 6120,
+ },
+ {
+ title: "Enter the Void",
+ year: 2009,
+ rating: 7.3,
+ votes: 52921,
+ running_times: 9660,
+ },
+ {
+ title: "Entourage",
+ year: 2015,
+ rating: 6.6,
+ votes: 67060,
+ running_times: 6240,
+ },
+ {
+ title: "Entrapment",
+ year: 1999,
+ rating: 6.3,
+ votes: 94568,
+ running_times: 6780,
+ },
+ { title: "Envy", year: 2004, rating: 4.8, votes: 27619, running_times: 5940 },
+ { title: "Epic", year: 2013, rating: 6.7, votes: 91102, running_times: 6120 },
+ {
+ title: "Epic Movie",
+ year: 2007,
+ rating: 2.3,
+ votes: 94044,
+ running_times: 5580,
+ },
+ { title: "Equals", year: 2015, rating: 6, votes: 19497, running_times: 6060 },
+ {
+ title: "Equilibrium",
+ year: 2002,
+ rating: 7.5,
+ votes: 280173,
+ running_times: 6420,
+ },
+ {
+ title: "Eragon",
+ year: 2006,
+ rating: 5.1,
+ votes: 112989,
+ running_times: 6240,
+ },
+ {
+ title: "Erased",
+ year: 2012,
+ rating: 6.1,
+ votes: 25184,
+ running_times: 6000,
+ },
+ {
+ title: "Eraser",
+ year: 1996,
+ rating: 6.1,
+ votes: 90788,
+ running_times: 6900,
+ },
+ {
+ title: "Eraserhead",
+ year: 1977,
+ rating: 7.4,
+ votes: 80638,
+ running_times: 5340,
+ },
+ {
+ title: "Erik the Viking",
+ year: 1989,
+ rating: 6.2,
+ votes: 11535,
+ running_times: 6420,
+ },
+ {
+ title: "Erin Brockovich",
+ year: 2000,
+ rating: 7.3,
+ votes: 147095,
+ running_times: 7860,
+ },
+ {
+ title: "Escape Plan",
+ year: 2013,
+ rating: 6.7,
+ votes: 194559,
+ running_times: 6900,
+ },
+ {
+ title: "Escape from Alcatraz",
+ year: 1979,
+ rating: 7.6,
+ votes: 95509,
+ running_times: 6720,
+ },
+ {
+ title: "Escape from L.A.",
+ year: 1996,
+ rating: 5.7,
+ votes: 59275,
+ running_times: 6060,
+ },
+ {
+ title: "Escape from New York",
+ year: 1981,
+ rating: 7.2,
+ votes: 101894,
+ running_times: 6360,
+ },
+ {
+ title: "Escape from Planet Earth",
+ year: 2013,
+ rating: 5.9,
+ votes: 22083,
+ running_times: 5340,
+ },
+ {
+ title: "Escape from the Planet of the Apes",
+ year: 1971,
+ rating: 6.3,
+ votes: 26898,
+ running_times: 5880,
+ },
+ {
+ title: "Escobar: Paradise Lost",
+ year: 2014,
+ rating: 6.5,
+ votes: 17217,
+ running_times: 7200,
+ },
+ {
+ title: "Eternal Sunshine of the Spotless Mind",
+ year: 2004,
+ rating: 8.3,
+ votes: 746335,
+ running_times: 6480,
+ },
+ {
+ title: "EuroTrip",
+ year: 2004,
+ rating: 6.6,
+ votes: 172986,
+ running_times: 5520,
+ },
+ {
+ title: "Europa",
+ year: 1991,
+ rating: 7.7,
+ votes: 17049,
+ running_times: 6720,
+ },
+ {
+ title: "Europa Report",
+ year: 2013,
+ rating: 6.5,
+ votes: 58836,
+ running_times: 5820,
+ },
+ {
+ title: "Evan Almighty",
+ year: 2007,
+ rating: 5.4,
+ votes: 122445,
+ running_times: 5760,
+ },
+ {
+ title: "Evening",
+ year: 2007,
+ rating: 6.6,
+ votes: 12168,
+ running_times: 7020,
+ },
+ {
+ title: "Event Horizon",
+ year: 1997,
+ rating: 6.7,
+ votes: 132242,
+ running_times: 7800,
+ },
+ {
+ title: "EverAfter",
+ year: 1998,
+ rating: 7,
+ votes: 61506,
+ running_times: 7260,
+ },
+ {
+ title: "Everest",
+ year: 2015,
+ rating: 7.1,
+ votes: 163956,
+ running_times: 7260,
+ },
+ {
+ title: "Everly",
+ year: 2014,
+ rating: 5.1,
+ votes: 14426,
+ running_times: 5520,
+ },
+ {
+ title: "Every Which Way But Loose",
+ year: 1978,
+ rating: 6.3,
+ votes: 19104,
+ running_times: 6840,
+ },
+ {
+ title: "Everybody Wants Some!!",
+ year: 2016,
+ rating: 7,
+ votes: 41481,
+ running_times: 7020,
+ },
+ {
+ title: "Everybody's Fine",
+ year: 2009,
+ rating: 7.1,
+ votes: 53263,
+ running_times: 5940,
+ },
+ {
+ title: "Everyone Says I Love You",
+ year: 1996,
+ rating: 6.8,
+ votes: 31978,
+ running_times: 6060,
+ },
+ {
+ title: "Everything Is Illuminated",
+ year: 2005,
+ rating: 7.5,
+ votes: 53082,
+ running_times: 6360,
+ },
+ {
+ title: "Everything Must Go",
+ year: 2010,
+ rating: 6.4,
+ votes: 43647,
+ running_times: 5820,
+ },
+ {
+ title:
+ "Everything You Always Wanted to Know About Sex * But Were Afraid to Ask",
+ year: 1972,
+ rating: 6.8,
+ votes: 33803,
+ running_times: 5280,
+ },
+ {
+ title: "Everything, Everything",
+ year: 2017,
+ rating: 6.4,
+ votes: 14421,
+ running_times: 5760,
+ },
+ {
+ title: "Evil Dead",
+ year: 2013,
+ rating: 6.5,
+ votes: 137348,
+ running_times: 5820,
+ },
+ {
+ title: "Evil Dead II",
+ year: 1987,
+ rating: 7.8,
+ votes: 125028,
+ running_times: 5460,
+ },
+ {
+ title: "Evil Under the Sun",
+ year: 1982,
+ rating: 7,
+ votes: 10493,
+ running_times: 7020,
+ },
+ {
+ title: "Evita",
+ year: 1996,
+ rating: 6.3,
+ votes: 30668,
+ running_times: 8100,
+ },
+ {
+ title: "Evolution",
+ year: 2001,
+ rating: 6.1,
+ votes: 107448,
+ running_times: 6060,
+ },
+ {
+ title: "Ex Machina",
+ year: 2014,
+ rating: 7.7,
+ votes: 364240,
+ running_times: 6480,
+ },
+ { title: "Exam", year: 2009, rating: 6.9, votes: 84658, running_times: 6060 },
+ {
+ title: "Excalibur",
+ year: 1981,
+ rating: 7.4,
+ votes: 50072,
+ running_times: 8400,
+ },
+ {
+ title: "Excess Baggage",
+ year: 1997,
+ rating: 5.3,
+ votes: 11451,
+ running_times: 6060,
+ },
+ {
+ title: "Excision",
+ year: 2012,
+ rating: 6.1,
+ votes: 17447,
+ running_times: 4860,
+ },
+ {
+ title: "Executive Decision",
+ year: 1996,
+ rating: 6.4,
+ votes: 43820,
+ running_times: 7980,
+ },
+ {
+ title: "Exit Through the Gift Shop",
+ year: 2010,
+ rating: 8,
+ votes: 55428,
+ running_times: 5220,
+ },
+ {
+ title: "Exit Wounds",
+ year: 2001,
+ rating: 5.5,
+ votes: 28944,
+ running_times: 6060,
+ },
+ {
+ title: "Exodus: Gods and Kings",
+ year: 2014,
+ rating: 6,
+ votes: 141750,
+ running_times: 9000,
+ },
+ {
+ title: "Exorcist II: The Heretic",
+ year: 1977,
+ rating: 3.7,
+ votes: 17846,
+ running_times: 7080,
+ },
+ {
+ title: "Exorcist: The Beginning",
+ year: 2004,
+ rating: 5.1,
+ votes: 30144,
+ running_times: 7500,
+ },
+ {
+ title: "Exotica",
+ year: 1994,
+ rating: 7.1,
+ votes: 15581,
+ running_times: 6180,
+ },
+ {
+ title: "Expelled: No Intelligence Allowed",
+ year: 2008,
+ rating: 3.7,
+ votes: 11451,
+ running_times: 5820,
+ },
+ {
+ title: "Experimenter",
+ year: 2015,
+ rating: 6.6,
+ votes: 13685,
+ running_times: 5880,
+ },
+ {
+ title: "Explorers",
+ year: 1985,
+ rating: 6.6,
+ votes: 16258,
+ running_times: 6540,
+ },
+ {
+ title: "Extinction",
+ year: 2015,
+ rating: 5.8,
+ votes: 13381,
+ running_times: 6720,
+ },
+ {
+ title: "Extract",
+ year: 2009,
+ rating: 6.2,
+ votes: 39751,
+ running_times: 5520,
+ },
+ {
+ title: "Extracted",
+ year: 2012,
+ rating: 6.5,
+ votes: 10716,
+ running_times: 5100,
+ },
+ {
+ title: "Extraordinary Measures",
+ year: 2010,
+ rating: 6.5,
+ votes: 15069,
+ running_times: 6360,
+ },
+ {
+ title: "Extraterrestrial",
+ year: 2014,
+ rating: 5,
+ votes: 12754,
+ running_times: 6060,
+ },
+ {
+ title: "Extreme Measures",
+ year: 1996,
+ rating: 6.1,
+ votes: 14967,
+ running_times: 7080,
+ },
+ {
+ title: "Extremely Loud & Incredibly Close",
+ year: 2011,
+ rating: 6.9,
+ votes: 88270,
+ running_times: 7740,
+ },
+ {
+ title: "Eye for an Eye",
+ year: 1996,
+ rating: 6.1,
+ votes: 11091,
+ running_times: 6060,
+ },
+ {
+ title: "Eye in the Sky",
+ year: 2015,
+ rating: 7.3,
+ votes: 63254,
+ running_times: 6120,
+ },
+ {
+ title: "Eye of the Beholder",
+ year: 1999,
+ rating: 4.9,
+ votes: 13722,
+ running_times: 6540,
+ },
+ {
+ title: "Eyes Wide Shut",
+ year: 1999,
+ rating: 7.4,
+ votes: 249671,
+ running_times: 9540,
+ },
+ {
+ title: "F for Fake",
+ year: 1973,
+ rating: 7.8,
+ votes: 11788,
+ running_times: 5340,
+ },
+ { title: "F/X", year: 1986, rating: 6.7, votes: 14697, running_times: 6540 },
+ {
+ title: "Face/Off",
+ year: 1997,
+ rating: 7.3,
+ votes: 304712,
+ running_times: 8280,
+ },
+ {
+ title: "Faces in the Crowd",
+ year: 2011,
+ rating: 5.8,
+ votes: 16738,
+ running_times: 6180,
+ },
+ {
+ title: "Facing the Giants",
+ year: 2006,
+ rating: 6.7,
+ votes: 13404,
+ running_times: 6660,
+ },
+ {
+ title: "Factory Girl",
+ year: 2006,
+ rating: 6.4,
+ votes: 19330,
+ running_times: 5940,
+ },
+ {
+ title: "Factotum",
+ year: 2005,
+ rating: 6.6,
+ votes: 12632,
+ running_times: 5640,
+ },
+ {
+ title: "Fading Gigolo",
+ year: 2013,
+ rating: 6.2,
+ votes: 21136,
+ running_times: 5400,
+ },
+ {
+ title: "Fahrenheit 451",
+ year: 1966,
+ rating: 7.3,
+ votes: 35599,
+ running_times: 6720,
+ },
+ {
+ title: "Fahrenheit 9/11",
+ year: 2004,
+ rating: 7.5,
+ votes: 118010,
+ running_times: 7320,
+ },
+ {
+ title: "Fail-Safe",
+ year: 1964,
+ rating: 8,
+ votes: 16325,
+ running_times: 6720,
+ },
+ {
+ title: "Failure to Launch",
+ year: 2006,
+ rating: 5.6,
+ votes: 62881,
+ running_times: 5820,
+ },
+ {
+ title: "Fair Game",
+ year: 1995,
+ rating: 4.2,
+ votes: 10737,
+ running_times: 5460,
+ },
+ {
+ title: "Fair Game",
+ year: 2010,
+ rating: 6.8,
+ votes: 41205,
+ running_times: 6480,
+ },
+ { title: "Fallen", year: 1998, rating: 7, votes: 63656, running_times: 7440 },
+ {
+ title: "Falling Down",
+ year: 1993,
+ rating: 7.6,
+ votes: 145355,
+ running_times: 6780,
+ },
+ {
+ title: "Falling in Love",
+ year: 1984,
+ rating: 6.5,
+ votes: 10477,
+ running_times: 6360,
+ },
+ { title: "Fame", year: 1980, rating: 6.6, votes: 17572, running_times: 8040 },
+ { title: "Fame", year: 2009, rating: 5, votes: 14795, running_times: 7380 },
+ {
+ title: "Family Business",
+ year: 1989,
+ rating: 5.7,
+ votes: 10321,
+ running_times: 6600,
+ },
+ {
+ title: "Family Plot",
+ year: 1976,
+ rating: 6.8,
+ votes: 17005,
+ running_times: 7200,
+ },
+ {
+ title: "Fanboys",
+ year: 2009,
+ rating: 6.6,
+ votes: 52152,
+ running_times: 5400,
+ },
+ {
+ title: "Fanny och Alexander",
+ year: 1982,
+ rating: 8.1,
+ votes: 46972,
+ running_times: 18720,
+ },
+ {
+ title: "Fantasia",
+ year: 1940,
+ rating: 7.8,
+ votes: 77065,
+ running_times: 7500,
+ },
+ {
+ title: "Fantasia 2000",
+ year: 1999,
+ rating: 7.2,
+ votes: 29995,
+ running_times: 4500,
+ },
+ {
+ title: "Fantastic Beasts and Where to Find Them",
+ year: 2016,
+ rating: 7.4,
+ votes: 282792,
+ running_times: 7980,
+ },
+ {
+ title: "Fantastic Four",
+ year: 2005,
+ rating: 5.7,
+ votes: 282206,
+ running_times: 7500,
+ },
+ {
+ title: "Fantastic Four",
+ year: 2015,
+ rating: 4.3,
+ votes: 127702,
+ running_times: 6000,
+ },
+ {
+ title: "Fantastic Mr. Fox",
+ year: 2009,
+ rating: 7.8,
+ votes: 156778,
+ running_times: 5220,
+ },
+ {
+ title: "Fantastic Voyage",
+ year: 1966,
+ rating: 6.8,
+ votes: 14347,
+ running_times: 6000,
+ },
+ {
+ title: "Far Cry",
+ year: 2008,
+ rating: 3.1,
+ votes: 11917,
+ running_times: 5700,
+ },
+ {
+ title: "Far and Away",
+ year: 1992,
+ rating: 6.5,
+ votes: 51351,
+ running_times: 8400,
+ },
+ {
+ title: "Far from Heaven",
+ year: 2002,
+ rating: 7.4,
+ votes: 38810,
+ running_times: 6420,
+ },
+ {
+ title: "Far from the Madding Crowd",
+ year: 2015,
+ rating: 7.1,
+ votes: 36905,
+ running_times: 7140,
+ },
+ {
+ title: "Fargo",
+ year: 1996,
+ rating: 8.1,
+ votes: 507798,
+ running_times: 5880,
+ },
+ {
+ title: "Fasandræberne",
+ year: 2014,
+ rating: 7.1,
+ votes: 12548,
+ running_times: 7140,
+ },
+ {
+ title: "Fast & Furious",
+ year: 2009,
+ rating: 6.6,
+ votes: 225507,
+ running_times: 6420,
+ },
+ {
+ title: "Fast Five",
+ year: 2011,
+ rating: 7.3,
+ votes: 310070,
+ running_times: 7920,
+ },
+ {
+ title: "Fast Food Nation",
+ year: 2006,
+ rating: 6.3,
+ votes: 21840,
+ running_times: 6960,
+ },
+ {
+ title: "Fast Times at Ridgemont High",
+ year: 1982,
+ rating: 7.2,
+ votes: 78461,
+ running_times: 5400,
+ },
+ {
+ title: "Fast Track",
+ year: 2006,
+ rating: 5.5,
+ votes: 15704,
+ running_times: 5700,
+ },
+ {
+ title: "Faster",
+ year: 2010,
+ rating: 6.5,
+ votes: 86086,
+ running_times: 5880,
+ },
+ {
+ title: "Faster, Pussycat! Kill! Kill!",
+ year: 1965,
+ rating: 6.8,
+ votes: 11707,
+ running_times: 4980,
+ },
+ {
+ title: "Fatal Attraction",
+ year: 1987,
+ rating: 6.9,
+ votes: 61185,
+ running_times: 7140,
+ },
+ {
+ title: "Father of the Bride",
+ year: 1991,
+ rating: 6.5,
+ votes: 59093,
+ running_times: 6300,
+ },
+ {
+ title: "Father of the Bride Part II",
+ year: 1995,
+ rating: 5.9,
+ votes: 28927,
+ running_times: 6360,
+ },
+ {
+ title: "Fathers & Daughters",
+ year: 2015,
+ rating: 7.1,
+ votes: 17840,
+ running_times: 6960,
+ },
+ {
+ title: "Fathers' Day",
+ year: 1997,
+ rating: 5.1,
+ votes: 12966,
+ running_times: 5880,
+ },
+ { title: "Fear", year: 1996, rating: 6.2, votes: 34409, running_times: 5820 },
+ {
+ title: "Fear and Loathing in Las Vegas",
+ year: 1998,
+ rating: 7.7,
+ votes: 228574,
+ running_times: 7080,
+ },
+ {
+ title: "Feardotcom",
+ year: 2002,
+ rating: 3.3,
+ votes: 17929,
+ running_times: 6060,
+ },
+ {
+ title: "Fearless",
+ year: 1993,
+ rating: 7.1,
+ votes: 18784,
+ running_times: 7320,
+ },
+ {
+ title: "Feast",
+ year: 2005,
+ rating: 6.4,
+ votes: 26881,
+ running_times: 5700,
+ },
+ { title: "Feast", year: 2014, rating: 8.3, votes: 20154, running_times: 360 },
+ {
+ title: "Feast of Love",
+ year: 2007,
+ rating: 6.7,
+ votes: 14876,
+ running_times: 5820,
+ },
+ {
+ title: "Fehér isten",
+ year: 2014,
+ rating: 6.9,
+ votes: 12224,
+ running_times: 7260,
+ },
+ {
+ title: "Felon",
+ year: 2008,
+ rating: 7.5,
+ votes: 69677,
+ running_times: 6240,
+ },
+ {
+ title: "Femme Fatale",
+ year: 2002,
+ rating: 6.3,
+ votes: 30192,
+ running_times: 6840,
+ },
+ {
+ title: "Fences",
+ year: 2016,
+ rating: 7.2,
+ votes: 67254,
+ running_times: 8340,
+ },
+ {
+ title: "FernGully: The Last Rainforest",
+ year: 1992,
+ rating: 6.5,
+ votes: 22799,
+ running_times: 4560,
+ },
+ {
+ title: "Ferris Bueller's Day Off",
+ year: 1986,
+ rating: 7.8,
+ votes: 267726,
+ running_times: 6180,
+ },
+ {
+ title: "Festen",
+ year: 1998,
+ rating: 8.1,
+ votes: 69948,
+ running_times: 6300,
+ },
+ {
+ title: "Fever Pitch",
+ year: 2005,
+ rating: 6.2,
+ votes: 38133,
+ running_times: 6240,
+ },
+ {
+ title: "Fiddler on the Roof",
+ year: 1971,
+ rating: 8,
+ votes: 32288,
+ running_times: 10860,
+ },
+ { title: "Fido", year: 2006, rating: 6.7, votes: 26218, running_times: 5580 },
+ {
+ title: "Field of Dreams",
+ year: 1989,
+ rating: 7.5,
+ votes: 92902,
+ running_times: 6420,
+ },
+ {
+ title: "Fierce Creatures",
+ year: 1997,
+ rating: 6.4,
+ votes: 20671,
+ running_times: 5580,
+ },
+ {
+ title: "Fifty Dead Men Walking",
+ year: 2008,
+ rating: 6.9,
+ votes: 10022,
+ running_times: 7020,
+ },
+ {
+ title: "Fifty Shades Darker",
+ year: 2017,
+ rating: 4.6,
+ votes: 60766,
+ running_times: 7860,
+ },
+ {
+ title: "Fifty Shades of Black",
+ year: 2016,
+ rating: 3.5,
+ votes: 14489,
+ running_times: 5520,
+ },
+ {
+ title: "Fifty Shades of Grey",
+ year: 2015,
+ rating: 4.1,
+ votes: 253284,
+ running_times: 7740,
+ },
+ {
+ title: "Fight Club",
+ year: 1999,
+ rating: 8.8,
+ votes: 1513600,
+ running_times: 9060,
+ },
+ {
+ title: "Fighting",
+ year: 2009,
+ rating: 5.6,
+ votes: 29246,
+ running_times: 6300,
+ },
+ {
+ title: "Filth",
+ year: 2013,
+ rating: 7.1,
+ votes: 85698,
+ running_times: 5820,
+ },
+ {
+ title: "Final Analysis",
+ year: 1992,
+ rating: 5.8,
+ votes: 11587,
+ running_times: 7440,
+ },
+ {
+ title: "Final Destination",
+ year: 2000,
+ rating: 6.7,
+ votes: 196574,
+ running_times: 5880,
+ },
+ {
+ title: "Final Destination 2",
+ year: 2003,
+ rating: 6.2,
+ votes: 130693,
+ running_times: 5400,
+ },
+ {
+ title: "Final Destination 3",
+ year: 2006,
+ rating: 5.8,
+ votes: 111829,
+ running_times: 5580,
+ },
+ {
+ title: "Final Destination 5",
+ year: 2011,
+ rating: 5.9,
+ votes: 90949,
+ running_times: 5520,
+ },
+ {
+ title: "Final Fantasy: The Spirits Within",
+ year: 2001,
+ rating: 6.4,
+ votes: 75791,
+ running_times: 6360,
+ },
+ {
+ title: "Final Girl",
+ year: 2015,
+ rating: 4.7,
+ votes: 10302,
+ running_times: 5400,
+ },
+ {
+ title: "Find Me Guilty",
+ year: 2006,
+ rating: 7.1,
+ votes: 29806,
+ running_times: 7500,
+ },
+ {
+ title: "Finding Dory",
+ year: 2016,
+ rating: 7.4,
+ votes: 179302,
+ running_times: 5820,
+ },
+ {
+ title: "Finding Forrester",
+ year: 2000,
+ rating: 7.3,
+ votes: 76078,
+ running_times: 8160,
+ },
+ {
+ title: "Finding Nemo",
+ year: 2003,
+ rating: 8.1,
+ votes: 782783,
+ running_times: 6000,
+ },
+ {
+ title: "Finding Neverland",
+ year: 2004,
+ rating: 7.7,
+ votes: 183400,
+ running_times: 6360,
+ },
+ {
+ title: "Finding Vivian Maier",
+ year: 2013,
+ rating: 7.7,
+ votes: 10672,
+ running_times: 4980,
+ },
+ {
+ title: "Fire Down Below",
+ year: 1997,
+ rating: 5,
+ votes: 14680,
+ running_times: 6300,
+ },
+ {
+ title: "Fire in the Sky",
+ year: 1993,
+ rating: 6.5,
+ votes: 17724,
+ running_times: 6540,
+ },
+ {
+ title: "Fire with Fire",
+ year: 2012,
+ rating: 5.7,
+ votes: 22378,
+ running_times: 5820,
+ },
+ {
+ title: "Fired Up!",
+ year: 2009,
+ rating: 6.2,
+ votes: 39156,
+ running_times: 5460,
+ },
+ {
+ title: "Fireflies in the Garden",
+ year: 2008,
+ rating: 6.5,
+ votes: 11372,
+ running_times: 7200,
+ },
+ {
+ title: "Firefox",
+ year: 1982,
+ rating: 5.9,
+ votes: 21537,
+ running_times: 8160,
+ },
+ {
+ title: "Fireproof",
+ year: 2008,
+ rating: 6.6,
+ votes: 18427,
+ running_times: 7320,
+ },
+ {
+ title: "Firestarter",
+ year: 1984,
+ rating: 6,
+ votes: 24912,
+ running_times: 6840,
+ },
+ {
+ title: "Firewall",
+ year: 2006,
+ rating: 5.8,
+ votes: 52024,
+ running_times: 6300,
+ },
+ {
+ title: "First Blood",
+ year: 1982,
+ rating: 7.7,
+ votes: 187564,
+ running_times: 5580,
+ },
+ {
+ title: "First Daughter",
+ year: 2004,
+ rating: 5,
+ votes: 18521,
+ running_times: 6360,
+ },
+ {
+ title: "First Knight",
+ year: 1995,
+ rating: 5.9,
+ votes: 59640,
+ running_times: 8040,
+ },
+ {
+ title: "Fish Tank",
+ year: 2009,
+ rating: 7.3,
+ votes: 51982,
+ running_times: 7380,
+ },
+ {
+ title: "Fist Fight",
+ year: 2017,
+ rating: 5.6,
+ votes: 25330,
+ running_times: 5460,
+ },
+ {
+ title: "Five Easy Pieces",
+ year: 1970,
+ rating: 7.5,
+ votes: 27948,
+ running_times: 5880,
+ },
+ {
+ title: "Five Minarets in New York",
+ year: 2010,
+ rating: 5.9,
+ votes: 12857,
+ running_times: 7140,
+ },
+ {
+ title: "Five Minutes of Heaven",
+ year: 2009,
+ rating: 6.7,
+ votes: 11230,
+ running_times: 5340,
+ },
+ {
+ title: "Flags of Our Fathers",
+ year: 2006,
+ rating: 7.1,
+ votes: 107000,
+ running_times: 8100,
+ },
+ {
+ title: "Flash Gordon",
+ year: 1980,
+ rating: 6.5,
+ votes: 41587,
+ running_times: 6660,
+ },
+ {
+ title: "Flash of Genius",
+ year: 2008,
+ rating: 7,
+ votes: 15199,
+ running_times: 7140,
+ },
+ {
+ title: "Flashbacks of a Fool",
+ year: 2008,
+ rating: 6.8,
+ votes: 10970,
+ running_times: 6540,
+ },
+ {
+ title: "Flashdance",
+ year: 1983,
+ rating: 6.1,
+ votes: 39098,
+ running_times: 5700,
+ },
+ {
+ title: "Flatliners",
+ year: 1990,
+ rating: 6.6,
+ votes: 68965,
+ running_times: 6900,
+ },
+ {
+ title: "Flawless",
+ year: 1999,
+ rating: 6.4,
+ votes: 15528,
+ running_times: 6720,
+ },
+ {
+ title: "Flawless",
+ year: 2007,
+ rating: 6.8,
+ votes: 20643,
+ running_times: 6480,
+ },
+ {
+ title: "Flesh+Blood",
+ year: 1985,
+ rating: 6.7,
+ votes: 13910,
+ running_times: 7680,
+ },
+ {
+ title: "Fletch",
+ year: 1985,
+ rating: 6.9,
+ votes: 40497,
+ running_times: 5880,
+ },
+ {
+ title: "Fletch Lives",
+ year: 1989,
+ rating: 6.1,
+ votes: 16589,
+ running_times: 5700,
+ },
+ {
+ title: "Flickan som lekte med elden",
+ year: 2009,
+ rating: 7.2,
+ votes: 79566,
+ running_times: 10980,
+ },
+ {
+ title: "Flight",
+ year: 2012,
+ rating: 7.3,
+ votes: 283505,
+ running_times: 8280,
+ },
+ {
+ title: "Flight 7500",
+ year: 2014,
+ rating: 4.8,
+ votes: 12670,
+ running_times: 5820,
+ },
+ {
+ title: "Flight of the Navigator",
+ year: 1986,
+ rating: 6.9,
+ votes: 37089,
+ running_times: 5400,
+ },
+ {
+ title: "Flight of the Phoenix",
+ year: 2004,
+ rating: 6.1,
+ votes: 47745,
+ running_times: 6780,
+ },
+ {
+ title: "Flightplan",
+ year: 2005,
+ rating: 6.3,
+ votes: 135399,
+ running_times: 5880,
+ },
+ {
+ title: "Flipped",
+ year: 2010,
+ rating: 7.7,
+ votes: 68344,
+ running_times: 5400,
+ },
+ {
+ title: "Flirting with Disaster",
+ year: 1996,
+ rating: 6.8,
+ votes: 15896,
+ running_times: 5520,
+ },
+ {
+ title: "Florence Foster Jenkins",
+ year: 2016,
+ rating: 6.9,
+ votes: 37157,
+ running_times: 6660,
+ },
+ {
+ title: "Flubber",
+ year: 1997,
+ rating: 5.2,
+ votes: 70930,
+ running_times: 5580,
+ },
+ {
+ title: "Flushed Away",
+ year: 2006,
+ rating: 6.6,
+ votes: 93636,
+ running_times: 5100,
+ },
+ {
+ title: "Fly Away Home",
+ year: 1996,
+ rating: 6.8,
+ votes: 20944,
+ running_times: 6420,
+ },
+ {
+ title: "Flyboys",
+ year: 2006,
+ rating: 6.5,
+ votes: 37640,
+ running_times: 8400,
+ },
+ {
+ title: "Flypaper",
+ year: 2011,
+ rating: 6.4,
+ votes: 28968,
+ running_times: 5220,
+ },
+ {
+ title: "Focus",
+ year: 2015,
+ rating: 6.6,
+ votes: 174745,
+ running_times: 6300,
+ },
+ {
+ title: "Following",
+ year: 1998,
+ rating: 7.6,
+ votes: 72994,
+ running_times: 4140,
+ },
+ {
+ title: "Food, Inc.",
+ year: 2008,
+ rating: 7.8,
+ votes: 45811,
+ running_times: 5640,
+ },
+ {
+ title: "Fool's Gold",
+ year: 2008,
+ rating: 5.7,
+ votes: 64621,
+ running_times: 6720,
+ },
+ {
+ title: "Fools Rush In",
+ year: 1997,
+ rating: 6,
+ votes: 29168,
+ running_times: 6540,
+ },
+ {
+ title: "Footloose",
+ year: 1984,
+ rating: 6.5,
+ votes: 57957,
+ running_times: 6420,
+ },
+ {
+ title: "Footloose",
+ year: 2011,
+ rating: 5.9,
+ votes: 40438,
+ running_times: 6780,
+ },
+ {
+ title: "For Love of the Game",
+ year: 1999,
+ rating: 6.6,
+ votes: 27712,
+ running_times: 8220,
+ },
+ {
+ title: "For Love or Money",
+ year: 1993,
+ rating: 6.1,
+ votes: 10127,
+ running_times: 5760,
+ },
+ {
+ title: "For Your Consideration",
+ year: 2006,
+ rating: 6.3,
+ votes: 12713,
+ running_times: 5160,
+ },
+ {
+ title: "For Your Eyes Only",
+ year: 1981,
+ rating: 6.8,
+ votes: 77968,
+ running_times: 7620,
+ },
+ {
+ title: "For a Good Time, Call...",
+ year: 2012,
+ rating: 6,
+ votes: 14357,
+ running_times: 5280,
+ },
+ {
+ title: "Forbidden Planet",
+ year: 1956,
+ rating: 7.7,
+ votes: 37834,
+ running_times: 5880,
+ },
+ {
+ title: "Force 10 from Navarone",
+ year: 1978,
+ rating: 6.3,
+ votes: 14403,
+ running_times: 7560,
+ },
+ {
+ title: "Forces of Nature",
+ year: 1999,
+ rating: 5.4,
+ votes: 28462,
+ running_times: 6300,
+ },
+ {
+ title: "Forces spéciales",
+ year: 2011,
+ rating: 6.4,
+ votes: 16027,
+ running_times: 6540,
+ },
+ {
+ title: "Foreign Correspondent",
+ year: 1940,
+ rating: 7.6,
+ votes: 15032,
+ running_times: 7200,
+ },
+ {
+ title: "Forever Young",
+ year: 1992,
+ rating: 6.3,
+ votes: 39195,
+ running_times: 6120,
+ },
+ {
+ title: "Forgetting Sarah Marshall",
+ year: 2008,
+ rating: 7.2,
+ votes: 232023,
+ running_times: 7080,
+ },
+ {
+ title: "Forrest Gump",
+ year: 1994,
+ rating: 8.8,
+ votes: 1425423,
+ running_times: 8520,
+ },
+ {
+ title: "Fort Apache",
+ year: 1948,
+ rating: 7.6,
+ votes: 13695,
+ running_times: 7680,
+ },
+ {
+ title: "Fortress",
+ year: 1992,
+ rating: 5.9,
+ votes: 24762,
+ running_times: 5700,
+ },
+ {
+ title: "Forushande",
+ year: 2016,
+ rating: 7.9,
+ votes: 30515,
+ running_times: 7440,
+ },
+ {
+ title: "Foul Play",
+ year: 1978,
+ rating: 6.8,
+ votes: 11507,
+ running_times: 6960,
+ },
+ {
+ title: "Four Brothers",
+ year: 2005,
+ rating: 6.9,
+ votes: 118156,
+ running_times: 6540,
+ },
+ {
+ title: "Four Christmases",
+ year: 2008,
+ rating: 5.6,
+ votes: 53208,
+ running_times: 5280,
+ },
+ {
+ title: "Four Lions",
+ year: 2010,
+ rating: 7.3,
+ votes: 61920,
+ running_times: 5820,
+ },
+ {
+ title: "Four Rooms",
+ year: 1995,
+ rating: 6.7,
+ votes: 84665,
+ running_times: 6600,
+ },
+ {
+ title: "Four Weddings and a Funeral",
+ year: 1994,
+ rating: 7.1,
+ votes: 116667,
+ running_times: 7020,
+ },
+ {
+ title: "Foxcatcher",
+ year: 2014,
+ rating: 7,
+ votes: 118206,
+ running_times: 8040,
+ },
+ {
+ title: "Fracture",
+ year: 2007,
+ rating: 7.2,
+ votes: 155144,
+ running_times: 6780,
+ },
+ {
+ title: "Frailty",
+ year: 2001,
+ rating: 7.3,
+ votes: 66362,
+ running_times: 6000,
+ },
+ {
+ title: "Frances Ha",
+ year: 2012,
+ rating: 7.4,
+ votes: 51589,
+ running_times: 5160,
+ },
+ { title: "Frank", year: 2014, rating: 7, votes: 63921, running_times: 5700 },
+ {
+ title: "Frankenstein",
+ year: 1931,
+ rating: 7.9,
+ votes: 53795,
+ running_times: 4200,
+ },
+ {
+ title: "Frankenweenie",
+ year: 2012,
+ rating: 7,
+ votes: 82174,
+ running_times: 5220,
+ },
+ {
+ title: "Frankie and Johnny",
+ year: 1991,
+ rating: 6.7,
+ votes: 24600,
+ running_times: 7080,
+ },
+ {
+ title: "Franklyn",
+ year: 2008,
+ rating: 6.2,
+ votes: 15585,
+ running_times: 5880,
+ },
+ {
+ title: "Frantic",
+ year: 1988,
+ rating: 6.9,
+ votes: 42109,
+ running_times: 7200,
+ },
+ {
+ title: "Freaks",
+ year: 1932,
+ rating: 7.9,
+ votes: 35354,
+ running_times: 3840,
+ },
+ {
+ title: "Freaky Friday",
+ year: 2003,
+ rating: 6.2,
+ votes: 106102,
+ running_times: 5820,
+ },
+ {
+ title: "Fred Claus",
+ year: 2007,
+ rating: 5.6,
+ votes: 34482,
+ running_times: 6960,
+ },
+ {
+ title: "Freddy Got Fingered",
+ year: 2001,
+ rating: 4.5,
+ votes: 41471,
+ running_times: 5220,
+ },
+ {
+ title: "Freddy vs. Jason",
+ year: 2003,
+ rating: 5.8,
+ votes: 96473,
+ running_times: 5820,
+ },
+ {
+ title: "Freddy's Dead: The Final Nightmare",
+ year: 1991,
+ rating: 4.9,
+ votes: 34194,
+ running_times: 6300,
+ },
+ {
+ title: "Free Birds",
+ year: 2013,
+ rating: 5.9,
+ votes: 19574,
+ running_times: 5460,
+ },
+ {
+ title: "Free Fire",
+ year: 2016,
+ rating: 6.5,
+ votes: 25682,
+ running_times: 5460,
+ },
+ {
+ title: "Free State of Jones",
+ year: 2016,
+ rating: 6.9,
+ votes: 36148,
+ running_times: 8340,
+ },
+ {
+ title: "Free Willy",
+ year: 1993,
+ rating: 5.9,
+ votes: 56881,
+ running_times: 6720,
+ },
+ {
+ title: "Free Willy 2: The Adventure Home",
+ year: 1995,
+ rating: 4.9,
+ votes: 14085,
+ running_times: 5700,
+ },
+ {
+ title: "Free to Play",
+ year: 2014,
+ rating: 8,
+ votes: 12429,
+ running_times: 4500,
+ },
+ {
+ title: "Freedom Writers",
+ year: 2007,
+ rating: 7.5,
+ votes: 57530,
+ running_times: 7380,
+ },
+ {
+ title: "Freedomland",
+ year: 2006,
+ rating: 5.1,
+ votes: 14015,
+ running_times: 6780,
+ },
+ {
+ title: "Freejack",
+ year: 1992,
+ rating: 5.3,
+ votes: 12999,
+ running_times: 6600,
+ },
+ {
+ title: "Freeway",
+ year: 1996,
+ rating: 6.9,
+ votes: 23361,
+ running_times: 6240,
+ },
+ {
+ title: "French Connection II",
+ year: 1975,
+ rating: 6.8,
+ votes: 13988,
+ running_times: 7140,
+ },
+ {
+ title: "French Kiss",
+ year: 1995,
+ rating: 6.6,
+ votes: 41271,
+ running_times: 6660,
+ },
+ {
+ title: "Frenzy",
+ year: 1972,
+ rating: 7.5,
+ votes: 34045,
+ running_times: 6960,
+ },
+ {
+ title: "Frequency",
+ year: 2000,
+ rating: 7.4,
+ votes: 88661,
+ running_times: 7080,
+ },
+ {
+ title: "Frequently Asked Questions About Time Travel",
+ year: 2009,
+ rating: 7.1,
+ votes: 28572,
+ running_times: 4980,
+ },
+ {
+ title: "Fresh",
+ year: 1994,
+ rating: 7.6,
+ votes: 10428,
+ running_times: 6840,
+ },
+ {
+ title: "Frida",
+ year: 2002,
+ rating: 7.4,
+ votes: 67944,
+ running_times: 7380,
+ },
+ {
+ title: "Friday",
+ year: 1995,
+ rating: 7.3,
+ votes: 83187,
+ running_times: 5820,
+ },
+ {
+ title: "Friday After Next",
+ year: 2002,
+ rating: 5.8,
+ votes: 21533,
+ running_times: 5100,
+ },
+ {
+ title: "Friday Night Lights",
+ year: 2004,
+ rating: 7.3,
+ votes: 50876,
+ running_times: 7080,
+ },
+ {
+ title: "Friday the 13th",
+ year: 1980,
+ rating: 6.5,
+ votes: 94488,
+ running_times: 5700,
+ },
+ {
+ title: "Friday the 13th",
+ year: 2009,
+ rating: 5.6,
+ votes: 82090,
+ running_times: 6360,
+ },
+ {
+ title: "Friday the 13th Part 2",
+ year: 1981,
+ rating: 6.1,
+ votes: 45589,
+ running_times: 5220,
+ },
+ {
+ title: "Friday the 13th Part III",
+ year: 1982,
+ rating: 5.7,
+ votes: 36832,
+ running_times: 5700,
+ },
+ {
+ title: "Friday the 13th Part VII: The New Blood",
+ year: 1988,
+ rating: 5.3,
+ votes: 24702,
+ running_times: 5280,
+ },
+ {
+ title: "Friday the 13th Part VIII: Jason Takes Manhattan",
+ year: 1989,
+ rating: 4.6,
+ votes: 26121,
+ running_times: 6000,
+ },
+ {
+ title: "Friday the 13th: A New Beginning",
+ year: 1985,
+ rating: 4.8,
+ votes: 25750,
+ running_times: 5520,
+ },
+ {
+ title: "Friday the 13th: The Final Chapter",
+ year: 1984,
+ rating: 6,
+ votes: 34069,
+ running_times: 5820,
+ },
+ {
+ title: "Fried Green Tomatoes",
+ year: 1991,
+ rating: 7.7,
+ votes: 56574,
+ running_times: 8220,
+ },
+ {
+ title: "Friend Request",
+ year: 2016,
+ rating: 5.4,
+ votes: 16174,
+ running_times: 5520,
+ },
+ {
+ title: "Friends with Benefits",
+ year: 2011,
+ rating: 6.6,
+ votes: 295776,
+ running_times: 6540,
+ },
+ {
+ title: "Friends with Kids",
+ year: 2011,
+ rating: 6.2,
+ votes: 37913,
+ running_times: 6420,
+ },
+ {
+ title: "Friends with Money",
+ year: 2006,
+ rating: 5.8,
+ votes: 21365,
+ running_times: 5280,
+ },
+ {
+ title: "Fright Night",
+ year: 1985,
+ rating: 7.1,
+ votes: 48068,
+ running_times: 6360,
+ },
+ {
+ title: "Fright Night",
+ year: 2011,
+ rating: 6.4,
+ votes: 90148,
+ running_times: 6360,
+ },
+ {
+ title: "From Beyond",
+ year: 1986,
+ rating: 6.7,
+ votes: 17125,
+ running_times: 5160,
+ },
+ {
+ title: "From Dusk Till Dawn",
+ year: 1996,
+ rating: 7.3,
+ votes: 239943,
+ running_times: 6480,
+ },
+ {
+ title: "From Hell",
+ year: 2001,
+ rating: 6.8,
+ votes: 132974,
+ running_times: 7320,
+ },
+ {
+ title: "From Here to Eternity",
+ year: 1953,
+ rating: 7.7,
+ votes: 36695,
+ running_times: 7080,
+ },
+ {
+ title: "From Justin to Kelly",
+ year: 2003,
+ rating: 2.1,
+ votes: 24027,
+ running_times: 5400,
+ },
+ {
+ title: "From Paris with Love",
+ year: 2010,
+ rating: 6.5,
+ votes: 102829,
+ running_times: 5520,
+ },
+ {
+ title: "From Prada to Nada",
+ year: 2011,
+ rating: 5.5,
+ votes: 12822,
+ running_times: 6420,
+ },
+ {
+ title: "From Russia with Love",
+ year: 1963,
+ rating: 7.5,
+ votes: 97600,
+ running_times: 6900,
+ },
+ {
+ title: "Frost/Nixon",
+ year: 2008,
+ rating: 7.7,
+ votes: 92853,
+ running_times: 7320,
+ },
+ {
+ title: "Frozen",
+ year: 2010,
+ rating: 6.2,
+ votes: 57941,
+ running_times: 5580,
+ },
+ {
+ title: "Frozen",
+ year: 2013,
+ rating: 7.5,
+ votes: 470780,
+ running_times: 6120,
+ },
+ {
+ title: "Frozen Fever",
+ year: 2015,
+ rating: 7,
+ votes: 10101,
+ running_times: 480,
+ },
+ {
+ title: "Frozen River",
+ year: 2008,
+ rating: 7.2,
+ votes: 22666,
+ running_times: 5820,
+ },
+ {
+ title: "Fruitvale Station",
+ year: 2013,
+ rating: 7.5,
+ votes: 60680,
+ running_times: 5100,
+ },
+ {
+ title: "Frágiles",
+ year: 2005,
+ rating: 6.1,
+ votes: 13897,
+ running_times: 6060,
+ },
+ {
+ title: "Full Metal Jacket",
+ year: 1987,
+ rating: 8.3,
+ votes: 545907,
+ running_times: 6960,
+ },
+ {
+ title: "Fun Size",
+ year: 2012,
+ rating: 5.4,
+ votes: 12179,
+ running_times: 5160,
+ },
+ {
+ title: "Fun with Dick and Jane",
+ year: 2005,
+ rating: 6.1,
+ votes: 118363,
+ running_times: 5400,
+ },
+ {
+ title: "Funny Face",
+ year: 1957,
+ rating: 7.1,
+ votes: 21425,
+ running_times: 6180,
+ },
+ {
+ title: "Funny Farm",
+ year: 1988,
+ rating: 6.1,
+ votes: 16500,
+ running_times: 6060,
+ },
+ {
+ title: "Funny Games",
+ year: 2007,
+ rating: 6.5,
+ votes: 77100,
+ running_times: 6660,
+ },
+ {
+ title: "Funny Girl",
+ year: 1968,
+ rating: 7.6,
+ votes: 14783,
+ running_times: 9300,
+ },
+ {
+ title: "Funny People",
+ year: 2009,
+ rating: 6.3,
+ votes: 104820,
+ running_times: 9180,
+ },
+ {
+ title: "Fur: An Imaginary Portrait of Diane Arbus",
+ year: 2006,
+ rating: 6.5,
+ votes: 13935,
+ running_times: 7320,
+ },
+ {
+ title: "Furious 6",
+ year: 2013,
+ rating: 7.1,
+ votes: 327726,
+ running_times: 7860,
+ },
+ {
+ title: "Furious Seven",
+ year: 2015,
+ rating: 7.2,
+ votes: 313301,
+ running_times: 8400,
+ },
+ {
+ title: "Furry Vengeance",
+ year: 2010,
+ rating: 3.8,
+ votes: 13359,
+ running_times: 5520,
+ },
+ {
+ title: "Fury",
+ year: 2014,
+ rating: 7.6,
+ votes: 346870,
+ running_times: 8040,
+ },
+ {
+ title: "G-Force",
+ year: 2009,
+ rating: 5.1,
+ votes: 35892,
+ running_times: 5280,
+ },
+ {
+ title: "G.I. Jane",
+ year: 1997,
+ rating: 5.9,
+ votes: 64842,
+ running_times: 7500,
+ },
+ {
+ title: "G.I. Joe: Retaliation",
+ year: 2013,
+ rating: 5.8,
+ votes: 155817,
+ running_times: 7320,
+ },
+ {
+ title: "G.I. Joe: The Rise of Cobra",
+ year: 2009,
+ rating: 5.8,
+ votes: 183800,
+ running_times: 7080,
+ },
+ {
+ title: "G.O.R.A.",
+ year: 2004,
+ rating: 8,
+ votes: 41034,
+ running_times: 7620,
+ },
+ {
+ title: "Gabriel",
+ year: 2007,
+ rating: 5.7,
+ votes: 12850,
+ running_times: 6840,
+ },
+ {
+ title: "Galaxy Quest",
+ year: 1999,
+ rating: 7.3,
+ votes: 131167,
+ running_times: 6120,
+ },
+ {
+ title: "Gallipoli",
+ year: 1981,
+ rating: 7.5,
+ votes: 31959,
+ running_times: 6600,
+ },
+ {
+ title: "Gambit",
+ year: 2012,
+ rating: 5.7,
+ votes: 20482,
+ running_times: 6000,
+ },
+ {
+ title: "Game of Death",
+ year: 1978,
+ rating: 6.1,
+ votes: 13710,
+ running_times: 6180,
+ },
+ {
+ title: "Gamer",
+ year: 2009,
+ rating: 5.8,
+ votes: 119266,
+ running_times: 5700,
+ },
+ {
+ title: "Gandhi",
+ year: 1982,
+ rating: 8.1,
+ votes: 189632,
+ running_times: 11460,
+ },
+ {
+ title: "Gangs of New York",
+ year: 2002,
+ rating: 7.5,
+ votes: 344488,
+ running_times: 10020,
+ },
+ {
+ title: "Gangster No. 1",
+ year: 2000,
+ rating: 6.8,
+ votes: 11589,
+ running_times: 6180,
+ },
+ {
+ title: "Gangster Squad",
+ year: 2013,
+ rating: 6.7,
+ votes: 185855,
+ running_times: 6780,
+ },
+ {
+ title: "Garden State",
+ year: 2004,
+ rating: 7.5,
+ votes: 195068,
+ running_times: 6120,
+ },
+ {
+ title: "Garfield",
+ year: 2004,
+ rating: 5,
+ votes: 65785,
+ running_times: 4800,
+ },
+ {
+ title: "Garfield: A Tail of Two Kitties",
+ year: 2006,
+ rating: 5,
+ votes: 31226,
+ running_times: 5160,
+ },
+ {
+ title: "Gaslight",
+ year: 1944,
+ rating: 7.9,
+ votes: 18810,
+ running_times: 6840,
+ },
+ {
+ title: "Gattaca",
+ year: 1997,
+ rating: 7.8,
+ votes: 241382,
+ running_times: 6360,
+ },
+ {
+ title: "Gegen die Wand",
+ year: 2004,
+ rating: 8,
+ votes: 44019,
+ running_times: 7260,
+ },
+ {
+ title: "Genius",
+ year: 2016,
+ rating: 6.5,
+ votes: 12867,
+ running_times: 6240,
+ },
+ {
+ title: "Gentleman's Agreement",
+ year: 1947,
+ rating: 7.4,
+ votes: 12227,
+ running_times: 7080,
+ },
+ {
+ title: "Gentlemen Prefer Blondes",
+ year: 1953,
+ rating: 7.2,
+ votes: 25540,
+ running_times: 5460,
+ },
+ {
+ title: "George of the Jungle",
+ year: 1997,
+ rating: 5.4,
+ votes: 60896,
+ running_times: 5520,
+ },
+ {
+ title: "Georgia Rule",
+ year: 2007,
+ rating: 5.9,
+ votes: 21661,
+ running_times: 6780,
+ },
+ {
+ title: "Geostorm",
+ year: 2017,
+ rating: 5.5,
+ votes: 25413,
+ running_times: 6540,
+ },
+ {
+ title: "Gerald's Game",
+ year: 2017,
+ rating: 6.7,
+ votes: 31247,
+ running_times: 6180,
+ },
+ {
+ title: "Gerry",
+ year: 2002,
+ rating: 6.2,
+ votes: 16037,
+ running_times: 6180,
+ },
+ {
+ title: "Get Carter",
+ year: 1971,
+ rating: 7.5,
+ votes: 23892,
+ running_times: 6720,
+ },
+ {
+ title: "Get Carter",
+ year: 2000,
+ rating: 5.1,
+ votes: 29067,
+ running_times: 6120,
+ },
+ {
+ title: "Get Hard",
+ year: 2015,
+ rating: 6,
+ votes: 100323,
+ running_times: 6420,
+ },
+ {
+ title: "Get Him to the Greek",
+ year: 2010,
+ rating: 6.4,
+ votes: 154875,
+ running_times: 6840,
+ },
+ {
+ title: "Get Low",
+ year: 2009,
+ rating: 7.1,
+ votes: 20115,
+ running_times: 6180,
+ },
+ {
+ title: "Get Out",
+ year: 2017,
+ rating: 7.7,
+ votes: 210820,
+ running_times: 6240,
+ },
+ {
+ title: "Get Over It",
+ year: 2001,
+ rating: 5.8,
+ votes: 16318,
+ running_times: 5220,
+ },
+ {
+ title: "Get Real",
+ year: 1998,
+ rating: 7.6,
+ votes: 11209,
+ running_times: 6480,
+ },
+ {
+ title: "Get Rich or Die Tryin'",
+ year: 2005,
+ rating: 5.1,
+ votes: 39021,
+ running_times: 7020,
+ },
+ {
+ title: "Get Shorty",
+ year: 1995,
+ rating: 6.9,
+ votes: 66881,
+ running_times: 6300,
+ },
+ {
+ title: "Get Smart",
+ year: 2008,
+ rating: 6.5,
+ votes: 178169,
+ running_times: 6600,
+ },
+ {
+ title: "Get a Job",
+ year: 2016,
+ rating: 5.3,
+ votes: 17080,
+ running_times: 4980,
+ },
+ {
+ title: "Get on Up",
+ year: 2014,
+ rating: 6.9,
+ votes: 17525,
+ running_times: 8340,
+ },
+ {
+ title: "Get the Gringo",
+ year: 2012,
+ rating: 7,
+ votes: 93330,
+ running_times: 5760,
+ },
+ {
+ title: "Getaway",
+ year: 2013,
+ rating: 4.4,
+ votes: 20947,
+ running_times: 5400,
+ },
+ {
+ title: "Gettysburg",
+ year: 1993,
+ rating: 7.7,
+ votes: 23119,
+ running_times: 16260,
+ },
+ { title: "Ghost", year: 1990, rating: 7, votes: 166395, running_times: 7620 },
+ {
+ title: "Ghost Dog: The Way of the Samurai",
+ year: 1999,
+ rating: 7.5,
+ votes: 75463,
+ running_times: 6960,
+ },
+ {
+ title: "Ghost Rider",
+ year: 2007,
+ rating: 5.2,
+ votes: 196160,
+ running_times: 7380,
+ },
+ {
+ title: "Ghost Rider: Spirit of Vengeance",
+ year: 2011,
+ rating: 4.3,
+ votes: 95767,
+ running_times: 5760,
+ },
+ {
+ title: "Ghost Ship",
+ year: 2002,
+ rating: 5.5,
+ votes: 81267,
+ running_times: 5460,
+ },
+ {
+ title: "Ghost Town",
+ year: 2008,
+ rating: 6.7,
+ votes: 63420,
+ running_times: 6120,
+ },
+ {
+ title: "Ghost World",
+ year: 2001,
+ rating: 7.4,
+ votes: 102347,
+ running_times: 6660,
+ },
+ {
+ title: "Ghost in the Shell",
+ year: 2017,
+ rating: 6.4,
+ votes: 134199,
+ running_times: 6420,
+ },
+ {
+ title: "Ghostbusters",
+ year: 1984,
+ rating: 7.8,
+ votes: 299502,
+ running_times: 6300,
+ },
+ {
+ title: "Ghostbusters",
+ year: 2016,
+ rating: 5.3,
+ votes: 160952,
+ running_times: 8040,
+ },
+ {
+ title: "Ghostbusters II",
+ year: 1989,
+ rating: 6.5,
+ votes: 154653,
+ running_times: 6480,
+ },
+ {
+ title: "Ghosts of Girlfriends Past",
+ year: 2009,
+ rating: 5.8,
+ votes: 72653,
+ running_times: 6000,
+ },
+ {
+ title: "Ghosts of Mars",
+ year: 2001,
+ rating: 4.9,
+ votes: 45631,
+ running_times: 5880,
+ },
+ {
+ title: "Giant",
+ year: 1956,
+ rating: 7.7,
+ votes: 28660,
+ running_times: 12060,
+ },
+ {
+ title: "Gifted",
+ year: 2017,
+ rating: 7.6,
+ votes: 53458,
+ running_times: 6060,
+ },
+ { title: "Gigi", year: 1958, rating: 6.8, votes: 16227, running_times: 6900 },
+ {
+ title: "Gigli",
+ year: 2003,
+ rating: 2.4,
+ votes: 43066,
+ running_times: 7260,
+ },
+ {
+ title: "Gilda",
+ year: 1946,
+ rating: 7.8,
+ votes: 22667,
+ running_times: 6600,
+ },
+ {
+ title: "Gin gwai",
+ year: 2002,
+ rating: 6.7,
+ votes: 25927,
+ running_times: 6600,
+ },
+ {
+ title: "Ging chaat goo si 4: Ji gaan daan yam mo",
+ year: 1996,
+ rating: 6.6,
+ votes: 16216,
+ running_times: 6420,
+ },
+ {
+ title: "Ging chaat goo si III: Chiu kup ging chaat",
+ year: 1992,
+ rating: 6.9,
+ votes: 16239,
+ running_times: 5700,
+ },
+ {
+ title: "Ginger Snaps",
+ year: 2000,
+ rating: 6.8,
+ votes: 35786,
+ running_times: 6480,
+ },
+ {
+ title: "Ginger Snaps 2: Unleashed",
+ year: 2004,
+ rating: 6.5,
+ votes: 11059,
+ running_times: 5640,
+ },
+ {
+ title: "Girl Most Likely",
+ year: 2012,
+ rating: 5.8,
+ votes: 13274,
+ running_times: 6180,
+ },
+ {
+ title: "Girl with a Pearl Earring",
+ year: 2003,
+ rating: 7,
+ votes: 64538,
+ running_times: 6000,
+ },
+ {
+ title: "Girl, Interrupted",
+ year: 1999,
+ rating: 7.4,
+ votes: 137077,
+ running_times: 7620,
+ },
+ {
+ title: "Girls Trip",
+ year: 2017,
+ rating: 6.3,
+ votes: 14944,
+ running_times: 7320,
+ },
+ {
+ title: "Gladiator",
+ year: 2000,
+ rating: 8.5,
+ votes: 1095540,
+ running_times: 10260,
+ },
+ {
+ title: "Glengarry Glen Ross",
+ year: 1992,
+ rating: 7.8,
+ votes: 83225,
+ running_times: 6000,
+ },
+ {
+ title: "Glitter",
+ year: 2001,
+ rating: 2.2,
+ votes: 20105,
+ running_times: 6240,
+ },
+ {
+ title: "Glory",
+ year: 1989,
+ rating: 7.9,
+ votes: 108006,
+ running_times: 7320,
+ },
+ {
+ title: "Glory Road",
+ year: 2006,
+ rating: 7.2,
+ votes: 37469,
+ running_times: 7080,
+ },
+ {
+ title: "Gnomeo & Juliet",
+ year: 2011,
+ rating: 6,
+ votes: 45741,
+ running_times: 5040,
+ },
+ { title: "Go", year: 1999, rating: 7.3, votes: 61798, running_times: 6120 },
+ {
+ title: "Goal II: Living the Dream",
+ year: 2007,
+ rating: 5.9,
+ votes: 28017,
+ running_times: 6900,
+ },
+ {
+ title: "Goal!",
+ year: 2005,
+ rating: 6.7,
+ votes: 54338,
+ running_times: 7080,
+ },
+ {
+ title: "God Bless America",
+ year: 2011,
+ rating: 7.2,
+ votes: 63613,
+ running_times: 6300,
+ },
+ {
+ title: "God's Not Dead",
+ year: 2014,
+ rating: 4.8,
+ votes: 35130,
+ running_times: 6780,
+ },
+ {
+ title: "Gods and Generals",
+ year: 2003,
+ rating: 6.3,
+ votes: 13902,
+ running_times: 16800,
+ },
+ {
+ title: "Gods and Monsters",
+ year: 1998,
+ rating: 7.5,
+ votes: 26224,
+ running_times: 6300,
+ },
+ {
+ title: "Gods of Egypt",
+ year: 2016,
+ rating: 5.4,
+ votes: 80478,
+ running_times: 7620,
+ },
+ {
+ title: "Godsend",
+ year: 2004,
+ rating: 4.8,
+ votes: 23240,
+ running_times: 6120,
+ },
+ {
+ title: "Godzilla",
+ year: 1998,
+ rating: 5.3,
+ votes: 161405,
+ running_times: 8340,
+ },
+ {
+ title: "Godzilla",
+ year: 2014,
+ rating: 6.4,
+ votes: 326395,
+ running_times: 7380,
+ },
+ {
+ title: "Going Clear: Scientology & the Prison of Belief",
+ year: 2015,
+ rating: 8.1,
+ votes: 30417,
+ running_times: 7140,
+ },
+ {
+ title: "Going Overboard",
+ year: 1989,
+ rating: 1.9,
+ votes: 11122,
+ running_times: 5940,
+ },
+ {
+ title: "Going in Style",
+ year: 2017,
+ rating: 6.6,
+ votes: 46139,
+ running_times: 5760,
+ },
+ {
+ title: "Going the Distance",
+ year: 2010,
+ rating: 6.3,
+ votes: 52785,
+ running_times: 6120,
+ },
+ { title: "Gold", year: 2016, rating: 6.7, votes: 37148, running_times: 7200 },
+ {
+ title: "GoldenEye",
+ year: 1995,
+ rating: 7.2,
+ votes: 211375,
+ running_times: 7800,
+ },
+ {
+ title: "Goldfinger",
+ year: 1964,
+ rating: 7.8,
+ votes: 149047,
+ running_times: 6600,
+ },
+ { title: "Gone", year: 2012, rating: 5.9, votes: 37015, running_times: 5640 },
+ {
+ title: "Gone Baby Gone",
+ year: 2007,
+ rating: 7.7,
+ votes: 216054,
+ running_times: 6840,
+ },
+ {
+ title: "Gone Girl",
+ year: 2014,
+ rating: 8.1,
+ votes: 673078,
+ running_times: 8940,
+ },
+ {
+ title: "Gone in Sixty Seconds",
+ year: 2000,
+ rating: 6.5,
+ votes: 232755,
+ running_times: 7620,
+ },
+ {
+ title: "Gone with the Wind",
+ year: 1939,
+ rating: 8.2,
+ votes: 238572,
+ running_times: 14280,
+ },
+ {
+ title: "Gongdong gyeongbi guyeok JSA",
+ year: 2000,
+ rating: 7.9,
+ votes: 21127,
+ running_times: 6600,
+ },
+ {
+ title: "Good Burger",
+ year: 1997,
+ rating: 5.7,
+ votes: 22472,
+ running_times: 5700,
+ },
+ {
+ title: "Good Bye Lenin!",
+ year: 2003,
+ rating: 7.7,
+ votes: 122384,
+ running_times: 7260,
+ },
+ {
+ title: "Good Kill",
+ year: 2014,
+ rating: 6.4,
+ votes: 19133,
+ running_times: 6120,
+ },
+ {
+ title: "Good Luck Chuck",
+ year: 2007,
+ rating: 5.6,
+ votes: 78036,
+ running_times: 6060,
+ },
+ {
+ title: "Good Morning, Vietnam",
+ year: 1987,
+ rating: 7.3,
+ votes: 108279,
+ running_times: 7260,
+ },
+ {
+ title: "Good Night, and Good Luck.",
+ year: 2005,
+ rating: 7.5,
+ votes: 87338,
+ running_times: 5580,
+ },
+ {
+ title: "Good People",
+ year: 2014,
+ rating: 5.5,
+ votes: 13131,
+ running_times: 5400,
+ },
+ {
+ title: "Good Time",
+ year: 2017,
+ rating: 7.4,
+ votes: 17035,
+ running_times: 6060,
+ },
+ {
+ title: "Good Will Hunting",
+ year: 1997,
+ rating: 8.3,
+ votes: 686934,
+ running_times: 7560,
+ },
+ {
+ title: "Goodbye Bafana",
+ year: 2007,
+ rating: 7.1,
+ votes: 10712,
+ running_times: 7080,
+ },
+ {
+ title: "Goodfellas",
+ year: 1990,
+ rating: 8.7,
+ votes: 813765,
+ running_times: 8760,
+ },
+ { title: "Goon", year: 2011, rating: 6.8, votes: 76154, running_times: 5520 },
+ {
+ title: "Goosebumps",
+ year: 2015,
+ rating: 6.3,
+ votes: 61471,
+ running_times: 6180,
+ },
+ {
+ title: "Gorillas in the Mist: The Story of Dian Fossey",
+ year: 1988,
+ rating: 7,
+ votes: 20600,
+ running_times: 7740,
+ },
+ {
+ title: "Gorky Park",
+ year: 1983,
+ rating: 6.8,
+ votes: 10348,
+ running_times: 7680,
+ },
+ {
+ title: "Gosford Park",
+ year: 2001,
+ rating: 7.3,
+ votes: 69204,
+ running_times: 7860,
+ },
+ {
+ title: "Gossip",
+ year: 2000,
+ rating: 5.9,
+ votes: 13108,
+ running_times: 5400,
+ },
+ {
+ title: "Gothika",
+ year: 2003,
+ rating: 5.8,
+ votes: 95216,
+ running_times: 5880,
+ },
+ {
+ title: "Goya's Ghosts",
+ year: 2006,
+ rating: 6.9,
+ votes: 26554,
+ running_times: 6780,
+ },
+ {
+ title: "Grabbers",
+ year: 2012,
+ rating: 6.3,
+ votes: 14687,
+ running_times: 5640,
+ },
+ {
+ title: "Grace of Monaco",
+ year: 2014,
+ rating: 5.7,
+ votes: 14565,
+ running_times: 6180,
+ },
+ {
+ title: "Gran Torino",
+ year: 2008,
+ rating: 8.2,
+ votes: 617362,
+ running_times: 6960,
+ },
+ {
+ title: "Grand Canyon",
+ year: 1991,
+ rating: 6.9,
+ votes: 13347,
+ running_times: 8040,
+ },
+ {
+ title: "Grand Hotel",
+ year: 1932,
+ rating: 7.6,
+ votes: 14274,
+ running_times: 6720,
+ },
+ {
+ title: "Grand Piano",
+ year: 2013,
+ rating: 5.9,
+ votes: 14935,
+ running_times: 5400,
+ },
+ {
+ title: "Grandma",
+ year: 2015,
+ rating: 6.7,
+ votes: 12295,
+ running_times: 4740,
+ },
+ {
+ title: "Grandma's Boy",
+ year: 2006,
+ rating: 7,
+ votes: 71010,
+ running_times: 5640,
+ },
+ {
+ title: "Grave Encounters",
+ year: 2011,
+ rating: 6.1,
+ votes: 44630,
+ running_times: 5520,
+ },
+ {
+ title: "Grave Encounters 2",
+ year: 2012,
+ rating: 5.1,
+ votes: 19167,
+ running_times: 5700,
+ },
+ {
+ title: "Gravity",
+ year: 2013,
+ rating: 7.8,
+ votes: 646916,
+ running_times: 5460,
+ },
+ {
+ title: "Grease",
+ year: 1978,
+ rating: 7.2,
+ votes: 188022,
+ running_times: 6600,
+ },
+ {
+ title: "Grease 2",
+ year: 1982,
+ rating: 4.2,
+ votes: 28318,
+ running_times: 6900,
+ },
+ {
+ title: "Great Balls of Fire!",
+ year: 1989,
+ rating: 6.2,
+ votes: 13571,
+ running_times: 6480,
+ },
+ {
+ title: "Great Expectations",
+ year: 1946,
+ rating: 8,
+ votes: 18970,
+ running_times: 7080,
+ },
+ {
+ title: "Great Expectations",
+ year: 1998,
+ rating: 6.8,
+ votes: 45586,
+ running_times: 6660,
+ },
+ {
+ title: "Great Expectations",
+ year: 2012,
+ rating: 6.4,
+ votes: 10560,
+ running_times: 7680,
+ },
+ {
+ title: "Greedy",
+ year: 1994,
+ rating: 6.3,
+ votes: 11136,
+ running_times: 6780,
+ },
+ {
+ title: "Green Card",
+ year: 1990,
+ rating: 6.2,
+ votes: 19778,
+ running_times: 6420,
+ },
+ {
+ title: "Green Lantern",
+ year: 2011,
+ rating: 5.6,
+ votes: 237741,
+ running_times: 7380,
+ },
+ {
+ title: "Green Room",
+ year: 2015,
+ rating: 7,
+ votes: 72111,
+ running_times: 5700,
+ },
+ {
+ title: "Green Zone",
+ year: 2010,
+ rating: 6.8,
+ votes: 117010,
+ running_times: 6900,
+ },
+ {
+ title: "Greenberg",
+ year: 2010,
+ rating: 6.1,
+ votes: 32106,
+ running_times: 6420,
+ },
+ {
+ title: "Gremlins",
+ year: 1984,
+ rating: 7.2,
+ votes: 160563,
+ running_times: 6360,
+ },
+ {
+ title: "Gremlins 2: The New Batch",
+ year: 1990,
+ rating: 6.3,
+ votes: 76549,
+ running_times: 6360,
+ },
+ {
+ title: "Greystoke: The Legend of Tarzan, Lord of the Apes",
+ year: 1984,
+ rating: 6.4,
+ votes: 15791,
+ running_times: 8580,
+ },
+ {
+ title: "Gridiron Gang",
+ year: 2006,
+ rating: 6.9,
+ votes: 36158,
+ running_times: 7500,
+ },
+ {
+ title: "Gridlock'd",
+ year: 1997,
+ rating: 7,
+ votes: 12700,
+ running_times: 5460,
+ },
+ {
+ title: "Grimsby",
+ year: 2016,
+ rating: 6.2,
+ votes: 69187,
+ running_times: 4980,
+ },
+ { title: "Grind", year: 2003, rating: 6, votes: 10800, running_times: 6300 },
+ {
+ title: "Grindhouse",
+ year: 2007,
+ rating: 7.6,
+ votes: 163369,
+ running_times: 11460,
+ },
+ {
+ title: "Grizzly Man",
+ year: 2005,
+ rating: 7.8,
+ votes: 45276,
+ running_times: 6180,
+ },
+ {
+ title: "Grosse Pointe Blank",
+ year: 1997,
+ rating: 7.4,
+ votes: 78182,
+ running_times: 6420,
+ },
+ {
+ title: "Groundhog Day",
+ year: 1993,
+ rating: 8,
+ votes: 490746,
+ running_times: 6060,
+ },
+ {
+ title: "Grown Ups",
+ year: 2010,
+ rating: 6,
+ votes: 196291,
+ running_times: 6120,
+ },
+ {
+ title: "Grown Ups 2",
+ year: 2013,
+ rating: 5.4,
+ votes: 118711,
+ running_times: 6060,
+ },
+ {
+ title: "Grudge Match",
+ year: 2013,
+ rating: 6.4,
+ votes: 50640,
+ running_times: 6780,
+ },
+ {
+ title: "Grumpier Old Men",
+ year: 1995,
+ rating: 6.6,
+ votes: 20921,
+ running_times: 6060,
+ },
+ {
+ title: "Grumpy Old Men",
+ year: 1993,
+ rating: 7,
+ votes: 37362,
+ running_times: 6180,
+ },
+ {
+ title: "Guardians of the Galaxy",
+ year: 2014,
+ rating: 8.1,
+ votes: 804806,
+ running_times: 7260,
+ },
+ {
+ title: "Guardians of the Galaxy Vol. 2",
+ year: 2017,
+ rating: 7.8,
+ votes: 307773,
+ running_times: 8160,
+ },
+ {
+ title: "Guarding Tess",
+ year: 1994,
+ rating: 6.2,
+ votes: 13643,
+ running_times: 5760,
+ },
+ {
+ title: "Guess Who",
+ year: 2005,
+ rating: 5.9,
+ votes: 35779,
+ running_times: 6300,
+ },
+ {
+ title: "Guess Who's Coming to Dinner",
+ year: 1967,
+ rating: 7.8,
+ votes: 32153,
+ running_times: 6480,
+ },
+ {
+ title: "Gulliver's Travels",
+ year: 2010,
+ rating: 4.9,
+ votes: 56804,
+ running_times: 5100,
+ },
+ {
+ title: "Gummo",
+ year: 1997,
+ rating: 6.7,
+ votes: 26744,
+ running_times: 5340,
+ },
+ {
+ title: "Gunfight at the O.K. Corral",
+ year: 1957,
+ rating: 7.2,
+ votes: 11317,
+ running_times: 7320,
+ },
+ {
+ title: "Gung Ho",
+ year: 1986,
+ rating: 6.2,
+ votes: 10087,
+ running_times: 6720,
+ },
+ {
+ title: "Guys and Dolls",
+ year: 1955,
+ rating: 7.3,
+ votes: 12935,
+ running_times: 9120,
+ },
+ {
+ title: "Guzaarish",
+ year: 2010,
+ rating: 7.5,
+ votes: 13589,
+ running_times: 7560,
+ },
+ {
+ title: "Gwoemul",
+ year: 2006,
+ rating: 7,
+ votes: 77654,
+ running_times: 7200,
+ },
+ {
+ title: "Habemus Papam",
+ year: 2011,
+ rating: 6.7,
+ votes: 11615,
+ running_times: 6120,
+ },
+ {
+ title: "Habitación en Roma",
+ year: 2010,
+ rating: 6.2,
+ votes: 18445,
+ running_times: 6540,
+ },
+ {
+ title: "Hachi: A Dog's Tale",
+ year: 2009,
+ rating: 8.1,
+ votes: 190809,
+ running_times: 5580,
+ },
+ {
+ title: "Hackers",
+ year: 1995,
+ rating: 6.2,
+ votes: 58262,
+ running_times: 6420,
+ },
+ {
+ title: "Hacksaw Ridge",
+ year: 2016,
+ rating: 8.2,
+ votes: 282761,
+ running_times: 8340,
+ },
+ {
+ title: "Hail, Caesar!",
+ year: 2016,
+ rating: 6.3,
+ votes: 96939,
+ running_times: 6360,
+ },
+ { title: "Hair", year: 1979, rating: 7.6, votes: 29465, running_times: 7260 },
+ {
+ title: "Hairspray",
+ year: 1988,
+ rating: 7,
+ votes: 17296,
+ running_times: 5520,
+ },
+ {
+ title: "Hairspray",
+ year: 2007,
+ rating: 6.7,
+ votes: 105515,
+ running_times: 7020,
+ },
+ {
+ title: "Half Baked",
+ year: 1998,
+ rating: 6.7,
+ votes: 51176,
+ running_times: 4920,
+ },
+ {
+ title: "Half Light",
+ year: 2006,
+ rating: 6,
+ votes: 11903,
+ running_times: 6600,
+ },
+ {
+ title: "Half Nelson",
+ year: 2006,
+ rating: 7.2,
+ votes: 76232,
+ running_times: 6360,
+ },
+ {
+ title: "Half Past Dead",
+ year: 2002,
+ rating: 4.6,
+ votes: 12929,
+ running_times: 5880,
+ },
+ {
+ title: "Hall Pass",
+ year: 2011,
+ rating: 5.9,
+ votes: 108841,
+ running_times: 6660,
+ },
+ {
+ title: "Hallam Foe",
+ year: 2007,
+ rating: 7,
+ votes: 11427,
+ running_times: 5700,
+ },
+ {
+ title: "Halloween",
+ year: 1978,
+ rating: 7.8,
+ votes: 176749,
+ running_times: 6060,
+ },
+ {
+ title: "Halloween",
+ year: 2007,
+ rating: 6.1,
+ votes: 94747,
+ running_times: 7260,
+ },
+ {
+ title: "Halloween 4: The Return of Michael Myers",
+ year: 1988,
+ rating: 5.9,
+ votes: 33335,
+ running_times: 5280,
+ },
+ {
+ title: "Halloween 5",
+ year: 1989,
+ rating: 5.2,
+ votes: 26022,
+ running_times: 5760,
+ },
+ {
+ title: "Halloween H20: 20 Years Later",
+ year: 1998,
+ rating: 5.7,
+ votes: 53537,
+ running_times: 5160,
+ },
+ {
+ title: "Halloween II",
+ year: 1981,
+ rating: 6.6,
+ votes: 57321,
+ running_times: 5520,
+ },
+ {
+ title: "Halloween II",
+ year: 2009,
+ rating: 4.9,
+ votes: 39987,
+ running_times: 7140,
+ },
+ {
+ title: "Halloween III: Season of the Witch",
+ year: 1982,
+ rating: 4.7,
+ votes: 32487,
+ running_times: 5880,
+ },
+ {
+ title: "Halloween: Resurrection",
+ year: 2002,
+ rating: 4.1,
+ votes: 29692,
+ running_times: 5640,
+ },
+ {
+ title: "Halloween: The Curse of Michael Myers",
+ year: 1995,
+ rating: 5,
+ votes: 23489,
+ running_times: 5700,
+ },
+ {
+ title: "Hamburger Hill",
+ year: 1987,
+ rating: 6.7,
+ votes: 20324,
+ running_times: 6600,
+ },
+ {
+ title: "Hamlet",
+ year: 1948,
+ rating: 7.8,
+ votes: 12859,
+ running_times: 9240,
+ },
+ {
+ title: "Hamlet",
+ year: 1990,
+ rating: 6.8,
+ votes: 18948,
+ running_times: 8100,
+ },
+ {
+ title: "Hamlet",
+ year: 1996,
+ rating: 7.8,
+ votes: 32395,
+ running_times: 14520,
+ },
+ {
+ title: "Hamlet 2",
+ year: 2008,
+ rating: 6.4,
+ votes: 15690,
+ running_times: 5520,
+ },
+ {
+ title: "Hancock",
+ year: 2008,
+ rating: 6.4,
+ votes: 379865,
+ running_times: 6120,
+ },
+ {
+ title: "Hands of Stone",
+ year: 2016,
+ rating: 6.6,
+ votes: 10581,
+ running_times: 6660,
+ },
+ {
+ title: "Hang 'Em High",
+ year: 1968,
+ rating: 7,
+ votes: 28346,
+ running_times: 6840,
+ },
+ {
+ title: "Hanging Up",
+ year: 2000,
+ rating: 4.8,
+ votes: 10695,
+ running_times: 5640,
+ },
+ {
+ title: "Hanna",
+ year: 2011,
+ rating: 6.8,
+ votes: 167885,
+ running_times: 6660,
+ },
+ {
+ title: "Hannah Montana: The Movie",
+ year: 2009,
+ rating: 4.3,
+ votes: 34482,
+ running_times: 6120,
+ },
+ {
+ title: "Hannah and Her Sisters",
+ year: 1986,
+ rating: 8,
+ votes: 57685,
+ running_times: 6420,
+ },
+ {
+ title: "Hannibal",
+ year: 2001,
+ rating: 6.8,
+ votes: 223188,
+ running_times: 7860,
+ },
+ {
+ title: "Hannibal Rising",
+ year: 2007,
+ rating: 6.2,
+ votes: 92521,
+ running_times: 7860,
+ },
+ {
+ title: "Hansel & Gretel: Witch Hunters",
+ year: 2013,
+ rating: 6.1,
+ votes: 172538,
+ running_times: 5880,
+ },
+ {
+ title: "Happiness",
+ year: 1998,
+ rating: 7.8,
+ votes: 59093,
+ running_times: 8040,
+ },
+ {
+ title: "Happy Death Day",
+ year: 2017,
+ rating: 6.5,
+ votes: 26480,
+ running_times: 5760,
+ },
+ {
+ title: "Happy Feet",
+ year: 2006,
+ rating: 6.5,
+ votes: 145943,
+ running_times: 6480,
+ },
+ {
+ title: "Happy Feet Two",
+ year: 2011,
+ rating: 5.9,
+ votes: 35383,
+ running_times: 6000,
+ },
+ {
+ title: "Happy Gilmore",
+ year: 1996,
+ rating: 7,
+ votes: 168423,
+ running_times: 5520,
+ },
+ {
+ title: "Happy-Go-Lucky",
+ year: 2008,
+ rating: 7,
+ votes: 33856,
+ running_times: 7080,
+ },
+ {
+ title: "Happythankyoumoreplease",
+ year: 2010,
+ rating: 6.8,
+ votes: 27488,
+ running_times: 6000,
+ },
+ {
+ title: "Hard Ball",
+ year: 2001,
+ rating: 6.4,
+ votes: 24106,
+ running_times: 6540,
+ },
+ {
+ title: "Hard Candy",
+ year: 2005,
+ rating: 7.1,
+ votes: 140132,
+ running_times: 6240,
+ },
+ {
+ title: "Hard Rain",
+ year: 1998,
+ rating: 5.8,
+ votes: 28690,
+ running_times: 5820,
+ },
+ {
+ title: "Hard Target",
+ year: 1993,
+ rating: 6.1,
+ votes: 37873,
+ running_times: 7680,
+ },
+ {
+ title: "Hard to Kill",
+ year: 1990,
+ rating: 5.8,
+ votes: 23647,
+ running_times: 5760,
+ },
+ {
+ title: "Hardcore Henry",
+ year: 2015,
+ rating: 6.7,
+ votes: 66693,
+ running_times: 5760,
+ },
+ {
+ title: "Hardware",
+ year: 1990,
+ rating: 5.9,
+ votes: 10673,
+ running_times: 5640,
+ },
+ {
+ title: "Harlem Nights",
+ year: 1989,
+ rating: 6,
+ votes: 15812,
+ running_times: 6960,
+ },
+ {
+ title: "Harley Davidson and the Marlboro Man",
+ year: 1991,
+ rating: 6,
+ votes: 15709,
+ running_times: 5880,
+ },
+ {
+ title: "Harold & Kumar Escape from Guantanamo Bay",
+ year: 2008,
+ rating: 6.6,
+ votes: 119872,
+ running_times: 6420,
+ },
+ {
+ title: "Harold & Kumar Go to White Castle",
+ year: 2004,
+ rating: 7.1,
+ votes: 164461,
+ running_times: 5280,
+ },
+ {
+ title: "Harold and Maude",
+ year: 1971,
+ rating: 8,
+ votes: 61251,
+ running_times: 5460,
+ },
+ {
+ title: "Harry Brown",
+ year: 2009,
+ rating: 7.2,
+ votes: 77817,
+ running_times: 6180,
+ },
+ {
+ title: "Harry Potter and the Chamber of Secrets",
+ year: 2002,
+ rating: 7.4,
+ votes: 439161,
+ running_times: 10440,
+ },
+ {
+ title: "Harry Potter and the Deathly Hallows: Part 1",
+ year: 2010,
+ rating: 7.7,
+ votes: 374837,
+ running_times: 8760,
+ },
+ {
+ title: "Harry Potter and the Deathly Hallows: Part 2",
+ year: 2011,
+ rating: 8.1,
+ votes: 618562,
+ running_times: 7800,
+ },
+ {
+ title: "Harry Potter and the Goblet of Fire",
+ year: 2005,
+ rating: 7.7,
+ votes: 435781,
+ running_times: 9960,
+ },
+ {
+ title: "Harry Potter and the Half-Blood Prince",
+ year: 2009,
+ rating: 7.5,
+ votes: 368314,
+ running_times: 9180,
+ },
+ {
+ title: "Harry Potter and the Order of the Phoenix",
+ year: 2007,
+ rating: 7.5,
+ votes: 402883,
+ running_times: 8280,
+ },
+ {
+ title: "Harry Potter and the Prisoner of Azkaban",
+ year: 2004,
+ rating: 7.8,
+ votes: 434113,
+ running_times: 8520,
+ },
+ {
+ title: "Harry Potter and the Sorcerer's Stone",
+ year: 2001,
+ rating: 7.6,
+ votes: 506880,
+ running_times: 9540,
+ },
+ {
+ title: "Harry and the Hendersons",
+ year: 1987,
+ rating: 5.9,
+ votes: 26455,
+ running_times: 6600,
+ },
+ {
+ title: "Harsh Times",
+ year: 2005,
+ rating: 6.9,
+ votes: 57586,
+ running_times: 6960,
+ },
+ {
+ title: "Hart's War",
+ year: 2002,
+ rating: 6.3,
+ votes: 46235,
+ running_times: 7500,
+ },
+ { title: "Harvey", year: 1950, rating: 8, votes: 47393, running_times: 6660 },
+ {
+ title: "Hasee Toh Phasee",
+ year: 2014,
+ rating: 6.9,
+ votes: 11522,
+ running_times: 8460,
+ },
+ {
+ title: "Hatchet",
+ year: 2006,
+ rating: 5.7,
+ votes: 24930,
+ running_times: 5580,
+ },
+ {
+ title: "Hatchet II",
+ year: 2010,
+ rating: 5.5,
+ votes: 10247,
+ running_times: 5100,
+ },
+ {
+ title: "Haunter",
+ year: 2013,
+ rating: 5.9,
+ votes: 14290,
+ running_times: 5820,
+ },
+ {
+ title: "Haute tension",
+ year: 2003,
+ rating: 6.8,
+ votes: 59182,
+ running_times: 5460,
+ },
+ {
+ title: "Havoc",
+ year: 2005,
+ rating: 5.5,
+ votes: 16845,
+ running_times: 5580,
+ },
+ {
+ title: "Haywire",
+ year: 2011,
+ rating: 5.8,
+ votes: 75871,
+ running_times: 5580,
+ },
+ {
+ title: "He Got Game",
+ year: 1998,
+ rating: 6.9,
+ votes: 38768,
+ running_times: 8160,
+ },
+ {
+ title: "He Never Died",
+ year: 2015,
+ rating: 6.4,
+ votes: 12574,
+ running_times: 5940,
+ },
+ {
+ title: "He Was a Quiet Man",
+ year: 2007,
+ rating: 6.8,
+ votes: 20947,
+ running_times: 5700,
+ },
+ {
+ title: "He's Just Not That Into You",
+ year: 2009,
+ rating: 6.4,
+ votes: 141177,
+ running_times: 7740,
+ },
+ {
+ title: "Head Over Heels",
+ year: 2001,
+ rating: 5.4,
+ votes: 12415,
+ running_times: 5160,
+ },
+ {
+ title: "Head in the Clouds",
+ year: 2004,
+ rating: 6.6,
+ votes: 13236,
+ running_times: 7920,
+ },
+ {
+ title: "Head of State",
+ year: 2003,
+ rating: 5.4,
+ votes: 15818,
+ running_times: 5700,
+ },
+ {
+ title: "Heart and Souls",
+ year: 1993,
+ rating: 6.9,
+ votes: 13971,
+ running_times: 6240,
+ },
+ {
+ title: "Heartbreak Ridge",
+ year: 1986,
+ rating: 6.8,
+ votes: 33303,
+ running_times: 7800,
+ },
+ {
+ title: "Heartbreakers",
+ year: 2001,
+ rating: 6.2,
+ votes: 46577,
+ running_times: 7380,
+ },
+ {
+ title: "Hearts in Atlantis",
+ year: 2001,
+ rating: 6.9,
+ votes: 32398,
+ running_times: 6060,
+ },
+ {
+ title: "Hearts of Darkness: A Filmmaker's Apocalypse",
+ year: 1991,
+ rating: 8.2,
+ votes: 15340,
+ running_times: 5760,
+ },
+ {
+ title: "Heat",
+ year: 1995,
+ rating: 8.2,
+ votes: 476332,
+ running_times: 10200,
+ },
+ {
+ title: "Heathers",
+ year: 1988,
+ rating: 7.3,
+ votes: 68413,
+ running_times: 6180,
+ },
+ {
+ title: "Heaven & Earth",
+ year: 1993,
+ rating: 6.8,
+ votes: 11528,
+ running_times: 8400,
+ },
+ {
+ title: "Heaven",
+ year: 2002,
+ rating: 7.1,
+ votes: 21401,
+ running_times: 5820,
+ },
+ {
+ title: "Heaven Can Wait",
+ year: 1978,
+ rating: 6.9,
+ votes: 15486,
+ running_times: 6060,
+ },
+ {
+ title: "Heaven Is for Real",
+ year: 2014,
+ rating: 5.8,
+ votes: 22680,
+ running_times: 5940,
+ },
+ {
+ title: "Heaven's Gate",
+ year: 1980,
+ rating: 6.8,
+ votes: 11079,
+ running_times: 19500,
+ },
+ {
+ title: "Heavenly Creatures",
+ year: 1994,
+ rating: 7.4,
+ votes: 53288,
+ running_times: 6480,
+ },
+ {
+ title: "Heavy Metal",
+ year: 1981,
+ rating: 6.7,
+ votes: 25961,
+ running_times: 5400,
+ },
+ {
+ title: "Heavy Weights",
+ year: 1995,
+ rating: 6.7,
+ votes: 21356,
+ running_times: 6000,
+ },
+ {
+ title: "Hector and the Search for Happiness",
+ year: 2014,
+ rating: 7,
+ votes: 38151,
+ running_times: 7200,
+ },
+ {
+ title: "Hedwig and the Angry Inch",
+ year: 2001,
+ rating: 7.8,
+ votes: 27944,
+ running_times: 5700,
+ },
+ {
+ title: "Heisei tanuki gassen ponpoko",
+ year: 1994,
+ rating: 7.4,
+ votes: 16877,
+ running_times: 7140,
+ },
+ {
+ title: "Heist",
+ year: 2001,
+ rating: 6.6,
+ votes: 29396,
+ running_times: 6540,
+ },
+ {
+ title: "Heist",
+ year: 2015,
+ rating: 6.1,
+ votes: 21521,
+ running_times: 5580,
+ },
+ {
+ title: "Hell Ride",
+ year: 2008,
+ rating: 5.1,
+ votes: 14601,
+ running_times: 5040,
+ },
+ {
+ title: "Hell or High Water",
+ year: 2016,
+ rating: 7.6,
+ votes: 139821,
+ running_times: 6120,
+ },
+ {
+ title: "Hellbound: Hellraiser II",
+ year: 1988,
+ rating: 6.5,
+ votes: 33894,
+ running_times: 5940,
+ },
+ {
+ title: "Hellboy",
+ year: 2004,
+ rating: 6.8,
+ votes: 264309,
+ running_times: 7920,
+ },
+ {
+ title: "Hellboy II: The Golden Army",
+ year: 2008,
+ rating: 7,
+ votes: 223462,
+ running_times: 7200,
+ },
+ {
+ title: "Hello, Dolly!",
+ year: 1969,
+ rating: 7.2,
+ votes: 11068,
+ running_times: 8760,
+ },
+ {
+ title: "Hello, My Name Is Doris",
+ year: 2015,
+ rating: 6.7,
+ votes: 14600,
+ running_times: 5400,
+ },
+ {
+ title: "Hellraiser",
+ year: 1987,
+ rating: 7,
+ votes: 84790,
+ running_times: 5640,
+ },
+ {
+ title: "Hellraiser III: Hell on Earth",
+ year: 1992,
+ rating: 5.5,
+ votes: 22469,
+ running_times: 5820,
+ },
+ {
+ title: "Hellraiser: Bloodline",
+ year: 1996,
+ rating: 5.1,
+ votes: 15913,
+ running_times: 5100,
+ },
+ {
+ title: "Help!",
+ year: 1965,
+ rating: 7.3,
+ votes: 14710,
+ running_times: 5520,
+ },
+ {
+ title: "Henry & June",
+ year: 1990,
+ rating: 6.3,
+ votes: 10875,
+ running_times: 8160,
+ },
+ {
+ title: "Henry Poole Is Here",
+ year: 2008,
+ rating: 6.5,
+ votes: 11416,
+ running_times: 5940,
+ },
+ {
+ title: "Henry V",
+ year: 1989,
+ rating: 7.7,
+ votes: 25019,
+ running_times: 8220,
+ },
+ {
+ title: "Henry's Crime",
+ year: 2010,
+ rating: 6,
+ votes: 16652,
+ running_times: 6480,
+ },
+ {
+ title: "Henry: Portrait of a Serial Killer",
+ year: 1986,
+ rating: 7,
+ votes: 25794,
+ running_times: 4980,
+ },
+ { title: "Her", year: 2013, rating: 8, votes: 412823, running_times: 7560 },
+ {
+ title: "Herbie Fully Loaded",
+ year: 2005,
+ rating: 4.8,
+ votes: 39449,
+ running_times: 6060,
+ },
+ {
+ title: "Hercules",
+ year: 1997,
+ rating: 7.3,
+ votes: 162326,
+ running_times: 5580,
+ },
+ {
+ title: "Hercules",
+ year: 2014,
+ rating: 6,
+ votes: 126532,
+ running_times: 6060,
+ },
+ {
+ title: "Hercules in New York",
+ year: 1970,
+ rating: 3.2,
+ votes: 14990,
+ running_times: 5460,
+ },
+ {
+ title: "Here Comes the Boom",
+ year: 2012,
+ rating: 6.4,
+ votes: 78346,
+ running_times: 6300,
+ },
+ {
+ title: "Hereafter",
+ year: 2010,
+ rating: 6.5,
+ votes: 83811,
+ running_times: 7740,
+ },
+ { title: "Hero", year: 1992, rating: 6.5, votes: 18785, running_times: 7140 },
+ {
+ title: "Hesher",
+ year: 2010,
+ rating: 7.1,
+ votes: 46468,
+ running_times: 6360,
+ },
+ { title: "Hick", year: 2011, rating: 5.7, votes: 17000, running_times: 5940 },
+ {
+ title: "Hidalgo",
+ year: 2004,
+ rating: 6.7,
+ votes: 71055,
+ running_times: 8160,
+ },
+ {
+ title: "Hidden",
+ year: 2015,
+ rating: 6.4,
+ votes: 15457,
+ running_times: 5040,
+ },
+ {
+ title: "Hidden Figures",
+ year: 2016,
+ rating: 7.8,
+ votes: 130784,
+ running_times: 7620,
+ },
+ {
+ title: "Hide and Seek",
+ year: 2005,
+ rating: 5.9,
+ votes: 74510,
+ running_times: 6060,
+ },
+ {
+ title: "High Anxiety",
+ year: 1977,
+ rating: 6.7,
+ votes: 16701,
+ running_times: 5640,
+ },
+ {
+ title: "High Crimes",
+ year: 2002,
+ rating: 6.3,
+ votes: 33013,
+ running_times: 6900,
+ },
+ {
+ title: "High Fidelity",
+ year: 2000,
+ rating: 7.5,
+ votes: 151450,
+ running_times: 6780,
+ },
+ {
+ title: "High Noon",
+ year: 1952,
+ rating: 8,
+ votes: 85253,
+ running_times: 5100,
+ },
+ {
+ title: "High Plains Drifter",
+ year: 1973,
+ rating: 7.6,
+ votes: 40775,
+ running_times: 6300,
+ },
+ {
+ title: "High School High",
+ year: 1996,
+ rating: 5.5,
+ votes: 11436,
+ running_times: 5160,
+ },
+ {
+ title: "High School Musical 3: Senior Year",
+ year: 2008,
+ rating: 4.6,
+ votes: 48125,
+ running_times: 6720,
+ },
+ {
+ title: "High Sierra",
+ year: 1941,
+ rating: 7.6,
+ votes: 12432,
+ running_times: 6000,
+ },
+ {
+ title: "High Society",
+ year: 1956,
+ rating: 7,
+ votes: 11413,
+ running_times: 6660,
+ },
+ {
+ title: "High-Rise",
+ year: 2015,
+ rating: 5.7,
+ votes: 28955,
+ running_times: 7140,
+ },
+ {
+ title: "Higher Learning",
+ year: 1995,
+ rating: 6.5,
+ votes: 15725,
+ running_times: 7620,
+ },
+ {
+ title: "Highlander",
+ year: 1986,
+ rating: 7.2,
+ votes: 105854,
+ running_times: 6960,
+ },
+ {
+ title: "Highlander II: The Quickening",
+ year: 1991,
+ rating: 4.1,
+ votes: 38881,
+ running_times: 6540,
+ },
+ {
+ title: "Highlander III: The Sorcerer",
+ year: 1994,
+ rating: 4.4,
+ votes: 17489,
+ running_times: 5940,
+ },
+ {
+ title: "Highlander: Endgame",
+ year: 2000,
+ rating: 4.6,
+ votes: 17359,
+ running_times: 6060,
+ },
+ {
+ title: "Highway",
+ year: 2014,
+ rating: 7.6,
+ votes: 20548,
+ running_times: 7980,
+ },
+ {
+ title: "Hiroshima mon amour",
+ year: 1959,
+ rating: 8,
+ votes: 22156,
+ running_times: 5400,
+ },
+ {
+ title: "His Girl Friday",
+ year: 1940,
+ rating: 8,
+ votes: 44758,
+ running_times: 5520,
+ },
+ {
+ title: "History of the World: Part I",
+ year: 1981,
+ rating: 6.9,
+ votes: 39778,
+ running_times: 5820,
+ },
+ {
+ title: "Hit and Run",
+ year: 2012,
+ rating: 6.1,
+ votes: 31091,
+ running_times: 6000,
+ },
+ {
+ title: "Hitch",
+ year: 2005,
+ rating: 6.6,
+ votes: 262082,
+ running_times: 7080,
+ },
+ {
+ title: "Hitchcock",
+ year: 2012,
+ rating: 6.8,
+ votes: 64671,
+ running_times: 5880,
+ },
+ {
+ title: "Hitman",
+ year: 2007,
+ rating: 6.3,
+ votes: 147724,
+ running_times: 6000,
+ },
+ {
+ title: "Hitman: Agent 47",
+ year: 2015,
+ rating: 5.7,
+ votes: 74251,
+ running_times: 5760,
+ },
+ {
+ title: "Hobo with a Shotgun",
+ year: 2011,
+ rating: 6.1,
+ votes: 39715,
+ running_times: 5160,
+ },
+ {
+ title: "Hocus Pocus",
+ year: 1993,
+ rating: 6.8,
+ votes: 70603,
+ running_times: 5760,
+ },
+ {
+ title: "Hodejegerne",
+ year: 2011,
+ rating: 7.6,
+ votes: 86454,
+ running_times: 5760,
+ },
+ {
+ title: "Hoffa",
+ year: 1992,
+ rating: 6.6,
+ votes: 18392,
+ running_times: 8400,
+ },
+ {
+ title: "Hokkabaz",
+ year: 2006,
+ rating: 7.5,
+ votes: 22397,
+ running_times: 7320,
+ },
+ {
+ title: "Holes",
+ year: 2003,
+ rating: 7.1,
+ votes: 64114,
+ running_times: 7020,
+ },
+ {
+ title: "Holiday",
+ year: 1938,
+ rating: 7.9,
+ votes: 11757,
+ running_times: 5700,
+ },
+ {
+ title: "Hollow Man",
+ year: 2000,
+ rating: 5.7,
+ votes: 108608,
+ running_times: 7140,
+ },
+ {
+ title: "Hollywood Ending",
+ year: 2002,
+ rating: 6.6,
+ votes: 23284,
+ running_times: 6720,
+ },
+ {
+ title: "Hollywood Homicide",
+ year: 2003,
+ rating: 5.3,
+ votes: 32736,
+ running_times: 6960,
+ },
+ {
+ title: "Hollywoodland",
+ year: 2006,
+ rating: 6.5,
+ votes: 30461,
+ running_times: 7560,
+ },
+ {
+ title: "Holy Man",
+ year: 1998,
+ rating: 4.9,
+ votes: 17246,
+ running_times: 6840,
+ },
+ {
+ title: "Holy Motors",
+ year: 2012,
+ rating: 7.1,
+ votes: 33547,
+ running_times: 6900,
+ },
+ {
+ title: "Holy Smoke",
+ year: 1999,
+ rating: 5.9,
+ votes: 12767,
+ running_times: 6900,
+ },
+ { title: "Home", year: 2009, rating: 8.6, votes: 19620, running_times: 7200 },
+ { title: "Home", year: 2015, rating: 6.7, votes: 80214, running_times: 5640 },
+ {
+ title: "Home Alone",
+ year: 1990,
+ rating: 7.5,
+ votes: 358522,
+ running_times: 6180,
+ },
+ {
+ title: "Home Alone 2: Lost in New York",
+ year: 1992,
+ rating: 6.6,
+ votes: 231633,
+ running_times: 7200,
+ },
+ {
+ title: "Home Alone 3",
+ year: 1997,
+ rating: 4.3,
+ votes: 84915,
+ running_times: 6120,
+ },
+ {
+ title: "Home Sweet Hell",
+ year: 2015,
+ rating: 5.4,
+ votes: 11800,
+ running_times: 5880,
+ },
+ {
+ title: "Home on the Range",
+ year: 2004,
+ rating: 5.4,
+ votes: 15587,
+ running_times: 4560,
+ },
+ {
+ title: "Homefront",
+ year: 2013,
+ rating: 6.5,
+ votes: 91464,
+ running_times: 6000,
+ },
+ {
+ title: "Homeward Bound II: Lost in San Francisco",
+ year: 1996,
+ rating: 5.9,
+ votes: 11621,
+ running_times: 5340,
+ },
+ {
+ title: "Homeward Bound: The Incredible Journey",
+ year: 1993,
+ rating: 6.9,
+ votes: 36406,
+ running_times: 5040,
+ },
+ {
+ title: "Honey",
+ year: 2003,
+ rating: 5.3,
+ votes: 39141,
+ running_times: 5640,
+ },
+ {
+ title: "Honey I Blew Up the Kid",
+ year: 1992,
+ rating: 4.7,
+ votes: 34738,
+ running_times: 5340,
+ },
+ {
+ title: "Honey, I Shrunk the Kids",
+ year: 1989,
+ rating: 6.3,
+ votes: 118405,
+ running_times: 5580,
+ },
+ {
+ title: "Honeymoon",
+ year: 2014,
+ rating: 5.7,
+ votes: 20850,
+ running_times: 5220,
+ },
+ {
+ title: "Honeymoon in Vegas",
+ year: 1992,
+ rating: 5.8,
+ votes: 15156,
+ running_times: 5760,
+ },
+ {
+ title: "Hoodwinked Too! Hood vs. Evil",
+ year: 2011,
+ rating: 4.8,
+ votes: 10424,
+ running_times: 5160,
+ },
+ {
+ title: "Hoodwinked!",
+ year: 2005,
+ rating: 6.5,
+ votes: 49338,
+ running_times: 4800,
+ },
+ {
+ title: "Hook",
+ year: 1991,
+ rating: 6.7,
+ votes: 198650,
+ running_times: 8520,
+ },
+ {
+ title: "Hooligans",
+ year: 2005,
+ rating: 7.5,
+ votes: 127112,
+ running_times: 6540,
+ },
+ {
+ title: "Hoop Dreams",
+ year: 1994,
+ rating: 8.3,
+ votes: 20884,
+ running_times: 10200,
+ },
+ {
+ title: "Hoosiers",
+ year: 1986,
+ rating: 7.6,
+ votes: 36946,
+ running_times: 6840,
+ },
+ { title: "Hop", year: 2011, rating: 5.5, votes: 26311, running_times: 5700 },
+ {
+ title: "Hope Floats",
+ year: 1998,
+ rating: 5.9,
+ votes: 20949,
+ running_times: 6840,
+ },
+ {
+ title: "Hope Springs",
+ year: 2012,
+ rating: 6.3,
+ votes: 36803,
+ running_times: 6000,
+ },
+ {
+ title: "Hope and Glory",
+ year: 1987,
+ rating: 7.4,
+ votes: 10464,
+ running_times: 6780,
+ },
+ {
+ title: "Horns",
+ year: 2013,
+ rating: 6.5,
+ votes: 64239,
+ running_times: 7200,
+ },
+ {
+ title: "Horrible Bosses",
+ year: 2011,
+ rating: 6.9,
+ votes: 378107,
+ running_times: 6360,
+ },
+ {
+ title: "Horrible Bosses 2",
+ year: 2014,
+ rating: 6.3,
+ votes: 131371,
+ running_times: 6960,
+ },
+ {
+ title: "Hors de prix",
+ year: 2006,
+ rating: 7,
+ votes: 27628,
+ running_times: 6360,
+ },
+ {
+ title: "Horse Feathers",
+ year: 1932,
+ rating: 7.7,
+ votes: 10105,
+ running_times: 4080,
+ },
+ {
+ title: "Horsemen",
+ year: 2009,
+ rating: 5.6,
+ votes: 19785,
+ running_times: 5400,
+ },
+ {
+ title: "Horton Hears a Who!",
+ year: 2008,
+ rating: 6.8,
+ votes: 114271,
+ running_times: 5160,
+ },
+ {
+ title: "Hostage",
+ year: 2005,
+ rating: 6.6,
+ votes: 98148,
+ running_times: 6780,
+ },
+ {
+ title: "Hostel",
+ year: 2005,
+ rating: 5.9,
+ votes: 149732,
+ running_times: 5640,
+ },
+ {
+ title: "Hostel: Part II",
+ year: 2007,
+ rating: 5.5,
+ votes: 75544,
+ running_times: 5640,
+ },
+ {
+ title: "Hot Fuzz",
+ year: 2007,
+ rating: 7.9,
+ votes: 390102,
+ running_times: 7260,
+ },
+ {
+ title: "Hot Girls Wanted",
+ year: 2015,
+ rating: 6.1,
+ votes: 11368,
+ running_times: 5040,
+ },
+ {
+ title: "Hot Pursuit",
+ year: 2015,
+ rating: 5.1,
+ votes: 41002,
+ running_times: 5220,
+ },
+ {
+ title: "Hot Rod",
+ year: 2007,
+ rating: 6.7,
+ votes: 65211,
+ running_times: 5280,
+ },
+ {
+ title: "Hot Shots!",
+ year: 1991,
+ rating: 6.7,
+ votes: 86014,
+ running_times: 5040,
+ },
+ {
+ title: "Hot Shots! Part Deux",
+ year: 1993,
+ rating: 6.6,
+ votes: 72998,
+ running_times: 5160,
+ },
+ {
+ title: "Hot Tub Time Machine",
+ year: 2010,
+ rating: 6.4,
+ votes: 146646,
+ running_times: 6060,
+ },
+ {
+ title: "Hot Tub Time Machine 2",
+ year: 2015,
+ rating: 5.1,
+ votes: 32007,
+ running_times: 5940,
+ },
+ {
+ title: "Hotel Chevalier",
+ year: 2007,
+ rating: 7.3,
+ votes: 25983,
+ running_times: 780,
+ },
+ {
+ title: "Hotel Rwanda",
+ year: 2004,
+ rating: 8.1,
+ votes: 289707,
+ running_times: 7260,
+ },
+ {
+ title: "Hotel Transylvania",
+ year: 2012,
+ rating: 7.1,
+ votes: 183497,
+ running_times: 5460,
+ },
+ {
+ title: "Hotel Transylvania 2",
+ year: 2015,
+ rating: 6.7,
+ votes: 75463,
+ running_times: 5340,
+ },
+ {
+ title: "Hotel for Dogs",
+ year: 2009,
+ rating: 5.4,
+ votes: 18004,
+ running_times: 6000,
+ },
+ {
+ title: "Hours",
+ year: 2013,
+ rating: 6.5,
+ votes: 24595,
+ running_times: 5820,
+ },
+ {
+ title: "House",
+ year: 1985,
+ rating: 6.2,
+ votes: 18925,
+ running_times: 5580,
+ },
+ {
+ title: "House at the End of the Street",
+ year: 2012,
+ rating: 5.6,
+ votes: 62772,
+ running_times: 6060,
+ },
+ {
+ title: "House of 1000 Corpses",
+ year: 2003,
+ rating: 6,
+ votes: 65306,
+ running_times: 6300,
+ },
+ {
+ title: "House of Games",
+ year: 1987,
+ rating: 7.3,
+ votes: 17627,
+ running_times: 6120,
+ },
+ {
+ title: "House of Sand and Fog",
+ year: 2003,
+ rating: 7.6,
+ votes: 59246,
+ running_times: 7560,
+ },
+ {
+ title: "House of Wax",
+ year: 1953,
+ rating: 7.1,
+ votes: 13079,
+ running_times: 5280,
+ },
+ {
+ title: "House of Wax",
+ year: 2005,
+ rating: 5.3,
+ votes: 101370,
+ running_times: 6480,
+ },
+ {
+ title: "House of the Dead",
+ year: 2003,
+ rating: 2,
+ votes: 33466,
+ running_times: 5400,
+ },
+ {
+ title: "House on Haunted Hill",
+ year: 1959,
+ rating: 6.9,
+ votes: 18072,
+ running_times: 4500,
+ },
+ {
+ title: "House on Haunted Hill",
+ year: 1999,
+ rating: 5.6,
+ votes: 47824,
+ running_times: 5940,
+ },
+ {
+ title: "HouseSitter",
+ year: 1992,
+ rating: 6,
+ votes: 18605,
+ running_times: 6120,
+ },
+ {
+ title: "Housebound",
+ year: 2014,
+ rating: 6.8,
+ votes: 27690,
+ running_times: 6420,
+ },
+ {
+ title: "How Do You Know",
+ year: 2010,
+ rating: 5.4,
+ votes: 37932,
+ running_times: 7260,
+ },
+ {
+ title: "How Green Was My Valley",
+ year: 1941,
+ rating: 7.8,
+ votes: 17395,
+ running_times: 7080,
+ },
+ {
+ title: "How High",
+ year: 2001,
+ rating: 6.3,
+ votes: 46268,
+ running_times: 5700,
+ },
+ {
+ title: "How I Live Now",
+ year: 2013,
+ rating: 6.5,
+ votes: 24050,
+ running_times: 6060,
+ },
+ {
+ title: "How the Grinch Stole Christmas",
+ year: 2000,
+ rating: 6.1,
+ votes: 159672,
+ running_times: 6600,
+ },
+ {
+ title: "How the West Was Won",
+ year: 1962,
+ rating: 7.1,
+ votes: 15613,
+ running_times: 9840,
+ },
+ {
+ title: "How to Be Single",
+ year: 2016,
+ rating: 6.1,
+ votes: 64963,
+ running_times: 6600,
+ },
+ {
+ title: "How to Lose Friends & Alienate People",
+ year: 2008,
+ rating: 6.4,
+ votes: 63646,
+ running_times: 6600,
+ },
+ {
+ title: "How to Lose a Guy in 10 Days",
+ year: 2003,
+ rating: 6.4,
+ votes: 174435,
+ running_times: 6960,
+ },
+ {
+ title: "How to Marry a Millionaire",
+ year: 1953,
+ rating: 7,
+ votes: 17157,
+ running_times: 5700,
+ },
+ {
+ title: "How to Steal a Million",
+ year: 1966,
+ rating: 7.6,
+ votes: 19967,
+ running_times: 7380,
+ },
+ {
+ title: "How to Train Your Dragon",
+ year: 2010,
+ rating: 8.1,
+ votes: 546154,
+ running_times: 5880,
+ },
+ {
+ title: "How to Train Your Dragon 2",
+ year: 2014,
+ rating: 7.8,
+ votes: 246660,
+ running_times: 6120,
+ },
+ {
+ title: "Howard the Duck",
+ year: 1986,
+ rating: 4.6,
+ votes: 36526,
+ running_times: 6600,
+ },
+ {
+ title: "Howards End",
+ year: 1992,
+ rating: 7.5,
+ votes: 23352,
+ running_times: 8520,
+ },
+ { title: "Howl", year: 2010, rating: 6.8, votes: 11508, running_times: 5040 },
+ { title: "Hud", year: 1963, rating: 7.9, votes: 16445, running_times: 6720 },
+ {
+ title: "Hudson Hawk",
+ year: 1991,
+ rating: 5.8,
+ votes: 46017,
+ running_times: 6000,
+ },
+ {
+ title: "Hugo",
+ year: 2011,
+ rating: 7.5,
+ votes: 266903,
+ running_times: 7560,
+ },
+ {
+ title: "Hulk",
+ year: 2003,
+ rating: 5.7,
+ votes: 226165,
+ running_times: 8280,
+ },
+ {
+ title: "Hum Dil De Chuke Sanam",
+ year: 1999,
+ rating: 7.6,
+ votes: 13474,
+ running_times: 11280,
+ },
+ {
+ title: "Hum Tum",
+ year: 2004,
+ rating: 7.1,
+ votes: 11318,
+ running_times: 8520,
+ },
+ {
+ title: "Human Nature",
+ year: 2001,
+ rating: 6.4,
+ votes: 16165,
+ running_times: 5760,
+ },
+ {
+ title: "Human Traffic",
+ year: 1999,
+ rating: 7.1,
+ votes: 20483,
+ running_times: 5940,
+ },
+ {
+ title: "Hummingbird",
+ year: 2013,
+ rating: 6.2,
+ votes: 56975,
+ running_times: 6000,
+ },
+ {
+ title: "Hundraåringen som klev ut genom fönstret och försvann",
+ year: 2013,
+ rating: 7.1,
+ votes: 31798,
+ running_times: 6840,
+ },
+ {
+ title: "Hung fan kui",
+ year: 1995,
+ rating: 6.7,
+ votes: 32871,
+ running_times: 6240,
+ },
+ {
+ title: "Hunger",
+ year: 2008,
+ rating: 7.6,
+ votes: 56874,
+ running_times: 5760,
+ },
+ {
+ title: "Hunt for the Wilderpeople",
+ year: 2016,
+ rating: 7.9,
+ votes: 65738,
+ running_times: 6060,
+ },
+ {
+ title: "Huo yuanjia",
+ year: 2006,
+ rating: 7.7,
+ votes: 66069,
+ running_times: 8460,
+ },
+ {
+ title: "Husbands and Wives",
+ year: 1992,
+ rating: 7.6,
+ votes: 23348,
+ running_times: 6180,
+ },
+ { title: "Hush", year: 2016, rating: 6.6, votes: 56665, running_times: 4860 },
+ {
+ title: "Hush...Hush, Sweet Charlotte",
+ year: 1964,
+ rating: 7.7,
+ votes: 10077,
+ running_times: 7980,
+ },
+ {
+ title: "Hustle & Flow",
+ year: 2005,
+ rating: 7.4,
+ votes: 35128,
+ running_times: 6960,
+ },
+ {
+ title: "Hyde Park on Hudson",
+ year: 2012,
+ rating: 5.9,
+ votes: 10079,
+ running_times: 5640,
+ },
+ {
+ title: "Hysteria",
+ year: 2011,
+ rating: 6.7,
+ votes: 27483,
+ running_times: 6000,
+ },
+ {
+ title: "Hævnen",
+ year: 2010,
+ rating: 7.7,
+ votes: 34828,
+ running_times: 7140,
+ },
+ {
+ title: "Höstsonaten",
+ year: 1978,
+ rating: 8.3,
+ votes: 17643,
+ running_times: 5940,
+ },
+ {
+ title: "I Am Legend",
+ year: 2007,
+ rating: 7.2,
+ votes: 587088,
+ running_times: 6240,
+ },
+ {
+ title: "I Am Number Four",
+ year: 2011,
+ rating: 6.1,
+ votes: 207158,
+ running_times: 6540,
+ },
+ {
+ title: "I Am Sam",
+ year: 2001,
+ rating: 7.6,
+ votes: 129669,
+ running_times: 7920,
+ },
+ {
+ title: "I Confess",
+ year: 1953,
+ rating: 7.3,
+ votes: 15940,
+ running_times: 5700,
+ },
+ {
+ title: "I Could Never Be Your Woman",
+ year: 2007,
+ rating: 6,
+ votes: 15268,
+ running_times: 5820,
+ },
+ {
+ title: "I Don't Feel at Home in This World Anymore.",
+ year: 2017,
+ rating: 7,
+ votes: 21910,
+ running_times: 5580,
+ },
+ {
+ title: "I Don't Know How She Does It",
+ year: 2011,
+ rating: 4.9,
+ votes: 17591,
+ running_times: 5340,
+ },
+ {
+ title: "I Give It a Year",
+ year: 2013,
+ rating: 5.7,
+ votes: 32224,
+ running_times: 5820,
+ },
+ {
+ title: "I Heart Huckabees",
+ year: 2004,
+ rating: 6.7,
+ votes: 58804,
+ running_times: 6420,
+ },
+ {
+ title: "I Kina spiser de hunde",
+ year: 1999,
+ rating: 7.5,
+ votes: 17406,
+ running_times: 5460,
+ },
+ {
+ title: "I Know What You Did Last Summer",
+ year: 1997,
+ rating: 5.6,
+ votes: 114383,
+ running_times: 6060,
+ },
+ {
+ title: "I Know Who Killed Me",
+ year: 2007,
+ rating: 3.6,
+ votes: 23923,
+ running_times: 6300,
+ },
+ {
+ title: "I Love Trouble",
+ year: 1994,
+ rating: 5.2,
+ votes: 10211,
+ running_times: 7380,
+ },
+ {
+ title: "I Love You Phillip Morris",
+ year: 2009,
+ rating: 6.6,
+ votes: 83209,
+ running_times: 6120,
+ },
+ {
+ title: "I Love You to Death",
+ year: 1990,
+ rating: 6.4,
+ votes: 11731,
+ running_times: 5820,
+ },
+ {
+ title: "I Love You, Beth Cooper",
+ year: 2009,
+ rating: 5.3,
+ votes: 30092,
+ running_times: 6120,
+ },
+ {
+ title: "I Love You, Man",
+ year: 2009,
+ rating: 7,
+ votes: 176457,
+ running_times: 6300,
+ },
+ {
+ title: "I Now Pronounce You Chuck & Larry",
+ year: 2007,
+ rating: 6,
+ votes: 126959,
+ running_times: 6900,
+ },
+ {
+ title: "I Origins",
+ year: 2014,
+ rating: 7.3,
+ votes: 92619,
+ running_times: 6360,
+ },
+ {
+ title: "I Spit on Your Grave",
+ year: 2010,
+ rating: 6.3,
+ votes: 62588,
+ running_times: 6480,
+ },
+ {
+ title: "I Spit on Your Grave 2",
+ year: 2013,
+ rating: 5.7,
+ votes: 21431,
+ running_times: 6360,
+ },
+ {
+ title: "I Spy",
+ year: 2002,
+ rating: 5.4,
+ votes: 44160,
+ running_times: 5820,
+ },
+ {
+ title: "I Still Know What You Did Last Summer",
+ year: 1998,
+ rating: 4.6,
+ votes: 59565,
+ running_times: 6000,
+ },
+ {
+ title: "I Think I Love My Wife",
+ year: 2007,
+ rating: 5.5,
+ votes: 14333,
+ running_times: 5640,
+ },
+ {
+ title: "I'm Gonna Git You Sucka",
+ year: 1988,
+ rating: 6.6,
+ votes: 10536,
+ running_times: 5280,
+ },
+ {
+ title: "I'm Not There.",
+ year: 2007,
+ rating: 7,
+ votes: 50996,
+ running_times: 8100,
+ },
+ {
+ title: "I'm Still Here",
+ year: 2010,
+ rating: 6.2,
+ votes: 17253,
+ running_times: 6480,
+ },
+ {
+ title: "I, Daniel Blake",
+ year: 2016,
+ rating: 7.9,
+ votes: 33594,
+ running_times: 6000,
+ },
+ {
+ title: "I, Frankenstein",
+ year: 2014,
+ rating: 5.1,
+ votes: 71379,
+ running_times: 5520,
+ },
+ {
+ title: "I, Robot",
+ year: 2004,
+ rating: 7.1,
+ votes: 428767,
+ running_times: 6900,
+ },
+ { title: "I.Q.", year: 1994, rating: 6.2, votes: 21084, running_times: 6000 },
+ { title: "I.T.", year: 2016, rating: 5.4, votes: 10972, running_times: 5700 },
+ {
+ title: "Ice Age",
+ year: 2002,
+ rating: 7.6,
+ votes: 362481,
+ running_times: 6180,
+ },
+ {
+ title: "Ice Age: Collision Course",
+ year: 2016,
+ rating: 5.7,
+ votes: 39957,
+ running_times: 5640,
+ },
+ {
+ title: "Ice Age: Continental Drift",
+ year: 2012,
+ rating: 6.6,
+ votes: 160411,
+ running_times: 5280,
+ },
+ {
+ title: "Ice Age: Dawn of the Dinosaurs",
+ year: 2009,
+ rating: 7,
+ votes: 184847,
+ running_times: 7320,
+ },
+ {
+ title: "Ice Age: The Meltdown",
+ year: 2006,
+ rating: 6.8,
+ votes: 214495,
+ running_times: 6900,
+ },
+ {
+ title: "Ice Princess",
+ year: 2005,
+ rating: 6,
+ votes: 21459,
+ running_times: 5880,
+ },
+ {
+ title: "Identity",
+ year: 2003,
+ rating: 7.3,
+ votes: 194439,
+ running_times: 5460,
+ },
+ {
+ title: "Identity Thief",
+ year: 2013,
+ rating: 5.7,
+ votes: 106125,
+ running_times: 7260,
+ },
+ {
+ title: "Idiocracy",
+ year: 2006,
+ rating: 6.6,
+ votes: 119657,
+ running_times: 5040,
+ },
+ {
+ title: "Idle Hands",
+ year: 1999,
+ rating: 6.2,
+ votes: 35508,
+ running_times: 5520,
+ },
+ {
+ title: "If I Stay",
+ year: 2014,
+ rating: 6.8,
+ votes: 97119,
+ running_times: 6420,
+ },
+ {
+ title: "If Only",
+ year: 2004,
+ rating: 7.2,
+ votes: 28528,
+ running_times: 5580,
+ },
+ {
+ title: "If....",
+ year: 1968,
+ rating: 7.7,
+ votes: 18590,
+ running_times: 6660,
+ },
+ {
+ title: "Igby Goes Down",
+ year: 2002,
+ rating: 7,
+ votes: 30041,
+ running_times: 5940,
+ },
+ { title: "Igor", year: 2008, rating: 6, votes: 20624, running_times: 5220 },
+ {
+ title: "Il conformista",
+ year: 1970,
+ rating: 8.1,
+ votes: 20440,
+ running_times: 6780,
+ },
+ {
+ title: "Il divo - La spettacolare vita di Giulio Andreotti",
+ year: 2008,
+ rating: 7.3,
+ votes: 13070,
+ running_times: 6600,
+ },
+ {
+ title: "Il grande silenzio",
+ year: 1968,
+ rating: 7.8,
+ votes: 10696,
+ running_times: 6300,
+ },
+ {
+ title: "Il racconto dei racconti - Tale of Tales",
+ year: 2015,
+ rating: 6.4,
+ votes: 19327,
+ running_times: 8040,
+ },
+ {
+ title: "Il y a longtemps que je t'aime",
+ year: 2008,
+ rating: 7.6,
+ votes: 18473,
+ running_times: 7020,
+ },
+ {
+ title: "Im Juli",
+ year: 2000,
+ rating: 7.8,
+ votes: 18049,
+ running_times: 5940,
+ },
+ {
+ title: "Imagine Me & You",
+ year: 2005,
+ rating: 6.8,
+ votes: 25393,
+ running_times: 5400,
+ },
+ {
+ title: "Imagine That",
+ year: 2009,
+ rating: 5.6,
+ votes: 11384,
+ running_times: 6420,
+ },
+ {
+ title: "Imitation of Life",
+ year: 1959,
+ rating: 7.9,
+ votes: 12112,
+ running_times: 7500,
+ },
+ {
+ title: "Immortal Beloved",
+ year: 1994,
+ rating: 7.5,
+ votes: 20290,
+ running_times: 7260,
+ },
+ {
+ title: "Immortals",
+ year: 2011,
+ rating: 6,
+ votes: 146055,
+ running_times: 6600,
+ },
+ {
+ title: "Immortel (ad vitam)",
+ year: 2004,
+ rating: 6,
+ votes: 19010,
+ running_times: 6180,
+ },
+ {
+ title: "Imperium",
+ year: 2016,
+ rating: 6.5,
+ votes: 31969,
+ running_times: 6540,
+ },
+ {
+ title: "Impostor",
+ year: 2001,
+ rating: 6.2,
+ votes: 20888,
+ running_times: 6120,
+ },
+ {
+ title: "In & Out",
+ year: 1997,
+ rating: 6.3,
+ votes: 34168,
+ running_times: 5400,
+ },
+ {
+ title: "In America",
+ year: 2002,
+ rating: 7.8,
+ votes: 37906,
+ running_times: 6300,
+ },
+ {
+ title: "In Bruges",
+ year: 2008,
+ rating: 7.9,
+ votes: 332444,
+ running_times: 6420,
+ },
+ {
+ title: "In Cold Blood",
+ year: 1967,
+ rating: 8,
+ votes: 20567,
+ running_times: 8040,
+ },
+ {
+ title: "In Dreams",
+ year: 1999,
+ rating: 5.5,
+ votes: 11367,
+ running_times: 6000,
+ },
+ {
+ title: "In Good Company",
+ year: 2004,
+ rating: 6.5,
+ votes: 50486,
+ running_times: 6540,
+ },
+ {
+ title: "In Hell",
+ year: 2003,
+ rating: 6.3,
+ votes: 16438,
+ running_times: 5880,
+ },
+ {
+ title: "In Her Shoes",
+ year: 2005,
+ rating: 6.5,
+ votes: 54532,
+ running_times: 7800,
+ },
+ {
+ title: "In Time",
+ year: 2011,
+ rating: 6.7,
+ votes: 327425,
+ running_times: 6540,
+ },
+ {
+ title: "In Your Eyes",
+ year: 2014,
+ rating: 7.1,
+ votes: 26765,
+ running_times: 6360,
+ },
+ {
+ title: "In a Lonely Place",
+ year: 1950,
+ rating: 8,
+ votes: 19749,
+ running_times: 5640,
+ },
+ {
+ title: "In a World...",
+ year: 2013,
+ rating: 6.7,
+ votes: 28040,
+ running_times: 5580,
+ },
+ {
+ title: "In the Army Now",
+ year: 1994,
+ rating: 4.8,
+ votes: 10741,
+ running_times: 5460,
+ },
+ {
+ title: "In the Bedroom",
+ year: 2001,
+ rating: 7.5,
+ votes: 33930,
+ running_times: 8280,
+ },
+ {
+ title: "In the Company of Men",
+ year: 1997,
+ rating: 7.3,
+ votes: 12049,
+ running_times: 5820,
+ },
+ {
+ title: "In the Cut",
+ year: 2003,
+ rating: 5.3,
+ votes: 19559,
+ running_times: 7140,
+ },
+ {
+ title: "In the Electric Mist",
+ year: 2009,
+ rating: 6.1,
+ votes: 14439,
+ running_times: 7020,
+ },
+ {
+ title: "In the Heart of the Sea",
+ year: 2015,
+ rating: 6.9,
+ votes: 96896,
+ running_times: 7320,
+ },
+ {
+ title: "In the Heat of the Night",
+ year: 1967,
+ rating: 8,
+ votes: 55172,
+ running_times: 6540,
+ },
+ {
+ title: "In the Land of Blood and Honey",
+ year: 2011,
+ rating: 4.4,
+ votes: 32191,
+ running_times: 7620,
+ },
+ {
+ title: "In the Land of Women",
+ year: 2007,
+ rating: 6.5,
+ votes: 28999,
+ running_times: 5820,
+ },
+ {
+ title: "In the Line of Fire",
+ year: 1993,
+ rating: 7.2,
+ votes: 79362,
+ running_times: 8280,
+ },
+ {
+ title: "In the Loop",
+ year: 2009,
+ rating: 7.5,
+ votes: 47572,
+ running_times: 6360,
+ },
+ {
+ title: "In the Mouth of Madness",
+ year: 1994,
+ rating: 7.2,
+ votes: 48288,
+ running_times: 5700,
+ },
+ {
+ title: "In the Name of the Father",
+ year: 1993,
+ rating: 8.1,
+ votes: 125082,
+ running_times: 7980,
+ },
+ {
+ title: "In the Name of the King: A Dungeon Siege Tale",
+ year: 2007,
+ rating: 3.8,
+ votes: 40212,
+ running_times: 9360,
+ },
+ {
+ title: "In the Valley of Elah",
+ year: 2007,
+ rating: 7.2,
+ votes: 63206,
+ running_times: 7260,
+ },
+ {
+ title: "Incendies",
+ year: 2010,
+ rating: 8.2,
+ votes: 101345,
+ running_times: 7860,
+ },
+ {
+ title: "Inception",
+ year: 2010,
+ rating: 8.8,
+ votes: 1653028,
+ running_times: 8880,
+ },
+ {
+ title: "Indecent Proposal",
+ year: 1993,
+ rating: 5.8,
+ votes: 52305,
+ running_times: 7020,
+ },
+ {
+ title: "Independence Day",
+ year: 1996,
+ rating: 7,
+ votes: 465279,
+ running_times: 9240,
+ },
+ {
+ title: "Independence Day: Resurgence",
+ year: 2016,
+ rating: 5.3,
+ votes: 139960,
+ running_times: 7200,
+ },
+ {
+ title: "Indiana Jones and the Kingdom of the Crystal Skull",
+ year: 2008,
+ rating: 6.2,
+ votes: 362353,
+ running_times: 7320,
+ },
+ {
+ title: "Indiana Jones and the Last Crusade",
+ year: 1989,
+ rating: 8.3,
+ votes: 574150,
+ running_times: 7620,
+ },
+ {
+ title: "Indiana Jones and the Temple of Doom",
+ year: 1984,
+ rating: 7.6,
+ votes: 367264,
+ running_times: 7080,
+ },
+ {
+ title: "Indie Game: The Movie",
+ year: 2012,
+ rating: 7.7,
+ votes: 18687,
+ running_times: 6180,
+ },
+ {
+ title: "Infamous",
+ year: 2006,
+ rating: 7.1,
+ votes: 14944,
+ running_times: 7080,
+ },
+ {
+ title: "Inferno",
+ year: 1980,
+ rating: 6.7,
+ votes: 13844,
+ running_times: 7200,
+ },
+ {
+ title: "Inferno",
+ year: 2016,
+ rating: 6.2,
+ votes: 115981,
+ running_times: 7260,
+ },
+ {
+ title: "Infini",
+ year: 2015,
+ rating: 5.4,
+ votes: 12268,
+ running_times: 6600,
+ },
+ {
+ title: "Infinitely Polar Bear",
+ year: 2014,
+ rating: 7,
+ votes: 12653,
+ running_times: 5400,
+ },
+ {
+ title: "Inglourious Basterds",
+ year: 2009,
+ rating: 8.3,
+ votes: 1004190,
+ running_times: 9180,
+ },
+ {
+ title: "Ingrid Goes West",
+ year: 2017,
+ rating: 6.7,
+ votes: 10144,
+ running_times: 5880,
+ },
+ {
+ title: "Inherent Vice",
+ year: 2014,
+ rating: 6.7,
+ votes: 73405,
+ running_times: 8880,
+ },
+ {
+ title: "Inherit the Wind",
+ year: 1960,
+ rating: 8.2,
+ votes: 22703,
+ running_times: 7680,
+ },
+ { title: "Ink", year: 2009, rating: 7, votes: 19498, running_times: 6420 },
+ {
+ title: "Inkheart",
+ year: 2008,
+ rating: 6.1,
+ votes: 65047,
+ running_times: 6360,
+ },
+ {
+ title: "Inland Empire",
+ year: 2006,
+ rating: 7,
+ votes: 46150,
+ running_times: 11820,
+ },
+ {
+ title: "Innerspace",
+ year: 1987,
+ rating: 6.8,
+ votes: 45776,
+ running_times: 7200,
+ },
+ {
+ title: "Innocence",
+ year: 2004,
+ rating: 7.6,
+ votes: 31374,
+ running_times: 6000,
+ },
+ {
+ title: "Inside I'm Dancing",
+ year: 2004,
+ rating: 7.9,
+ votes: 12600,
+ running_times: 6240,
+ },
+ {
+ title: "Inside Job",
+ year: 2010,
+ rating: 8.3,
+ votes: 61590,
+ running_times: 6300,
+ },
+ {
+ title: "Inside Llewyn Davis",
+ year: 2013,
+ rating: 7.5,
+ votes: 110845,
+ running_times: 6240,
+ },
+ {
+ title: "Inside Man",
+ year: 2006,
+ rating: 7.6,
+ votes: 293330,
+ running_times: 7740,
+ },
+ {
+ title: "Inside Out",
+ year: 2015,
+ rating: 8.2,
+ votes: 451282,
+ running_times: 5700,
+ },
+ {
+ title: "Insidious",
+ year: 2010,
+ rating: 6.8,
+ votes: 229734,
+ running_times: 6180,
+ },
+ {
+ title: "Insidious: Chapter 2",
+ year: 2013,
+ rating: 6.6,
+ votes: 125404,
+ running_times: 6360,
+ },
+ {
+ title: "Insidious: Chapter 3",
+ year: 2015,
+ rating: 6.1,
+ votes: 69063,
+ running_times: 5820,
+ },
+ {
+ title: "Insomnia",
+ year: 2002,
+ rating: 7.2,
+ votes: 238048,
+ running_times: 7080,
+ },
+ {
+ title: "Inspector Gadget",
+ year: 1999,
+ rating: 4.1,
+ votes: 39282,
+ running_times: 6600,
+ },
+ {
+ title: "Instinct",
+ year: 1999,
+ rating: 6.5,
+ votes: 28930,
+ running_times: 7560,
+ },
+ {
+ title: "Insurgent",
+ year: 2015,
+ rating: 6.3,
+ votes: 181020,
+ running_times: 7140,
+ },
+ {
+ title: "Intacto",
+ year: 2001,
+ rating: 6.9,
+ votes: 11851,
+ running_times: 6480,
+ },
+ {
+ title: "Interiors",
+ year: 1978,
+ rating: 7.5,
+ votes: 15486,
+ running_times: 5520,
+ },
+ {
+ title: "Intermission",
+ year: 2003,
+ rating: 6.9,
+ votes: 14149,
+ running_times: 6300,
+ },
+ {
+ title: "Internal Affairs",
+ year: 1990,
+ rating: 6.5,
+ votes: 14372,
+ running_times: 6900,
+ },
+ {
+ title: "Interstate 60: Episodes of the Road",
+ year: 2002,
+ rating: 7.7,
+ votes: 25480,
+ running_times: 6960,
+ },
+ {
+ title: "Interstella 5555: The 5tory of the 5ecret 5tar 5ystem",
+ year: 2003,
+ rating: 7.9,
+ votes: 11987,
+ running_times: 4080,
+ },
+ {
+ title: "Interstellar",
+ year: 2014,
+ rating: 8.6,
+ votes: 1119789,
+ running_times: 10140,
+ },
+ {
+ title: "Interview",
+ year: 2007,
+ rating: 6.8,
+ votes: 12610,
+ running_times: 5040,
+ },
+ {
+ title: "Interview with the Vampire: The Vampire Chronicles",
+ year: 1994,
+ rating: 7.6,
+ votes: 257571,
+ running_times: 7380,
+ },
+ {
+ title: "Into the Abyss",
+ year: 2011,
+ rating: 7.3,
+ votes: 13936,
+ running_times: 6420,
+ },
+ {
+ title: "Into the Blue",
+ year: 2005,
+ rating: 5.8,
+ votes: 66989,
+ running_times: 6600,
+ },
+ {
+ title: "Into the Forest",
+ year: 2015,
+ rating: 5.9,
+ votes: 12306,
+ running_times: 6060,
+ },
+ {
+ title: "Into the Storm",
+ year: 2014,
+ rating: 5.8,
+ votes: 57871,
+ running_times: 5340,
+ },
+ {
+ title: "Into the White",
+ year: 2012,
+ rating: 7.2,
+ votes: 16822,
+ running_times: 6240,
+ },
+ {
+ title: "Into the Wild",
+ year: 2007,
+ rating: 8.1,
+ votes: 478844,
+ running_times: 8880,
+ },
+ {
+ title: "Into the Woods",
+ year: 2014,
+ rating: 6,
+ votes: 113738,
+ running_times: 7500,
+ },
+ {
+ title: "Intolerable Cruelty",
+ year: 2003,
+ rating: 6.3,
+ votes: 81396,
+ running_times: 6000,
+ },
+ {
+ title: "Intouchables",
+ year: 2011,
+ rating: 8.6,
+ votes: 590763,
+ running_times: 6720,
+ },
+ {
+ title: "Intruders",
+ year: 2011,
+ rating: 5.4,
+ votes: 18646,
+ running_times: 6000,
+ },
+ {
+ title: "Invasion of the Body Snatchers",
+ year: 1956,
+ rating: 7.8,
+ votes: 37639,
+ running_times: 4800,
+ },
+ {
+ title: "Invasion of the Body Snatchers",
+ year: 1978,
+ rating: 7.4,
+ votes: 41739,
+ running_times: 6900,
+ },
+ {
+ title: "Inventing the Abbotts",
+ year: 1997,
+ rating: 6.4,
+ votes: 10116,
+ running_times: 6600,
+ },
+ {
+ title: "Invictus",
+ year: 2009,
+ rating: 7.4,
+ votes: 133507,
+ running_times: 8040,
+ },
+ {
+ title: "Invincible",
+ year: 2006,
+ rating: 7.1,
+ votes: 56381,
+ running_times: 6300,
+ },
+ {
+ title: "Io sono l'amore",
+ year: 2009,
+ rating: 7,
+ votes: 15807,
+ running_times: 7200,
+ },
+ { title: "Iris", year: 2001, rating: 7.1, votes: 15548, running_times: 5460 },
+ {
+ title: "Irma la Douce",
+ year: 1963,
+ rating: 7.4,
+ votes: 13869,
+ running_times: 8820,
+ },
+ {
+ title: "Iron Eagle",
+ year: 1986,
+ rating: 5.3,
+ votes: 11396,
+ running_times: 7020,
+ },
+ {
+ title: "Iron Man",
+ year: 2008,
+ rating: 7.9,
+ votes: 765492,
+ running_times: 7560,
+ },
+ {
+ title: "Iron Man 2",
+ year: 2010,
+ rating: 7,
+ votes: 579338,
+ running_times: 7440,
+ },
+ {
+ title: "Iron Man Three",
+ year: 2013,
+ rating: 7.2,
+ votes: 613287,
+ running_times: 11700,
+ },
+ {
+ title: "Iron Sky",
+ year: 2012,
+ rating: 5.9,
+ votes: 83589,
+ running_times: 6600,
+ },
+ {
+ title: "Ironclad",
+ year: 2011,
+ rating: 6.2,
+ votes: 36401,
+ running_times: 7260,
+ },
+ {
+ title: "Irrational Man",
+ year: 2015,
+ rating: 6.6,
+ votes: 44129,
+ running_times: 5700,
+ },
+ {
+ title: "Irréversible",
+ year: 2002,
+ rating: 7.4,
+ votes: 96418,
+ running_times: 5940,
+ },
+ { title: "It", year: 2017, rating: 7.7, votes: 193799, running_times: 8100 },
+ {
+ title: "It Comes at Night",
+ year: 2017,
+ rating: 6.2,
+ votes: 42069,
+ running_times: 5460,
+ },
+ {
+ title: "It Could Happen to You",
+ year: 1994,
+ rating: 6.3,
+ votes: 29833,
+ running_times: 6060,
+ },
+ {
+ title: "It Follows",
+ year: 2014,
+ rating: 6.9,
+ votes: 152676,
+ running_times: 6000,
+ },
+ {
+ title: "It Happened One Night",
+ year: 1934,
+ rating: 8.2,
+ votes: 73493,
+ running_times: 6300,
+ },
+ {
+ title: "It Might Get Loud",
+ year: 2008,
+ rating: 7.6,
+ votes: 11240,
+ running_times: 5880,
+ },
+ {
+ title: "It Takes Two",
+ year: 1995,
+ rating: 5.8,
+ votes: 16405,
+ running_times: 6060,
+ },
+ {
+ title: "It's All Gone Pete Tong",
+ year: 2004,
+ rating: 7.4,
+ votes: 17682,
+ running_times: 5400,
+ },
+ {
+ title: "It's Complicated",
+ year: 2009,
+ rating: 6.6,
+ votes: 74931,
+ running_times: 7200,
+ },
+ {
+ title: "It's Kind of a Funny Story",
+ year: 2010,
+ rating: 7.1,
+ votes: 116972,
+ running_times: 6060,
+ },
+ {
+ title: "It's a Boy Girl Thing",
+ year: 2006,
+ rating: 6.3,
+ votes: 34972,
+ running_times: 5700,
+ },
+ {
+ title: "It's a Mad Mad Mad Mad World",
+ year: 1963,
+ rating: 7.6,
+ votes: 31888,
+ running_times: 12300,
+ },
+ {
+ title: "It's a Wonderful Life",
+ year: 1946,
+ rating: 8.6,
+ votes: 312993,
+ running_times: 7800,
+ },
+ {
+ title: "Italiensk for begyndere",
+ year: 2000,
+ rating: 7.1,
+ votes: 11849,
+ running_times: 7080,
+ },
+ {
+ title: "J. Edgar",
+ year: 2011,
+ rating: 6.6,
+ votes: 109877,
+ running_times: 8220,
+ },
+ { title: "JCVD", year: 2008, rating: 7.2, votes: 34799, running_times: 5820 },
+ { title: "JFK", year: 1991, rating: 8, votes: 122897, running_times: 12360 },
+ {
+ title: "Jab We Met",
+ year: 2007,
+ rating: 8,
+ votes: 37148,
+ running_times: 8280,
+ },
+ {
+ title: "Jabberwocky",
+ year: 1977,
+ rating: 6.2,
+ votes: 10865,
+ running_times: 6300,
+ },
+ { title: "Jack", year: 1996, rating: 5.8, votes: 49751, running_times: 6780 },
+ {
+ title: "Jack Frost",
+ year: 1998,
+ rating: 5.3,
+ votes: 27169,
+ running_times: 6060,
+ },
+ {
+ title: "Jack Reacher",
+ year: 2012,
+ rating: 7,
+ votes: 260550,
+ running_times: 7800,
+ },
+ {
+ title: "Jack Reacher: Never Go Back",
+ year: 2016,
+ rating: 6.1,
+ votes: 96285,
+ running_times: 7080,
+ },
+ {
+ title: "Jack Ryan: Shadow Recruit",
+ year: 2014,
+ rating: 6.2,
+ votes: 106376,
+ running_times: 6300,
+ },
+ {
+ title: "Jack and Jill",
+ year: 2011,
+ rating: 3.4,
+ votes: 65679,
+ running_times: 5460,
+ },
+ {
+ title: "Jack the Giant Slayer",
+ year: 2013,
+ rating: 6.3,
+ votes: 115065,
+ running_times: 6840,
+ },
+ {
+ title: "Jackass 3D",
+ year: 2010,
+ rating: 7,
+ votes: 50664,
+ running_times: 6060,
+ },
+ {
+ title: "Jackass Number Two",
+ year: 2006,
+ rating: 7.1,
+ votes: 59800,
+ running_times: 5520,
+ },
+ {
+ title: "Jackass: The Movie",
+ year: 2002,
+ rating: 6.6,
+ votes: 72492,
+ running_times: 5220,
+ },
+ {
+ title: "Jackie",
+ year: 2016,
+ rating: 6.7,
+ votes: 54108,
+ running_times: 6000,
+ },
+ {
+ title: "Jackie Brown",
+ year: 1997,
+ rating: 7.5,
+ votes: 260746,
+ running_times: 9240,
+ },
+ {
+ title: "Jacob's Ladder",
+ year: 1990,
+ rating: 7.5,
+ votes: 83001,
+ running_times: 6780,
+ },
+ {
+ title: "Jagged Edge",
+ year: 1985,
+ rating: 6.5,
+ votes: 11243,
+ running_times: 6480,
+ },
+ {
+ title: "Jagten",
+ year: 2012,
+ rating: 8.3,
+ votes: 206070,
+ running_times: 6900,
+ },
+ {
+ title: "Jakob the Liar",
+ year: 1999,
+ rating: 6.5,
+ votes: 13452,
+ running_times: 7200,
+ },
+ {
+ title: "James and the Giant Peach",
+ year: 1996,
+ rating: 6.7,
+ votes: 53040,
+ running_times: 4740,
+ },
+ {
+ title: "Jane Austen's Mafia!",
+ year: 1998,
+ rating: 5.5,
+ votes: 13259,
+ running_times: 5220,
+ },
+ {
+ title: "Jane Eyre",
+ year: 2011,
+ rating: 7.4,
+ votes: 69801,
+ running_times: 7200,
+ },
+ {
+ title: "Jane Got a Gun",
+ year: 2015,
+ rating: 5.9,
+ votes: 16203,
+ running_times: 5880,
+ },
+ {
+ title: "Jarhead",
+ year: 2005,
+ rating: 7,
+ votes: 153689,
+ running_times: 7500,
+ },
+ {
+ title: "Jason Bourne",
+ year: 2016,
+ rating: 6.6,
+ votes: 168047,
+ running_times: 7380,
+ },
+ {
+ title: "Jason Goes to Hell: The Final Friday",
+ year: 1993,
+ rating: 4.3,
+ votes: 21936,
+ running_times: 5460,
+ },
+ {
+ title: "Jason Lives: Friday the 13th Part VI",
+ year: 1986,
+ rating: 5.9,
+ votes: 29197,
+ running_times: 5160,
+ },
+ {
+ title: "Jason X",
+ year: 2001,
+ rating: 4.4,
+ votes: 42714,
+ running_times: 5460,
+ },
+ {
+ title: "Jason and the Argonauts",
+ year: 1963,
+ rating: 7.4,
+ votes: 19059,
+ running_times: 6240,
+ },
+ {
+ title: "Jawbreaker",
+ year: 1999,
+ rating: 5.5,
+ votes: 20502,
+ running_times: 5760,
+ },
+ { title: "Jaws", year: 1975, rating: 8, votes: 461570, running_times: 7800 },
+ {
+ title: "Jaws 2",
+ year: 1978,
+ rating: 5.7,
+ votes: 57309,
+ running_times: 7860,
+ },
+ {
+ title: "Jaws 3-D",
+ year: 1983,
+ rating: 3.6,
+ votes: 31520,
+ running_times: 5940,
+ },
+ {
+ title: "Jaws: The Revenge",
+ year: 1987,
+ rating: 2.9,
+ votes: 33783,
+ running_times: 5520,
+ },
+ {
+ title: "Jay and Silent Bob Strike Back",
+ year: 2001,
+ rating: 6.9,
+ votes: 135086,
+ running_times: 6240,
+ },
+ {
+ title: "Jeepers Creepers",
+ year: 2001,
+ rating: 6.1,
+ votes: 96505,
+ running_times: 5400,
+ },
+ {
+ title: "Jeepers Creepers II",
+ year: 2003,
+ rating: 5.6,
+ votes: 50446,
+ running_times: 6240,
+ },
+ {
+ title: "Jeff, Who Lives at Home",
+ year: 2011,
+ rating: 6.5,
+ votes: 58122,
+ running_times: 4980,
+ },
+ {
+ title: "Jennifer Eight",
+ year: 1992,
+ rating: 6.2,
+ votes: 13166,
+ running_times: 7500,
+ },
+ {
+ title: "Jennifer's Body",
+ year: 2009,
+ rating: 5.1,
+ votes: 99183,
+ running_times: 6420,
+ },
+ {
+ title: "Jeremiah Johnson",
+ year: 1972,
+ rating: 7.6,
+ votes: 23289,
+ running_times: 6960,
+ },
+ {
+ title: "Jerry Maguire",
+ year: 1996,
+ rating: 7.3,
+ votes: 206427,
+ running_times: 8340,
+ },
+ {
+ title: "Jersey Boys",
+ year: 2014,
+ rating: 6.8,
+ votes: 27880,
+ running_times: 8040,
+ },
+ {
+ title: "Jersey Girl",
+ year: 2004,
+ rating: 6.2,
+ votes: 57587,
+ running_times: 6120,
+ },
+ {
+ title: "Jessabelle",
+ year: 2014,
+ rating: 5.4,
+ votes: 18987,
+ running_times: 5400,
+ },
+ {
+ title: "Jesus Camp",
+ year: 2006,
+ rating: 7.5,
+ votes: 24239,
+ running_times: 5220,
+ },
+ {
+ title: "Jesus Christ Superstar",
+ year: 1973,
+ rating: 7.3,
+ votes: 21189,
+ running_times: 6480,
+ },
+ {
+ title: "Jigsaw",
+ year: 2017,
+ rating: 6.1,
+ votes: 16047,
+ running_times: 5520,
+ },
+ {
+ title: "Jimmy Neutron: Boy Genius",
+ year: 2001,
+ rating: 6,
+ votes: 26177,
+ running_times: 5040,
+ },
+ {
+ title: "Jin ling shi san chai",
+ year: 2011,
+ rating: 7.6,
+ votes: 42340,
+ running_times: 8760,
+ },
+ {
+ title: "Jing wu men",
+ year: 1972,
+ rating: 7.4,
+ votes: 20490,
+ running_times: 6480,
+ },
+ {
+ title: "Jingle All the Way",
+ year: 1996,
+ rating: 5.5,
+ votes: 76054,
+ running_times: 5640,
+ },
+ {
+ title: "Joan of Arc",
+ year: 1999,
+ rating: 6.4,
+ votes: 58830,
+ running_times: 9480,
+ },
+ { title: "Jobs", year: 2013, rating: 5.9, votes: 84088, running_times: 7680 },
+ {
+ title: "Jodorowsky's Dune",
+ year: 2013,
+ rating: 8.1,
+ votes: 16961,
+ running_times: 5400,
+ },
+ { title: "Joe", year: 2013, rating: 6.9, votes: 39777, running_times: 7020 },
+ {
+ title: "Joe Dirt",
+ year: 2001,
+ rating: 5.9,
+ votes: 44605,
+ running_times: 5460,
+ },
+ {
+ title: "Joe Kidd",
+ year: 1972,
+ rating: 6.5,
+ votes: 13727,
+ running_times: 5280,
+ },
+ {
+ title: "Joe Versus the Volcano",
+ year: 1990,
+ rating: 5.7,
+ votes: 30028,
+ running_times: 6120,
+ },
+ {
+ title: "Joe's Apartment",
+ year: 1996,
+ rating: 5.4,
+ votes: 11193,
+ running_times: 4800,
+ },
+ {
+ title: "John Carter",
+ year: 2012,
+ rating: 6.6,
+ votes: 226112,
+ running_times: 7920,
+ },
+ {
+ title: "John Dies at the End",
+ year: 2012,
+ rating: 6.4,
+ votes: 32588,
+ running_times: 5940,
+ },
+ {
+ title: "John Q",
+ year: 2002,
+ rating: 7.1,
+ votes: 107437,
+ running_times: 6960,
+ },
+ {
+ title: "John Tucker Must Die",
+ year: 2006,
+ rating: 5.8,
+ votes: 71843,
+ running_times: 5700,
+ },
+ {
+ title: "John Wick",
+ year: 2014,
+ rating: 7.3,
+ votes: 365044,
+ running_times: 6060,
+ },
+ {
+ title: "John Wick: Chapter 2",
+ year: 2017,
+ rating: 7.5,
+ votes: 201944,
+ running_times: 7320,
+ },
+ {
+ title: "Johnny Dangerously",
+ year: 1984,
+ rating: 6.4,
+ votes: 11727,
+ running_times: 5400,
+ },
+ {
+ title: "Johnny English",
+ year: 2003,
+ rating: 6.1,
+ votes: 122454,
+ running_times: 5280,
+ },
+ {
+ title: "Johnny English Reborn",
+ year: 2011,
+ rating: 6.3,
+ votes: 96666,
+ running_times: 6060,
+ },
+ {
+ title: "Johnny Got His Gun",
+ year: 1971,
+ rating: 7.9,
+ votes: 13068,
+ running_times: 6660,
+ },
+ {
+ title: "Johnny Guitar",
+ year: 1954,
+ rating: 7.7,
+ votes: 12458,
+ running_times: 6600,
+ },
+ {
+ title: "Johnny Mnemonic",
+ year: 1995,
+ rating: 5.6,
+ votes: 59292,
+ running_times: 6180,
+ },
+ {
+ title: "Jonah Hex",
+ year: 2010,
+ rating: 4.7,
+ votes: 48928,
+ running_times: 4860,
+ },
+ {
+ title: "Jonas Brothers: The 3D Concert Experience",
+ year: 2009,
+ rating: 2.1,
+ votes: 17138,
+ running_times: 5100,
+ },
+ {
+ title: "Joshua",
+ year: 2007,
+ rating: 5.9,
+ votes: 10668,
+ running_times: 6360,
+ },
+ {
+ title: "Josie and the Pussycats",
+ year: 2001,
+ rating: 5.4,
+ votes: 19739,
+ running_times: 5880,
+ },
+ {
+ title: "Journey 2: The Mysterious Island",
+ year: 2012,
+ rating: 5.8,
+ votes: 74661,
+ running_times: 5640,
+ },
+ {
+ title: "Journey to the Center of the Earth",
+ year: 1959,
+ rating: 7.1,
+ votes: 12773,
+ running_times: 7920,
+ },
+ {
+ title: "Journey to the Center of the Earth",
+ year: 2008,
+ rating: 5.8,
+ votes: 95171,
+ running_times: 5580,
+ },
+ { title: "Joy", year: 2015, rating: 6.6, votes: 104704, running_times: 7440 },
+ {
+ title: "Joy Ride",
+ year: 2001,
+ rating: 6.6,
+ votes: 56944,
+ running_times: 5820,
+ },
+ {
+ title: "Joyeux Noël",
+ year: 2005,
+ rating: 7.8,
+ votes: 23749,
+ running_times: 6960,
+ },
+ {
+ title: "Judge Dredd",
+ year: 1995,
+ rating: 5.5,
+ votes: 96037,
+ running_times: 5760,
+ },
+ {
+ title: "Judgment Night",
+ year: 1993,
+ rating: 6.6,
+ votes: 13094,
+ running_times: 6600,
+ },
+ {
+ title: "Judgment at Nuremberg",
+ year: 1961,
+ rating: 8.3,
+ votes: 51733,
+ running_times: 11160,
+ },
+ {
+ title: "Jue di tao wang",
+ year: 2016,
+ rating: 5.7,
+ votes: 14156,
+ running_times: 6420,
+ },
+ {
+ title: "Juice",
+ year: 1992,
+ rating: 7.1,
+ votes: 19092,
+ running_times: 5700,
+ },
+ {
+ title: "Jules et Jim",
+ year: 1962,
+ rating: 7.9,
+ votes: 30428,
+ running_times: 6300,
+ },
+ {
+ title: "Julie & Julia",
+ year: 2009,
+ rating: 7,
+ votes: 87286,
+ running_times: 7080,
+ },
+ {
+ title: "Jumanji",
+ year: 1995,
+ rating: 6.9,
+ votes: 236688,
+ running_times: 6240,
+ },
+ {
+ title: "Jumper",
+ year: 2008,
+ rating: 6.1,
+ votes: 258533,
+ running_times: 5280,
+ },
+ {
+ title: "Jumpin' Jack Flash",
+ year: 1986,
+ rating: 5.8,
+ votes: 15852,
+ running_times: 6300,
+ },
+ {
+ title: "Junebug",
+ year: 2005,
+ rating: 7,
+ votes: 19931,
+ running_times: 6360,
+ },
+ {
+ title: "Jungle",
+ year: 2017,
+ rating: 6.7,
+ votes: 16117,
+ running_times: 6900,
+ },
+ {
+ title: "Jungle 2 Jungle",
+ year: 1997,
+ rating: 5.1,
+ votes: 19645,
+ running_times: 6300,
+ },
+ {
+ title: "Jungle Fever",
+ year: 1991,
+ rating: 6.5,
+ votes: 14456,
+ running_times: 7920,
+ },
+ {
+ title: "Junior",
+ year: 1994,
+ rating: 4.6,
+ votes: 57432,
+ running_times: 6540,
+ },
+ {
+ title: "Juno",
+ year: 2007,
+ rating: 7.5,
+ votes: 442969,
+ running_times: 5760,
+ },
+ {
+ title: "Jupiter Ascending",
+ year: 2015,
+ rating: 5.3,
+ votes: 155246,
+ running_times: 7620,
+ },
+ {
+ title: "Jurassic Park",
+ year: 1993,
+ rating: 8.1,
+ votes: 695981,
+ running_times: 7620,
+ },
+ {
+ title: "Jurassic Park III",
+ year: 2001,
+ rating: 5.9,
+ votes: 242697,
+ running_times: 5520,
+ },
+ {
+ title: "Jurassic World",
+ year: 2015,
+ rating: 7,
+ votes: 476644,
+ running_times: 7440,
+ },
+ {
+ title: "Just Before I Go",
+ year: 2014,
+ rating: 6.4,
+ votes: 15316,
+ running_times: 5700,
+ },
+ {
+ title: "Just Cause",
+ year: 1995,
+ rating: 6.4,
+ votes: 21147,
+ running_times: 6120,
+ },
+ {
+ title: "Just Friends",
+ year: 2005,
+ rating: 6.2,
+ votes: 89395,
+ running_times: 5760,
+ },
+ {
+ title: "Just Go with It",
+ year: 2011,
+ rating: 6.4,
+ votes: 187549,
+ running_times: 7020,
+ },
+ {
+ title: "Just Like Heaven",
+ year: 2005,
+ rating: 6.7,
+ votes: 88168,
+ running_times: 5700,
+ },
+ {
+ title: "Just Married",
+ year: 2003,
+ rating: 5.5,
+ votes: 61009,
+ running_times: 5700,
+ },
+ {
+ title: "Just My Luck",
+ year: 2006,
+ rating: 5.4,
+ votes: 47721,
+ running_times: 6180,
+ },
+ {
+ title: "Just One of the Guys",
+ year: 1985,
+ rating: 6.5,
+ votes: 10976,
+ running_times: 6000,
+ },
+ {
+ title: "Just Visiting",
+ year: 2001,
+ rating: 5.8,
+ votes: 16255,
+ running_times: 5280,
+ },
+ {
+ title: "Just Wright",
+ year: 2010,
+ rating: 5.9,
+ votes: 11239,
+ running_times: 6000,
+ },
+ {
+ title: "Justice League",
+ year: 2017,
+ rating: 7.2,
+ votes: 141370,
+ running_times: 7200,
+ },
+ {
+ title: "Justin Bieber: Never Say Never",
+ year: 2011,
+ rating: 1.6,
+ votes: 74720,
+ running_times: 6900,
+ },
+ {
+ title: "K-19: The Widowmaker",
+ year: 2002,
+ rating: 6.7,
+ votes: 52505,
+ running_times: 8280,
+ },
+ { title: "K-9", year: 1989, rating: 6, votes: 27515, running_times: 6060 },
+ {
+ title: "K-PAX",
+ year: 2001,
+ rating: 7.4,
+ votes: 160033,
+ running_times: 7200,
+ },
+ {
+ title: "Kabhi Alvida Naa Kehna",
+ year: 2006,
+ rating: 6.1,
+ votes: 15518,
+ running_times: 11580,
+ },
+ {
+ title: "Kabhi Haan Kabhi Naa",
+ year: 1994,
+ rating: 8,
+ votes: 14320,
+ running_times: 9480,
+ },
+ {
+ title: "Kabhi Khushi Kabhie Gham...",
+ year: 2001,
+ rating: 7.5,
+ votes: 35341,
+ running_times: 12600,
+ },
+ {
+ title: "Kaboom",
+ year: 2010,
+ rating: 5.7,
+ votes: 11187,
+ running_times: 5160,
+ },
+ {
+ title: "Kahaani",
+ year: 2012,
+ rating: 8.2,
+ votes: 46148,
+ running_times: 7320,
+ },
+ {
+ title: "Kaho Naa... Pyaar Hai",
+ year: 2000,
+ rating: 6.9,
+ votes: 11078,
+ running_times: 10620,
+ },
+ {
+ title: "Kalifornia",
+ year: 1993,
+ rating: 6.7,
+ votes: 44968,
+ running_times: 7080,
+ },
+ {
+ title: "Kaminey",
+ year: 2009,
+ rating: 7.4,
+ votes: 14048,
+ running_times: 7800,
+ },
+ {
+ title: "Kangaroo Jack",
+ year: 2003,
+ rating: 4.4,
+ votes: 25282,
+ running_times: 5340,
+ },
+ {
+ title: "Kapringen",
+ year: 2012,
+ rating: 7.2,
+ votes: 13742,
+ running_times: 6180,
+ },
+ {
+ title: "Kari-gurashi no Arietti",
+ year: 2010,
+ rating: 7.6,
+ votes: 60734,
+ running_times: 5640,
+ },
+ {
+ title: "Kate & Leopold",
+ year: 2001,
+ rating: 6.4,
+ votes: 69690,
+ running_times: 7380,
+ },
+ {
+ title: "Katy Perry: Part of Me",
+ year: 2012,
+ rating: 5.9,
+ votes: 12764,
+ running_times: 5580,
+ },
+ {
+ title: "Kazaam",
+ year: 1996,
+ rating: 2.8,
+ votes: 20470,
+ running_times: 5580,
+ },
+ {
+ title: "Kaze no tani no Naushika",
+ year: 1984,
+ rating: 8.1,
+ votes: 111109,
+ running_times: 7020,
+ },
+ {
+ title: "Keanu",
+ year: 2016,
+ rating: 6.3,
+ votes: 35524,
+ running_times: 6000,
+ },
+ {
+ title: "Keeping Mum",
+ year: 2005,
+ rating: 6.8,
+ votes: 29947,
+ running_times: 5940,
+ },
+ {
+ title: "Keeping Up with the Joneses",
+ year: 2016,
+ rating: 5.9,
+ votes: 42363,
+ running_times: 6300,
+ },
+ {
+ title: "Keeping the Faith",
+ year: 2000,
+ rating: 6.4,
+ votes: 46463,
+ running_times: 7680,
+ },
+ {
+ title: "Keith",
+ year: 2008,
+ rating: 7.5,
+ votes: 32592,
+ running_times: 5580,
+ },
+ {
+ title: "Kelly's Heroes",
+ year: 1970,
+ rating: 7.7,
+ votes: 38115,
+ running_times: 8640,
+ },
+ {
+ title: "Ken Park",
+ year: 2002,
+ rating: 5.9,
+ votes: 26369,
+ running_times: 5880,
+ },
+ { title: "Kes", year: 1969, rating: 7.9, votes: 14791, running_times: 6660 },
+ {
+ title: "Kevin & Perry Go Large",
+ year: 2000,
+ rating: 5.4,
+ votes: 10780,
+ running_times: 4980,
+ },
+ {
+ title: "Key Largo",
+ year: 1948,
+ rating: 7.9,
+ votes: 31269,
+ running_times: 6000,
+ },
+ {
+ title: "Kick-Ass",
+ year: 2010,
+ rating: 7.7,
+ votes: 469966,
+ running_times: 7020,
+ },
+ {
+ title: "Kick-Ass 2",
+ year: 2013,
+ rating: 6.6,
+ votes: 222224,
+ running_times: 6180,
+ },
+ {
+ title: "Kickboxer",
+ year: 1989,
+ rating: 6.4,
+ votes: 40995,
+ running_times: 5820,
+ },
+ {
+ title: "Kicking & Screaming",
+ year: 2005,
+ rating: 5.6,
+ votes: 32051,
+ running_times: 5700,
+ },
+ {
+ title: "Kidnap",
+ year: 2017,
+ rating: 5.9,
+ votes: 19654,
+ running_times: 5700,
+ },
+ {
+ title: "Kidnapping Mr. Heineken",
+ year: 2015,
+ rating: 6.1,
+ votes: 15614,
+ running_times: 5700,
+ },
+ { title: "Kids", year: 1995, rating: 7, votes: 63667, running_times: 5460 },
+ {
+ title: "Kidulthood",
+ year: 2006,
+ rating: 6.8,
+ votes: 16066,
+ running_times: 5340,
+ },
+ {
+ title: "Kill Bill: Vol. 1",
+ year: 2003,
+ rating: 8.1,
+ votes: 818635,
+ running_times: 6720,
+ },
+ {
+ title: "Kill Bill: Vol. 2",
+ year: 2004,
+ rating: 8,
+ votes: 562155,
+ running_times: 8220,
+ },
+ {
+ title: "Kill List",
+ year: 2011,
+ rating: 6.4,
+ votes: 29640,
+ running_times: 5700,
+ },
+ {
+ title: "Kill Me Three Times",
+ year: 2014,
+ rating: 5.9,
+ votes: 16475,
+ running_times: 5400,
+ },
+ {
+ title: "Kill Your Darlings",
+ year: 2013,
+ rating: 6.5,
+ votes: 29764,
+ running_times: 6240,
+ },
+ {
+ title: "Kill the Irishman",
+ year: 2011,
+ rating: 7.1,
+ votes: 38020,
+ running_times: 6360,
+ },
+ {
+ title: "Kill the Messenger",
+ year: 2014,
+ rating: 7,
+ votes: 37172,
+ running_times: 6720,
+ },
+ {
+ title: "Killer Elite",
+ year: 2011,
+ rating: 6.5,
+ votes: 112178,
+ running_times: 6960,
+ },
+ {
+ title: "Killer Joe",
+ year: 2011,
+ rating: 6.7,
+ votes: 63883,
+ running_times: 6120,
+ },
+ {
+ title: "Killer Klowns from Outer Space",
+ year: 1988,
+ rating: 6.1,
+ votes: 25861,
+ running_times: 5400,
+ },
+ {
+ title: "Killer's Kiss",
+ year: 1955,
+ rating: 6.7,
+ votes: 17257,
+ running_times: 4020,
+ },
+ {
+ title: "Killers",
+ year: 2010,
+ rating: 5.4,
+ votes: 77516,
+ running_times: 6000,
+ },
+ {
+ title: "Killing Me Softly",
+ year: 2002,
+ rating: 5.5,
+ votes: 15313,
+ running_times: 6240,
+ },
+ {
+ title: "Killing Season",
+ year: 2013,
+ rating: 5.4,
+ votes: 31036,
+ running_times: 5460,
+ },
+ {
+ title: "Killing Them Softly",
+ year: 2012,
+ rating: 6.2,
+ votes: 118699,
+ running_times: 9000,
+ },
+ {
+ title: "Killing Zoe",
+ year: 1993,
+ rating: 6.5,
+ votes: 18088,
+ running_times: 5940,
+ },
+ {
+ title: "Killshot",
+ year: 2008,
+ rating: 6,
+ votes: 19189,
+ running_times: 5700,
+ },
+ {
+ title: "Kimssi pyoryugi",
+ year: 2009,
+ rating: 8.1,
+ votes: 12593,
+ running_times: 6960,
+ },
+ {
+ title: "Kind Hearts and Coronets",
+ year: 1949,
+ rating: 8.1,
+ votes: 29983,
+ running_times: 6360,
+ },
+ {
+ title: "Kindergarten Cop",
+ year: 1990,
+ rating: 6.1,
+ votes: 116526,
+ running_times: 6660,
+ },
+ {
+ title: "King Arthur",
+ year: 2004,
+ rating: 6.3,
+ votes: 145122,
+ running_times: 8520,
+ },
+ {
+ title: "King Arthur: Legend of the Sword",
+ year: 2017,
+ rating: 6.9,
+ votes: 126686,
+ running_times: 7560,
+ },
+ {
+ title: "King Kong",
+ year: 1933,
+ rating: 7.9,
+ votes: 69395,
+ running_times: 7500,
+ },
+ {
+ title: "King Kong",
+ year: 1976,
+ rating: 5.8,
+ votes: 25327,
+ running_times: 10920,
+ },
+ {
+ title: "King Kong",
+ year: 2005,
+ rating: 7.2,
+ votes: 343810,
+ running_times: 12000,
+ },
+ {
+ title: "King Ralph",
+ year: 1991,
+ rating: 5.2,
+ votes: 13406,
+ running_times: 5820,
+ },
+ {
+ title: "King Solomon's Mines",
+ year: 1985,
+ rating: 5.1,
+ votes: 10636,
+ running_times: 6000,
+ },
+ {
+ title: "King of California",
+ year: 2007,
+ rating: 6.7,
+ votes: 20594,
+ running_times: 5760,
+ },
+ {
+ title: "King of New York",
+ year: 1990,
+ rating: 7,
+ votes: 25783,
+ running_times: 6180,
+ },
+ {
+ title: "Kingdom of Heaven",
+ year: 2005,
+ rating: 7.2,
+ votes: 235089,
+ running_times: 11640,
+ },
+ {
+ title: "Kingpin",
+ year: 1996,
+ rating: 6.9,
+ votes: 67678,
+ running_times: 7020,
+ },
+ {
+ title: "Kingsglaive: Final Fantasy XV",
+ year: 2016,
+ rating: 6.9,
+ votes: 16107,
+ running_times: 6600,
+ },
+ {
+ title: "Kingsman: The Golden Circle",
+ year: 2017,
+ rating: 7,
+ votes: 110963,
+ running_times: 8460,
+ },
+ {
+ title: "Kingsman: The Secret Service",
+ year: 2014,
+ rating: 7.7,
+ votes: 484875,
+ running_times: 7740,
+ },
+ {
+ title: "Kinky Boots",
+ year: 2005,
+ rating: 7.1,
+ votes: 15459,
+ running_times: 6420,
+ },
+ {
+ title: "Kinsey",
+ year: 2004,
+ rating: 7.1,
+ votes: 44243,
+ running_times: 7080,
+ },
+ {
+ title: "Kis Uykusu",
+ year: 2014,
+ rating: 8.2,
+ votes: 30351,
+ running_times: 11760,
+ },
+ {
+ title: "Kiss Kiss Bang Bang",
+ year: 2005,
+ rating: 7.6,
+ votes: 190431,
+ running_times: 6180,
+ },
+ {
+ title: "Kiss Me Deadly",
+ year: 1955,
+ rating: 7.7,
+ votes: 15308,
+ running_times: 6360,
+ },
+ {
+ title: "Kiss of Death",
+ year: 1995,
+ rating: 5.9,
+ votes: 15074,
+ running_times: 6060,
+ },
+ {
+ title: "Kiss of the Dragon",
+ year: 2001,
+ rating: 6.6,
+ votes: 55800,
+ running_times: 5880,
+ },
+ {
+ title: "Kiss of the Spider Woman",
+ year: 1985,
+ rating: 7.4,
+ votes: 11944,
+ running_times: 7200,
+ },
+ {
+ title: "Kiss the Girls",
+ year: 1997,
+ rating: 6.6,
+ votes: 55048,
+ running_times: 6900,
+ },
+ {
+ title: "Kissing Jessica Stein",
+ year: 2001,
+ rating: 6.6,
+ votes: 14678,
+ running_times: 5820,
+ },
+ {
+ title: "Kites",
+ year: 2010,
+ rating: 6.1,
+ votes: 10633,
+ running_times: 7380,
+ },
+ {
+ title: "Klute",
+ year: 1971,
+ rating: 7.2,
+ votes: 17394,
+ running_times: 6840,
+ },
+ {
+ title: "Knick Knack",
+ year: 1989,
+ rating: 7.6,
+ votes: 10535,
+ running_times: 240,
+ },
+ {
+ title: "Knight and Day",
+ year: 2010,
+ rating: 6.3,
+ votes: 159127,
+ running_times: 7020,
+ },
+ {
+ title: "Knight of Cups",
+ year: 2015,
+ rating: 5.7,
+ votes: 19328,
+ running_times: 7080,
+ },
+ {
+ title: "Knights of Badassdom",
+ year: 2013,
+ rating: 5.7,
+ votes: 17324,
+ running_times: 5160,
+ },
+ {
+ title: "Knock Knock",
+ year: 2015,
+ rating: 4.9,
+ votes: 58848,
+ running_times: 5940,
+ },
+ {
+ title: "Knock Off",
+ year: 1998,
+ rating: 4.8,
+ votes: 12281,
+ running_times: 5460,
+ },
+ {
+ title: "Knockaround Guys",
+ year: 2001,
+ rating: 6.1,
+ votes: 20617,
+ running_times: 5520,
+ },
+ {
+ title: "Knocked Up",
+ year: 2007,
+ rating: 7,
+ votes: 315872,
+ running_times: 7980,
+ },
+ {
+ title: "Knockin' on Heaven's Door",
+ year: 1997,
+ rating: 8,
+ votes: 22709,
+ running_times: 5220,
+ },
+ {
+ title: "Knowing",
+ year: 2009,
+ rating: 6.2,
+ votes: 198560,
+ running_times: 7260,
+ },
+ {
+ title: "Koi... Mil Gaya",
+ year: 2003,
+ rating: 7.1,
+ votes: 16564,
+ running_times: 10260,
+ },
+ {
+ title: "Kon-Tiki",
+ year: 2012,
+ rating: 7.2,
+ votes: 38464,
+ running_times: 7080,
+ },
+ {
+ title: "Kong: Skull Island",
+ year: 2017,
+ rating: 6.7,
+ votes: 179436,
+ running_times: 7080,
+ },
+ {
+ title: "Kopps",
+ year: 2003,
+ rating: 6.8,
+ votes: 17114,
+ running_times: 5400,
+ },
+ {
+ title: "Koroshiya 1",
+ year: 2001,
+ rating: 7.1,
+ votes: 45555,
+ running_times: 7740,
+ },
+ {
+ title: "Koto no ha no niwa",
+ year: 2013,
+ rating: 7.6,
+ votes: 17489,
+ running_times: 2760,
+ },
+ {
+ title: "Kraftidioten",
+ year: 2014,
+ rating: 7.2,
+ votes: 15869,
+ running_times: 6960,
+ },
+ {
+ title: "Kramer vs. Kramer",
+ year: 1979,
+ rating: 7.8,
+ votes: 107796,
+ running_times: 6300,
+ },
+ {
+ title: "Krampus",
+ year: 2015,
+ rating: 6.2,
+ votes: 46500,
+ running_times: 5880,
+ },
+ {
+ title: "Krrish",
+ year: 2006,
+ rating: 6.3,
+ votes: 14376,
+ running_times: 11100,
+ },
+ {
+ title: "Krull",
+ year: 1983,
+ rating: 6.1,
+ votes: 25399,
+ running_times: 7260,
+ },
+ {
+ title: "Kubo and the Two Strings",
+ year: 2016,
+ rating: 7.8,
+ votes: 86088,
+ running_times: 6060,
+ },
+ {
+ title: "Kuch Kuch Hota Hai",
+ year: 1998,
+ rating: 7.7,
+ votes: 38584,
+ running_times: 10620,
+ },
+ {
+ title: "Kumiko, the Treasure Hunter",
+ year: 2014,
+ rating: 6.6,
+ votes: 10007,
+ running_times: 6300,
+ },
+ { title: "Kundun", year: 1997, rating: 7, votes: 23036, running_times: 8040 },
+ {
+ title: "Kung Fu Panda",
+ year: 2008,
+ rating: 7.6,
+ votes: 343919,
+ running_times: 5520,
+ },
+ {
+ title: "Kung Fu Panda 2",
+ year: 2011,
+ rating: 7.3,
+ votes: 205944,
+ running_times: 5400,
+ },
+ {
+ title: "Kung Fu Panda 3",
+ year: 2016,
+ rating: 7.1,
+ votes: 97816,
+ running_times: 5700,
+ },
+ {
+ title: "Kung Fury",
+ year: 2015,
+ rating: 8.1,
+ votes: 47091,
+ running_times: 1860,
+ },
+ {
+ title: "Kung Pow: Enter the Fist",
+ year: 2002,
+ rating: 6.2,
+ votes: 39822,
+ running_times: 5220,
+ },
+ {
+ title: "Kurtlar Vadisi: Irak",
+ year: 2006,
+ rating: 5.9,
+ votes: 15471,
+ running_times: 7320,
+ },
+ {
+ title: "L'amant",
+ year: 1992,
+ rating: 6.9,
+ votes: 16277,
+ running_times: 6960,
+ },
+ {
+ title: "L'appartement",
+ year: 1996,
+ rating: 7.5,
+ votes: 12177,
+ running_times: 6960,
+ },
+ {
+ title: "L'armée des ombres",
+ year: 1969,
+ rating: 8.2,
+ votes: 16310,
+ running_times: 8700,
+ },
+ {
+ title: "L'arnacoeur",
+ year: 2010,
+ rating: 6.8,
+ votes: 22667,
+ running_times: 6300,
+ },
+ {
+ title: "L'auberge espagnole",
+ year: 2002,
+ rating: 7.3,
+ votes: 36179,
+ running_times: 7320,
+ },
+ {
+ title: "L'avventura",
+ year: 1960,
+ rating: 7.9,
+ votes: 20494,
+ running_times: 8580,
+ },
+ {
+ title: "L'eclisse",
+ year: 1962,
+ rating: 7.9,
+ votes: 13282,
+ running_times: 7560,
+ },
+ {
+ title: "L'ennemi public n°1",
+ year: 2008,
+ rating: 7.5,
+ votes: 25292,
+ running_times: 7980,
+ },
+ {
+ title: "L'illusionniste",
+ year: 2010,
+ rating: 7.5,
+ votes: 30209,
+ running_times: 4800,
+ },
+ {
+ title: "L'instinct de mort",
+ year: 2008,
+ rating: 7.6,
+ votes: 28541,
+ running_times: 6780,
+ },
+ {
+ title: "L'ours",
+ year: 1988,
+ rating: 7.7,
+ votes: 14103,
+ running_times: 5760,
+ },
+ {
+ title: "L'écume des jours",
+ year: 2013,
+ rating: 6.5,
+ votes: 13056,
+ running_times: 7860,
+ },
+ {
+ title: "L.A. Confidential",
+ year: 1997,
+ rating: 8.3,
+ votes: 453989,
+ running_times: 8280,
+ },
+ {
+ title: "L.A. Story",
+ year: 1991,
+ rating: 6.7,
+ votes: 26514,
+ running_times: 5700,
+ },
+ { title: "LOL", year: 2012, rating: 4.3, votes: 48379, running_times: 5820 },
+ {
+ title: "La Bamba",
+ year: 1987,
+ rating: 6.8,
+ votes: 23070,
+ running_times: 6480,
+ },
+ {
+ title: "La La Land",
+ year: 2016,
+ rating: 8.1,
+ votes: 330222,
+ running_times: 7680,
+ },
+ { title: "La Luna", year: 2011, rating: 8, votes: 10173, running_times: 420 },
+ {
+ title: "La battaglia di Algeri",
+ year: 1966,
+ rating: 8.1,
+ votes: 42954,
+ running_times: 7260,
+ },
+ {
+ title: "La belle et la bête",
+ year: 2014,
+ rating: 6.4,
+ votes: 16164,
+ running_times: 6720,
+ },
+ {
+ title: "La dolce vita",
+ year: 1960,
+ rating: 8.1,
+ votes: 54029,
+ running_times: 10800,
+ },
+ {
+ title: "La grande illusion",
+ year: 1937,
+ rating: 8.1,
+ votes: 29036,
+ running_times: 6780,
+ },
+ {
+ title: "La grande vadrouille",
+ year: 1966,
+ rating: 8,
+ votes: 12617,
+ running_times: 7920,
+ },
+ {
+ title: "La leggenda del pianista sull'oceano",
+ year: 1998,
+ rating: 8.1,
+ votes: 45764,
+ running_times: 9900,
+ },
+ {
+ title: "La marche de l'empereur",
+ year: 2005,
+ rating: 7.6,
+ votes: 50416,
+ running_times: 4800,
+ },
+ {
+ title: "La maschera del demonio",
+ year: 1960,
+ rating: 7.3,
+ votes: 10828,
+ running_times: 5220,
+ },
+ {
+ title: "La meglio gioventù",
+ year: 2003,
+ rating: 8.5,
+ votes: 17794,
+ running_times: 21960,
+ },
+ {
+ title: "La migliore offerta",
+ year: 2013,
+ rating: 7.8,
+ votes: 83547,
+ running_times: 7860,
+ },
+ {
+ title: "La montaña sagrada",
+ year: 1973,
+ rating: 7.9,
+ votes: 27321,
+ running_times: 6840,
+ },
+ {
+ title: "La môme",
+ year: 2007,
+ rating: 7.6,
+ votes: 72235,
+ running_times: 8400,
+ },
+ {
+ title: "La nuit américaine",
+ year: 1973,
+ rating: 8.1,
+ votes: 16124,
+ running_times: 6900,
+ },
+ {
+ title: "La règle du jeu",
+ year: 1939,
+ rating: 8.1,
+ votes: 22461,
+ running_times: 6600,
+ },
+ {
+ title: "La science des rêves",
+ year: 2006,
+ rating: 7.3,
+ votes: 63946,
+ running_times: 6300,
+ },
+ {
+ title: "La tigre e la neve",
+ year: 2005,
+ rating: 7.2,
+ votes: 12250,
+ running_times: 6840,
+ },
+ {
+ title: "La vie d'Adèle",
+ year: 2013,
+ rating: 7.8,
+ votes: 109423,
+ running_times: 10800,
+ },
+ {
+ title: "La vita è bella",
+ year: 1997,
+ rating: 8.6,
+ votes: 484883,
+ running_times: 7320,
+ },
+ {
+ title: "Labor Day",
+ year: 2013,
+ rating: 6.9,
+ votes: 35525,
+ running_times: 6660,
+ },
+ {
+ title: "Labyrinth",
+ year: 1986,
+ rating: 7.4,
+ votes: 104063,
+ running_times: 6060,
+ },
+ {
+ title: "Ladder 49",
+ year: 2004,
+ rating: 6.5,
+ votes: 50649,
+ running_times: 6900,
+ },
+ {
+ title: "Lady Bird",
+ year: 2017,
+ rating: 8.4,
+ votes: 10997,
+ running_times: 5640,
+ },
+ {
+ title: "Lady and the Tramp",
+ year: 1955,
+ rating: 7.3,
+ votes: 96911,
+ running_times: 4560,
+ },
+ {
+ title: "Lady in the Water",
+ year: 2006,
+ rating: 5.6,
+ votes: 84760,
+ running_times: 6600,
+ },
+ {
+ title: "Ladyhawke",
+ year: 1985,
+ rating: 7,
+ votes: 36607,
+ running_times: 7260,
+ },
+ {
+ title: "Lagaan: Once Upon a Time in India",
+ year: 2001,
+ rating: 8.2,
+ votes: 83674,
+ running_times: 13440,
+ },
+ {
+ title: "Laggies",
+ year: 2014,
+ rating: 6.4,
+ votes: 35284,
+ running_times: 5940,
+ },
+ {
+ title: "Lake Mungo",
+ year: 2008,
+ rating: 6.1,
+ votes: 11249,
+ running_times: 5340,
+ },
+ {
+ title: "Lake Placid",
+ year: 1999,
+ rating: 5.6,
+ votes: 46572,
+ running_times: 4920,
+ },
+ {
+ title: "Lakeview Terrace",
+ year: 2008,
+ rating: 6.1,
+ votes: 43282,
+ running_times: 6600,
+ },
+ {
+ title: "Lakposhtha parvaz mikonand",
+ year: 2004,
+ rating: 8.1,
+ votes: 14924,
+ running_times: 5880,
+ },
+ {
+ title: "Lakshya",
+ year: 2004,
+ rating: 7.9,
+ votes: 15400,
+ running_times: 11160,
+ },
+ {
+ title: "Land of the Dead",
+ year: 2005,
+ rating: 6.2,
+ votes: 83236,
+ running_times: 5820,
+ },
+ {
+ title: "Land of the Lost",
+ year: 2009,
+ rating: 5.4,
+ votes: 55270,
+ running_times: 6120,
+ },
+ {
+ title: "Lantana",
+ year: 2001,
+ rating: 7.3,
+ votes: 17192,
+ running_times: 7260,
+ },
+ {
+ title: "Lara Croft Tomb Raider: The Cradle of Life",
+ year: 2003,
+ rating: 5.5,
+ votes: 111378,
+ running_times: 7020,
+ },
+ {
+ title: "Lara Croft: Tomb Raider",
+ year: 2001,
+ rating: 5.8,
+ votes: 169611,
+ running_times: 6000,
+ },
+ {
+ title: "Largo Winch",
+ year: 2008,
+ rating: 6.5,
+ votes: 12004,
+ running_times: 6480,
+ },
+ {
+ title: "Larry Crowne",
+ year: 2011,
+ rating: 6.1,
+ votes: 54197,
+ running_times: 5880,
+ },
+ {
+ title: "Lars and the Real Girl",
+ year: 2007,
+ rating: 7.4,
+ votes: 123925,
+ running_times: 6360,
+ },
+ {
+ title: "Last Action Hero",
+ year: 1993,
+ rating: 6.3,
+ votes: 115720,
+ running_times: 7800,
+ },
+ {
+ title: "Last Chance Harvey",
+ year: 2008,
+ rating: 6.7,
+ votes: 18870,
+ running_times: 5580,
+ },
+ {
+ title: "Last Days",
+ year: 2005,
+ rating: 5.8,
+ votes: 19794,
+ running_times: 5820,
+ },
+ {
+ title: "Last Holiday",
+ year: 2006,
+ rating: 6.4,
+ votes: 23312,
+ running_times: 6720,
+ },
+ {
+ title: "Last Knights",
+ year: 2015,
+ rating: 6.2,
+ votes: 32149,
+ running_times: 6900,
+ },
+ {
+ title: "Last Man Standing",
+ year: 1996,
+ rating: 6.4,
+ votes: 47431,
+ running_times: 6060,
+ },
+ {
+ title: "Last Night",
+ year: 2010,
+ rating: 6.6,
+ votes: 42441,
+ running_times: 5580,
+ },
+ {
+ title: "Last Shift",
+ year: 2014,
+ rating: 5.8,
+ votes: 12443,
+ running_times: 5400,
+ },
+ {
+ title: "Last Vegas",
+ year: 2013,
+ rating: 6.6,
+ votes: 115090,
+ running_times: 6300,
+ },
+ {
+ title: "Lat sau san taam",
+ year: 1992,
+ rating: 7.9,
+ votes: 41050,
+ running_times: 7860,
+ },
+ {
+ title: "Latter Days",
+ year: 2003,
+ rating: 7.1,
+ votes: 15357,
+ running_times: 6420,
+ },
+ {
+ title: "Laura",
+ year: 1944,
+ rating: 8.1,
+ votes: 35204,
+ running_times: 5280,
+ },
+ {
+ title: "Laurel Canyon",
+ year: 2002,
+ rating: 6.4,
+ votes: 13693,
+ running_times: 6180,
+ },
+ {
+ title: "Laurence Anyways",
+ year: 2012,
+ rating: 7.6,
+ votes: 13696,
+ running_times: 10080,
+ },
+ { title: "Lava", year: 2014, rating: 7.2, votes: 11034, running_times: 420 },
+ {
+ title: "Law Abiding Citizen",
+ year: 2009,
+ rating: 7.4,
+ votes: 234737,
+ running_times: 7080,
+ },
+ {
+ title: "Lawless",
+ year: 2012,
+ rating: 7.3,
+ votes: 201216,
+ running_times: 6960,
+ },
+ {
+ title: "Lawrence of Arabia",
+ year: 1962,
+ rating: 8.3,
+ votes: 215696,
+ running_times: 13680,
+ },
+ {
+ title: "Laws of Attraction",
+ year: 2004,
+ rating: 5.9,
+ votes: 19929,
+ running_times: 5400,
+ },
+ {
+ title: "Layer Cake",
+ year: 2004,
+ rating: 7.4,
+ votes: 143588,
+ running_times: 6300,
+ },
+ {
+ title: "Le cinquième élément",
+ year: 1997,
+ rating: 7.7,
+ votes: 374767,
+ running_times: 7560,
+ },
+ {
+ title: "Le divorce",
+ year: 2003,
+ rating: 4.9,
+ votes: 10178,
+ running_times: 7020,
+ },
+ {
+ title: "Le fabuleux destin d'Amélie Poulain",
+ year: 2001,
+ rating: 8.3,
+ votes: 594927,
+ running_times: 7320,
+ },
+ {
+ title: "Le grand bleu",
+ year: 1988,
+ rating: 7.6,
+ votes: 41252,
+ running_times: 10080,
+ },
+ {
+ title: "Le locataire",
+ year: 1976,
+ rating: 7.8,
+ votes: 30919,
+ running_times: 7560,
+ },
+ {
+ title: "Le mépris",
+ year: 1963,
+ rating: 7.7,
+ votes: 22380,
+ running_times: 6180,
+ },
+ {
+ title: "Le procès",
+ year: 1962,
+ rating: 7.8,
+ votes: 15401,
+ running_times: 7140,
+ },
+ {
+ title: "Le salaire de la peur",
+ year: 1953,
+ rating: 8.2,
+ votes: 40345,
+ running_times: 9360,
+ },
+ {
+ title: "Le violon rouge",
+ year: 1998,
+ rating: 7.7,
+ votes: 28394,
+ running_times: 8400,
+ },
+ {
+ title: "Lean on Me",
+ year: 1989,
+ rating: 7.4,
+ votes: 15573,
+ running_times: 6480,
+ },
+ {
+ title: "Leap Year",
+ year: 2010,
+ rating: 6.5,
+ votes: 78668,
+ running_times: 6000,
+ },
+ {
+ title: "Leap of Faith",
+ year: 1992,
+ rating: 6.1,
+ votes: 10526,
+ running_times: 6480,
+ },
+ {
+ title: "Leatherface: Texas Chainsaw Massacre III",
+ year: 1990,
+ rating: 5.2,
+ votes: 11025,
+ running_times: 5100,
+ },
+ {
+ title: "Leatherheads",
+ year: 2008,
+ rating: 6,
+ votes: 28907,
+ running_times: 6840,
+ },
+ {
+ title: "Leaves of Grass",
+ year: 2009,
+ rating: 6.5,
+ votes: 24966,
+ running_times: 6300,
+ },
+ {
+ title: "Leaving Las Vegas",
+ year: 1995,
+ rating: 7.6,
+ votes: 100091,
+ running_times: 6660,
+ },
+ {
+ title: "Lebanon",
+ year: 2009,
+ rating: 6.9,
+ votes: 10014,
+ running_times: 5580,
+ },
+ {
+ title: "Left Behind",
+ year: 2014,
+ rating: 3.1,
+ votes: 28793,
+ running_times: 6600,
+ },
+ {
+ title: "Legally Blonde",
+ year: 2001,
+ rating: 6.2,
+ votes: 147263,
+ running_times: 5760,
+ },
+ {
+ title: "Legally Blonde 2: Red, White & Blonde",
+ year: 2003,
+ rating: 4.7,
+ votes: 51197,
+ running_times: 5700,
+ },
+ {
+ title: "Legend",
+ year: 1985,
+ rating: 6.5,
+ votes: 50438,
+ running_times: 6840,
+ },
+ {
+ title: "Legend",
+ year: 2015,
+ rating: 7,
+ votes: 118845,
+ running_times: 7920,
+ },
+ {
+ title: "Legend of the Guardians: The Owls of Ga'Hoole",
+ year: 2010,
+ rating: 7,
+ votes: 70245,
+ running_times: 6060,
+ },
+ {
+ title: "Legends of the Fall",
+ year: 1994,
+ rating: 7.5,
+ votes: 122945,
+ running_times: 7980,
+ },
+ {
+ title: "Legion",
+ year: 2010,
+ rating: 5.2,
+ votes: 86405,
+ running_times: 6000,
+ },
+ {
+ title: "Legionnaire",
+ year: 1998,
+ rating: 5.4,
+ votes: 19924,
+ running_times: 5940,
+ },
+ {
+ title: "Lenny",
+ year: 1974,
+ rating: 7.6,
+ votes: 12098,
+ running_times: 6660,
+ },
+ {
+ title: "Lepa sela lepo gore",
+ year: 1996,
+ rating: 8.7,
+ votes: 12099,
+ running_times: 6900,
+ },
+ {
+ title: "Leprechaun",
+ year: 1993,
+ rating: 4.7,
+ votes: 18932,
+ running_times: 5520,
+ },
+ {
+ title: "Les Misérables",
+ year: 1998,
+ rating: 7.5,
+ votes: 34086,
+ running_times: 8040,
+ },
+ {
+ title: "Les Misérables",
+ year: 2012,
+ rating: 7.6,
+ votes: 264958,
+ running_times: 9480,
+ },
+ {
+ title: "Les amours imaginaires",
+ year: 2010,
+ rating: 7.2,
+ votes: 21824,
+ running_times: 6060,
+ },
+ {
+ title: "Les aventures extraordinaires d'Adèle Blanc-Sec",
+ year: 2010,
+ rating: 6.3,
+ votes: 17227,
+ running_times: 6420,
+ },
+ {
+ title: "Les diaboliques",
+ year: 1955,
+ rating: 8.1,
+ votes: 47931,
+ running_times: 7020,
+ },
+ {
+ title: "Les invasions barbares",
+ year: 2003,
+ rating: 7.7,
+ votes: 25965,
+ running_times: 6720,
+ },
+ {
+ title: "Les parapluies de Cherbourg",
+ year: 1964,
+ rating: 7.8,
+ votes: 17936,
+ running_times: 5460,
+ },
+ {
+ title: "Les poupées russes",
+ year: 2005,
+ rating: 7,
+ votes: 17598,
+ running_times: 7740,
+ },
+ {
+ title: "Les quatre cents coups",
+ year: 1959,
+ rating: 8.1,
+ votes: 79751,
+ running_times: 5940,
+ },
+ {
+ title: "Les triplettes de Belleville",
+ year: 2003,
+ rating: 7.8,
+ votes: 45275,
+ running_times: 4800,
+ },
+ {
+ title: "Les vacances de Monsieur Hulot",
+ year: 1953,
+ rating: 7.6,
+ votes: 13779,
+ running_times: 6840,
+ },
+ {
+ title: "Les visiteurs",
+ year: 1993,
+ rating: 7,
+ votes: 27169,
+ running_times: 6420,
+ },
+ {
+ title: "Lesbian Vampire Killers",
+ year: 2009,
+ rating: 5.2,
+ votes: 18201,
+ running_times: 5280,
+ },
+ {
+ title: "Less Than Zero",
+ year: 1987,
+ rating: 6.4,
+ votes: 15649,
+ running_times: 5880,
+ },
+ {
+ title: "Let Me In",
+ year: 2010,
+ rating: 7.2,
+ votes: 100116,
+ running_times: 6960,
+ },
+ {
+ title: "Let's Be Cops",
+ year: 2014,
+ rating: 6.5,
+ votes: 115774,
+ running_times: 6240,
+ },
+ {
+ title: "Let's Go to Prison",
+ year: 2006,
+ rating: 6,
+ votes: 20966,
+ running_times: 5400,
+ },
+ {
+ title: "Lethal Weapon",
+ year: 1987,
+ rating: 7.6,
+ votes: 206476,
+ running_times: 7020,
+ },
+ {
+ title: "Lethal Weapon 2",
+ year: 1989,
+ rating: 7.2,
+ votes: 139179,
+ running_times: 7080,
+ },
+ {
+ title: "Lethal Weapon 3",
+ year: 1992,
+ rating: 6.7,
+ votes: 137501,
+ running_times: 7260,
+ },
+ {
+ title: "Lethal Weapon 4",
+ year: 1998,
+ rating: 6.6,
+ votes: 136125,
+ running_times: 7620,
+ },
+ {
+ title: "Letters from Iwo Jima",
+ year: 2006,
+ rating: 7.9,
+ votes: 139966,
+ running_times: 8460,
+ },
+ {
+ title: "Letters to Juliet",
+ year: 2010,
+ rating: 6.6,
+ votes: 80645,
+ running_times: 6300,
+ },
+ {
+ title: "Leviathan",
+ year: 1989,
+ rating: 5.8,
+ votes: 14534,
+ running_times: 5880,
+ },
+ {
+ title: "Liar Liar",
+ year: 1997,
+ rating: 6.8,
+ votes: 240776,
+ running_times: 5160,
+ },
+ {
+ title: "Liberal Arts",
+ year: 2012,
+ rating: 6.7,
+ votes: 31904,
+ running_times: 5820,
+ },
+ {
+ title: "Licence to Kill",
+ year: 1989,
+ rating: 6.6,
+ votes: 79978,
+ running_times: 7980,
+ },
+ {
+ title: "License to Drive",
+ year: 1988,
+ rating: 6.3,
+ votes: 15196,
+ running_times: 5280,
+ },
+ {
+ title: "License to Wed",
+ year: 2007,
+ rating: 5.3,
+ votes: 34018,
+ running_times: 5460,
+ },
+ {
+ title: "Lie with Me",
+ year: 2005,
+ rating: 5.4,
+ votes: 12624,
+ running_times: 5580,
+ },
+ { title: "Life", year: 1999, rating: 6.7, votes: 36663, running_times: 6480 },
+ {
+ title: "Life",
+ year: 2017,
+ rating: 6.6,
+ votes: 137763,
+ running_times: 6240,
+ },
+ {
+ title: "Life After Beth",
+ year: 2014,
+ rating: 5.6,
+ votes: 15831,
+ running_times: 5340,
+ },
+ {
+ title: "Life Itself",
+ year: 2014,
+ rating: 7.8,
+ votes: 13010,
+ running_times: 7200,
+ },
+ {
+ title: "Life as We Know It",
+ year: 2010,
+ rating: 6.6,
+ votes: 104933,
+ running_times: 6840,
+ },
+ {
+ title: "Life as a House",
+ year: 2001,
+ rating: 7.5,
+ votes: 40518,
+ running_times: 7620,
+ },
+ {
+ title: "Life in a Day",
+ year: 2011,
+ rating: 7.7,
+ votes: 13937,
+ running_times: 5700,
+ },
+ {
+ title: "Life of Brian",
+ year: 1979,
+ rating: 8.1,
+ votes: 300297,
+ running_times: 5640,
+ },
+ {
+ title: "Life of Crime",
+ year: 2013,
+ rating: 5.8,
+ votes: 14325,
+ running_times: 5880,
+ },
+ {
+ title: "Life of Pi",
+ year: 2012,
+ rating: 7.9,
+ votes: 489527,
+ running_times: 7620,
+ },
+ {
+ title: "Life or Something Like It",
+ year: 2002,
+ rating: 5.8,
+ votes: 20754,
+ running_times: 6300,
+ },
+ {
+ title: "Lifeboat",
+ year: 1944,
+ rating: 7.8,
+ votes: 22355,
+ running_times: 5820,
+ },
+ {
+ title: "Lifeforce",
+ year: 1985,
+ rating: 6.1,
+ votes: 17593,
+ running_times: 6960,
+ },
+ {
+ title: "Lights Out",
+ year: 2016,
+ rating: 6.3,
+ votes: 84024,
+ running_times: 4860,
+ },
+ {
+ title: "Like Crazy",
+ year: 2011,
+ rating: 6.7,
+ votes: 52116,
+ running_times: 5160,
+ },
+ {
+ title: "Like Mike",
+ year: 2002,
+ rating: 5.2,
+ votes: 16319,
+ running_times: 5940,
+ },
+ {
+ title: "Lilja 4-ever",
+ year: 2002,
+ rating: 7.9,
+ votes: 37844,
+ running_times: 6540,
+ },
+ {
+ title: "Lilo & Stitch",
+ year: 2002,
+ rating: 7.2,
+ votes: 133382,
+ running_times: 5100,
+ },
+ {
+ title: "Limelight",
+ year: 1952,
+ rating: 8.1,
+ votes: 14677,
+ running_times: 8820,
+ },
+ {
+ title: "Limitless",
+ year: 2011,
+ rating: 7.4,
+ votes: 459364,
+ running_times: 6300,
+ },
+ {
+ title: "Lincoln",
+ year: 2012,
+ rating: 7.4,
+ votes: 213471,
+ running_times: 9000,
+ },
+ {
+ title: "Lion",
+ year: 2016,
+ rating: 8.1,
+ votes: 143387,
+ running_times: 7080,
+ },
+ {
+ title: "Lion of the Desert",
+ year: 1980,
+ rating: 8.4,
+ votes: 11257,
+ running_times: 10380,
+ },
+ {
+ title: "Lionheart",
+ year: 1990,
+ rating: 6.2,
+ votes: 27363,
+ running_times: 6480,
+ },
+ {
+ title: "Lions for Lambs",
+ year: 2007,
+ rating: 6.2,
+ votes: 43204,
+ running_times: 5520,
+ },
+ {
+ title: "Little Big Man",
+ year: 1970,
+ rating: 7.6,
+ votes: 28772,
+ running_times: 8820,
+ },
+ {
+ title: "Little Black Book",
+ year: 2004,
+ rating: 5.3,
+ votes: 15930,
+ running_times: 6660,
+ },
+ {
+ title: "Little Boy",
+ year: 2015,
+ rating: 7.4,
+ votes: 19507,
+ running_times: 6360,
+ },
+ {
+ title: "Little Buddha",
+ year: 1993,
+ rating: 6,
+ votes: 13350,
+ running_times: 8460,
+ },
+ {
+ title: "Little Children",
+ year: 2006,
+ rating: 7.6,
+ votes: 96874,
+ running_times: 8220,
+ },
+ {
+ title: "Little Fockers",
+ year: 2010,
+ rating: 5.5,
+ votes: 92568,
+ running_times: 5880,
+ },
+ {
+ title: "Little Giants",
+ year: 1994,
+ rating: 6.3,
+ votes: 21322,
+ running_times: 6420,
+ },
+ {
+ title: "Little Man Tate",
+ year: 1991,
+ rating: 6.7,
+ votes: 12292,
+ running_times: 5940,
+ },
+ {
+ title: "Little Manhattan",
+ year: 2005,
+ rating: 7.6,
+ votes: 20074,
+ running_times: 5400,
+ },
+ {
+ title: "Little Miss Sunshine",
+ year: 2006,
+ rating: 7.8,
+ votes: 384705,
+ running_times: 6060,
+ },
+ {
+ title: "Little Nicky",
+ year: 2000,
+ rating: 5.3,
+ votes: 86181,
+ running_times: 5400,
+ },
+ {
+ title: "Little Shop of Horrors",
+ year: 1986,
+ rating: 6.9,
+ votes: 54010,
+ running_times: 6120,
+ },
+ {
+ title: "Little Voice",
+ year: 1998,
+ rating: 7,
+ votes: 14546,
+ running_times: 5820,
+ },
+ {
+ title: "Little Women",
+ year: 1994,
+ rating: 7.3,
+ votes: 39880,
+ running_times: 6900,
+ },
+ {
+ title: "Littleman",
+ year: 2006,
+ rating: 4.3,
+ votes: 42807,
+ running_times: 5880,
+ },
+ {
+ title: "Live Free or Die Hard",
+ year: 2007,
+ rating: 7.2,
+ votes: 354620,
+ running_times: 7740,
+ },
+ {
+ title: "Live and Let Die",
+ year: 1973,
+ rating: 6.8,
+ votes: 81462,
+ running_times: 7260,
+ },
+ {
+ title: "Live by Night",
+ year: 2016,
+ rating: 6.4,
+ votes: 37860,
+ running_times: 7740,
+ },
+ {
+ title: "Living in Oblivion",
+ year: 1995,
+ rating: 7.5,
+ votes: 13790,
+ running_times: 5400,
+ },
+ {
+ title: "Lo imposible",
+ year: 2012,
+ rating: 7.6,
+ votes: 162773,
+ running_times: 6840,
+ },
+ {
+ title: "Loaded Weapon 1",
+ year: 1993,
+ rating: 6.1,
+ votes: 39692,
+ running_times: 5040,
+ },
+ {
+ title: "Local Hero",
+ year: 1983,
+ rating: 7.5,
+ votes: 17301,
+ running_times: 6660,
+ },
+ {
+ title: "Lock Up",
+ year: 1989,
+ rating: 6.4,
+ votes: 32444,
+ running_times: 6540,
+ },
+ {
+ title: "Lock, Stock and Two Smoking Barrels",
+ year: 1998,
+ rating: 8.2,
+ votes: 455613,
+ running_times: 7200,
+ },
+ {
+ title: "Locke",
+ year: 2013,
+ rating: 7.1,
+ votes: 106566,
+ running_times: 5100,
+ },
+ {
+ title: "Lockout",
+ year: 2012,
+ rating: 6.1,
+ votes: 86175,
+ running_times: 5700,
+ },
+ {
+ title: "Logan",
+ year: 2017,
+ rating: 8.2,
+ votes: 417826,
+ running_times: 8220,
+ },
+ {
+ title: "Logan Lucky",
+ year: 2017,
+ rating: 7.1,
+ votes: 44509,
+ running_times: 7080,
+ },
+ {
+ title: "Logan's Run",
+ year: 1976,
+ rating: 6.8,
+ votes: 43654,
+ running_times: 7140,
+ },
+ {
+ title: "Lola rennt",
+ year: 1998,
+ rating: 7.7,
+ votes: 170737,
+ running_times: 4860,
+ },
+ {
+ title: "Lolita",
+ year: 1962,
+ rating: 7.6,
+ votes: 75313,
+ running_times: 9180,
+ },
+ {
+ title: "Lolita",
+ year: 1997,
+ rating: 6.9,
+ votes: 42179,
+ running_times: 8220,
+ },
+ {
+ title: "London",
+ year: 2005,
+ rating: 6.6,
+ votes: 20332,
+ running_times: 5520,
+ },
+ {
+ title: "London Boulevard",
+ year: 2010,
+ rating: 6.2,
+ votes: 42810,
+ running_times: 6180,
+ },
+ {
+ title: "London Has Fallen",
+ year: 2016,
+ rating: 5.9,
+ votes: 108802,
+ running_times: 5940,
+ },
+ {
+ title: "Lone Star",
+ year: 1996,
+ rating: 7.5,
+ votes: 24721,
+ running_times: 8100,
+ },
+ {
+ title: "Lone Survivor",
+ year: 2013,
+ rating: 7.5,
+ votes: 227936,
+ running_times: 7260,
+ },
+ {
+ title: "Lonely Hearts",
+ year: 2006,
+ rating: 6.5,
+ votes: 18568,
+ running_times: 6480,
+ },
+ {
+ title: "Look Who's Talking",
+ year: 1989,
+ rating: 5.8,
+ votes: 68218,
+ running_times: 5580,
+ },
+ {
+ title: "Look Who's Talking Now",
+ year: 1993,
+ rating: 4.2,
+ votes: 23987,
+ running_times: 5760,
+ },
+ {
+ title: "Look Who's Talking Too",
+ year: 1990,
+ rating: 4.5,
+ votes: 39326,
+ running_times: 4860,
+ },
+ {
+ title: "Looking for Eric",
+ year: 2009,
+ rating: 7.2,
+ votes: 13977,
+ running_times: 6960,
+ },
+ {
+ title: "Looney Tunes: Back in Action",
+ year: 2003,
+ rating: 5.7,
+ votes: 27194,
+ running_times: 5460,
+ },
+ {
+ title: "Looper",
+ year: 2012,
+ rating: 7.4,
+ votes: 467183,
+ running_times: 7140,
+ },
+ {
+ title: "Lord of Illusions",
+ year: 1995,
+ rating: 6.1,
+ votes: 12128,
+ running_times: 7260,
+ },
+ {
+ title: "Lord of War",
+ year: 2005,
+ rating: 7.6,
+ votes: 263932,
+ running_times: 7320,
+ },
+ {
+ title: "Lord of the Flies",
+ year: 1963,
+ rating: 7,
+ votes: 14798,
+ running_times: 5520,
+ },
+ {
+ title: "Lord of the Flies",
+ year: 1990,
+ rating: 6.4,
+ votes: 24260,
+ running_times: 5400,
+ },
+ {
+ title: "Lords of Dogtown",
+ year: 2005,
+ rating: 7.1,
+ votes: 46833,
+ running_times: 6420,
+ },
+ { title: "Lore", year: 2012, rating: 7.1, votes: 12480, running_times: 6540 },
+ {
+ title: "Lorenzo's Oil",
+ year: 1992,
+ rating: 7.2,
+ votes: 17664,
+ running_times: 7740,
+ },
+ {
+ title: "Los abrazos rotos",
+ year: 2009,
+ rating: 7.2,
+ votes: 33706,
+ running_times: 7620,
+ },
+ {
+ title: "Los amantes del Círculo Polar",
+ year: 1998,
+ rating: 7.8,
+ votes: 16141,
+ running_times: 6720,
+ },
+ {
+ title: "Loser",
+ year: 2000,
+ rating: 5.3,
+ votes: 24126,
+ running_times: 5880,
+ },
+ {
+ title: "Lost Highway",
+ year: 1997,
+ rating: 7.6,
+ votes: 108996,
+ running_times: 8040,
+ },
+ {
+ title: "Lost Horizon",
+ year: 1937,
+ rating: 7.8,
+ votes: 10155,
+ running_times: 7920,
+ },
+ {
+ title: "Lost River",
+ year: 2014,
+ rating: 5.8,
+ votes: 13919,
+ running_times: 6720,
+ },
+ {
+ title: "Lost and Delirious",
+ year: 2001,
+ rating: 7,
+ votes: 18057,
+ running_times: 6180,
+ },
+ {
+ title: "Lost in Space",
+ year: 1998,
+ rating: 5.1,
+ votes: 61812,
+ running_times: 7800,
+ },
+ {
+ title: "Lost in Translation",
+ year: 2003,
+ rating: 7.8,
+ votes: 349205,
+ running_times: 6120,
+ },
+ {
+ title: "Love & Basketball",
+ year: 2000,
+ rating: 7.2,
+ votes: 15596,
+ running_times: 7440,
+ },
+ {
+ title: "Love & Friendship",
+ year: 2016,
+ rating: 6.5,
+ votes: 18384,
+ running_times: 5400,
+ },
+ {
+ title: "Love & Mercy",
+ year: 2014,
+ rating: 7.4,
+ votes: 29208,
+ running_times: 7260,
+ },
+ {
+ title: "Love & Other Drugs",
+ year: 2010,
+ rating: 6.7,
+ votes: 156299,
+ running_times: 6720,
+ },
+ { title: "Love", year: 2015, rating: 6, votes: 27109, running_times: 8100 },
+ {
+ title: "Love Actually",
+ year: 2003,
+ rating: 7.7,
+ votes: 351260,
+ running_times: 8100,
+ },
+ {
+ title: "Love Happens",
+ year: 2009,
+ rating: 5.6,
+ votes: 27218,
+ running_times: 6540,
+ },
+ {
+ title: "Love Is Strange",
+ year: 2014,
+ rating: 6.7,
+ votes: 10779,
+ running_times: 5640,
+ },
+ {
+ title: "Love Potion No. 9",
+ year: 1992,
+ rating: 5.6,
+ votes: 11182,
+ running_times: 5520,
+ },
+ {
+ title: "Love Story",
+ year: 1970,
+ rating: 6.9,
+ votes: 24825,
+ running_times: 5940,
+ },
+ {
+ title: "Love Wrecked",
+ year: 2005,
+ rating: 4.9,
+ votes: 12563,
+ running_times: 5220,
+ },
+ {
+ title: "Love and Death",
+ year: 1975,
+ rating: 7.8,
+ votes: 30482,
+ running_times: 5100,
+ },
+ {
+ title: "Love and Other Disasters",
+ year: 2006,
+ rating: 6.2,
+ votes: 12430,
+ running_times: 5400,
+ },
+ {
+ title: "Love and Other Impossible Pursuits",
+ year: 2009,
+ rating: 6.4,
+ votes: 16603,
+ running_times: 7140,
+ },
+ {
+ title: "Love in the Afternoon",
+ year: 1957,
+ rating: 7.3,
+ votes: 11220,
+ running_times: 7800,
+ },
+ {
+ title: "Love in the Time of Cholera",
+ year: 2007,
+ rating: 6.4,
+ votes: 20278,
+ running_times: 8340,
+ },
+ {
+ title: "Love the Coopers",
+ year: 2015,
+ rating: 5.7,
+ votes: 14440,
+ running_times: 6420,
+ },
+ {
+ title: "Love, Rosie",
+ year: 2014,
+ rating: 7.2,
+ votes: 87349,
+ running_times: 6120,
+ },
+ {
+ title: "Lovelace",
+ year: 2013,
+ rating: 6.2,
+ votes: 33759,
+ running_times: 5580,
+ },
+ { title: "Loving", year: 2016, rating: 7, votes: 22583, running_times: 7380 },
+ {
+ title: "Loving Annabelle",
+ year: 2006,
+ rating: 6.6,
+ votes: 10150,
+ running_times: 4560,
+ },
+ {
+ title: "Lucas",
+ year: 1986,
+ rating: 6.8,
+ votes: 12451,
+ running_times: 6000,
+ },
+ {
+ title: "Lucky Number Slevin",
+ year: 2006,
+ rating: 7.8,
+ votes: 277942,
+ running_times: 6600,
+ },
+ {
+ title: "Lucky You",
+ year: 2007,
+ rating: 5.9,
+ votes: 18963,
+ running_times: 7440,
+ },
+ {
+ title: "Lucy",
+ year: 2014,
+ rating: 6.4,
+ votes: 368660,
+ running_times: 5340,
+ },
+ {
+ title: "Lucía y el sexo",
+ year: 2001,
+ rating: 7.2,
+ votes: 31388,
+ running_times: 7680,
+ },
+ {
+ title: "Lung hing foo dai",
+ year: 1986,
+ rating: 7.1,
+ votes: 14172,
+ running_times: 5880,
+ },
+ {
+ title: "Luther",
+ year: 2003,
+ rating: 6.6,
+ votes: 13543,
+ running_times: 7380,
+ },
+ {
+ title: "Lymelife",
+ year: 2008,
+ rating: 7,
+ votes: 13184,
+ running_times: 5700,
+ },
+ {
+ title: "Léon",
+ year: 1994,
+ rating: 8.6,
+ votes: 819957,
+ running_times: 8160,
+ },
+ { title: "MASH", year: 1970, rating: 7.6, votes: 59702, running_times: 6960 },
+ {
+ title: "MSG: The Messenger",
+ year: 2015,
+ rating: 6.8,
+ votes: 10998,
+ running_times: 11820,
+ },
+ {
+ title: "MacGruber",
+ year: 2010,
+ rating: 5.5,
+ votes: 37968,
+ running_times: 5700,
+ },
+ {
+ title: "Macbeth",
+ year: 2015,
+ rating: 6.7,
+ votes: 44443,
+ running_times: 6780,
+ },
+ {
+ title: "Machete",
+ year: 2010,
+ rating: 6.6,
+ votes: 174552,
+ running_times: 6300,
+ },
+ {
+ title: "Machete Kills",
+ year: 2013,
+ rating: 5.6,
+ votes: 64908,
+ running_times: 6420,
+ },
+ {
+ title: "Machine Gun Preacher",
+ year: 2011,
+ rating: 6.8,
+ votes: 57085,
+ running_times: 7740,
+ },
+ {
+ title: "Mad City",
+ year: 1997,
+ rating: 6.2,
+ votes: 17393,
+ running_times: 6900,
+ },
+ {
+ title: "Mad Dog and Glory",
+ year: 1993,
+ rating: 6.2,
+ votes: 18261,
+ running_times: 5820,
+ },
+ {
+ title: "Mad Max",
+ year: 1979,
+ rating: 7,
+ votes: 165182,
+ running_times: 5580,
+ },
+ {
+ title: "Mad Max 2",
+ year: 1981,
+ rating: 7.6,
+ votes: 145142,
+ running_times: 5760,
+ },
+ {
+ title: "Mad Max Beyond Thunderdome",
+ year: 1985,
+ rating: 6.3,
+ votes: 110404,
+ running_times: 6420,
+ },
+ {
+ title: "Mad Max: Fury Road",
+ year: 2015,
+ rating: 8.1,
+ votes: 676904,
+ running_times: 7200,
+ },
+ {
+ title: "Mad Money",
+ year: 2008,
+ rating: 5.8,
+ votes: 17870,
+ running_times: 6240,
+ },
+ {
+ title: "Madagascar",
+ year: 2005,
+ rating: 6.9,
+ votes: 298407,
+ running_times: 5160,
+ },
+ {
+ title: "Madagascar 3: Europe's Most Wanted",
+ year: 2012,
+ rating: 6.9,
+ votes: 132064,
+ running_times: 5580,
+ },
+ {
+ title: "Madagascar: Escape 2 Africa",
+ year: 2008,
+ rating: 6.7,
+ votes: 164323,
+ running_times: 5340,
+ },
+ { title: "Made", year: 2001, rating: 6.4, votes: 15671, running_times: 5700 },
+ {
+ title: "Made in America",
+ year: 1993,
+ rating: 4.9,
+ votes: 12814,
+ running_times: 6660,
+ },
+ {
+ title: "Made in Dagenham",
+ year: 2010,
+ rating: 7.2,
+ votes: 12016,
+ running_times: 6780,
+ },
+ {
+ title: "Made of Honor",
+ year: 2008,
+ rating: 5.9,
+ votes: 59008,
+ running_times: 6060,
+ },
+ {
+ title: "Madea Goes to Jail",
+ year: 2009,
+ rating: 4.3,
+ votes: 10213,
+ running_times: 6180,
+ },
+ {
+ title: "Maggie",
+ year: 2015,
+ rating: 5.6,
+ votes: 35761,
+ running_times: 5700,
+ },
+ {
+ title: "Maggie's Plan",
+ year: 2015,
+ rating: 6.2,
+ votes: 11381,
+ running_times: 5880,
+ },
+ {
+ title: "Magic Mike",
+ year: 2012,
+ rating: 6.1,
+ votes: 116802,
+ running_times: 6600,
+ },
+ {
+ title: "Magic Mike XXL",
+ year: 2015,
+ rating: 5.6,
+ votes: 44596,
+ running_times: 6900,
+ },
+ {
+ title: "Magic in the Moonlight",
+ year: 2014,
+ rating: 6.6,
+ votes: 54096,
+ running_times: 5820,
+ },
+ {
+ title: "Magnolia",
+ year: 1999,
+ rating: 8,
+ votes: 255829,
+ running_times: 11280,
+ },
+ {
+ title: "Magnum Force",
+ year: 1973,
+ rating: 7.2,
+ votes: 47198,
+ running_times: 7440,
+ },
+ {
+ title: "Maid in Manhattan",
+ year: 2002,
+ rating: 5.1,
+ votes: 73669,
+ running_times: 6300,
+ },
+ {
+ title: "Majo no takkyûbin",
+ year: 1989,
+ rating: 7.9,
+ votes: 87286,
+ running_times: 6180,
+ },
+ {
+ title: "Major League",
+ year: 1989,
+ rating: 7.2,
+ votes: 52776,
+ running_times: 6420,
+ },
+ {
+ title: "Major League II",
+ year: 1994,
+ rating: 5.5,
+ votes: 21849,
+ running_times: 6300,
+ },
+ {
+ title: "Major Payne",
+ year: 1995,
+ rating: 6.2,
+ votes: 24817,
+ running_times: 5700,
+ },
+ {
+ title: "Malcolm X",
+ year: 1992,
+ rating: 7.7,
+ votes: 69810,
+ running_times: 12120,
+ },
+ {
+ title: "Maleficent",
+ year: 2014,
+ rating: 7,
+ votes: 278768,
+ running_times: 5820,
+ },
+ {
+ title: "Malibu's Most Wanted",
+ year: 2003,
+ rating: 5.1,
+ votes: 16870,
+ running_times: 5160,
+ },
+ {
+ title: "Malice",
+ year: 1993,
+ rating: 6.4,
+ votes: 19587,
+ running_times: 6420,
+ },
+ {
+ title: "Mallrats",
+ year: 1995,
+ rating: 7.2,
+ votes: 104168,
+ running_times: 7380,
+ },
+ {
+ title: "Malèna",
+ year: 2000,
+ rating: 7.5,
+ votes: 72681,
+ running_times: 6540,
+ },
+ {
+ title: "Mama",
+ year: 2013,
+ rating: 6.2,
+ votes: 148340,
+ running_times: 6000,
+ },
+ {
+ title: "Mamma Mia!",
+ year: 2008,
+ rating: 6.4,
+ votes: 159125,
+ running_times: 6480,
+ },
+ {
+ title: "Man Up",
+ year: 2015,
+ rating: 6.8,
+ votes: 39572,
+ running_times: 5280,
+ },
+ {
+ title: "Man of Steel",
+ year: 2013,
+ rating: 7.1,
+ votes: 600877,
+ running_times: 8580,
+ },
+ {
+ title: "Man of Tai Chi",
+ year: 2013,
+ rating: 6.1,
+ votes: 30729,
+ running_times: 6300,
+ },
+ {
+ title: "Man of the House",
+ year: 2005,
+ rating: 5.4,
+ votes: 20850,
+ running_times: 6000,
+ },
+ {
+ title: "Man of the Year",
+ year: 2006,
+ rating: 6.2,
+ votes: 29232,
+ running_times: 6900,
+ },
+ {
+ title: "Man on Fire",
+ year: 2004,
+ rating: 7.7,
+ votes: 287637,
+ running_times: 8760,
+ },
+ {
+ title: "Man on Wire",
+ year: 2008,
+ rating: 7.8,
+ votes: 45633,
+ running_times: 5640,
+ },
+ {
+ title: "Man on a Ledge",
+ year: 2012,
+ rating: 6.6,
+ votes: 131789,
+ running_times: 6120,
+ },
+ {
+ title: "Man on the Moon",
+ year: 1999,
+ rating: 7.4,
+ votes: 108535,
+ running_times: 7080,
+ },
+ {
+ title: "Management",
+ year: 2008,
+ rating: 5.9,
+ votes: 15648,
+ running_times: 5640,
+ },
+ {
+ title: "Manchester by the Sea",
+ year: 2016,
+ rating: 7.9,
+ votes: 169860,
+ running_times: 8220,
+ },
+ {
+ title: "Mandela: Long Walk to Freedom",
+ year: 2013,
+ rating: 7.1,
+ votes: 23331,
+ running_times: 8460,
+ },
+ {
+ title: "Manderlay",
+ year: 2005,
+ rating: 7.4,
+ votes: 19865,
+ running_times: 8340,
+ },
+ {
+ title: "Manhattan",
+ year: 1979,
+ rating: 8,
+ votes: 114313,
+ running_times: 5760,
+ },
+ {
+ title: "Manhattan Murder Mystery",
+ year: 1993,
+ rating: 7.4,
+ votes: 31311,
+ running_times: 6240,
+ },
+ {
+ title: "Manhunter",
+ year: 1986,
+ rating: 7.2,
+ votes: 54697,
+ running_times: 7440,
+ },
+ {
+ title: "Maniac",
+ year: 1980,
+ rating: 6.5,
+ votes: 11244,
+ running_times: 5220,
+ },
+ {
+ title: "Maniac",
+ year: 2012,
+ rating: 6.1,
+ votes: 30088,
+ running_times: 5340,
+ },
+ {
+ title: "Maniac Cop",
+ year: 1988,
+ rating: 6,
+ votes: 11047,
+ running_times: 5460,
+ },
+ {
+ title: "Mannequin",
+ year: 1987,
+ rating: 5.8,
+ votes: 24870,
+ running_times: 5400,
+ },
+ {
+ title: "Manos: The Hands of Fate",
+ year: 1966,
+ rating: 1.9,
+ votes: 32272,
+ running_times: 4200,
+ },
+ {
+ title: "Mansfield Park",
+ year: 1999,
+ rating: 7.1,
+ votes: 18343,
+ running_times: 6720,
+ },
+ {
+ title: "Maps to the Stars",
+ year: 2014,
+ rating: 6.2,
+ votes: 32048,
+ running_times: 6660,
+ },
+ {
+ title: "Marathon Man",
+ year: 1976,
+ rating: 7.5,
+ votes: 48758,
+ running_times: 7500,
+ },
+ {
+ title: "Marauders",
+ year: 2016,
+ rating: 5.5,
+ votes: 12275,
+ running_times: 6420,
+ },
+ {
+ title: "Margaret",
+ year: 2011,
+ rating: 6.5,
+ votes: 13896,
+ running_times: 11160,
+ },
+ {
+ title: "Margin Call",
+ year: 2011,
+ rating: 7.1,
+ votes: 100514,
+ running_times: 6420,
+ },
+ {
+ title: "Margot at the Wedding",
+ year: 2007,
+ rating: 6.1,
+ votes: 17187,
+ running_times: 5580,
+ },
+ {
+ title: "Maria Full of Grace",
+ year: 2004,
+ rating: 7.5,
+ votes: 31731,
+ running_times: 6060,
+ },
+ {
+ title: "Marie Antoinette",
+ year: 2006,
+ rating: 6.4,
+ votes: 86766,
+ running_times: 7380,
+ },
+ {
+ title: "Marked for Death",
+ year: 1990,
+ rating: 5.9,
+ votes: 16524,
+ running_times: 5580,
+ },
+ {
+ title: "Marley & Me",
+ year: 2008,
+ rating: 7.1,
+ votes: 127015,
+ running_times: 6900,
+ },
+ { title: "Marley", year: 2012, rating: 8, votes: 11860, running_times: 8640 },
+ {
+ title: "Marmaduke",
+ year: 2010,
+ rating: 4.2,
+ votes: 12249,
+ running_times: 5220,
+ },
+ {
+ title: "Marnie",
+ year: 1964,
+ rating: 7.2,
+ votes: 37177,
+ running_times: 7800,
+ },
+ {
+ title: "Married to the Mob",
+ year: 1988,
+ rating: 6.1,
+ votes: 13549,
+ running_times: 6240,
+ },
+ {
+ title: "Mars Attacks!",
+ year: 1996,
+ rating: 6.3,
+ votes: 185254,
+ running_times: 6360,
+ },
+ {
+ title: "Mars Needs Moms",
+ year: 2011,
+ rating: 5.4,
+ votes: 18755,
+ running_times: 5280,
+ },
+ {
+ title: "Martha Marcy May Marlene",
+ year: 2011,
+ rating: 6.9,
+ votes: 43275,
+ running_times: 6120,
+ },
+ {
+ title: "Martian Child",
+ year: 2007,
+ rating: 6.8,
+ votes: 18295,
+ running_times: 6360,
+ },
+ {
+ title: "Marty",
+ year: 1955,
+ rating: 7.7,
+ votes: 17265,
+ running_times: 5640,
+ },
+ {
+ title: "Marvin's Room",
+ year: 1996,
+ rating: 6.7,
+ votes: 21938,
+ running_times: 5880,
+ },
+ {
+ title: "Mary Poppins",
+ year: 1964,
+ rating: 7.8,
+ votes: 120704,
+ running_times: 8340,
+ },
+ {
+ title: "Mary Reilly",
+ year: 1996,
+ rating: 5.8,
+ votes: 12578,
+ running_times: 6480,
+ },
+ {
+ title: "Mary Shelley's Frankenstein",
+ year: 1994,
+ rating: 6.4,
+ votes: 45406,
+ running_times: 7380,
+ },
+ {
+ title: "Mary and Max",
+ year: 2009,
+ rating: 8.1,
+ votes: 134929,
+ running_times: 5520,
+ },
+ { title: "Mask", year: 1985, rating: 7.2, votes: 22226, running_times: 7620 },
+ {
+ title: "Master and Commander: The Far Side of the World",
+ year: 2003,
+ rating: 7.4,
+ votes: 179736,
+ running_times: 8280,
+ },
+ {
+ title: "Masterminds",
+ year: 2016,
+ rating: 5.8,
+ votes: 36500,
+ running_times: 5700,
+ },
+ {
+ title: "Masters of the Universe",
+ year: 1987,
+ rating: 5.4,
+ votes: 30771,
+ running_times: 8340,
+ },
+ {
+ title: "Match Point",
+ year: 2005,
+ rating: 7.7,
+ votes: 180746,
+ running_times: 7440,
+ },
+ {
+ title: "Matchstick Men",
+ year: 2003,
+ rating: 7.3,
+ votes: 112733,
+ running_times: 6960,
+ },
+ {
+ title: "Material Girls",
+ year: 2006,
+ rating: 3.9,
+ votes: 19988,
+ running_times: 5880,
+ },
+ {
+ title: "Matilda",
+ year: 1996,
+ rating: 6.8,
+ votes: 99960,
+ running_times: 6120,
+ },
+ {
+ title: "Maurice",
+ year: 1987,
+ rating: 7.7,
+ votes: 12111,
+ running_times: 8400,
+ },
+ {
+ title: "Maverick",
+ year: 1994,
+ rating: 7,
+ votes: 89064,
+ running_times: 7620,
+ },
+ { title: "Max", year: 2015, rating: 6.8, votes: 22467, running_times: 6660 },
+ {
+ title: "Max Manus",
+ year: 2008,
+ rating: 7.3,
+ votes: 23654,
+ running_times: 7080,
+ },
+ {
+ title: "Max Payne",
+ year: 2008,
+ rating: 5.4,
+ votes: 113037,
+ running_times: 6180,
+ },
+ {
+ title: "Max Steel",
+ year: 2016,
+ rating: 4.6,
+ votes: 14154,
+ running_times: 5520,
+ },
+ {
+ title: "Maximum Overdrive",
+ year: 1986,
+ rating: 5.4,
+ votes: 25300,
+ running_times: 5880,
+ },
+ {
+ title: "Maximum Risk",
+ year: 1996,
+ rating: 5.5,
+ votes: 17162,
+ running_times: 6060,
+ },
+ { title: "May", year: 2002, rating: 6.7, votes: 28776, running_times: 5580 },
+ {
+ title: "Maze Runner: The Scorch Trials",
+ year: 2015,
+ rating: 6.3,
+ votes: 170192,
+ running_times: 7860,
+ },
+ {
+ title: "McCabe & Mrs. Miller",
+ year: 1971,
+ rating: 7.7,
+ votes: 18101,
+ running_times: 7260,
+ },
+ {
+ title: "McFarland, USA",
+ year: 2015,
+ rating: 7.4,
+ votes: 28260,
+ running_times: 7740,
+ },
+ {
+ title: "McLintock!",
+ year: 1963,
+ rating: 7.3,
+ votes: 10231,
+ running_times: 7620,
+ },
+ {
+ title: "Me Before You",
+ year: 2016,
+ rating: 7.4,
+ votes: 133986,
+ running_times: 6360,
+ },
+ {
+ title: "Me and Earl and the Dying Girl",
+ year: 2015,
+ rating: 7.8,
+ votes: 99372,
+ running_times: 6300,
+ },
+ {
+ title: "Me and You and Everyone We Know",
+ year: 2005,
+ rating: 7.3,
+ votes: 32526,
+ running_times: 5460,
+ },
+ {
+ title: "Me, Myself & Irene",
+ year: 2000,
+ rating: 6.6,
+ votes: 198415,
+ running_times: 6960,
+ },
+ {
+ title: "Mean Creek",
+ year: 2004,
+ rating: 7.3,
+ votes: 28002,
+ running_times: 5400,
+ },
+ {
+ title: "Mean Girls",
+ year: 2004,
+ rating: 7,
+ votes: 274107,
+ running_times: 5820,
+ },
+ {
+ title: "Mean Machine",
+ year: 2001,
+ rating: 6.5,
+ votes: 31492,
+ running_times: 5940,
+ },
+ {
+ title: "Mean Streets",
+ year: 1973,
+ rating: 7.4,
+ votes: 76168,
+ running_times: 6720,
+ },
+ {
+ title: "Meatballs",
+ year: 1979,
+ rating: 6.2,
+ votes: 15923,
+ running_times: 5640,
+ },
+ {
+ title: "Mechanic: Resurrection",
+ year: 2016,
+ rating: 5.7,
+ votes: 55890,
+ running_times: 5880,
+ },
+ {
+ title: "Medianeras",
+ year: 2011,
+ rating: 7.6,
+ votes: 11721,
+ running_times: 5700,
+ },
+ {
+ title: "Medicine Man",
+ year: 1992,
+ rating: 6,
+ votes: 18595,
+ running_times: 6360,
+ },
+ {
+ title: "Mediterraneo",
+ year: 1991,
+ rating: 7.4,
+ votes: 11592,
+ running_times: 5760,
+ },
+ {
+ title: "Meet Dave",
+ year: 2008,
+ rating: 4.9,
+ votes: 33803,
+ running_times: 5400,
+ },
+ {
+ title: "Meet Joe Black",
+ year: 1998,
+ rating: 7.2,
+ votes: 182493,
+ running_times: 10680,
+ },
+ {
+ title: "Meet John Doe",
+ year: 1941,
+ rating: 7.7,
+ votes: 10038,
+ running_times: 7320,
+ },
+ {
+ title: "Meet Me in St. Louis",
+ year: 1944,
+ rating: 7.7,
+ votes: 16521,
+ running_times: 6780,
+ },
+ {
+ title: "Meet the Blacks",
+ year: 2016,
+ rating: 5.8,
+ votes: 19571,
+ running_times: 5640,
+ },
+ {
+ title: "Meet the Feebles",
+ year: 1989,
+ rating: 6.7,
+ votes: 16761,
+ running_times: 5820,
+ },
+ {
+ title: "Meet the Fockers",
+ year: 2004,
+ rating: 6.3,
+ votes: 225530,
+ running_times: 6900,
+ },
+ {
+ title: "Meet the Parents",
+ year: 2000,
+ rating: 7,
+ votes: 277578,
+ running_times: 6480,
+ },
+ {
+ title: "Meet the Robinsons",
+ year: 2007,
+ rating: 6.9,
+ votes: 74057,
+ running_times: 5700,
+ },
+ {
+ title: "Meet the Spartans",
+ year: 2008,
+ rating: 2.7,
+ votes: 93548,
+ running_times: 5160,
+ },
+ {
+ title: "Meeting Evil",
+ year: 2012,
+ rating: 5.3,
+ votes: 10575,
+ running_times: 5340,
+ },
+ {
+ title: "Megamind",
+ year: 2010,
+ rating: 7.3,
+ votes: 190379,
+ running_times: 5700,
+ },
+ {
+ title: "Megan Leavey",
+ year: 2017,
+ rating: 7.1,
+ votes: 11096,
+ running_times: 6960,
+ },
+ {
+ title: "Melancholia",
+ year: 2011,
+ rating: 7.1,
+ votes: 141879,
+ running_times: 8100,
+ },
+ {
+ title: "Melinda and Melinda",
+ year: 2004,
+ rating: 6.5,
+ votes: 28638,
+ running_times: 5940,
+ },
+ {
+ title: "Memento",
+ year: 2000,
+ rating: 8.5,
+ votes: 942167,
+ running_times: 6780,
+ },
+ {
+ title: "Memoirs of a Geisha",
+ year: 2005,
+ rating: 7.4,
+ votes: 125653,
+ running_times: 8700,
+ },
+ {
+ title: "Memoirs of an Invisible Man",
+ year: 1992,
+ rating: 5.9,
+ votes: 18853,
+ running_times: 5940,
+ },
+ {
+ title: "Memorîzu",
+ year: 1995,
+ rating: 7.6,
+ votes: 12744,
+ running_times: 6780,
+ },
+ {
+ title: "Memphis Belle",
+ year: 1990,
+ rating: 6.9,
+ votes: 24107,
+ running_times: 6420,
+ },
+ {
+ title: "Men at Work",
+ year: 1990,
+ rating: 5.9,
+ votes: 19577,
+ running_times: 5880,
+ },
+ {
+ title: "Men in Black",
+ year: 1997,
+ rating: 7.3,
+ votes: 443481,
+ running_times: 5880,
+ },
+ {
+ title: "Men in Black 3",
+ year: 2012,
+ rating: 6.8,
+ votes: 285598,
+ running_times: 6360,
+ },
+ {
+ title: "Men in Black II",
+ year: 2002,
+ rating: 6.1,
+ votes: 287094,
+ running_times: 5280,
+ },
+ {
+ title: "Men of Honor",
+ year: 2000,
+ rating: 7.2,
+ votes: 95757,
+ running_times: 7740,
+ },
+ {
+ title: "Men, Women & Children",
+ year: 2014,
+ rating: 6.7,
+ votes: 25774,
+ running_times: 7140,
+ },
+ {
+ title: "Menace II Society",
+ year: 1993,
+ rating: 7.5,
+ votes: 43249,
+ running_times: 5820,
+ },
+ {
+ title: "Meng long guo jiang",
+ year: 1972,
+ rating: 7.3,
+ votes: 25866,
+ running_times: 7980,
+ },
+ {
+ title: "Mercury Rising",
+ year: 1998,
+ rating: 6.1,
+ votes: 58173,
+ running_times: 6660,
+ },
+ {
+ title: "Mermaids",
+ year: 1990,
+ rating: 6.6,
+ votes: 24084,
+ running_times: 6600,
+ },
+ {
+ title: "Merry Christmas Mr. Lawrence",
+ year: 1983,
+ rating: 7.3,
+ votes: 11952,
+ running_times: 7380,
+ },
+ {
+ title: "Message in a Bottle",
+ year: 1999,
+ rating: 6.2,
+ votes: 31337,
+ running_times: 7560,
+ },
+ {
+ title: "Metal: A Headbanger's Journey",
+ year: 2005,
+ rating: 8.1,
+ votes: 10570,
+ running_times: 5880,
+ },
+ {
+ title: "Metallica Through the Never",
+ year: 2013,
+ rating: 7.2,
+ votes: 14579,
+ running_times: 5580,
+ },
+ {
+ title: "Metallica: Some Kind of Monster",
+ year: 2004,
+ rating: 7.5,
+ votes: 14893,
+ running_times: 8460,
+ },
+ {
+ title: "Metoroporisu",
+ year: 2001,
+ rating: 7.3,
+ votes: 18053,
+ running_times: 6780,
+ },
+ {
+ title: "Metro",
+ year: 1997,
+ rating: 5.5,
+ votes: 22659,
+ running_times: 7020,
+ },
+ {
+ title: "Miami Vice",
+ year: 2006,
+ rating: 6,
+ votes: 98088,
+ running_times: 8400,
+ },
+ {
+ title: "Michael",
+ year: 1996,
+ rating: 5.7,
+ votes: 36663,
+ running_times: 6300,
+ },
+ {
+ title: "Michael Clayton",
+ year: 2007,
+ rating: 7.3,
+ votes: 142224,
+ running_times: 7140,
+ },
+ {
+ title: "Michael Collins",
+ year: 1996,
+ rating: 7.1,
+ votes: 25953,
+ running_times: 7980,
+ },
+ {
+ title: "Mickey Blue Eyes",
+ year: 1999,
+ rating: 5.8,
+ votes: 31377,
+ running_times: 6120,
+ },
+ {
+ title: "Middle Men",
+ year: 2009,
+ rating: 6.6,
+ votes: 34183,
+ running_times: 6300,
+ },
+ {
+ title: "Midnight Cowboy",
+ year: 1969,
+ rating: 7.9,
+ votes: 83242,
+ running_times: 6780,
+ },
+ {
+ title: "Midnight Express",
+ year: 1978,
+ rating: 7.6,
+ votes: 59898,
+ running_times: 7260,
+ },
+ {
+ title: "Midnight Run",
+ year: 1988,
+ rating: 7.6,
+ votes: 59112,
+ running_times: 7560,
+ },
+ {
+ title: "Midnight Special",
+ year: 2016,
+ rating: 6.7,
+ votes: 60015,
+ running_times: 6720,
+ },
+ {
+ title: "Midnight in Paris",
+ year: 2011,
+ rating: 7.7,
+ votes: 331832,
+ running_times: 6000,
+ },
+ {
+ title: "Midnight in the Garden of Good and Evil",
+ year: 1997,
+ rating: 6.6,
+ votes: 33568,
+ running_times: 9300,
+ },
+ {
+ title: "Midway",
+ year: 1976,
+ rating: 6.8,
+ votes: 14666,
+ running_times: 7920,
+ },
+ {
+ title: "Mighty Aphrodite",
+ year: 1995,
+ rating: 7.1,
+ votes: 34007,
+ running_times: 5700,
+ },
+ {
+ title: "Mighty Joe Young",
+ year: 1998,
+ rating: 5.6,
+ votes: 24571,
+ running_times: 6840,
+ },
+ {
+ title: "Mighty Morphin Power Rangers: The Movie",
+ year: 1995,
+ rating: 5.1,
+ votes: 21853,
+ running_times: 5700,
+ },
+ {
+ title: "Mike and Dave Need Wedding Dates",
+ year: 2016,
+ rating: 6,
+ votes: 63508,
+ running_times: 5880,
+ },
+ {
+ title: "Mildred Pierce",
+ year: 1945,
+ rating: 8,
+ votes: 18004,
+ running_times: 6660,
+ },
+ {
+ title: "Milk",
+ year: 2008,
+ rating: 7.6,
+ votes: 146757,
+ running_times: 7680,
+ },
+ {
+ title: "Miller's Crossing",
+ year: 1990,
+ rating: 7.8,
+ votes: 111289,
+ running_times: 6900,
+ },
+ {
+ title: "Million Dollar Arm",
+ year: 2014,
+ rating: 7,
+ votes: 38810,
+ running_times: 7440,
+ },
+ {
+ title: "Million Dollar Baby",
+ year: 2004,
+ rating: 8.1,
+ votes: 535783,
+ running_times: 7920,
+ },
+ {
+ title: "Millions",
+ year: 2004,
+ rating: 6.9,
+ votes: 22849,
+ running_times: 5880,
+ },
+ {
+ title: "Mimi wo sumaseba",
+ year: 1995,
+ rating: 8,
+ votes: 35076,
+ running_times: 6660,
+ },
+ {
+ title: "Mimic",
+ year: 1997,
+ rating: 5.9,
+ votes: 39674,
+ running_times: 6720,
+ },
+ {
+ title: "Mindhunters",
+ year: 2004,
+ rating: 6.4,
+ votes: 52528,
+ running_times: 6360,
+ },
+ {
+ title: "Minions",
+ year: 2015,
+ rating: 6.4,
+ votes: 172484,
+ running_times: 5460,
+ },
+ {
+ title: "Minority Report",
+ year: 2002,
+ rating: 7.7,
+ votes: 435364,
+ running_times: 8700,
+ },
+ {
+ title: "Miracle",
+ year: 2004,
+ rating: 7.5,
+ votes: 39564,
+ running_times: 8100,
+ },
+ {
+ title: "Miracle at St. Anna",
+ year: 2008,
+ rating: 6,
+ votes: 16362,
+ running_times: 9600,
+ },
+ {
+ title: "Miracle on 34th Street",
+ year: 1947,
+ rating: 7.9,
+ votes: 33497,
+ running_times: 6060,
+ },
+ {
+ title: "Miracle on 34th Street",
+ year: 1994,
+ rating: 6.4,
+ votes: 25109,
+ running_times: 6840,
+ },
+ {
+ title: "Miracles from Heaven",
+ year: 2016,
+ rating: 7,
+ votes: 13888,
+ running_times: 6540,
+ },
+ {
+ title: "Mirror Mirror",
+ year: 2012,
+ rating: 5.6,
+ votes: 75292,
+ running_times: 6360,
+ },
+ {
+ title: "Mirrormask",
+ year: 2005,
+ rating: 6.9,
+ votes: 21061,
+ running_times: 6060,
+ },
+ {
+ title: "Mirrors",
+ year: 2008,
+ rating: 6.2,
+ votes: 92362,
+ running_times: 6720,
+ },
+ {
+ title: "Misconduct",
+ year: 2016,
+ rating: 5.3,
+ votes: 11364,
+ running_times: 6360,
+ },
+ {
+ title: "Misery",
+ year: 1990,
+ rating: 7.8,
+ votes: 149872,
+ running_times: 6420,
+ },
+ {
+ title: "Miss Congeniality",
+ year: 2000,
+ rating: 6.2,
+ votes: 152953,
+ running_times: 6540,
+ },
+ {
+ title: "Miss Congeniality 2: Armed and Fabulous",
+ year: 2005,
+ rating: 5,
+ votes: 57183,
+ running_times: 6900,
+ },
+ {
+ title: "Miss March",
+ year: 2009,
+ rating: 5,
+ votes: 19250,
+ running_times: 5400,
+ },
+ {
+ title: "Miss Peregrine's Home for Peculiar Children",
+ year: 2016,
+ rating: 6.7,
+ votes: 121273,
+ running_times: 7620,
+ },
+ {
+ title: "Miss Pettigrew Lives for a Day",
+ year: 2008,
+ rating: 7.1,
+ votes: 23635,
+ running_times: 5520,
+ },
+ {
+ title: "Miss Potter",
+ year: 2006,
+ rating: 7,
+ votes: 25274,
+ running_times: 5280,
+ },
+ {
+ title: "Miss Sloane",
+ year: 2016,
+ rating: 7.4,
+ votes: 32325,
+ running_times: 7920,
+ },
+ {
+ title: "Miss You Already",
+ year: 2015,
+ rating: 6.8,
+ votes: 13120,
+ running_times: 6720,
+ },
+ {
+ title: "Missing",
+ year: 1982,
+ rating: 7.8,
+ votes: 15297,
+ running_times: 7320,
+ },
+ {
+ title: "Missing in Action",
+ year: 1984,
+ rating: 5.3,
+ votes: 11580,
+ running_times: 6060,
+ },
+ {
+ title: "Mission to Mars",
+ year: 2000,
+ rating: 5.6,
+ votes: 64003,
+ running_times: 6840,
+ },
+ {
+ title: "Mission: Impossible",
+ year: 1996,
+ rating: 7.1,
+ votes: 326602,
+ running_times: 6600,
+ },
+ {
+ title: "Mission: Impossible - Ghost Protocol",
+ year: 2011,
+ rating: 7.4,
+ votes: 391959,
+ running_times: 7920,
+ },
+ {
+ title: "Mission: Impossible - Rogue Nation",
+ year: 2015,
+ rating: 7.4,
+ votes: 269296,
+ running_times: 7860,
+ },
+ {
+ title: "Mission: Impossible II",
+ year: 2000,
+ rating: 6.1,
+ votes: 263036,
+ running_times: 14400,
+ },
+ {
+ title: "Mission: Impossible III",
+ year: 2006,
+ rating: 6.9,
+ votes: 278264,
+ running_times: 7560,
+ },
+ {
+ title: "Mississippi Burning",
+ year: 1988,
+ rating: 7.8,
+ votes: 71359,
+ running_times: 7680,
+ },
+ {
+ title: "Mississippi Grind",
+ year: 2015,
+ rating: 6.3,
+ votes: 13547,
+ running_times: 6480,
+ },
+ {
+ title: "Mister Roberts",
+ year: 1955,
+ rating: 7.8,
+ votes: 13571,
+ running_times: 7380,
+ },
+ {
+ title: "Mistress America",
+ year: 2015,
+ rating: 6.7,
+ votes: 19864,
+ running_times: 5040,
+ },
+ {
+ title: "Moana",
+ year: 2016,
+ rating: 7.6,
+ votes: 169284,
+ running_times: 6420,
+ },
+ {
+ title: "Moby Dick",
+ year: 1956,
+ rating: 7.4,
+ votes: 14561,
+ running_times: 6960,
+ },
+ {
+ title: "Modern Times",
+ year: 1936,
+ rating: 8.5,
+ votes: 165123,
+ running_times: 5220,
+ },
+ {
+ title: "Momentum",
+ year: 2015,
+ rating: 5.5,
+ votes: 10775,
+ running_times: 5760,
+ },
+ {
+ title: "Mommie Dearest",
+ year: 1981,
+ rating: 6.7,
+ votes: 12068,
+ running_times: 7740,
+ },
+ {
+ title: "Mommy",
+ year: 2014,
+ rating: 8.1,
+ votes: 36886,
+ running_times: 8340,
+ },
+ {
+ title: "Moms' Night Out",
+ year: 2014,
+ rating: 5.5,
+ votes: 11563,
+ running_times: 5880,
+ },
+ {
+ title: "Mona Lisa",
+ year: 1986,
+ rating: 7.4,
+ votes: 10846,
+ running_times: 6240,
+ },
+ {
+ title: "Mona Lisa Smile",
+ year: 2003,
+ rating: 6.4,
+ votes: 66594,
+ running_times: 7020,
+ },
+ {
+ title: "Money Monster",
+ year: 2016,
+ rating: 6.5,
+ votes: 74698,
+ running_times: 5880,
+ },
+ {
+ title: "Money Talks",
+ year: 1997,
+ rating: 6.2,
+ votes: 23953,
+ running_times: 5820,
+ },
+ {
+ title: "Money Train",
+ year: 1995,
+ rating: 5.6,
+ votes: 34379,
+ running_times: 6600,
+ },
+ {
+ title: "Moneyball",
+ year: 2011,
+ rating: 7.6,
+ votes: 305109,
+ running_times: 7980,
+ },
+ {
+ title: "Monkey Business",
+ year: 1952,
+ rating: 7,
+ votes: 10755,
+ running_times: 5820,
+ },
+ {
+ title: "Monkeybone",
+ year: 2001,
+ rating: 4.7,
+ votes: 15142,
+ running_times: 5580,
+ },
+ {
+ title: "Monsieur Lazhar",
+ year: 2011,
+ rating: 7.5,
+ votes: 17159,
+ running_times: 5640,
+ },
+ {
+ title: "Monsieur Verdoux",
+ year: 1947,
+ rating: 8,
+ votes: 12827,
+ running_times: 7440,
+ },
+ {
+ title: "Monsoon Wedding",
+ year: 2001,
+ rating: 7.4,
+ votes: 21016,
+ running_times: 6840,
+ },
+ {
+ title: "Monster",
+ year: 2003,
+ rating: 7.3,
+ votes: 115609,
+ running_times: 6540,
+ },
+ {
+ title: "Monster House",
+ year: 2006,
+ rating: 6.6,
+ votes: 80929,
+ running_times: 5460,
+ },
+ {
+ title: "Monster Trucks",
+ year: 2016,
+ rating: 5.7,
+ votes: 10288,
+ running_times: 6240,
+ },
+ {
+ title: "Monster's Ball",
+ year: 2001,
+ rating: 7.1,
+ votes: 75193,
+ running_times: 6720,
+ },
+ {
+ title: "Monster-in-Law",
+ year: 2005,
+ rating: 5.5,
+ votes: 47838,
+ running_times: 6060,
+ },
+ {
+ title: "Monsters",
+ year: 2010,
+ rating: 6.4,
+ votes: 80963,
+ running_times: 5640,
+ },
+ {
+ title: "Monsters University",
+ year: 2013,
+ rating: 7.3,
+ votes: 263070,
+ running_times: 6240,
+ },
+ {
+ title: "Monsters vs. Aliens",
+ year: 2009,
+ rating: 6.5,
+ votes: 125293,
+ running_times: 5640,
+ },
+ {
+ title: "Monsters, Inc.",
+ year: 2001,
+ rating: 8.1,
+ votes: 661782,
+ running_times: 5520,
+ },
+ {
+ title: "Monte Carlo",
+ year: 2011,
+ rating: 5.8,
+ votes: 36047,
+ running_times: 6540,
+ },
+ {
+ title: "Monty Python Live at the Hollywood Bowl",
+ year: 1982,
+ rating: 7.9,
+ votes: 12068,
+ running_times: 4620,
+ },
+ {
+ title: "Monty Python and the Holy Grail",
+ year: 1975,
+ rating: 8.3,
+ votes: 419568,
+ running_times: 5460,
+ },
+ {
+ title: "Moon",
+ year: 2009,
+ rating: 7.9,
+ votes: 286855,
+ running_times: 5820,
+ },
+ {
+ title: "Moonlight",
+ year: 2016,
+ rating: 7.5,
+ votes: 171817,
+ running_times: 6660,
+ },
+ {
+ title: "Moonlight Mile",
+ year: 2002,
+ rating: 6.7,
+ votes: 12518,
+ running_times: 8760,
+ },
+ {
+ title: "Moonraker",
+ year: 1979,
+ rating: 6.3,
+ votes: 75827,
+ running_times: 7560,
+ },
+ {
+ title: "Moonrise Kingdom",
+ year: 2012,
+ rating: 7.8,
+ votes: 264990,
+ running_times: 5640,
+ },
+ {
+ title: "Moonstruck",
+ year: 1987,
+ rating: 7.1,
+ votes: 39131,
+ running_times: 6120,
+ },
+ {
+ title: "Moonwalker",
+ year: 1988,
+ rating: 6,
+ votes: 13485,
+ running_times: 5580,
+ },
+ {
+ title: "Morgan",
+ year: 2016,
+ rating: 5.8,
+ votes: 28784,
+ running_times: 5520,
+ },
+ {
+ title: "Morning Glory",
+ year: 2010,
+ rating: 6.5,
+ votes: 63060,
+ running_times: 6420,
+ },
+ {
+ title: "Mortal Kombat",
+ year: 1995,
+ rating: 5.8,
+ votes: 87746,
+ running_times: 6060,
+ },
+ {
+ title: "Mortal Kombat: Annihilation",
+ year: 1997,
+ rating: 3.7,
+ votes: 39249,
+ running_times: 5700,
+ },
+ {
+ title: "Mortdecai",
+ year: 2015,
+ rating: 5.5,
+ votes: 54994,
+ running_times: 6420,
+ },
+ {
+ title: "Morte a Venezia",
+ year: 1971,
+ rating: 7.5,
+ votes: 15085,
+ running_times: 7800,
+ },
+ {
+ title: "Mother and Child",
+ year: 2009,
+ rating: 7.2,
+ votes: 10396,
+ running_times: 7500,
+ },
+ {
+ title: "Mother!",
+ year: 2017,
+ rating: 6.9,
+ votes: 65060,
+ running_times: 7260,
+ },
+ {
+ title: "Mother's Day",
+ year: 2010,
+ rating: 6.3,
+ votes: 14047,
+ running_times: 6720,
+ },
+ {
+ title: "Mother's Day",
+ year: 2016,
+ rating: 5.6,
+ votes: 23336,
+ running_times: 7080,
+ },
+ {
+ title: "Mou gaan dou",
+ year: 2002,
+ rating: 8.1,
+ votes: 101710,
+ running_times: 6060,
+ },
+ {
+ title: "Mou gaan dou II",
+ year: 2003,
+ rating: 7.4,
+ votes: 14467,
+ running_times: 7140,
+ },
+ {
+ title: "Moulin Rouge!",
+ year: 2001,
+ rating: 7.6,
+ votes: 238849,
+ running_times: 7620,
+ },
+ {
+ title: "Mousehunt",
+ year: 1997,
+ rating: 6.4,
+ votes: 44738,
+ running_times: 5880,
+ },
+ {
+ title: "Movie 43",
+ year: 2013,
+ rating: 4.3,
+ votes: 86504,
+ running_times: 5640,
+ },
+ {
+ title: "Mr 3000",
+ year: 2004,
+ rating: 5.5,
+ votes: 12827,
+ running_times: 6240,
+ },
+ {
+ title: "Mr. & Mrs. Smith",
+ year: 2005,
+ rating: 6.5,
+ votes: 384128,
+ running_times: 7560,
+ },
+ {
+ title: "Mr. Bean's Holiday",
+ year: 2007,
+ rating: 6.3,
+ votes: 97284,
+ running_times: 5400,
+ },
+ {
+ title: "Mr. Brooks",
+ year: 2007,
+ rating: 7.3,
+ votes: 130745,
+ running_times: 7200,
+ },
+ {
+ title: "Mr. Church",
+ year: 2016,
+ rating: 7.6,
+ votes: 18951,
+ running_times: 6240,
+ },
+ {
+ title: "Mr. Deeds",
+ year: 2002,
+ rating: 5.8,
+ votes: 119207,
+ running_times: 5760,
+ },
+ {
+ title: "Mr. Deeds Goes to Town",
+ year: 1936,
+ rating: 8,
+ votes: 16367,
+ running_times: 6900,
+ },
+ {
+ title: "Mr. Destiny",
+ year: 1990,
+ rating: 6.3,
+ votes: 10098,
+ running_times: 6600,
+ },
+ {
+ title: "Mr. Holland's Opus",
+ year: 1995,
+ rating: 7.3,
+ votes: 31822,
+ running_times: 8580,
+ },
+ {
+ title: "Mr. Holmes",
+ year: 2015,
+ rating: 6.9,
+ votes: 52427,
+ running_times: 6240,
+ },
+ {
+ title: "Mr. Magoo",
+ year: 1997,
+ rating: 3.9,
+ votes: 12824,
+ running_times: 5220,
+ },
+ {
+ title: "Mr. Magorium's Wonder Emporium",
+ year: 2007,
+ rating: 6.2,
+ votes: 37848,
+ running_times: 5580,
+ },
+ {
+ title: "Mr. Mom",
+ year: 1983,
+ rating: 6.5,
+ votes: 17571,
+ running_times: 5460,
+ },
+ {
+ title: "Mr. Morgan's Last Love",
+ year: 2013,
+ rating: 6.8,
+ votes: 10599,
+ running_times: 6660,
+ },
+ {
+ title: "Mr. Nobody",
+ year: 2009,
+ rating: 7.9,
+ votes: 176739,
+ running_times: 9420,
+ },
+ {
+ title: "Mr. Peabody & Sherman",
+ year: 2014,
+ rating: 6.8,
+ votes: 53028,
+ running_times: 5520,
+ },
+ {
+ title: "Mr. Popper's Penguins",
+ year: 2011,
+ rating: 6,
+ votes: 73897,
+ running_times: 5640,
+ },
+ {
+ title: "Mr. Right",
+ year: 2015,
+ rating: 6.3,
+ votes: 34544,
+ running_times: 5700,
+ },
+ {
+ title: "Mr. Smith Goes to Washington",
+ year: 1939,
+ rating: 8.2,
+ votes: 85911,
+ running_times: 7740,
+ },
+ {
+ title: "Mr. Turner",
+ year: 2014,
+ rating: 6.8,
+ votes: 20793,
+ running_times: 9000,
+ },
+ {
+ title: "Mr. Woodcock",
+ year: 2007,
+ rating: 5.1,
+ votes: 32431,
+ running_times: 5220,
+ },
+ {
+ title: "Mrs Brown",
+ year: 1997,
+ rating: 7.3,
+ votes: 11844,
+ running_times: 6060,
+ },
+ {
+ title: "Mrs Henderson Presents",
+ year: 2005,
+ rating: 7.1,
+ votes: 14089,
+ running_times: 6180,
+ },
+ {
+ title: "Mrs. Doubtfire",
+ year: 1993,
+ rating: 6.9,
+ votes: 201287,
+ running_times: 7500,
+ },
+ {
+ title: "Mrs. Miniver",
+ year: 1942,
+ rating: 7.6,
+ votes: 12803,
+ running_times: 8040,
+ },
+ {
+ title: "Much Ado About Nothing",
+ year: 1993,
+ rating: 7.4,
+ votes: 39702,
+ running_times: 6660,
+ },
+ {
+ title: "Much Ado About Nothing",
+ year: 2012,
+ rating: 7.2,
+ votes: 14790,
+ running_times: 6540,
+ },
+ { title: "Mud", year: 2012, rating: 7.4, votes: 147427, running_times: 7800 },
+ {
+ title: "Mulan",
+ year: 1998,
+ rating: 7.6,
+ votes: 196734,
+ running_times: 5280,
+ },
+ {
+ title: "Mulholland Dr.",
+ year: 2001,
+ rating: 8,
+ votes: 267364,
+ running_times: 8820,
+ },
+ {
+ title: "Mulholland Falls",
+ year: 1996,
+ rating: 6.2,
+ votes: 13844,
+ running_times: 6420,
+ },
+ {
+ title: "Multiplicity",
+ year: 1996,
+ rating: 6,
+ votes: 26392,
+ running_times: 7020,
+ },
+ {
+ title: "Munich",
+ year: 2005,
+ rating: 7.6,
+ votes: 188027,
+ running_times: 9840,
+ },
+ {
+ title: "Muppet Treasure Island",
+ year: 1996,
+ rating: 6.9,
+ votes: 17495,
+ running_times: 5940,
+ },
+ {
+ title: "Muppets Most Wanted",
+ year: 2014,
+ rating: 6.4,
+ votes: 26686,
+ running_times: 7140,
+ },
+ {
+ title: "Muppets from Space",
+ year: 1999,
+ rating: 6.3,
+ votes: 15770,
+ running_times: 5280,
+ },
+ {
+ title: "Murder at 1600",
+ year: 1997,
+ rating: 6.1,
+ votes: 25149,
+ running_times: 6480,
+ },
+ {
+ title: "Murder by Death",
+ year: 1976,
+ rating: 7.4,
+ votes: 27268,
+ running_times: 5640,
+ },
+ {
+ title: "Murder by Numbers",
+ year: 2002,
+ rating: 6.1,
+ votes: 46580,
+ running_times: 6900,
+ },
+ {
+ title: "Murder in the First",
+ year: 1995,
+ rating: 7.3,
+ votes: 23309,
+ running_times: 7320,
+ },
+ {
+ title: "Murder on the Orient Express",
+ year: 1974,
+ rating: 7.3,
+ votes: 43168,
+ running_times: 7680,
+ },
+ {
+ title: "Murder on the Orient Express",
+ year: 2017,
+ rating: 6.8,
+ votes: 55516,
+ running_times: 6840,
+ },
+ {
+ title: "Muriel's Wedding",
+ year: 1994,
+ rating: 7.2,
+ votes: 30018,
+ running_times: 6360,
+ },
+ {
+ title: "Music and Lyrics",
+ year: 2007,
+ rating: 6.5,
+ votes: 86957,
+ running_times: 6360,
+ },
+ {
+ title: "Music of the Heart",
+ year: 1999,
+ rating: 6.8,
+ votes: 10711,
+ running_times: 7440,
+ },
+ {
+ title: "Must Love Dogs",
+ year: 2005,
+ rating: 5.9,
+ votes: 27642,
+ running_times: 5880,
+ },
+ {
+ title: "Mutant Chronicles",
+ year: 2008,
+ rating: 5.2,
+ votes: 24332,
+ running_times: 6660,
+ },
+ {
+ title: "Mutiny on the Bounty",
+ year: 1935,
+ rating: 7.8,
+ votes: 17571,
+ running_times: 7920,
+ },
+ {
+ title: "Mutiny on the Bounty",
+ year: 1962,
+ rating: 7.2,
+ votes: 12571,
+ running_times: 11100,
+ },
+ {
+ title: "My Beautiful Laundrette",
+ year: 1985,
+ rating: 6.9,
+ votes: 11620,
+ running_times: 5820,
+ },
+ {
+ title: "My Best Friend's Girl",
+ year: 2008,
+ rating: 5.9,
+ votes: 39104,
+ running_times: 6720,
+ },
+ {
+ title: "My Best Friend's Wedding",
+ year: 1997,
+ rating: 6.3,
+ votes: 107518,
+ running_times: 6300,
+ },
+ {
+ title: "My Big Fat Greek Wedding",
+ year: 2002,
+ rating: 6.6,
+ votes: 108638,
+ running_times: 5700,
+ },
+ {
+ title: "My Big Fat Greek Wedding 2",
+ year: 2016,
+ rating: 6,
+ votes: 22601,
+ running_times: 5640,
+ },
+ {
+ title: "My Bloody Valentine",
+ year: 1981,
+ rating: 6.2,
+ votes: 13928,
+ running_times: 5580,
+ },
+ {
+ title: "My Bloody Valentine",
+ year: 2009,
+ rating: 5.5,
+ votes: 48197,
+ running_times: 6060,
+ },
+ {
+ title: "My Blue Heaven",
+ year: 1990,
+ rating: 6.2,
+ votes: 16465,
+ running_times: 5820,
+ },
+ {
+ title: "My Blueberry Nights",
+ year: 2007,
+ rating: 6.7,
+ votes: 47098,
+ running_times: 5700,
+ },
+ {
+ title: "My Boss's Daughter",
+ year: 2003,
+ rating: 4.7,
+ votes: 25546,
+ running_times: 5400,
+ },
+ {
+ title: "My Cousin Vinny",
+ year: 1992,
+ rating: 7.5,
+ votes: 89632,
+ running_times: 7200,
+ },
+ {
+ title: "My Darling Clementine",
+ year: 1946,
+ rating: 7.8,
+ votes: 17919,
+ running_times: 6180,
+ },
+ {
+ title: "My Dinner with Andre",
+ year: 1981,
+ rating: 7.8,
+ votes: 13680,
+ running_times: 6600,
+ },
+ {
+ title: "My Dog Skip",
+ year: 2000,
+ rating: 7,
+ votes: 17536,
+ running_times: 5700,
+ },
+ {
+ title: "My Fair Lady",
+ year: 1964,
+ rating: 7.9,
+ votes: 73415,
+ running_times: 10200,
+ },
+ {
+ title: "My Favorite Martian",
+ year: 1999,
+ rating: 5,
+ votes: 11486,
+ running_times: 5640,
+ },
+ {
+ title: "My Fellow Americans",
+ year: 1996,
+ rating: 6.5,
+ votes: 12910,
+ running_times: 6060,
+ },
+ {
+ title: "My Girl",
+ year: 1991,
+ rating: 6.8,
+ votes: 61084,
+ running_times: 6120,
+ },
+ {
+ title: "My Girl 2",
+ year: 1994,
+ rating: 5.2,
+ votes: 16062,
+ running_times: 5940,
+ },
+ {
+ title: "My Left Foot: The Story of Christy Brown",
+ year: 1989,
+ rating: 7.9,
+ votes: 55465,
+ running_times: 6180,
+ },
+ {
+ title: "My Life Without Me",
+ year: 2003,
+ rating: 7.6,
+ votes: 22176,
+ running_times: 6420,
+ },
+ {
+ title: "My Life in Ruins",
+ year: 2009,
+ rating: 5.9,
+ votes: 16255,
+ running_times: 5880,
+ },
+ {
+ title: "My Little Eye",
+ year: 2002,
+ rating: 5.6,
+ votes: 10696,
+ running_times: 5700,
+ },
+ {
+ title: "My Man Godfrey",
+ year: 1936,
+ rating: 8.1,
+ votes: 16984,
+ running_times: 5640,
+ },
+ {
+ title: "My Name Is Bruce",
+ year: 2007,
+ rating: 6.3,
+ votes: 22187,
+ running_times: 5040,
+ },
+ {
+ title: "My Name Is Khan",
+ year: 2010,
+ rating: 8,
+ votes: 82373,
+ running_times: 9900,
+ },
+ {
+ title: "My Own Private Idaho",
+ year: 1991,
+ rating: 7.1,
+ votes: 40621,
+ running_times: 6240,
+ },
+ {
+ title: "My Sassy Girl",
+ year: 2008,
+ rating: 6.3,
+ votes: 18325,
+ running_times: 5520,
+ },
+ {
+ title: "My Sister's Keeper",
+ year: 2009,
+ rating: 7.4,
+ votes: 80671,
+ running_times: 6540,
+ },
+ {
+ title: "My Soul to Take",
+ year: 2010,
+ rating: 4.8,
+ votes: 17463,
+ running_times: 6420,
+ },
+ {
+ title: "My Stepmother Is an Alien",
+ year: 1988,
+ rating: 5.2,
+ votes: 22451,
+ running_times: 6300,
+ },
+ {
+ title: "My Summer of Love",
+ year: 2004,
+ rating: 6.8,
+ votes: 17370,
+ running_times: 5160,
+ },
+ {
+ title: "My Super Ex-Girlfriend",
+ year: 2006,
+ rating: 5.1,
+ votes: 56499,
+ running_times: 5760,
+ },
+ {
+ title: "My Week with Marilyn",
+ year: 2011,
+ rating: 7,
+ votes: 75892,
+ running_times: 5940,
+ },
+ {
+ title: "Mysterious Skin",
+ year: 2004,
+ rating: 7.7,
+ votes: 60112,
+ running_times: 6420,
+ },
+ {
+ title: "Mystery Men",
+ year: 1999,
+ rating: 6.1,
+ votes: 56460,
+ running_times: 7260,
+ },
+ {
+ title: "Mystery Science Theater 3000: The Movie",
+ year: 1996,
+ rating: 7.4,
+ votes: 16482,
+ running_times: 4380,
+ },
+ {
+ title: "Mystery Train",
+ year: 1989,
+ rating: 7.6,
+ votes: 20535,
+ running_times: 6600,
+ },
+ {
+ title: "Mystery, Alaska",
+ year: 1999,
+ rating: 6.7,
+ votes: 23221,
+ running_times: 7140,
+ },
+ {
+ title: "Mystic Pizza",
+ year: 1988,
+ rating: 6.2,
+ votes: 20318,
+ running_times: 6240,
+ },
+ {
+ title: "Mystic River",
+ year: 2003,
+ rating: 8,
+ votes: 365071,
+ running_times: 8280,
+ },
+ {
+ title: "Män som hatar kvinnor",
+ year: 2009,
+ rating: 7.8,
+ votes: 186700,
+ running_times: 11160,
+ },
+ {
+ title: "Nacho Libre",
+ year: 2006,
+ rating: 5.7,
+ votes: 70536,
+ running_times: 5520,
+ },
+ {
+ title: "Naked",
+ year: 1993,
+ rating: 7.9,
+ votes: 26891,
+ running_times: 7920,
+ },
+ {
+ title: "Naked Gun 33 1/3: The Final Insult",
+ year: 1994,
+ rating: 6.5,
+ votes: 83247,
+ running_times: 4980,
+ },
+ {
+ title: "Naked Lunch",
+ year: 1991,
+ rating: 7.1,
+ votes: 39652,
+ running_times: 6900,
+ },
+ {
+ title: "Nancy Drew",
+ year: 2007,
+ rating: 5.9,
+ votes: 17051,
+ running_times: 5940,
+ },
+ {
+ title: "Nanny McPhee",
+ year: 2005,
+ rating: 6.6,
+ votes: 55817,
+ running_times: 5880,
+ },
+ {
+ title: "Nanny McPhee and the Big Bang",
+ year: 2010,
+ rating: 6.1,
+ votes: 22057,
+ running_times: 6540,
+ },
+ {
+ title: "Napoleon Dynamite",
+ year: 2004,
+ rating: 6.9,
+ votes: 172599,
+ running_times: 5760,
+ },
+ { title: "Narc", year: 2002, rating: 7.2, votes: 35543, running_times: 6300 },
+ {
+ title: "Nashville",
+ year: 1975,
+ rating: 7.8,
+ votes: 19364,
+ running_times: 9600,
+ },
+ {
+ title: "National Lampoon's Christmas Vacation",
+ year: 1989,
+ rating: 7.6,
+ votes: 118874,
+ running_times: 5820,
+ },
+ {
+ title: "National Lampoon's European Vacation",
+ year: 1985,
+ rating: 6.1,
+ votes: 47396,
+ running_times: 5700,
+ },
+ {
+ title: "National Lampoon's Vacation",
+ year: 1983,
+ rating: 7.4,
+ votes: 78815,
+ running_times: 5880,
+ },
+ {
+ title: "National Security",
+ year: 2003,
+ rating: 5.6,
+ votes: 41680,
+ running_times: 5280,
+ },
+ {
+ title: "National Treasure",
+ year: 2004,
+ rating: 6.9,
+ votes: 270548,
+ running_times: 7860,
+ },
+ {
+ title: "National Treasure: Book of Secrets",
+ year: 2007,
+ rating: 6.5,
+ votes: 194576,
+ running_times: 7440,
+ },
+ {
+ title: "Natural Born Killers",
+ year: 1994,
+ rating: 7.3,
+ votes: 187627,
+ running_times: 7320,
+ },
+ {
+ title: "Navy Seals",
+ year: 1990,
+ rating: 5.5,
+ votes: 13865,
+ running_times: 6780,
+ },
+ {
+ title: "Nayakan",
+ year: 1987,
+ rating: 8.8,
+ votes: 10378,
+ running_times: 9360,
+ },
+ {
+ title: "Near Dark",
+ year: 1987,
+ rating: 7,
+ votes: 27846,
+ running_times: 5640,
+ },
+ {
+ title: "Nebraska",
+ year: 2013,
+ rating: 7.7,
+ votes: 98852,
+ running_times: 6900,
+ },
+ {
+ title: "Ned Kelly",
+ year: 2003,
+ rating: 6.5,
+ votes: 23002,
+ running_times: 6600,
+ },
+ {
+ title: "Need for Speed",
+ year: 2014,
+ rating: 6.5,
+ votes: 146918,
+ running_times: 7920,
+ },
+ {
+ title: "Needful Things",
+ year: 1993,
+ rating: 6.2,
+ votes: 18544,
+ running_times: 10980,
+ },
+ {
+ title: "Neerja",
+ year: 2016,
+ rating: 7.8,
+ votes: 15336,
+ running_times: 7320,
+ },
+ {
+ title: "Neighbors",
+ year: 2014,
+ rating: 6.3,
+ votes: 246015,
+ running_times: 5820,
+ },
+ {
+ title: "Neighbors 2: Sorority Rising",
+ year: 2016,
+ rating: 5.7,
+ votes: 85986,
+ running_times: 5520,
+ },
+ {
+ title: "Neko no ongaeshi",
+ year: 2002,
+ rating: 7.3,
+ votes: 35049,
+ running_times: 4500,
+ },
+ { title: "Nell", year: 1994, rating: 6.5, votes: 24192, running_times: 6720 },
+ {
+ title: "Nerve",
+ year: 2016,
+ rating: 6.6,
+ votes: 84651,
+ running_times: 5760,
+ },
+ {
+ title: "Network",
+ year: 1976,
+ rating: 8.1,
+ votes: 116290,
+ running_times: 7260,
+ },
+ {
+ title: "Never Back Down",
+ year: 2008,
+ rating: 6.6,
+ votes: 86232,
+ running_times: 6600,
+ },
+ {
+ title: "Never Been Kissed",
+ year: 1999,
+ rating: 6,
+ votes: 73008,
+ running_times: 6420,
+ },
+ {
+ title: "Never Let Me Go",
+ year: 2010,
+ rating: 7.2,
+ votes: 120871,
+ running_times: 6180,
+ },
+ {
+ title: "Never Say Never Again",
+ year: 1983,
+ rating: 6.2,
+ votes: 52439,
+ running_times: 8040,
+ },
+ {
+ title: "New Jack City",
+ year: 1991,
+ rating: 6.6,
+ votes: 26155,
+ running_times: 6060,
+ },
+ {
+ title: "New Nightmare",
+ year: 1994,
+ rating: 6.4,
+ votes: 42203,
+ running_times: 6720,
+ },
+ {
+ title: "New Year's Eve",
+ year: 2011,
+ rating: 5.7,
+ votes: 71453,
+ running_times: 6780,
+ },
+ {
+ title: "New York Minute",
+ year: 2004,
+ rating: 4.9,
+ votes: 18985,
+ running_times: 5460,
+ },
+ {
+ title: "New York Stories",
+ year: 1989,
+ rating: 6.4,
+ votes: 14779,
+ running_times: 7440,
+ },
+ {
+ title: "New York, I Love You",
+ year: 2008,
+ rating: 6.3,
+ votes: 41493,
+ running_times: 6180,
+ },
+ {
+ title: "New York, New York",
+ year: 1977,
+ rating: 6.7,
+ votes: 14965,
+ running_times: 9780,
+ },
+ {
+ title: "New in Town",
+ year: 2009,
+ rating: 5.6,
+ votes: 18943,
+ running_times: 5820,
+ },
+ {
+ title: "Newsies",
+ year: 1992,
+ rating: 7,
+ votes: 16512,
+ running_times: 7260,
+ },
+ {
+ title: "Next",
+ year: 2007,
+ rating: 6.2,
+ votes: 132917,
+ running_times: 5760,
+ },
+ {
+ title: "Next Friday",
+ year: 2000,
+ rating: 6.1,
+ votes: 30612,
+ running_times: 5880,
+ },
+ {
+ title: "Ngo si seoi",
+ year: 1998,
+ rating: 6.8,
+ votes: 30599,
+ running_times: 7200,
+ },
+ {
+ title: "Niagara",
+ year: 1953,
+ rating: 7.1,
+ votes: 12158,
+ running_times: 5520,
+ },
+ {
+ title: "Nicholas Nickleby",
+ year: 2002,
+ rating: 7.2,
+ votes: 10065,
+ running_times: 7920,
+ },
+ {
+ title: "Nick and Norah's Infinite Playlist",
+ year: 2008,
+ rating: 6.7,
+ votes: 79582,
+ running_times: 5400,
+ },
+ {
+ title: "Nick of Time",
+ year: 1995,
+ rating: 6.3,
+ votes: 34746,
+ running_times: 5400,
+ },
+ {
+ title: "Night Moves",
+ year: 2013,
+ rating: 6,
+ votes: 11460,
+ running_times: 6720,
+ },
+ {
+ title: "Night Shift",
+ year: 1982,
+ rating: 6.5,
+ votes: 11930,
+ running_times: 6360,
+ },
+ {
+ title: "Night Train to Lisbon",
+ year: 2013,
+ rating: 6.8,
+ votes: 14887,
+ running_times: 6660,
+ },
+ {
+ title: "Night at the Museum",
+ year: 2006,
+ rating: 6.4,
+ votes: 261448,
+ running_times: 6480,
+ },
+ {
+ title: "Night at the Museum: Battle of the Smithsonian",
+ year: 2009,
+ rating: 5.9,
+ votes: 145596,
+ running_times: 6300,
+ },
+ {
+ title: "Night at the Museum: Secret of the Tomb",
+ year: 2014,
+ rating: 6.2,
+ votes: 79834,
+ running_times: 5880,
+ },
+ {
+ title: "Night of the Comet",
+ year: 1984,
+ rating: 6.4,
+ votes: 14499,
+ running_times: 5700,
+ },
+ {
+ title: "Night of the Creeps",
+ year: 1986,
+ rating: 6.8,
+ votes: 16397,
+ running_times: 5280,
+ },
+ {
+ title: "Night of the Demons",
+ year: 1988,
+ rating: 6.3,
+ votes: 10119,
+ running_times: 5400,
+ },
+ {
+ title: "Night of the Living Dead",
+ year: 1968,
+ rating: 7.9,
+ votes: 96882,
+ running_times: 5760,
+ },
+ {
+ title: "Night of the Living Dead",
+ year: 1990,
+ rating: 6.9,
+ votes: 33568,
+ running_times: 5520,
+ },
+ {
+ title: "Night on Earth",
+ year: 1991,
+ rating: 7.8,
+ votes: 45481,
+ running_times: 7740,
+ },
+ {
+ title: "Nightbreed",
+ year: 1990,
+ rating: 6.6,
+ votes: 15960,
+ running_times: 8700,
+ },
+ {
+ title: "Nightcrawler",
+ year: 2014,
+ rating: 7.9,
+ votes: 354755,
+ running_times: 7080,
+ },
+ {
+ title: "Nighthawks",
+ year: 1981,
+ rating: 6.4,
+ votes: 13721,
+ running_times: 5940,
+ },
+ {
+ title: "Nights in Rodanthe",
+ year: 2008,
+ rating: 6,
+ votes: 19672,
+ running_times: 5820,
+ },
+ {
+ title: "Nightwatch",
+ year: 1997,
+ rating: 6.2,
+ votes: 17099,
+ running_times: 6060,
+ },
+ {
+ title: "Nikita",
+ year: 1990,
+ rating: 7.4,
+ votes: 59142,
+ running_times: 7020,
+ },
+ {
+ title: "Nim's Island",
+ year: 2008,
+ rating: 6,
+ votes: 29823,
+ running_times: 5760,
+ },
+ { title: "Nine", year: 2009, rating: 5.8, votes: 39270, running_times: 7080 },
+ {
+ title: "Nine 1/2 Weeks",
+ year: 1986,
+ rating: 5.9,
+ votes: 32143,
+ running_times: 7020,
+ },
+ {
+ title: "Nine Dead",
+ year: 2010,
+ rating: 5.5,
+ votes: 10493,
+ running_times: 5880,
+ },
+ {
+ title: "Nine Lives",
+ year: 2016,
+ rating: 5.3,
+ votes: 15077,
+ running_times: 5220,
+ },
+ {
+ title: "Nine Months",
+ year: 1995,
+ rating: 5.5,
+ votes: 31636,
+ running_times: 6180,
+ },
+ {
+ title: "Nine to Five",
+ year: 1980,
+ rating: 6.7,
+ votes: 22127,
+ running_times: 6540,
+ },
+ {
+ title: "Nineteen Eighty-Four",
+ year: 1984,
+ rating: 7.2,
+ votes: 54961,
+ running_times: 6780,
+ },
+ {
+ title: "Ninja",
+ year: 2009,
+ rating: 5.5,
+ votes: 10491,
+ running_times: 5160,
+ },
+ {
+ title: "Ninja Assassin",
+ year: 2009,
+ rating: 6.4,
+ votes: 61464,
+ running_times: 5940,
+ },
+ {
+ title: "Ninotchka",
+ year: 1939,
+ rating: 8,
+ votes: 15743,
+ running_times: 6600,
+ },
+ {
+ title: "Nirgendwo in Afrika",
+ year: 2001,
+ rating: 7.7,
+ votes: 11252,
+ running_times: 8460,
+ },
+ {
+ title: "Nixon",
+ year: 1995,
+ rating: 7.1,
+ votes: 25610,
+ running_times: 12720,
+ },
+ {
+ title: "No Country for Old Men",
+ year: 2007,
+ rating: 8.1,
+ votes: 689593,
+ running_times: 7320,
+ },
+ {
+ title: "No Escape",
+ year: 1994,
+ rating: 6.1,
+ votes: 16664,
+ running_times: 7080,
+ },
+ {
+ title: "No Escape",
+ year: 2015,
+ rating: 6.8,
+ votes: 62445,
+ running_times: 6180,
+ },
+ {
+ title: "No Good Deed",
+ year: 2014,
+ rating: 5.6,
+ votes: 14427,
+ running_times: 5040,
+ },
+ {
+ title: "No Man's Land",
+ year: 2001,
+ rating: 8,
+ votes: 39957,
+ running_times: 5880,
+ },
+ {
+ title: "No One Lives",
+ year: 2012,
+ rating: 6,
+ votes: 15163,
+ running_times: 5160,
+ },
+ {
+ title: "No Reservations",
+ year: 2007,
+ rating: 6.3,
+ votes: 62975,
+ running_times: 6240,
+ },
+ {
+ title: "No Retreat, No Surrender",
+ year: 1986,
+ rating: 5.6,
+ votes: 12983,
+ running_times: 5640,
+ },
+ {
+ title: "No Strings Attached",
+ year: 2011,
+ rating: 6.2,
+ votes: 183855,
+ running_times: 6480,
+ },
+ {
+ title: "No Way Out",
+ year: 1987,
+ rating: 7.1,
+ votes: 29075,
+ running_times: 6840,
+ },
+ {
+ title: "No se aceptan devoluciones",
+ year: 2013,
+ rating: 7.6,
+ votes: 24684,
+ running_times: 7320,
+ },
+ {
+ title: "Noah",
+ year: 2014,
+ rating: 5.8,
+ votes: 215683,
+ running_times: 8280,
+ },
+ {
+ title: "Nobody's Fool",
+ year: 1994,
+ rating: 7.4,
+ votes: 15887,
+ running_times: 6600,
+ },
+ {
+ title: "Nocturnal Animals",
+ year: 2016,
+ rating: 7.5,
+ votes: 162493,
+ running_times: 6960,
+ },
+ {
+ title: "Non-Stop",
+ year: 2014,
+ rating: 7,
+ votes: 218748,
+ running_times: 6360,
+ },
+ { title: "Norbit", year: 2007, rating: 4, votes: 57358, running_times: 6180 },
+ {
+ title: "North",
+ year: 1994,
+ rating: 4.4,
+ votes: 11933,
+ running_times: 5220,
+ },
+ {
+ title: "North Country",
+ year: 2005,
+ rating: 7.3,
+ votes: 34946,
+ running_times: 7560,
+ },
+ {
+ title: "North by Northwest",
+ year: 1959,
+ rating: 8.4,
+ votes: 243659,
+ running_times: 8160,
+ },
+ {
+ title: "Nosferatu: Phantom der Nacht",
+ year: 1979,
+ rating: 7.6,
+ votes: 26121,
+ running_times: 6420,
+ },
+ {
+ title: "Not Another Teen Movie",
+ year: 2001,
+ rating: 5.7,
+ votes: 85688,
+ running_times: 5940,
+ },
+ {
+ title: "Not Without My Daughter",
+ year: 1991,
+ rating: 6.2,
+ votes: 10448,
+ running_times: 6960,
+ },
+ {
+ title: "Notes on a Scandal",
+ year: 2006,
+ rating: 7.4,
+ votes: 67788,
+ running_times: 5520,
+ },
+ {
+ title: "Nothing But Trouble",
+ year: 1991,
+ rating: 4.9,
+ votes: 18965,
+ running_times: 5640,
+ },
+ {
+ title: "Nothing But the Truth",
+ year: 2008,
+ rating: 7.2,
+ votes: 32564,
+ running_times: 6480,
+ },
+ {
+ title: "Nothing Is Private",
+ year: 2007,
+ rating: 7,
+ votes: 10724,
+ running_times: 7440,
+ },
+ {
+ title: "Nothing to Lose",
+ year: 1997,
+ rating: 6.7,
+ votes: 38436,
+ running_times: 5880,
+ },
+ {
+ title: "Notorious",
+ year: 1946,
+ rating: 8,
+ votes: 79583,
+ running_times: 6060,
+ },
+ {
+ title: "Notorious",
+ year: 2009,
+ rating: 6.7,
+ votes: 35329,
+ running_times: 7680,
+ },
+ {
+ title: "Notting Hill",
+ year: 1999,
+ rating: 7.1,
+ votes: 223479,
+ running_times: 7440,
+ },
+ {
+ title: "Now Is Good",
+ year: 2012,
+ rating: 7.2,
+ votes: 29452,
+ running_times: 6180,
+ },
+ {
+ title: "Now You See Me",
+ year: 2013,
+ rating: 7.3,
+ votes: 511818,
+ running_times: 7500,
+ },
+ {
+ title: "Now You See Me 2",
+ year: 2016,
+ rating: 6.5,
+ votes: 178217,
+ running_times: 7740,
+ },
+ {
+ title: "Now and Then",
+ year: 1995,
+ rating: 6.8,
+ votes: 22910,
+ running_times: 6000,
+ },
+ {
+ title: "Now, Voyager",
+ year: 1942,
+ rating: 8,
+ votes: 12379,
+ running_times: 7020,
+ },
+ {
+ title: "Nowhere Boy",
+ year: 2009,
+ rating: 7.2,
+ votes: 30853,
+ running_times: 5880,
+ },
+ {
+ title: "Nowhere to Run",
+ year: 1993,
+ rating: 5.6,
+ votes: 18740,
+ running_times: 5640,
+ },
+ {
+ title: "Nurse Betty",
+ year: 2000,
+ rating: 6.2,
+ votes: 30959,
+ running_times: 6600,
+ },
+ {
+ title: "Nutty Professor II: The Klumps",
+ year: 2000,
+ rating: 4.3,
+ votes: 42268,
+ running_times: 6540,
+ },
+ {
+ title: "Nymphomaniac: Vol. I",
+ year: 2013,
+ rating: 7,
+ votes: 95493,
+ running_times: 8700,
+ },
+ {
+ title: "Nymphomaniac: Vol. II",
+ year: 2013,
+ rating: 6.7,
+ votes: 69731,
+ running_times: 10800,
+ },
+ { title: "O", year: 2001, rating: 6.2, votes: 17881, running_times: 5700 },
+ {
+ title: "O Brother, Where Art Thou?",
+ year: 2000,
+ rating: 7.8,
+ votes: 244698,
+ running_times: 6420,
+ },
+ {
+ title: "O.J.: Made in America",
+ year: 2016,
+ rating: 9,
+ votes: 12449,
+ running_times: 28020,
+ },
+ {
+ title: "OMG: Oh My God!",
+ year: 2012,
+ rating: 8.2,
+ votes: 37128,
+ running_times: 7500,
+ },
+ {
+ title: "OSS 117: Rio ne répond plus",
+ year: 2009,
+ rating: 6.9,
+ votes: 10637,
+ running_times: 6060,
+ },
+ {
+ title: "OXV: The Manual",
+ year: 2013,
+ rating: 6.8,
+ votes: 11970,
+ running_times: 6300,
+ },
+ {
+ title: "Oblivion",
+ year: 2013,
+ rating: 7,
+ votes: 423224,
+ running_times: 7440,
+ },
+ {
+ title: "Observe and Report",
+ year: 2009,
+ rating: 5.8,
+ votes: 54722,
+ running_times: 5160,
+ },
+ {
+ title: "Obsessed",
+ year: 2009,
+ rating: 4.9,
+ votes: 24823,
+ running_times: 6480,
+ },
+ {
+ title: "Obvious Child",
+ year: 2014,
+ rating: 6.8,
+ votes: 19332,
+ running_times: 5040,
+ },
+ {
+ title: "Ocean's Eleven",
+ year: 1960,
+ rating: 6.6,
+ votes: 16596,
+ running_times: 7620,
+ },
+ {
+ title: "Ocean's Eleven",
+ year: 2001,
+ rating: 7.8,
+ votes: 439145,
+ running_times: 6960,
+ },
+ {
+ title: "Ocean's Thirteen",
+ year: 2007,
+ rating: 6.9,
+ votes: 277326,
+ running_times: 7320,
+ },
+ {
+ title: "Ocean's Twelve",
+ year: 2004,
+ rating: 6.5,
+ votes: 308751,
+ running_times: 7500,
+ },
+ {
+ title: "October Sky",
+ year: 1999,
+ rating: 7.8,
+ votes: 70134,
+ running_times: 6480,
+ },
+ {
+ title: "Octopussy",
+ year: 1983,
+ rating: 6.6,
+ votes: 80552,
+ running_times: 7860,
+ },
+ {
+ title: "Oculus",
+ year: 2013,
+ rating: 6.5,
+ votes: 97266,
+ running_times: 6240,
+ },
+ {
+ title: "Odd Thomas",
+ year: 2013,
+ rating: 6.9,
+ votes: 40221,
+ running_times: 5820,
+ },
+ {
+ title: "Of Mice and Men",
+ year: 1992,
+ rating: 7.5,
+ votes: 34644,
+ running_times: 6900,
+ },
+ {
+ title: "Office Christmas Party",
+ year: 2016,
+ rating: 5.8,
+ votes: 42454,
+ running_times: 6660,
+ },
+ {
+ title: "Office Space",
+ year: 1999,
+ rating: 7.8,
+ votes: 214446,
+ running_times: 5340,
+ },
+ {
+ title: "Offret",
+ year: 1986,
+ rating: 8.1,
+ votes: 16928,
+ running_times: 8940,
+ },
+ {
+ title: "Oh Boy",
+ year: 2012,
+ rating: 7.4,
+ votes: 12277,
+ running_times: 5160,
+ },
+ { title: "Okja", year: 2017, rating: 7.4, votes: 49130, running_times: 7200 },
+ {
+ title: "Old Boy",
+ year: 2013,
+ rating: 5.8,
+ votes: 56956,
+ running_times: 6240,
+ },
+ {
+ title: "Old Dogs",
+ year: 2009,
+ rating: 5.4,
+ votes: 32907,
+ running_times: 5280,
+ },
+ {
+ title: "Old School",
+ year: 2003,
+ rating: 7.2,
+ votes: 195016,
+ running_times: 5280,
+ },
+ {
+ title: "Oliver & Company",
+ year: 1988,
+ rating: 6.7,
+ votes: 36062,
+ running_times: 4440,
+ },
+ {
+ title: "Oliver Twist",
+ year: 2005,
+ rating: 6.9,
+ votes: 27382,
+ running_times: 7800,
+ },
+ {
+ title: "Oliver!",
+ year: 1968,
+ rating: 7.5,
+ votes: 28194,
+ running_times: 9180,
+ },
+ {
+ title: "Olympus Has Fallen",
+ year: 2013,
+ rating: 6.5,
+ votes: 220967,
+ running_times: 7140,
+ },
+ {
+ title: "On Deadly Ground",
+ year: 1994,
+ rating: 4.4,
+ votes: 19370,
+ running_times: 6060,
+ },
+ {
+ title: "On Golden Pond",
+ year: 1981,
+ rating: 7.7,
+ votes: 23306,
+ running_times: 6540,
+ },
+ {
+ title: "On Her Majesty's Secret Service",
+ year: 1969,
+ rating: 6.8,
+ votes: 65821,
+ running_times: 8520,
+ },
+ {
+ title: "On the Beach",
+ year: 1959,
+ rating: 7.3,
+ votes: 10197,
+ running_times: 8040,
+ },
+ {
+ title: "On the Road",
+ year: 2012,
+ rating: 6.1,
+ votes: 35856,
+ running_times: 8220,
+ },
+ {
+ title: "On the Town",
+ year: 1949,
+ rating: 7.6,
+ votes: 13300,
+ running_times: 5880,
+ },
+ {
+ title: "On the Waterfront",
+ year: 1954,
+ rating: 8.2,
+ votes: 113409,
+ running_times: 6480,
+ },
+ { title: "Once", year: 2007, rating: 7.9, votes: 99752, running_times: 5160 },
+ {
+ title: "Once Bitten",
+ year: 1985,
+ rating: 5.5,
+ votes: 11056,
+ running_times: 5640,
+ },
+ {
+ title: "Once Upon a Time in America",
+ year: 1984,
+ rating: 8.4,
+ votes: 247434,
+ running_times: 16140,
+ },
+ {
+ title: "Once Upon a Time in Mexico",
+ year: 2003,
+ rating: 6.4,
+ votes: 138307,
+ running_times: 6120,
+ },
+ {
+ title: "Once Were Warriors",
+ year: 1994,
+ rating: 7.9,
+ votes: 27379,
+ running_times: 6120,
+ },
+ {
+ title: "Ondine",
+ year: 2009,
+ rating: 6.8,
+ votes: 18057,
+ running_times: 6660,
+ },
+ {
+ title: "One Crazy Summer",
+ year: 1986,
+ rating: 6.4,
+ votes: 11705,
+ running_times: 5580,
+ },
+ {
+ title: "One Day",
+ year: 2011,
+ rating: 7,
+ votes: 117869,
+ running_times: 6420,
+ },
+ {
+ title: "One Direction: This Is Us",
+ year: 2013,
+ rating: 4.1,
+ votes: 22601,
+ running_times: 6360,
+ },
+ {
+ title: "One Eight Seven",
+ year: 1997,
+ rating: 6.7,
+ votes: 19395,
+ running_times: 7140,
+ },
+ {
+ title: "One Fine Day",
+ year: 1996,
+ rating: 6.5,
+ votes: 38432,
+ running_times: 6480,
+ },
+ {
+ title: "One Flew Over the Cuckoo's Nest",
+ year: 1975,
+ rating: 8.7,
+ votes: 753853,
+ running_times: 7980,
+ },
+ {
+ title: "One Hour Photo",
+ year: 2002,
+ rating: 6.8,
+ votes: 103023,
+ running_times: 5760,
+ },
+ {
+ title: "One Hundred and One Dalmatians",
+ year: 1961,
+ rating: 7.2,
+ votes: 125012,
+ running_times: 4740,
+ },
+ {
+ title: "One Man Band",
+ year: 2005,
+ rating: 7.8,
+ votes: 12130,
+ running_times: 240,
+ },
+ {
+ title: "One Missed Call",
+ year: 2008,
+ rating: 4,
+ votes: 28125,
+ running_times: 5220,
+ },
+ {
+ title: "One Night at McCool's",
+ year: 2001,
+ rating: 6.1,
+ votes: 26629,
+ running_times: 5580,
+ },
+ {
+ title: "One True Thing",
+ year: 1998,
+ rating: 7,
+ votes: 10049,
+ running_times: 7620,
+ },
+ {
+ title: "One Week",
+ year: 2008,
+ rating: 7.1,
+ votes: 10363,
+ running_times: 5640,
+ },
+ {
+ title: "One for the Money",
+ year: 2012,
+ rating: 5.3,
+ votes: 36462,
+ running_times: 5460,
+ },
+ {
+ title: "One, Two, Three",
+ year: 1961,
+ rating: 8,
+ votes: 16319,
+ running_times: 6900,
+ },
+ {
+ title: "Ong-bak",
+ year: 2003,
+ rating: 7.2,
+ votes: 64314,
+ running_times: 6480,
+ },
+ {
+ title: "Only God Forgives",
+ year: 2013,
+ rating: 5.7,
+ votes: 93136,
+ running_times: 5400,
+ },
+ {
+ title: "Only Lovers Left Alive",
+ year: 2013,
+ rating: 7.3,
+ votes: 72348,
+ running_times: 7380,
+ },
+ {
+ title: "Only You",
+ year: 1994,
+ rating: 6.5,
+ votes: 16908,
+ running_times: 6900,
+ },
+ {
+ title: "Oorlogswinter",
+ year: 2008,
+ rating: 7,
+ votes: 10942,
+ running_times: 6180,
+ },
+ {
+ title: "Open Grave",
+ year: 2013,
+ rating: 6.3,
+ votes: 23858,
+ running_times: 6120,
+ },
+ {
+ title: "Open Range",
+ year: 2003,
+ rating: 7.5,
+ votes: 57963,
+ running_times: 8340,
+ },
+ {
+ title: "Open Season",
+ year: 2006,
+ rating: 6.2,
+ votes: 72098,
+ running_times: 5160,
+ },
+ {
+ title: "Open Water",
+ year: 2003,
+ rating: 5.7,
+ votes: 45441,
+ running_times: 4740,
+ },
+ {
+ title: "Open Water 2: Adrift",
+ year: 2006,
+ rating: 5.1,
+ votes: 14864,
+ running_times: 5700,
+ },
+ {
+ title: "Open Windows",
+ year: 2014,
+ rating: 5.2,
+ votes: 11765,
+ running_times: 6000,
+ },
+ {
+ title: "Opera",
+ year: 1987,
+ rating: 7.1,
+ votes: 10995,
+ running_times: 6420,
+ },
+ {
+ title: "Operation Petticoat",
+ year: 1959,
+ rating: 7.3,
+ votes: 10205,
+ running_times: 7440,
+ },
+ {
+ title: "Orange County",
+ year: 2002,
+ rating: 6.2,
+ votes: 43196,
+ running_times: 4920,
+ },
+ {
+ title: "Ordinary Decent Criminal",
+ year: 2000,
+ rating: 6.4,
+ votes: 12289,
+ running_times: 5580,
+ },
+ {
+ title: "Ordinary People",
+ year: 1980,
+ rating: 7.8,
+ votes: 38597,
+ running_times: 7440,
+ },
+ {
+ title: "Orgazmo",
+ year: 1997,
+ rating: 6.2,
+ votes: 31683,
+ running_times: 5640,
+ },
+ {
+ title: "Original Sin",
+ year: 2001,
+ rating: 6,
+ votes: 47818,
+ running_times: 7080,
+ },
+ {
+ title: "Orlando",
+ year: 1992,
+ rating: 7.2,
+ votes: 11064,
+ running_times: 5640,
+ },
+ {
+ title: "Orphan",
+ year: 2009,
+ rating: 7,
+ votes: 160192,
+ running_times: 7380,
+ },
+ {
+ title: "Oscar",
+ year: 1991,
+ rating: 6.4,
+ votes: 25381,
+ running_times: 6540,
+ },
+ {
+ title: "Oslo, 31. august",
+ year: 2011,
+ rating: 7.6,
+ votes: 15463,
+ running_times: 5700,
+ },
+ {
+ title: "Osmosis Jones",
+ year: 2001,
+ rating: 6.3,
+ votes: 27537,
+ running_times: 5700,
+ },
+ {
+ title: "Ouija",
+ year: 2014,
+ rating: 4.5,
+ votes: 39770,
+ running_times: 5340,
+ },
+ {
+ title: "Ouija: Origin of Evil",
+ year: 2016,
+ rating: 6.1,
+ votes: 37746,
+ running_times: 5940,
+ },
+ {
+ title: "Our Brand Is Crisis",
+ year: 2015,
+ rating: 6.1,
+ votes: 16624,
+ running_times: 6420,
+ },
+ {
+ title: "Our Idiot Brother",
+ year: 2011,
+ rating: 6.4,
+ votes: 78146,
+ running_times: 5400,
+ },
+ {
+ title: "Our Kind of Traitor",
+ year: 2016,
+ rating: 6.2,
+ votes: 14386,
+ running_times: 6480,
+ },
+ {
+ title: "Out Cold",
+ year: 2001,
+ rating: 6.3,
+ votes: 15223,
+ running_times: 5520,
+ },
+ {
+ title: "Out for Justice",
+ year: 1991,
+ rating: 6,
+ votes: 18349,
+ running_times: 5460,
+ },
+ {
+ title: "Out of Africa",
+ year: 1985,
+ rating: 7.2,
+ votes: 58200,
+ running_times: 9660,
+ },
+ {
+ title: "Out of Rosenheim",
+ year: 1987,
+ rating: 7.5,
+ votes: 10376,
+ running_times: 6480,
+ },
+ {
+ title: "Out of Sight",
+ year: 1998,
+ rating: 7,
+ votes: 75694,
+ running_times: 7380,
+ },
+ {
+ title: "Out of Time",
+ year: 2003,
+ rating: 6.5,
+ votes: 49592,
+ running_times: 6840,
+ },
+ {
+ title: "Out of the Furnace",
+ year: 2013,
+ rating: 6.8,
+ votes: 92039,
+ running_times: 6960,
+ },
+ {
+ title: "Out of the Past",
+ year: 1947,
+ rating: 8.1,
+ votes: 26203,
+ running_times: 5820,
+ },
+ {
+ title: "Outbreak",
+ year: 1995,
+ rating: 6.6,
+ votes: 96205,
+ running_times: 7620,
+ },
+ {
+ title: "Outcast",
+ year: 2014,
+ rating: 4.6,
+ votes: 10400,
+ running_times: 5940,
+ },
+ {
+ title: "Outland",
+ year: 1981,
+ rating: 6.6,
+ votes: 23324,
+ running_times: 6720,
+ },
+ {
+ title: "Outlander",
+ year: 2008,
+ rating: 6.3,
+ votes: 66588,
+ running_times: 6900,
+ },
+ {
+ title: "Outlaw",
+ year: 2007,
+ rating: 5.8,
+ votes: 11667,
+ running_times: 6180,
+ },
+ {
+ title: "Outpost",
+ year: 2008,
+ rating: 5.9,
+ votes: 14748,
+ running_times: 5400,
+ },
+ {
+ title: "Outsourced",
+ year: 2006,
+ rating: 7,
+ votes: 10317,
+ running_times: 6180,
+ },
+ {
+ title: "Over Her Dead Body",
+ year: 2008,
+ rating: 5.2,
+ votes: 22239,
+ running_times: 5700,
+ },
+ {
+ title: "Over the Hedge",
+ year: 2006,
+ rating: 6.7,
+ votes: 137721,
+ running_times: 4980,
+ },
+ {
+ title: "Over the Top",
+ year: 1987,
+ rating: 5.7,
+ votes: 41447,
+ running_times: 5580,
+ },
+ {
+ title: "Overboard",
+ year: 1987,
+ rating: 6.8,
+ votes: 41039,
+ running_times: 6720,
+ },
+ {
+ title: "Owning Mahowny",
+ year: 2003,
+ rating: 7.1,
+ votes: 11196,
+ running_times: 6240,
+ },
+ {
+ title: "Oz the Great and Powerful",
+ year: 2013,
+ rating: 6.3,
+ votes: 184733,
+ running_times: 7800,
+ },
+ {
+ title: "P.S. I Love You",
+ year: 2007,
+ rating: 7.1,
+ votes: 181630,
+ running_times: 7560,
+ },
+ { title: "P2", year: 2007, rating: 5.9, votes: 27730, running_times: 5880 },
+ { title: "PCU", year: 1994, rating: 6.6, votes: 11008, running_times: 4740 },
+ { title: "PK", year: 2014, rating: 8.2, votes: 114769, running_times: 9180 },
+ {
+ title: "Pacific Heights",
+ year: 1990,
+ rating: 6.4,
+ votes: 15273,
+ running_times: 6120,
+ },
+ {
+ title: "Pacific Rim",
+ year: 2013,
+ rating: 7,
+ votes: 411837,
+ running_times: 7860,
+ },
+ {
+ title: "Paddington",
+ year: 2014,
+ rating: 7.2,
+ votes: 59473,
+ running_times: 5700,
+ },
+ {
+ title: "Pain & Gain",
+ year: 2013,
+ rating: 6.4,
+ votes: 174254,
+ running_times: 7740,
+ },
+ {
+ title: "Paint Your Wagon",
+ year: 1969,
+ rating: 6.7,
+ votes: 10108,
+ running_times: 9480,
+ },
+ {
+ title: "Pale Rider",
+ year: 1985,
+ rating: 7.3,
+ votes: 43605,
+ running_times: 6900,
+ },
+ {
+ title: "Palindromes",
+ year: 2004,
+ rating: 6.8,
+ votes: 11200,
+ running_times: 6000,
+ },
+ {
+ title: "Palo Alto",
+ year: 2013,
+ rating: 6.3,
+ votes: 23349,
+ running_times: 6000,
+ },
+ { title: "Pan", year: 2015, rating: 5.8, votes: 50647, running_times: 6660 },
+ {
+ title: "Pandorum",
+ year: 2009,
+ rating: 6.8,
+ votes: 130076,
+ running_times: 6480,
+ },
+ {
+ title: "Panic Room",
+ year: 2002,
+ rating: 6.8,
+ votes: 222719,
+ running_times: 6780,
+ },
+ {
+ title: "Paparazzi",
+ year: 2004,
+ rating: 5.8,
+ votes: 13659,
+ running_times: 5040,
+ },
+ {
+ title: "Paper Man",
+ year: 2009,
+ rating: 6.6,
+ votes: 16527,
+ running_times: 6600,
+ },
+ {
+ title: "Paper Moon",
+ year: 1973,
+ rating: 8.2,
+ votes: 27816,
+ running_times: 6120,
+ },
+ {
+ title: "Paper Towns",
+ year: 2015,
+ rating: 6.3,
+ votes: 78166,
+ running_times: 6540,
+ },
+ {
+ title: "Paperman",
+ year: 2012,
+ rating: 8.3,
+ votes: 27834,
+ running_times: 420,
+ },
+ {
+ title: "Papillon",
+ year: 1973,
+ rating: 8,
+ votes: 103847,
+ running_times: 9060,
+ },
+ {
+ title: "Papurika",
+ year: 2006,
+ rating: 7.7,
+ votes: 52914,
+ running_times: 5400,
+ },
+ {
+ title: "ParaNorman",
+ year: 2012,
+ rating: 7,
+ votes: 80672,
+ running_times: 5520,
+ },
+ {
+ title: "Paradise Lost: The Child Murders at Robin Hood Hills",
+ year: 1996,
+ rating: 8.3,
+ votes: 12193,
+ running_times: 9000,
+ },
+ {
+ title: "Paradise Now",
+ year: 2005,
+ rating: 7.5,
+ votes: 20638,
+ running_times: 5400,
+ },
+ {
+ title: "Parallels",
+ year: 2015,
+ rating: 6.2,
+ votes: 11937,
+ running_times: 4980,
+ },
+ {
+ title: "Paranoia",
+ year: 2013,
+ rating: 5.7,
+ votes: 31219,
+ running_times: 6360,
+ },
+ {
+ title: "Paranoid Park",
+ year: 2007,
+ rating: 6.7,
+ votes: 26408,
+ running_times: 5100,
+ },
+ {
+ title: "Paranormal Activity",
+ year: 2007,
+ rating: 6.3,
+ votes: 197558,
+ running_times: 5820,
+ },
+ {
+ title: "Paranormal Activity 2",
+ year: 2010,
+ rating: 5.7,
+ votes: 88097,
+ running_times: 5880,
+ },
+ {
+ title: "Paranormal Activity 3",
+ year: 2011,
+ rating: 5.8,
+ votes: 81597,
+ running_times: 5640,
+ },
+ {
+ title: "Paranormal Activity 4",
+ year: 2012,
+ rating: 4.6,
+ votes: 54864,
+ running_times: 5760,
+ },
+ {
+ title: "Paranormal Activity: The Ghost Dimension",
+ year: 2015,
+ rating: 4.6,
+ votes: 19766,
+ running_times: 5820,
+ },
+ {
+ title: "Paranormal Activity: The Marked Ones",
+ year: 2014,
+ rating: 5,
+ votes: 34682,
+ running_times: 6060,
+ },
+ {
+ title: "Parental Guidance",
+ year: 2012,
+ rating: 6.1,
+ votes: 22572,
+ running_times: 6300,
+ },
+ {
+ title: "Parenthood",
+ year: 1989,
+ rating: 7,
+ votes: 38263,
+ running_times: 7440,
+ },
+ {
+ title: "Paris, Texas",
+ year: 1984,
+ rating: 8.1,
+ votes: 59559,
+ running_times: 8700,
+ },
+ {
+ title: "Paris, je t'aime",
+ year: 2006,
+ rating: 7.3,
+ votes: 65668,
+ running_times: 7200,
+ },
+ {
+ title: "Parker",
+ year: 2013,
+ rating: 6.2,
+ votes: 98698,
+ running_times: 7080,
+ },
+ {
+ title: "Parkland",
+ year: 2013,
+ rating: 6.4,
+ votes: 12999,
+ running_times: 5580,
+ },
+ {
+ title: "Party Monster",
+ year: 2003,
+ rating: 6.3,
+ votes: 13409,
+ running_times: 5880,
+ },
+ {
+ title: "Passenger 57",
+ year: 1992,
+ rating: 5.8,
+ votes: 39514,
+ running_times: 5040,
+ },
+ {
+ title: "Passengers",
+ year: 2008,
+ rating: 5.9,
+ votes: 30068,
+ running_times: 5580,
+ },
+ {
+ title: "Passengers",
+ year: 2016,
+ rating: 7,
+ votes: 252052,
+ running_times: 6960,
+ },
+ {
+ title: "Passion",
+ year: 2012,
+ rating: 5.3,
+ votes: 18568,
+ running_times: 6120,
+ },
+ {
+ title: "Pat Garrett & Billy the Kid",
+ year: 1973,
+ rating: 7.4,
+ votes: 14838,
+ running_times: 7320,
+ },
+ {
+ title: "Patch Adams",
+ year: 1998,
+ rating: 6.7,
+ votes: 87776,
+ running_times: 6900,
+ },
+ {
+ title: "Paterson",
+ year: 2016,
+ rating: 7.4,
+ votes: 40047,
+ running_times: 7080,
+ },
+ {
+ title: "Pathfinder",
+ year: 2007,
+ rating: 5.4,
+ votes: 39123,
+ running_times: 6420,
+ },
+ {
+ title: "Pathology",
+ year: 2008,
+ rating: 6,
+ votes: 28272,
+ running_times: 5700,
+ },
+ {
+ title: "Paths of Glory",
+ year: 1957,
+ rating: 8.4,
+ votes: 137012,
+ running_times: 5280,
+ },
+ {
+ title: "Patriot Games",
+ year: 1992,
+ rating: 6.9,
+ votes: 87400,
+ running_times: 7020,
+ },
+ {
+ title: "Patriots Day",
+ year: 2016,
+ rating: 7.4,
+ votes: 56247,
+ running_times: 7980,
+ },
+ {
+ title: "Patton",
+ year: 1970,
+ rating: 8,
+ votes: 82663,
+ running_times: 10320,
+ },
+ { title: "Paul", year: 2011, rating: 7, votes: 207118, running_times: 6540 },
+ {
+ title: "Paul Blart: Mall Cop",
+ year: 2009,
+ rating: 5.2,
+ votes: 90028,
+ running_times: 5460,
+ },
+ {
+ title: "Paul Blart: Mall Cop 2",
+ year: 2015,
+ rating: 4.4,
+ votes: 27660,
+ running_times: 5640,
+ },
+ {
+ title: "Paulie",
+ year: 1998,
+ rating: 6.5,
+ votes: 12631,
+ running_times: 5460,
+ },
+ {
+ title: "Paura nella città dei morti viventi",
+ year: 1980,
+ rating: 6.3,
+ votes: 12796,
+ running_times: 5580,
+ },
+ {
+ title: "Pawn Sacrifice",
+ year: 2014,
+ rating: 7,
+ votes: 30186,
+ running_times: 6900,
+ },
+ {
+ title: "Pay It Forward",
+ year: 2000,
+ rating: 7.2,
+ votes: 102406,
+ running_times: 7380,
+ },
+ {
+ title: "Pay the Ghost",
+ year: 2015,
+ rating: 5.2,
+ votes: 12141,
+ running_times: 5640,
+ },
+ {
+ title: "Payback",
+ year: 1999,
+ rating: 7.1,
+ votes: 118738,
+ running_times: 6000,
+ },
+ {
+ title: "Paycheck",
+ year: 2003,
+ rating: 6.3,
+ votes: 94288,
+ running_times: 7140,
+ },
+ {
+ title: "Peaceful Warrior",
+ year: 2006,
+ rating: 7.3,
+ votes: 22771,
+ running_times: 7200,
+ },
+ {
+ title: "Pearl Harbor",
+ year: 2001,
+ rating: 6.1,
+ votes: 275248,
+ running_times: 11040,
+ },
+ {
+ title: "Pecker",
+ year: 1998,
+ rating: 6.4,
+ votes: 12166,
+ running_times: 5220,
+ },
+ {
+ title: "Pee-wee's Big Adventure",
+ year: 1985,
+ rating: 7,
+ votes: 43899,
+ running_times: 5460,
+ },
+ {
+ title: "Peeping Tom",
+ year: 1960,
+ rating: 7.7,
+ votes: 24338,
+ running_times: 6060,
+ },
+ {
+ title: "Peggy Sue Got Married",
+ year: 1986,
+ rating: 6.3,
+ votes: 28771,
+ running_times: 6180,
+ },
+ {
+ title: "Pelé: Birth of a Legend",
+ year: 2016,
+ rating: 7.3,
+ votes: 10201,
+ running_times: 6420,
+ },
+ {
+ title: "Penelope",
+ year: 2006,
+ rating: 6.8,
+ votes: 54278,
+ running_times: 6240,
+ },
+ {
+ title: "Penguins of Madagascar",
+ year: 2014,
+ rating: 6.7,
+ votes: 67051,
+ running_times: 5520,
+ },
+ {
+ title: "People I Know",
+ year: 2002,
+ rating: 5.5,
+ votes: 10276,
+ running_times: 6000,
+ },
+ {
+ title: "People Like Us",
+ year: 2012,
+ rating: 7.1,
+ votes: 36939,
+ running_times: 6840,
+ },
+ {
+ title: "Percy Jackson & the Olympians: The Lightning Thief",
+ year: 2010,
+ rating: 5.9,
+ votes: 153720,
+ running_times: 7080,
+ },
+ {
+ title: "Percy Jackson: Sea of Monsters",
+ year: 2013,
+ rating: 5.9,
+ votes: 94873,
+ running_times: 6360,
+ },
+ {
+ title: "Perfect Sense",
+ year: 2011,
+ rating: 7.1,
+ votes: 47213,
+ running_times: 5520,
+ },
+ {
+ title: "Perfect Stranger",
+ year: 2007,
+ rating: 5.7,
+ votes: 39925,
+ running_times: 6540,
+ },
+ {
+ title: "Perfume: The Story of a Murderer",
+ year: 2006,
+ rating: 7.5,
+ votes: 205252,
+ running_times: 8820,
+ },
+ {
+ title: "Persepolis",
+ year: 2007,
+ rating: 8.1,
+ votes: 76676,
+ running_times: 5760,
+ },
+ {
+ title: "Persona",
+ year: 1966,
+ rating: 8.1,
+ votes: 72326,
+ running_times: 5100,
+ },
+ {
+ title: "Personal Shopper",
+ year: 2016,
+ rating: 6.2,
+ votes: 19478,
+ running_times: 6300,
+ },
+ { title: "Pet", year: 2016, rating: 5.7, votes: 11079, running_times: 5640 },
+ {
+ title: "Pet Sematary",
+ year: 1989,
+ rating: 6.6,
+ votes: 71858,
+ running_times: 6180,
+ },
+ {
+ title: "Pet Sematary II",
+ year: 1992,
+ rating: 4.8,
+ votes: 14806,
+ running_times: 6000,
+ },
+ {
+ title: "Pete's Dragon",
+ year: 1977,
+ rating: 6.4,
+ votes: 19167,
+ running_times: 7800,
+ },
+ {
+ title: "Pete's Dragon",
+ year: 2016,
+ rating: 6.7,
+ votes: 42488,
+ running_times: 6120,
+ },
+ {
+ title: "Peter Pan",
+ year: 1953,
+ rating: 7.3,
+ votes: 99989,
+ running_times: 4620,
+ },
+ {
+ title: "Peter Pan",
+ year: 2003,
+ rating: 6.9,
+ votes: 57870,
+ running_times: 6780,
+ },
+ {
+ title: "Phantasm",
+ year: 1979,
+ rating: 6.8,
+ votes: 25806,
+ running_times: 5280,
+ },
+ {
+ title: "Phantasm II",
+ year: 1988,
+ rating: 6.5,
+ votes: 10962,
+ running_times: 5820,
+ },
+ {
+ title: "Phantom",
+ year: 2013,
+ rating: 5.9,
+ votes: 12224,
+ running_times: 5880,
+ },
+ {
+ title: "Phantom of the Paradise",
+ year: 1974,
+ rating: 7.4,
+ votes: 12668,
+ running_times: 5520,
+ },
+ {
+ title: "Phantoms",
+ year: 1998,
+ rating: 5.4,
+ votes: 17351,
+ running_times: 5760,
+ },
+ {
+ title: "Phenomena",
+ year: 1985,
+ rating: 6.9,
+ votes: 18132,
+ running_times: 6960,
+ },
+ {
+ title: "Phenomenon",
+ year: 1996,
+ rating: 6.4,
+ votes: 67376,
+ running_times: 7380,
+ },
+ {
+ title: "Philadelphia",
+ year: 1993,
+ rating: 7.7,
+ votes: 193319,
+ running_times: 7500,
+ },
+ {
+ title: "Philomena",
+ year: 2013,
+ rating: 7.6,
+ votes: 83559,
+ running_times: 5880,
+ },
+ {
+ title: "Phoenix",
+ year: 2014,
+ rating: 7.3,
+ votes: 12924,
+ running_times: 5880,
+ },
+ {
+ title: "Phone Booth",
+ year: 2002,
+ rating: 7.1,
+ votes: 224082,
+ running_times: 4860,
+ },
+ { title: "Pi", year: 1998, rating: 7.5, votes: 153048, running_times: 5040 },
+ {
+ title: "Pickup on South Street",
+ year: 1953,
+ rating: 7.8,
+ votes: 10140,
+ running_times: 4800,
+ },
+ {
+ title: "Picnic at Hanging Rock",
+ year: 1975,
+ rating: 7.6,
+ votes: 27566,
+ running_times: 6900,
+ },
+ {
+ title: "Picture Perfect",
+ year: 1997,
+ rating: 5.5,
+ votes: 17051,
+ running_times: 6300,
+ },
+ {
+ title: "Pieces of April",
+ year: 2003,
+ rating: 7.1,
+ votes: 18663,
+ running_times: 4800,
+ },
+ {
+ title: "Pierrot le fou",
+ year: 1965,
+ rating: 7.7,
+ votes: 22303,
+ running_times: 6600,
+ },
+ {
+ title: "Pillow Talk",
+ year: 1959,
+ rating: 7.5,
+ votes: 12447,
+ running_times: 6120,
+ },
+ { title: "Pina", year: 2011, rating: 7.7, votes: 12632, running_times: 6180 },
+ {
+ title: "Pineapple Express",
+ year: 2008,
+ rating: 7,
+ votes: 275544,
+ running_times: 7020,
+ },
+ { title: "Pink", year: 2016, rating: 8.2, votes: 25888, running_times: 8160 },
+ {
+ title: "Pink Flamingos",
+ year: 1972,
+ rating: 6.1,
+ votes: 18394,
+ running_times: 6480,
+ },
+ {
+ title: "Pink Floyd: The Wall",
+ year: 1982,
+ rating: 8,
+ votes: 65194,
+ running_times: 5700,
+ },
+ {
+ title: "Pinocchio",
+ year: 1940,
+ rating: 7.5,
+ votes: 103226,
+ running_times: 5280,
+ },
+ { title: "Piper", year: 2016, rating: 8.4, votes: 18635, running_times: 360 },
+ {
+ title: "Piranha",
+ year: 1978,
+ rating: 5.9,
+ votes: 15470,
+ running_times: 6360,
+ },
+ {
+ title: "Piranha 3D",
+ year: 2010,
+ rating: 5.5,
+ votes: 77156,
+ running_times: 5280,
+ },
+ {
+ title: "Piranha 3DD",
+ year: 2012,
+ rating: 3.8,
+ votes: 34412,
+ running_times: 4980,
+ },
+ {
+ title: "Pirates of the Caribbean: At World's End",
+ year: 2007,
+ rating: 7.1,
+ votes: 519696,
+ running_times: 10140,
+ },
+ {
+ title: "Pirates of the Caribbean: Dead Man's Chest",
+ year: 2006,
+ rating: 7.3,
+ votes: 573617,
+ running_times: 9060,
+ },
+ {
+ title: "Pirates of the Caribbean: Dead Men Tell No Tales",
+ year: 2017,
+ rating: 6.7,
+ votes: 163797,
+ running_times: 7740,
+ },
+ {
+ title: "Pirates of the Caribbean: On Stranger Tides",
+ year: 2011,
+ rating: 6.6,
+ votes: 414326,
+ running_times: 8220,
+ },
+ {
+ title: "Pirates of the Caribbean: The Curse of the Black Pearl",
+ year: 2003,
+ rating: 8,
+ votes: 897059,
+ running_times: 8580,
+ },
+ {
+ title: "Pit and the Pendulum",
+ year: 1961,
+ rating: 7.1,
+ votes: 10125,
+ running_times: 4800,
+ },
+ {
+ title: "Pitch Black",
+ year: 2000,
+ rating: 7.1,
+ votes: 204768,
+ running_times: 6720,
+ },
+ {
+ title: "Pitch Perfect",
+ year: 2012,
+ rating: 7.2,
+ votes: 234523,
+ running_times: 6720,
+ },
+ {
+ title: "Pitch Perfect 2",
+ year: 2015,
+ rating: 6.4,
+ votes: 114324,
+ running_times: 6900,
+ },
+ {
+ title: "Pixels",
+ year: 2015,
+ rating: 5.6,
+ votes: 107829,
+ running_times: 6300,
+ },
+ {
+ title: "Plan 9 from Outer Space",
+ year: 1959,
+ rating: 4,
+ votes: 31677,
+ running_times: 4740,
+ },
+ {
+ title: "Planes",
+ year: 2013,
+ rating: 5.7,
+ votes: 37645,
+ running_times: 5460,
+ },
+ {
+ title: "Planes, Trains & Automobiles",
+ year: 1987,
+ rating: 7.6,
+ votes: 100740,
+ running_times: 5580,
+ },
+ {
+ title: "Planes: Fire & Rescue",
+ year: 2014,
+ rating: 6,
+ votes: 13931,
+ running_times: 4980,
+ },
+ {
+ title: "Planet 51",
+ year: 2009,
+ rating: 6.1,
+ votes: 44168,
+ running_times: 5460,
+ },
+ {
+ title: "Planet Terror",
+ year: 2007,
+ rating: 7.1,
+ votes: 178980,
+ running_times: 6300,
+ },
+ {
+ title: "Planet of the Apes",
+ year: 1968,
+ rating: 8,
+ votes: 147852,
+ running_times: 6900,
+ },
+ {
+ title: "Planet of the Apes",
+ year: 2001,
+ rating: 5.7,
+ votes: 192073,
+ running_times: 7140,
+ },
+ {
+ title: "Platoon",
+ year: 1986,
+ rating: 8.1,
+ votes: 321392,
+ running_times: 7200,
+ },
+ {
+ title: "Play It Again, Sam",
+ year: 1972,
+ rating: 7.7,
+ votes: 21490,
+ running_times: 5100,
+ },
+ {
+ title: "Play It to the Bone",
+ year: 1999,
+ rating: 5.4,
+ votes: 10608,
+ running_times: 7440,
+ },
+ {
+ title: "Play Misty for Me",
+ year: 1971,
+ rating: 7,
+ votes: 21050,
+ running_times: 6120,
+ },
+ {
+ title: "Playing It Cool",
+ year: 2014,
+ rating: 6,
+ votes: 19829,
+ running_times: 5640,
+ },
+ {
+ title: "Playing by Heart",
+ year: 1998,
+ rating: 7.2,
+ votes: 17228,
+ running_times: 7260,
+ },
+ {
+ title: "Playing for Keeps",
+ year: 2012,
+ rating: 5.7,
+ votes: 25958,
+ running_times: 6300,
+ },
+ {
+ title: "Playtime",
+ year: 1967,
+ rating: 8,
+ votes: 14743,
+ running_times: 9300,
+ },
+ {
+ title: "Pleasantville",
+ year: 1998,
+ rating: 7.5,
+ votes: 109185,
+ running_times: 7440,
+ },
+ {
+ title: "Please Give",
+ year: 2010,
+ rating: 6.6,
+ votes: 10282,
+ running_times: 5220,
+ },
+ {
+ title: "Pledge This!",
+ year: 2006,
+ rating: 1.9,
+ votes: 16019,
+ running_times: 5460,
+ },
+ {
+ title: "Plein soleil",
+ year: 1960,
+ rating: 7.8,
+ votes: 10567,
+ running_times: 7080,
+ },
+ {
+ title: "Pocahontas",
+ year: 1995,
+ rating: 6.7,
+ votes: 136066,
+ running_times: 5040,
+ },
+ {
+ title: "Point Blank",
+ year: 1967,
+ rating: 7.4,
+ votes: 15037,
+ running_times: 5520,
+ },
+ {
+ title: "Point Break",
+ year: 1991,
+ rating: 7.2,
+ votes: 125538,
+ running_times: 7320,
+ },
+ {
+ title: "Point Break",
+ year: 2015,
+ rating: 5.3,
+ votes: 47981,
+ running_times: 6840,
+ },
+ {
+ title: "Point of No Return",
+ year: 1993,
+ rating: 6,
+ votes: 21871,
+ running_times: 6540,
+ },
+ {
+ title: "Poison Ivy",
+ year: 1992,
+ rating: 5.4,
+ votes: 14868,
+ running_times: 5580,
+ },
+ {
+ title: "Police Academy",
+ year: 1984,
+ rating: 6.7,
+ votes: 96285,
+ running_times: 5760,
+ },
+ {
+ title: "Police Academy 2: Their First Assignment",
+ year: 1985,
+ rating: 5.7,
+ votes: 43178,
+ running_times: 5220,
+ },
+ {
+ title: "Police Academy 3: Back in Training",
+ year: 1986,
+ rating: 5.3,
+ votes: 35865,
+ running_times: 4980,
+ },
+ {
+ title: "Police Academy 4: Citizens on Patrol",
+ year: 1987,
+ rating: 4.8,
+ votes: 34317,
+ running_times: 5280,
+ },
+ {
+ title: "Police Academy 5: Assignment: Miami Beach",
+ year: 1988,
+ rating: 4.4,
+ votes: 27792,
+ running_times: 5400,
+ },
+ {
+ title: "Police Academy 6: City Under Siege",
+ year: 1989,
+ rating: 4.2,
+ votes: 23963,
+ running_times: 5040,
+ },
+ {
+ title: "Police Academy: Mission to Moscow",
+ year: 1994,
+ rating: 3.3,
+ votes: 26893,
+ running_times: 4980,
+ },
+ {
+ title: "Politiki kouzina",
+ year: 2003,
+ rating: 7.6,
+ votes: 11043,
+ running_times: 6480,
+ },
+ {
+ title: "Pollock",
+ year: 2000,
+ rating: 7,
+ votes: 24386,
+ running_times: 7920,
+ },
+ {
+ title: "Poltergeist",
+ year: 1982,
+ rating: 7.4,
+ votes: 118112,
+ running_times: 7200,
+ },
+ {
+ title: "Poltergeist",
+ year: 2015,
+ rating: 4.9,
+ votes: 48044,
+ running_times: 6060,
+ },
+ {
+ title: "Poltergeist II: The Other Side",
+ year: 1986,
+ rating: 5.7,
+ votes: 20967,
+ running_times: 7800,
+ },
+ {
+ title: "Poltergeist III",
+ year: 1988,
+ rating: 4.6,
+ votes: 14343,
+ running_times: 5880,
+ },
+ {
+ title: "Pompeii",
+ year: 2014,
+ rating: 5.5,
+ votes: 93779,
+ running_times: 6300,
+ },
+ {
+ title: "Pontypool",
+ year: 2008,
+ rating: 6.7,
+ votes: 24835,
+ running_times: 5700,
+ },
+ {
+ title: "Pootie Tang",
+ year: 2001,
+ rating: 5.2,
+ votes: 12089,
+ running_times: 4860,
+ },
+ {
+ title: "Popeye",
+ year: 1980,
+ rating: 5.2,
+ votes: 25242,
+ running_times: 6840,
+ },
+ {
+ title: "Popstar: Never Stop Never Stopping",
+ year: 2016,
+ rating: 6.7,
+ votes: 36918,
+ running_times: 5220,
+ },
+ {
+ title: "Porky's",
+ year: 1981,
+ rating: 6.2,
+ votes: 33257,
+ running_times: 5640,
+ },
+ {
+ title: "Poseidon",
+ year: 2006,
+ rating: 5.6,
+ votes: 87174,
+ running_times: 5880,
+ },
+ {
+ title: "Possession",
+ year: 1981,
+ rating: 7.4,
+ votes: 16899,
+ running_times: 7440,
+ },
+ {
+ title: "Possession",
+ year: 2002,
+ rating: 6.4,
+ votes: 12023,
+ running_times: 6120,
+ },
+ {
+ title: "Post Grad",
+ year: 2009,
+ rating: 5.3,
+ votes: 12427,
+ running_times: 5280,
+ },
+ {
+ title: "Postal",
+ year: 2007,
+ rating: 4.5,
+ votes: 20844,
+ running_times: 7620,
+ },
+ {
+ title: "Postcards from the Edge",
+ year: 1990,
+ rating: 6.7,
+ votes: 12982,
+ running_times: 6060,
+ },
+ {
+ title: "Powder",
+ year: 1995,
+ rating: 6.6,
+ votes: 25831,
+ running_times: 6660,
+ },
+ {
+ title: "Powder Blue",
+ year: 2009,
+ rating: 6.3,
+ votes: 12943,
+ running_times: 6900,
+ },
+ {
+ title: "Power Rangers",
+ year: 2017,
+ rating: 6.1,
+ votes: 72174,
+ running_times: 7440,
+ },
+ {
+ title: "Practical Magic",
+ year: 1998,
+ rating: 6.2,
+ votes: 61056,
+ running_times: 6240,
+ },
+ {
+ title: "Precious",
+ year: 2009,
+ rating: 7.3,
+ votes: 94382,
+ running_times: 6600,
+ },
+ {
+ title: "Predator",
+ year: 1987,
+ rating: 7.8,
+ votes: 316518,
+ running_times: 6420,
+ },
+ {
+ title: "Predator 2",
+ year: 1990,
+ rating: 6.2,
+ votes: 118584,
+ running_times: 6480,
+ },
+ {
+ title: "Predators",
+ year: 2010,
+ rating: 6.4,
+ votes: 184408,
+ running_times: 6420,
+ },
+ {
+ title: "Predestination",
+ year: 2014,
+ rating: 7.5,
+ votes: 201124,
+ running_times: 5820,
+ },
+ {
+ title: "Prem Ratan Dhan Payo",
+ year: 2015,
+ rating: 4.7,
+ votes: 13854,
+ running_times: 11040,
+ },
+ {
+ title: "Premium Rush",
+ year: 2012,
+ rating: 6.5,
+ votes: 100986,
+ running_times: 5460,
+ },
+ {
+ title: "Premonition",
+ year: 2007,
+ rating: 5.9,
+ votes: 65837,
+ running_times: 5760,
+ },
+ {
+ title: "Presto",
+ year: 2008,
+ rating: 8.4,
+ votes: 18991,
+ running_times: 300,
+ },
+ {
+ title: "Presumed Innocent",
+ year: 1990,
+ rating: 6.9,
+ votes: 31863,
+ running_times: 7620,
+ },
+ {
+ title: "Pretty Woman",
+ year: 1990,
+ rating: 7,
+ votes: 236465,
+ running_times: 7500,
+ },
+ {
+ title: "Pretty in Pink",
+ year: 1986,
+ rating: 6.8,
+ votes: 61371,
+ running_times: 5760,
+ },
+ {
+ title: "Pride & Prejudice",
+ year: 2005,
+ rating: 7.8,
+ votes: 211990,
+ running_times: 8100,
+ },
+ {
+ title: "Pride",
+ year: 2014,
+ rating: 7.8,
+ votes: 41996,
+ running_times: 7140,
+ },
+ {
+ title: "Pride and Glory",
+ year: 2008,
+ rating: 6.7,
+ votes: 55332,
+ running_times: 7800,
+ },
+ {
+ title: "Pride and Prejudice and Zombies",
+ year: 2016,
+ rating: 5.8,
+ votes: 38692,
+ running_times: 6480,
+ },
+ {
+ title: "Priest",
+ year: 2011,
+ rating: 5.7,
+ votes: 102900,
+ running_times: 5220,
+ },
+ {
+ title: "Primal Fear",
+ year: 1996,
+ rating: 7.7,
+ votes: 146913,
+ running_times: 7740,
+ },
+ {
+ title: "Primary Colors",
+ year: 1998,
+ rating: 6.7,
+ votes: 24922,
+ running_times: 8580,
+ },
+ {
+ title: "Prime",
+ year: 2005,
+ rating: 6.2,
+ votes: 36846,
+ running_times: 6300,
+ },
+ {
+ title: "Primer",
+ year: 2004,
+ rating: 6.9,
+ votes: 82678,
+ running_times: 4620,
+ },
+ {
+ title: "Primeval",
+ year: 2007,
+ rating: 4.7,
+ votes: 11690,
+ running_times: 5580,
+ },
+ {
+ title: "Prince Avalanche",
+ year: 2013,
+ rating: 6.4,
+ votes: 16895,
+ running_times: 5640,
+ },
+ {
+ title: "Prince of Darkness",
+ year: 1987,
+ rating: 6.7,
+ votes: 28609,
+ running_times: 6120,
+ },
+ {
+ title: "Prince of Persia: The Sands of Time",
+ year: 2010,
+ rating: 6.6,
+ votes: 239656,
+ running_times: 6960,
+ },
+ {
+ title: "Prisoners",
+ year: 2013,
+ rating: 8.1,
+ votes: 460550,
+ running_times: 9180,
+ },
+ {
+ title: "Private Benjamin",
+ year: 1980,
+ rating: 6.1,
+ votes: 19888,
+ running_times: 6540,
+ },
+ {
+ title: "Private Parts",
+ year: 1997,
+ rating: 6.8,
+ votes: 30894,
+ running_times: 6540,
+ },
+ {
+ title: "Prizzi's Honor",
+ year: 1985,
+ rating: 6.8,
+ votes: 19835,
+ running_times: 7800,
+ },
+ {
+ title: "Problem Child",
+ year: 1990,
+ rating: 5.3,
+ votes: 24246,
+ running_times: 5580,
+ },
+ {
+ title: "Problem Child 2",
+ year: 1991,
+ rating: 4.6,
+ votes: 18047,
+ running_times: 5580,
+ },
+ {
+ title: "Professione: reporter",
+ year: 1975,
+ rating: 7.6,
+ votes: 16673,
+ running_times: 7560,
+ },
+ {
+ title: "Project Almanac",
+ year: 2015,
+ rating: 6.4,
+ votes: 66044,
+ running_times: 6360,
+ },
+ {
+ title: "Project X",
+ year: 2012,
+ rating: 6.7,
+ votes: 168277,
+ running_times: 5580,
+ },
+ { title: "Prom", year: 2011, rating: 5.4, votes: 13556, running_times: 6240 },
+ {
+ title: "Prom Night",
+ year: 1980,
+ rating: 5.4,
+ votes: 11621,
+ running_times: 5520,
+ },
+ {
+ title: "Prom Night",
+ year: 2008,
+ rating: 3.9,
+ votes: 29693,
+ running_times: 5340,
+ },
+ {
+ title: "Prometheus",
+ year: 2012,
+ rating: 7,
+ votes: 508408,
+ running_times: 7440,
+ },
+ {
+ title: "Promised Land",
+ year: 2012,
+ rating: 6.6,
+ votes: 32498,
+ running_times: 6360,
+ },
+ {
+ title: "Proof",
+ year: 2005,
+ rating: 6.8,
+ votes: 38792,
+ running_times: 6000,
+ },
+ {
+ title: "Proof of Life",
+ year: 2000,
+ rating: 6.2,
+ votes: 51236,
+ running_times: 8100,
+ },
+ {
+ title: "Prozac Nation",
+ year: 2001,
+ rating: 6.3,
+ votes: 15523,
+ running_times: 5940,
+ },
+ {
+ title: "Prêt-à-Porter",
+ year: 1994,
+ rating: 5.1,
+ votes: 13074,
+ running_times: 7980,
+ },
+ {
+ title: "Psycho",
+ year: 1960,
+ rating: 8.5,
+ votes: 476643,
+ running_times: 6540,
+ },
+ {
+ title: "Psycho",
+ year: 1998,
+ rating: 4.6,
+ votes: 40252,
+ running_times: 6300,
+ },
+ {
+ title: "Psycho II",
+ year: 1983,
+ rating: 6.4,
+ votes: 18625,
+ running_times: 6780,
+ },
+ {
+ title: "Psycho III",
+ year: 1986,
+ rating: 5.3,
+ votes: 10195,
+ running_times: 5580,
+ },
+ {
+ title: "Public Enemies",
+ year: 2009,
+ rating: 7,
+ votes: 246492,
+ running_times: 8400,
+ },
+ {
+ title: "Pulp Fiction",
+ year: 1994,
+ rating: 8.9,
+ votes: 1477112,
+ running_times: 10680,
+ },
+ {
+ title: "Pulse",
+ year: 2006,
+ rating: 4.7,
+ votes: 26072,
+ running_times: 5400,
+ },
+ {
+ title: "Pump Up the Volume",
+ year: 1990,
+ rating: 7.2,
+ votes: 22894,
+ running_times: 6120,
+ },
+ {
+ title: "Pumping Iron",
+ year: 1977,
+ rating: 7.4,
+ votes: 18176,
+ running_times: 5100,
+ },
+ {
+ title: "Pumpkinhead",
+ year: 1988,
+ rating: 6.2,
+ votes: 16002,
+ running_times: 5160,
+ },
+ {
+ title: "Punch-Drunk Love",
+ year: 2002,
+ rating: 7.3,
+ votes: 120491,
+ running_times: 5700,
+ },
+ {
+ title: "Puncture",
+ year: 2011,
+ rating: 6.9,
+ votes: 20440,
+ running_times: 6000,
+ },
+ {
+ title: "Punisher: War Zone",
+ year: 2008,
+ rating: 6,
+ votes: 53355,
+ running_times: 6180,
+ },
+ {
+ title: "Purple Rain",
+ year: 1984,
+ rating: 6.5,
+ votes: 16275,
+ running_times: 6660,
+ },
+ { title: "Push", year: 2009, rating: 6.1, votes: 95978, running_times: 6660 },
+ {
+ title: "Pushing Tin",
+ year: 1999,
+ rating: 6,
+ votes: 25855,
+ running_times: 7440,
+ },
+ {
+ title: "Puss in Boots",
+ year: 2011,
+ rating: 6.7,
+ votes: 123808,
+ running_times: 5400,
+ },
+ {
+ title: "Quadrophenia",
+ year: 1979,
+ rating: 7.3,
+ votes: 14308,
+ running_times: 7200,
+ },
+ {
+ title: "Quantum of Solace",
+ year: 2008,
+ rating: 6.6,
+ votes: 356741,
+ running_times: 6360,
+ },
+ {
+ title: "Quarantine",
+ year: 2008,
+ rating: 6,
+ votes: 61636,
+ running_times: 5340,
+ },
+ {
+ title: "Quarantine 2: Terminal",
+ year: 2011,
+ rating: 5.2,
+ votes: 16236,
+ running_times: 5160,
+ },
+ {
+ title: "Quartet",
+ year: 2012,
+ rating: 6.8,
+ votes: 16936,
+ running_times: 5640,
+ },
+ {
+ title: "Queen",
+ year: 2013,
+ rating: 8.3,
+ votes: 49130,
+ running_times: 8760,
+ },
+ {
+ title: "Queen of the Damned",
+ year: 2002,
+ rating: 5.3,
+ votes: 46758,
+ running_times: 6240,
+ },
+ {
+ title: "Quest for Camelot",
+ year: 1998,
+ rating: 6.3,
+ votes: 12346,
+ running_times: 5160,
+ },
+ {
+ title: "Quick Change",
+ year: 1990,
+ rating: 6.8,
+ votes: 17040,
+ running_times: 5340,
+ },
+ {
+ title: "Quigley Down Under",
+ year: 1990,
+ rating: 6.8,
+ votes: 16366,
+ running_times: 7140,
+ },
+ {
+ title: "Quills",
+ year: 2000,
+ rating: 7.3,
+ votes: 47045,
+ running_times: 7440,
+ },
+ {
+ title: "Quiz Show",
+ year: 1994,
+ rating: 7.5,
+ votes: 57548,
+ running_times: 7980,
+ },
+ {
+ title: "Quo Vadis",
+ year: 1951,
+ rating: 7.2,
+ votes: 10998,
+ running_times: 10260,
+ },
+ {
+ title: "R.I.P.D.",
+ year: 2013,
+ rating: 5.6,
+ votes: 100458,
+ running_times: 5760,
+ },
+ { title: "RED", year: 2010, rating: 7.1, votes: 256610, running_times: 6660 },
+ {
+ title: "RED 2",
+ year: 2013,
+ rating: 6.7,
+ votes: 138032,
+ running_times: 6960,
+ },
+ { title: "RV", year: 2006, rating: 5.5, votes: 49630, running_times: 5940 },
+ {
+ title: "Ra.One",
+ year: 2011,
+ rating: 4.8,
+ votes: 33460,
+ running_times: 9360,
+ },
+ {
+ title: "Raajneeti",
+ year: 2010,
+ rating: 7.1,
+ votes: 13482,
+ running_times: 9780,
+ },
+ {
+ title: "Rabbit Hole",
+ year: 2010,
+ rating: 7,
+ votes: 43298,
+ running_times: 5460,
+ },
+ {
+ title: "Rabbit-Proof Fence",
+ year: 2002,
+ rating: 7.5,
+ votes: 24721,
+ running_times: 5640,
+ },
+ {
+ title: "Rabid",
+ year: 1977,
+ rating: 6.4,
+ votes: 11872,
+ running_times: 5460,
+ },
+ { title: "Race", year: 2016, rating: 7.1, votes: 26655, running_times: 8040 },
+ {
+ title: "Race to Witch Mountain",
+ year: 2009,
+ rating: 5.7,
+ votes: 47231,
+ running_times: 5880,
+ },
+ {
+ title: "Rachel Getting Married",
+ year: 2008,
+ rating: 6.7,
+ votes: 43171,
+ running_times: 6780,
+ },
+ {
+ title: "Racing Stripes",
+ year: 2005,
+ rating: 5.2,
+ votes: 13663,
+ running_times: 6120,
+ },
+ {
+ title: "Radio",
+ year: 2003,
+ rating: 6.9,
+ votes: 34113,
+ running_times: 6540,
+ },
+ {
+ title: "Radio Days",
+ year: 1987,
+ rating: 7.6,
+ votes: 26747,
+ running_times: 5280,
+ },
+ {
+ title: "Radio Flyer",
+ year: 1992,
+ rating: 6.9,
+ votes: 11027,
+ running_times: 6840,
+ },
+ {
+ title: "Raging Bull",
+ year: 1980,
+ rating: 8.2,
+ votes: 260123,
+ running_times: 7740,
+ },
+ {
+ title: "Raiders of the Lost Ark",
+ year: 1981,
+ rating: 8.5,
+ votes: 733003,
+ running_times: 6900,
+ },
+ {
+ title: "Rain Man",
+ year: 1988,
+ rating: 8,
+ votes: 412533,
+ running_times: 7980,
+ },
+ {
+ title: "Raise Your Voice",
+ year: 2004,
+ rating: 5.9,
+ votes: 24163,
+ running_times: 6180,
+ },
+ {
+ title: "Raising Arizona",
+ year: 1987,
+ rating: 7.4,
+ votes: 108635,
+ running_times: 5640,
+ },
+ {
+ title: "Raising Cain",
+ year: 1992,
+ rating: 6,
+ votes: 11138,
+ running_times: 5460,
+ },
+ {
+ title: "Raising Helen",
+ year: 2004,
+ rating: 6,
+ votes: 32625,
+ running_times: 7140,
+ },
+ { title: "Rambo", year: 2008, rating: 7, votes: 191441, running_times: 5940 },
+ {
+ title: "Rambo III",
+ year: 1988,
+ rating: 5.7,
+ votes: 100754,
+ running_times: 6120,
+ },
+ {
+ title: "Rambo: First Blood Part II",
+ year: 1985,
+ rating: 6.4,
+ votes: 127949,
+ running_times: 5760,
+ },
+ {
+ title: "Ramona and Beezus",
+ year: 2010,
+ rating: 6.6,
+ votes: 14941,
+ running_times: 6180,
+ },
+ {
+ title: "Rampage",
+ year: 2009,
+ rating: 6.3,
+ votes: 16303,
+ running_times: 5100,
+ },
+ {
+ title: "Rampart",
+ year: 2011,
+ rating: 5.8,
+ votes: 21024,
+ running_times: 6480,
+ },
+ {
+ title: "Random Hearts",
+ year: 1999,
+ rating: 5.1,
+ votes: 17900,
+ running_times: 7980,
+ },
+ {
+ title: "Rang De Basanti",
+ year: 2006,
+ rating: 8.3,
+ votes: 85999,
+ running_times: 9420,
+ },
+ {
+ title: "Rango",
+ year: 2011,
+ rating: 7.2,
+ votes: 200511,
+ running_times: 6420,
+ },
+ {
+ title: "Ransom",
+ year: 1996,
+ rating: 6.6,
+ votes: 105375,
+ running_times: 8340,
+ },
+ {
+ title: "Rare Exports",
+ year: 2010,
+ rating: 6.7,
+ votes: 21947,
+ running_times: 5040,
+ },
+ {
+ title: "Rat Race",
+ year: 2001,
+ rating: 6.4,
+ votes: 98259,
+ running_times: 6720,
+ },
+ {
+ title: "Ratatouille",
+ year: 2007,
+ rating: 8,
+ votes: 523106,
+ running_times: 6660,
+ },
+ {
+ title: "Ravenous",
+ year: 1999,
+ rating: 7,
+ votes: 32355,
+ running_times: 6060,
+ },
+ {
+ title: "Raw Deal",
+ year: 1986,
+ rating: 5.5,
+ votes: 25144,
+ running_times: 6360,
+ },
+ {
+ title: "Ray",
+ year: 2004,
+ rating: 7.7,
+ votes: 119531,
+ running_times: 10680,
+ },
+ {
+ title: "Re-Animator",
+ year: 1985,
+ rating: 7.2,
+ votes: 45022,
+ running_times: 6300,
+ },
+ {
+ title: "Ready",
+ year: 2011,
+ rating: 4.7,
+ votes: 12187,
+ running_times: 8700,
+ },
+ {
+ title: "Ready to Rumble",
+ year: 2000,
+ rating: 5.3,
+ votes: 12339,
+ running_times: 6420,
+ },
+ {
+ title: "Real Genius",
+ year: 1985,
+ rating: 7,
+ votes: 25660,
+ running_times: 6480,
+ },
+ {
+ title: "Real Steel",
+ year: 2011,
+ rating: 7.1,
+ votes: 270279,
+ running_times: 7620,
+ },
+ {
+ title: "Reality Bites",
+ year: 1994,
+ rating: 6.6,
+ votes: 39032,
+ running_times: 5940,
+ },
+ {
+ title: "Rear Window",
+ year: 1954,
+ rating: 8.5,
+ votes: 355438,
+ running_times: 6720,
+ },
+ {
+ title: "Reasonable Doubt",
+ year: 2014,
+ rating: 5.7,
+ votes: 16005,
+ running_times: 5460,
+ },
+ {
+ title: "Rebecca",
+ year: 1940,
+ rating: 8.2,
+ votes: 97897,
+ running_times: 7800,
+ },
+ {
+ title: "Rebel Without a Cause",
+ year: 1955,
+ rating: 7.8,
+ votes: 69975,
+ running_times: 6660,
+ },
+ {
+ title: "Rebound",
+ year: 2005,
+ rating: 5.1,
+ votes: 11179,
+ running_times: 5340,
+ },
+ {
+ title: "Red Corner",
+ year: 1997,
+ rating: 6.3,
+ votes: 14011,
+ running_times: 7320,
+ },
+ {
+ title: "Red Dawn",
+ year: 1984,
+ rating: 6.4,
+ votes: 44560,
+ running_times: 6840,
+ },
+ {
+ title: "Red Dawn",
+ year: 2012,
+ rating: 5.4,
+ votes: 65921,
+ running_times: 5580,
+ },
+ {
+ title: "Red Dog",
+ year: 2011,
+ rating: 7.5,
+ votes: 14257,
+ running_times: 5520,
+ },
+ {
+ title: "Red Dragon",
+ year: 2002,
+ rating: 7.2,
+ votes: 217740,
+ running_times: 7440,
+ },
+ {
+ title: "Red Eye",
+ year: 2005,
+ rating: 6.5,
+ votes: 99780,
+ running_times: 5100,
+ },
+ {
+ title: "Red Heat",
+ year: 1988,
+ rating: 6,
+ votes: 54349,
+ running_times: 6240,
+ },
+ {
+ title: "Red Lights",
+ year: 2012,
+ rating: 6.2,
+ votes: 52128,
+ running_times: 6840,
+ },
+ {
+ title: "Red Planet",
+ year: 2000,
+ rating: 5.7,
+ votes: 50272,
+ running_times: 6360,
+ },
+ {
+ title: "Red Riding Hood",
+ year: 2011,
+ rating: 5.4,
+ votes: 97160,
+ running_times: 6000,
+ },
+ {
+ title: "Red River",
+ year: 1948,
+ rating: 7.8,
+ votes: 23384,
+ running_times: 7980,
+ },
+ {
+ title: "Red Road",
+ year: 2006,
+ rating: 6.8,
+ votes: 10717,
+ running_times: 6780,
+ },
+ {
+ title: "Red Rock West",
+ year: 1993,
+ rating: 7,
+ votes: 17017,
+ running_times: 5880,
+ },
+ {
+ title: "Red Sonja",
+ year: 1985,
+ rating: 5,
+ votes: 33004,
+ running_times: 5340,
+ },
+ {
+ title: "Red State",
+ year: 2011,
+ rating: 6.2,
+ votes: 56761,
+ running_times: 5280,
+ },
+ {
+ title: "Red Tails",
+ year: 2012,
+ rating: 5.9,
+ votes: 30318,
+ running_times: 7500,
+ },
+ {
+ title: "Redbelt",
+ year: 2008,
+ rating: 6.8,
+ votes: 19251,
+ running_times: 5940,
+ },
+ {
+ title: "Redirected",
+ year: 2014,
+ rating: 6.7,
+ votes: 31764,
+ running_times: 5940,
+ },
+ {
+ title: "Reds",
+ year: 1981,
+ rating: 7.5,
+ votes: 17827,
+ running_times: 11700,
+ },
+ {
+ title: "Regarding Henry",
+ year: 1991,
+ rating: 6.7,
+ votes: 25315,
+ running_times: 6480,
+ },
+ {
+ title: "Regression",
+ year: 2015,
+ rating: 5.7,
+ votes: 28731,
+ running_times: 6360,
+ },
+ {
+ title: "Reign Over Me",
+ year: 2007,
+ rating: 7.5,
+ votes: 87332,
+ running_times: 7440,
+ },
+ {
+ title: "Reign of Fire",
+ year: 2002,
+ rating: 6.2,
+ votes: 114037,
+ running_times: 6060,
+ },
+ {
+ title: "Reindeer Games",
+ year: 2000,
+ rating: 5.7,
+ votes: 33382,
+ running_times: 7440,
+ },
+ {
+ title: "Religulous",
+ year: 2008,
+ rating: 7.7,
+ votes: 54600,
+ running_times: 6060,
+ },
+ {
+ title: "Remember",
+ year: 2015,
+ rating: 7.4,
+ votes: 14905,
+ running_times: 5640,
+ },
+ {
+ title: "Remember Me",
+ year: 2010,
+ rating: 7.2,
+ votes: 122498,
+ running_times: 6780,
+ },
+ {
+ title: "Remember the Titans",
+ year: 2000,
+ rating: 7.8,
+ votes: 173395,
+ running_times: 7200,
+ },
+ {
+ title: "Renaissance",
+ year: 2006,
+ rating: 6.7,
+ votes: 14769,
+ running_times: 6300,
+ },
+ {
+ title: "Renaissance Man",
+ year: 1994,
+ rating: 6.1,
+ votes: 14806,
+ running_times: 7680,
+ },
+ {
+ title: "Rendition",
+ year: 2007,
+ rating: 6.8,
+ votes: 49989,
+ running_times: 7320,
+ },
+ {
+ title: "Reno 911!: Miami",
+ year: 2007,
+ rating: 5.9,
+ votes: 24620,
+ running_times: 5040,
+ },
+ { title: "Rent", year: 2005, rating: 7, votes: 44039, running_times: 8280 },
+ {
+ title: "Replicant",
+ year: 2001,
+ rating: 5.4,
+ votes: 12077,
+ running_times: 6000,
+ },
+ {
+ title: "Repo Man",
+ year: 1984,
+ rating: 6.9,
+ votes: 28026,
+ running_times: 5520,
+ },
+ {
+ title: "Repo Men",
+ year: 2010,
+ rating: 6.3,
+ votes: 92099,
+ running_times: 7140,
+ },
+ {
+ title: "Repo! The Genetic Opera",
+ year: 2008,
+ rating: 6.7,
+ votes: 21463,
+ running_times: 9000,
+ },
+ {
+ title: "Repulsion",
+ year: 1965,
+ rating: 7.8,
+ votes: 39557,
+ running_times: 6300,
+ },
+ {
+ title: "Requiem for a Dream",
+ year: 2000,
+ rating: 8.3,
+ votes: 639501,
+ running_times: 6120,
+ },
+ {
+ title: "Rescue Dawn",
+ year: 2006,
+ rating: 7.3,
+ votes: 90216,
+ running_times: 7200,
+ },
+ {
+ title: "Reservation Road",
+ year: 2007,
+ rating: 6.7,
+ votes: 19843,
+ running_times: 6120,
+ },
+ {
+ title: "Reservoir Dogs",
+ year: 1992,
+ rating: 8.3,
+ votes: 745833,
+ running_times: 5940,
+ },
+ {
+ title: "Resident Evil",
+ year: 2002,
+ rating: 6.7,
+ votes: 218227,
+ running_times: 6000,
+ },
+ {
+ title: "Resident Evil: Afterlife",
+ year: 2010,
+ rating: 5.9,
+ votes: 144971,
+ running_times: 5760,
+ },
+ {
+ title: "Resident Evil: Apocalypse",
+ year: 2004,
+ rating: 6.2,
+ votes: 166319,
+ running_times: 5880,
+ },
+ {
+ title: "Resident Evil: Extinction",
+ year: 2007,
+ rating: 6.3,
+ votes: 164112,
+ running_times: 5640,
+ },
+ {
+ title: "Resident Evil: Retribution",
+ year: 2012,
+ rating: 5.4,
+ votes: 118015,
+ running_times: 5700,
+ },
+ {
+ title: "Resident Evil: The Final Chapter",
+ year: 2016,
+ rating: 5.6,
+ votes: 61809,
+ running_times: 6420,
+ },
+ {
+ title: "Restless",
+ year: 2011,
+ rating: 6.8,
+ votes: 15983,
+ running_times: 5460,
+ },
+ {
+ title: "Restrepo",
+ year: 2010,
+ rating: 7.6,
+ votes: 18615,
+ running_times: 5580,
+ },
+ {
+ title: "Resurrecting the Champ",
+ year: 2007,
+ rating: 6.7,
+ votes: 19090,
+ running_times: 6720,
+ },
+ {
+ title: "Return of the Living Dead III",
+ year: 1993,
+ rating: 5.9,
+ votes: 11289,
+ running_times: 5820,
+ },
+ {
+ title: "Return of the Living Dead: Part II",
+ year: 1988,
+ rating: 5.8,
+ votes: 15201,
+ running_times: 5340,
+ },
+ {
+ title: "Return to Me",
+ year: 2000,
+ rating: 6.9,
+ votes: 17309,
+ running_times: 6900,
+ },
+ {
+ title: "Return to Never Land",
+ year: 2002,
+ rating: 5.8,
+ votes: 14877,
+ running_times: 4320,
+ },
+ {
+ title: "Return to Oz",
+ year: 1985,
+ rating: 6.7,
+ votes: 20915,
+ running_times: 6780,
+ },
+ {
+ title: "Return to Paradise",
+ year: 1998,
+ rating: 6.9,
+ votes: 12207,
+ running_times: 6660,
+ },
+ {
+ title: "Return to the Blue Lagoon",
+ year: 1991,
+ rating: 5.1,
+ votes: 15423,
+ running_times: 6120,
+ },
+ {
+ title: "Revenge",
+ year: 1990,
+ rating: 6.2,
+ votes: 13676,
+ running_times: 7440,
+ },
+ {
+ title: "Revenge of the Nerds",
+ year: 1984,
+ rating: 6.6,
+ votes: 42777,
+ running_times: 5400,
+ },
+ {
+ title: "Revenge of the Nerds II: Nerds in Paradise",
+ year: 1987,
+ rating: 5,
+ votes: 11544,
+ running_times: 5280,
+ },
+ {
+ title: "Revenge of the Pink Panther",
+ year: 1978,
+ rating: 6.7,
+ votes: 17146,
+ running_times: 5940,
+ },
+ {
+ title: "Reversal of Fortune",
+ year: 1990,
+ rating: 7.3,
+ votes: 12249,
+ running_times: 6660,
+ },
+ {
+ title: "Revolutionary Road",
+ year: 2008,
+ rating: 7.3,
+ votes: 164174,
+ running_times: 7140,
+ },
+ {
+ title: "Revolver",
+ year: 2005,
+ rating: 6.5,
+ votes: 79694,
+ running_times: 6660,
+ },
+ {
+ title: "Richard III",
+ year: 1995,
+ rating: 7.5,
+ votes: 12308,
+ running_times: 6600,
+ },
+ {
+ title: "Ricki and the Flash",
+ year: 2015,
+ rating: 6,
+ votes: 18749,
+ running_times: 6060,
+ },
+ {
+ title: "Ricochet",
+ year: 1991,
+ rating: 6.1,
+ votes: 13653,
+ running_times: 6120,
+ },
+ {
+ title: "Riddick",
+ year: 2013,
+ rating: 6.4,
+ votes: 135943,
+ running_times: 7620,
+ },
+ {
+ title: "Ride Along",
+ year: 2014,
+ rating: 6.2,
+ votes: 86287,
+ running_times: 5940,
+ },
+ {
+ title: "Ride Along 2",
+ year: 2016,
+ rating: 5.9,
+ votes: 41634,
+ running_times: 6120,
+ },
+ {
+ title: "Ride the High Country",
+ year: 1962,
+ rating: 7.6,
+ votes: 10117,
+ running_times: 5640,
+ },
+ {
+ title: "Ride with the Devil",
+ year: 1999,
+ rating: 6.8,
+ votes: 11657,
+ running_times: 8880,
+ },
+ {
+ title: "Riding in Cars with Boys",
+ year: 2001,
+ rating: 6.5,
+ votes: 24075,
+ running_times: 7920,
+ },
+ {
+ title: "Rien à déclarer",
+ year: 2010,
+ rating: 6.3,
+ votes: 11017,
+ running_times: 6480,
+ },
+ {
+ title: "Right at Your Door",
+ year: 2006,
+ rating: 6.2,
+ votes: 11536,
+ running_times: 5760,
+ },
+ {
+ title: "Righteous Kill",
+ year: 2008,
+ rating: 6,
+ votes: 76972,
+ running_times: 6060,
+ },
+ {
+ title: "Rings",
+ year: 2017,
+ rating: 4.5,
+ votes: 27042,
+ running_times: 6120,
+ },
+ { title: "Rio", year: 2011, rating: 6.9, votes: 178784, running_times: 5760 },
+ {
+ title: "Rio 2",
+ year: 2014,
+ rating: 6.3,
+ votes: 65342,
+ running_times: 6060,
+ },
+ {
+ title: "Rio Bravo",
+ year: 1959,
+ rating: 8,
+ votes: 46875,
+ running_times: 8460,
+ },
+ {
+ title: "Rio Grande",
+ year: 1950,
+ rating: 7.2,
+ votes: 11457,
+ running_times: 6300,
+ },
+ {
+ title: "Ripley's Game",
+ year: 2002,
+ rating: 6.7,
+ votes: 15479,
+ running_times: 6720,
+ },
+ { title: "Rise", year: 2007, rating: 4.9, votes: 10667, running_times: 7320 },
+ {
+ title: "Rise of the Footsoldier",
+ year: 2007,
+ rating: 6.9,
+ votes: 17199,
+ running_times: 7140,
+ },
+ {
+ title: "Rise of the Guardians",
+ year: 2012,
+ rating: 7.3,
+ votes: 134813,
+ running_times: 5820,
+ },
+ {
+ title: "Rise of the Planet of the Apes",
+ year: 2011,
+ rating: 7.6,
+ votes: 445858,
+ running_times: 6300,
+ },
+ {
+ title: "Risen",
+ year: 2016,
+ rating: 6.3,
+ votes: 19540,
+ running_times: 6420,
+ },
+ {
+ title: "Rising Sun",
+ year: 1993,
+ rating: 6.2,
+ votes: 37411,
+ running_times: 7740,
+ },
+ {
+ title: "Risky Business",
+ year: 1983,
+ rating: 6.8,
+ votes: 67266,
+ running_times: 5940,
+ },
+ {
+ title: "Ritânâ",
+ year: 2002,
+ rating: 6.5,
+ votes: 10556,
+ running_times: 6960,
+ },
+ {
+ title: "River's Edge",
+ year: 1986,
+ rating: 7.1,
+ votes: 13038,
+ running_times: 5940,
+ },
+ {
+ title: "Ri¢hie Ri¢h",
+ year: 1994,
+ rating: 5.3,
+ votes: 54239,
+ running_times: 5700,
+ },
+ {
+ title: "Road House",
+ year: 1989,
+ rating: 6.5,
+ votes: 47980,
+ running_times: 6840,
+ },
+ {
+ title: "Road Trip",
+ year: 2000,
+ rating: 6.5,
+ votes: 141478,
+ running_times: 5640,
+ },
+ {
+ title: "Road to Perdition",
+ year: 2002,
+ rating: 7.7,
+ votes: 215795,
+ running_times: 7020,
+ },
+ {
+ title: "Rob Roy",
+ year: 1995,
+ rating: 6.9,
+ votes: 36497,
+ running_times: 8340,
+ },
+ {
+ title: "Robin Hood",
+ year: 1973,
+ rating: 7.6,
+ votes: 93873,
+ running_times: 4980,
+ },
+ {
+ title: "Robin Hood",
+ year: 2010,
+ rating: 6.7,
+ votes: 226558,
+ running_times: 9360,
+ },
+ {
+ title: "Robin Hood: Men in Tights",
+ year: 1993,
+ rating: 6.7,
+ votes: 99320,
+ running_times: 6240,
+ },
+ {
+ title: "Robin Hood: Prince of Thieves",
+ year: 1991,
+ rating: 6.9,
+ votes: 155703,
+ running_times: 9300,
+ },
+ {
+ title: "Robinson Crusoe",
+ year: 1997,
+ rating: 5.9,
+ votes: 10501,
+ running_times: 6300,
+ },
+ {
+ title: "RoboCop",
+ year: 1987,
+ rating: 7.5,
+ votes: 198737,
+ running_times: 6180,
+ },
+ {
+ title: "RoboCop",
+ year: 2014,
+ rating: 6.2,
+ votes: 195203,
+ running_times: 7020,
+ },
+ {
+ title: "RoboCop 2",
+ year: 1990,
+ rating: 5.8,
+ votes: 69631,
+ running_times: 7020,
+ },
+ {
+ title: "RoboCop 3",
+ year: 1993,
+ rating: 4,
+ votes: 38462,
+ running_times: 6240,
+ },
+ {
+ title: "Robot & Frank",
+ year: 2012,
+ rating: 7.1,
+ votes: 56154,
+ running_times: 5340,
+ },
+ {
+ title: "Robots",
+ year: 2005,
+ rating: 6.3,
+ votes: 112952,
+ running_times: 5460,
+ },
+ {
+ title: "Rock On!!",
+ year: 2008,
+ rating: 7.8,
+ votes: 17454,
+ running_times: 8700,
+ },
+ {
+ title: "Rock Star",
+ year: 2001,
+ rating: 6.2,
+ votes: 36621,
+ running_times: 6300,
+ },
+ {
+ title: "Rock of Ages",
+ year: 2012,
+ rating: 5.9,
+ votes: 65978,
+ running_times: 8160,
+ },
+ {
+ title: "Rocket Science",
+ year: 2007,
+ rating: 6.7,
+ votes: 12132,
+ running_times: 6060,
+ },
+ {
+ title: "RocknRolla",
+ year: 2008,
+ rating: 7.3,
+ votes: 209034,
+ running_times: 6840,
+ },
+ {
+ title: "Rocky",
+ year: 1976,
+ rating: 8.1,
+ votes: 424316,
+ running_times: 8700,
+ },
+ {
+ title: "Rocky Balboa",
+ year: 2006,
+ rating: 7.2,
+ votes: 176163,
+ running_times: 8340,
+ },
+ {
+ title: "Rocky II",
+ year: 1979,
+ rating: 7.2,
+ votes: 154543,
+ running_times: 8520,
+ },
+ {
+ title: "Rocky III",
+ year: 1982,
+ rating: 6.8,
+ votes: 139274,
+ running_times: 5940,
+ },
+ {
+ title: "Rocky IV",
+ year: 1985,
+ rating: 6.8,
+ votes: 150879,
+ running_times: 6420,
+ },
+ {
+ title: "Rocky V",
+ year: 1990,
+ rating: 5.2,
+ votes: 103747,
+ running_times: 8160,
+ },
+ {
+ title: "Roger & Me",
+ year: 1989,
+ rating: 7.5,
+ votes: 23911,
+ running_times: 5460,
+ },
+ {
+ title: "Roger Dodger",
+ year: 2002,
+ rating: 7,
+ votes: 15871,
+ running_times: 6360,
+ },
+ {
+ title: "Rogue",
+ year: 2007,
+ rating: 6.2,
+ votes: 23552,
+ running_times: 5940,
+ },
+ {
+ title: "Rogue One",
+ year: 2016,
+ rating: 7.8,
+ votes: 386122,
+ running_times: 7980,
+ },
+ {
+ title: "Role Models",
+ year: 2008,
+ rating: 6.9,
+ votes: 203170,
+ running_times: 6060,
+ },
+ {
+ title: "Rollerball",
+ year: 1975,
+ rating: 6.6,
+ votes: 18882,
+ running_times: 7500,
+ },
+ {
+ title: "Rollerball",
+ year: 2002,
+ rating: 3,
+ votes: 23117,
+ running_times: 5880,
+ },
+ {
+ title: "Roman Holiday",
+ year: 1953,
+ rating: 8.1,
+ votes: 110260,
+ running_times: 7080,
+ },
+ {
+ title: "Romance & Cigarettes",
+ year: 2005,
+ rating: 6.3,
+ votes: 10506,
+ running_times: 6300,
+ },
+ {
+ title: "Romancing the Stone",
+ year: 1984,
+ rating: 6.9,
+ votes: 69846,
+ running_times: 6360,
+ },
+ {
+ title: "Romeo + Juliet",
+ year: 1996,
+ rating: 6.8,
+ votes: 182222,
+ running_times: 7200,
+ },
+ {
+ title: "Romeo Is Bleeding",
+ year: 1993,
+ rating: 6.6,
+ votes: 11503,
+ running_times: 6600,
+ },
+ {
+ title: "Romeo Must Die",
+ year: 2000,
+ rating: 6.1,
+ votes: 60228,
+ running_times: 6900,
+ },
+ {
+ title: "Romeo and Juliet",
+ year: 1968,
+ rating: 7.6,
+ votes: 25418,
+ running_times: 8940,
+ },
+ {
+ title: "Romper Stomper",
+ year: 1992,
+ rating: 6.8,
+ votes: 33659,
+ running_times: 5640,
+ },
+ {
+ title: "Romy and Michele's High School Reunion",
+ year: 1997,
+ rating: 6.2,
+ votes: 36333,
+ running_times: 5520,
+ },
+ {
+ title: "Ronaldo",
+ year: 2015,
+ rating: 6.4,
+ votes: 12330,
+ running_times: 6120,
+ },
+ {
+ title: "Ronin",
+ year: 1998,
+ rating: 7.3,
+ votes: 153925,
+ running_times: 7320,
+ },
+ {
+ title: "Rookie of the Year",
+ year: 1993,
+ rating: 5.9,
+ votes: 19871,
+ running_times: 6180,
+ },
+ {
+ title: "Room",
+ year: 2015,
+ rating: 8.2,
+ votes: 251090,
+ running_times: 7080,
+ },
+ {
+ title: "Room 237",
+ year: 2012,
+ rating: 6.2,
+ votes: 18379,
+ running_times: 6120,
+ },
+ { title: "Rope", year: 1948, rating: 8, votes: 105677, running_times: 4800 },
+ {
+ title: "Rosemary's Baby",
+ year: 1968,
+ rating: 8,
+ votes: 155168,
+ running_times: 8220,
+ },
+ {
+ title: "Rosencrantz & Guildenstern Are Dead",
+ year: 1990,
+ rating: 7.6,
+ votes: 18279,
+ running_times: 7020,
+ },
+ {
+ title: "Rough Night",
+ year: 2017,
+ rating: 5.2,
+ votes: 24406,
+ running_times: 6060,
+ },
+ {
+ title: "Rounders",
+ year: 1998,
+ rating: 7.3,
+ votes: 128998,
+ running_times: 7260,
+ },
+ {
+ title: "Roxanne",
+ year: 1987,
+ rating: 6.6,
+ votes: 35090,
+ running_times: 6420,
+ },
+ {
+ title: "Ruang rak noi nid mahasan",
+ year: 2003,
+ rating: 7.6,
+ votes: 10116,
+ running_times: 6720,
+ },
+ {
+ title: "Rubber",
+ year: 2010,
+ rating: 5.8,
+ votes: 28779,
+ running_times: 4920,
+ },
+ {
+ title: "Ruby Sparks",
+ year: 2012,
+ rating: 7.2,
+ votes: 86036,
+ running_times: 6240,
+ },
+ {
+ title: "Rudderless",
+ year: 2014,
+ rating: 7.5,
+ votes: 15129,
+ running_times: 6300,
+ },
+ { title: "Rudy", year: 1993, rating: 7.5, votes: 46289, running_times: 6840 },
+ {
+ title: "Rules of Engagement",
+ year: 2000,
+ rating: 6.4,
+ votes: 39708,
+ running_times: 7680,
+ },
+ {
+ title: "Rumble Fish",
+ year: 1983,
+ rating: 7.2,
+ votes: 26538,
+ running_times: 5640,
+ },
+ {
+ title: "Rumor Has It...",
+ year: 2005,
+ rating: 5.5,
+ votes: 44506,
+ running_times: 5820,
+ },
+ {
+ title: "Run All Night",
+ year: 2015,
+ rating: 6.6,
+ votes: 86466,
+ running_times: 6840,
+ },
+ {
+ title: "Run Fatboy Run",
+ year: 2007,
+ rating: 6.6,
+ votes: 61200,
+ running_times: 6000,
+ },
+ {
+ title: "Runaway Bride",
+ year: 1999,
+ rating: 5.5,
+ votes: 80848,
+ running_times: 6960,
+ },
+ {
+ title: "Runaway Jury",
+ year: 2003,
+ rating: 7.1,
+ votes: 81319,
+ running_times: 7620,
+ },
+ {
+ title: "Runaway Train",
+ year: 1985,
+ rating: 7.3,
+ votes: 22568,
+ running_times: 6660,
+ },
+ {
+ title: "Runner Runner",
+ year: 2013,
+ rating: 5.6,
+ votes: 55723,
+ running_times: 5280,
+ },
+ {
+ title: "Running Scared",
+ year: 2006,
+ rating: 7.4,
+ votes: 91408,
+ running_times: 7320,
+ },
+ {
+ title: "Running on Empty",
+ year: 1988,
+ rating: 7.7,
+ votes: 11450,
+ running_times: 6960,
+ },
+ {
+ title: "Running with Scissors",
+ year: 2006,
+ rating: 6.2,
+ votes: 20716,
+ running_times: 7320,
+ },
+ {
+ title: "Rupan sansei: Kariosutoro no shiro",
+ year: 1979,
+ rating: 7.8,
+ votes: 18456,
+ running_times: 6120,
+ },
+ {
+ title: "Rush",
+ year: 2013,
+ rating: 8.1,
+ votes: 355535,
+ running_times: 7380,
+ },
+ {
+ title: "Rush Hour",
+ year: 1998,
+ rating: 6.9,
+ votes: 204134,
+ running_times: 5880,
+ },
+ {
+ title: "Rush Hour 2",
+ year: 2001,
+ rating: 6.6,
+ votes: 173251,
+ running_times: 5640,
+ },
+ {
+ title: "Rush Hour 3",
+ year: 2007,
+ rating: 6.2,
+ votes: 131488,
+ running_times: 5460,
+ },
+ {
+ title: "Rushmore",
+ year: 1998,
+ rating: 7.7,
+ votes: 146456,
+ running_times: 5580,
+ },
+ {
+ title: "Ruthless People",
+ year: 1986,
+ rating: 6.9,
+ votes: 22745,
+ running_times: 5580,
+ },
+ {
+ title: "S. Darko",
+ year: 2009,
+ rating: 3.6,
+ votes: 11844,
+ running_times: 6180,
+ },
+ {
+ title: "S.W.A.T.",
+ year: 2003,
+ rating: 6,
+ votes: 126105,
+ running_times: 7020,
+ },
+ {
+ title: "S1m0ne",
+ year: 2002,
+ rating: 6.1,
+ votes: 54325,
+ running_times: 7020,
+ },
+ {
+ title: "SLC Punk!",
+ year: 1998,
+ rating: 7.5,
+ votes: 23433,
+ running_times: 5880,
+ },
+ {
+ title: "Sabotage",
+ year: 1936,
+ rating: 7.1,
+ votes: 12150,
+ running_times: 5400,
+ },
+ {
+ title: "Sabotage",
+ year: 2014,
+ rating: 5.7,
+ votes: 51832,
+ running_times: 6540,
+ },
+ {
+ title: "Saboteur",
+ year: 1942,
+ rating: 7.2,
+ votes: 19326,
+ running_times: 6540,
+ },
+ {
+ title: "Sabrina",
+ year: 1954,
+ rating: 7.7,
+ votes: 48886,
+ running_times: 6780,
+ },
+ {
+ title: "Sabrina",
+ year: 1995,
+ rating: 6.3,
+ votes: 31724,
+ running_times: 7620,
+ },
+ { title: "Safe", year: 2012, rating: 6.5, votes: 90797, running_times: 5640 },
+ {
+ title: "Safe Haven",
+ year: 2013,
+ rating: 6.7,
+ votes: 88397,
+ running_times: 6900,
+ },
+ {
+ title: "Safe House",
+ year: 2012,
+ rating: 6.8,
+ votes: 179229,
+ running_times: 6900,
+ },
+ {
+ title: "Safety Last!",
+ year: 1923,
+ rating: 8.2,
+ votes: 14595,
+ running_times: 4200,
+ },
+ {
+ title: "Safety Not Guaranteed",
+ year: 2012,
+ rating: 7,
+ votes: 107260,
+ running_times: 5160,
+ },
+ { title: "Sahara", year: 2005, rating: 6, votes: 82179, running_times: 7440 },
+ {
+ title: "Saints and Soldiers",
+ year: 2003,
+ rating: 6.8,
+ votes: 18629,
+ running_times: 5400,
+ },
+ {
+ title: "Salinui chueok",
+ year: 2003,
+ rating: 8.1,
+ votes: 82435,
+ running_times: 7920,
+ },
+ {
+ title: "Salmon Fishing in the Yemen",
+ year: 2011,
+ rating: 6.8,
+ votes: 55360,
+ running_times: 6420,
+ },
+ {
+ title: "Salt",
+ year: 2010,
+ rating: 6.4,
+ votes: 262295,
+ running_times: 6240,
+ },
+ {
+ title: "Salvador",
+ year: 1986,
+ rating: 7.5,
+ votes: 16538,
+ running_times: 7320,
+ },
+ {
+ title: "Samba",
+ year: 2014,
+ rating: 6.7,
+ votes: 12045,
+ running_times: 7080,
+ },
+ {
+ title: "Samâ uôzu",
+ year: 2009,
+ rating: 7.6,
+ votes: 19763,
+ running_times: 6840,
+ },
+ {
+ title: "San Andreas",
+ year: 2015,
+ rating: 6.1,
+ votes: 169965,
+ running_times: 6840,
+ },
+ {
+ title: "San ging chaat goo si",
+ year: 2004,
+ rating: 7,
+ votes: 21048,
+ running_times: 7380,
+ },
+ {
+ title: "San wa",
+ year: 2005,
+ rating: 6.2,
+ votes: 12519,
+ running_times: 7320,
+ },
+ {
+ title: "Sanctum",
+ year: 2011,
+ rating: 5.9,
+ votes: 49371,
+ running_times: 6480,
+ },
+ {
+ title: "Sand Castle",
+ year: 2017,
+ rating: 6.3,
+ votes: 10093,
+ running_times: 6780,
+ },
+ {
+ title: "Santa sangre",
+ year: 1989,
+ rating: 7.7,
+ votes: 15409,
+ running_times: 7380,
+ },
+ {
+ title: "Sap ji sang ciu",
+ year: 2012,
+ rating: 6.2,
+ votes: 17720,
+ running_times: 7380,
+ },
+ {
+ title: "Saturday Night Fever",
+ year: 1977,
+ rating: 6.8,
+ votes: 59027,
+ running_times: 7080,
+ },
+ {
+ title: "Sausage Party",
+ year: 2016,
+ rating: 6.2,
+ votes: 137395,
+ running_times: 5340,
+ },
+ {
+ title: "Savages",
+ year: 2012,
+ rating: 6.5,
+ votes: 110068,
+ running_times: 8460,
+ },
+ {
+ title: "Save the Last Dance",
+ year: 2001,
+ rating: 6.2,
+ votes: 51141,
+ running_times: 6720,
+ },
+ {
+ title: "Saved!",
+ year: 2004,
+ rating: 6.8,
+ votes: 41753,
+ running_times: 5520,
+ },
+ {
+ title: "Saving Christmas",
+ year: 2014,
+ rating: 1.5,
+ votes: 13258,
+ running_times: 4740,
+ },
+ {
+ title: "Saving Grace",
+ year: 2000,
+ rating: 6.9,
+ votes: 16103,
+ running_times: 5580,
+ },
+ {
+ title: "Saving Mr. Banks",
+ year: 2013,
+ rating: 7.5,
+ votes: 129499,
+ running_times: 7500,
+ },
+ {
+ title: "Saving Private Ryan",
+ year: 1998,
+ rating: 8.6,
+ votes: 993815,
+ running_times: 10140,
+ },
+ {
+ title: "Saving Silverman",
+ year: 2001,
+ rating: 5.9,
+ votes: 34937,
+ running_times: 5760,
+ },
+ { title: "Saw", year: 2004, rating: 7.7, votes: 328740, running_times: 6180 },
+ {
+ title: "Saw 3D",
+ year: 2010,
+ rating: 5.6,
+ votes: 76230,
+ running_times: 5400,
+ },
+ {
+ title: "Saw II",
+ year: 2005,
+ rating: 6.6,
+ votes: 204490,
+ running_times: 5700,
+ },
+ {
+ title: "Saw III",
+ year: 2006,
+ rating: 6.2,
+ votes: 155338,
+ running_times: 7260,
+ },
+ {
+ title: "Saw IV",
+ year: 2007,
+ rating: 5.9,
+ votes: 121889,
+ running_times: 5760,
+ },
+ {
+ title: "Saw V",
+ year: 2008,
+ rating: 5.8,
+ votes: 98150,
+ running_times: 5700,
+ },
+ { title: "Saw VI", year: 2009, rating: 6, votes: 85460, running_times: 5520 },
+ {
+ title: "Say Anything...",
+ year: 1989,
+ rating: 7.4,
+ votes: 71475,
+ running_times: 6000,
+ },
+ {
+ title: "Say It Isn't So",
+ year: 2001,
+ rating: 4.9,
+ votes: 11798,
+ running_times: 5700,
+ },
+ {
+ title: "Scanners",
+ year: 1981,
+ rating: 6.8,
+ votes: 39342,
+ running_times: 6180,
+ },
+ {
+ title: "Scarecrow",
+ year: 1973,
+ rating: 7.3,
+ votes: 12680,
+ running_times: 6720,
+ },
+ {
+ title: "Scarface",
+ year: 1932,
+ rating: 7.8,
+ votes: 21323,
+ running_times: 5580,
+ },
+ {
+ title: "Scarface",
+ year: 1983,
+ rating: 8.3,
+ votes: 599692,
+ running_times: 10200,
+ },
+ {
+ title: "Scarlet Street",
+ year: 1945,
+ rating: 7.9,
+ votes: 11212,
+ running_times: 6120,
+ },
+ {
+ title: "Scary Movie",
+ year: 2000,
+ rating: 6.2,
+ votes: 201518,
+ running_times: 5280,
+ },
+ {
+ title: "Scary Movie 2",
+ year: 2001,
+ rating: 5.3,
+ votes: 129387,
+ running_times: 4980,
+ },
+ {
+ title: "Scary Movie 3",
+ year: 2003,
+ rating: 5.5,
+ votes: 120113,
+ running_times: 5040,
+ },
+ {
+ title: "Scary Movie 4",
+ year: 2006,
+ rating: 5.1,
+ votes: 100457,
+ running_times: 5340,
+ },
+ {
+ title: "Scary Movie 5",
+ year: 2013,
+ rating: 3.5,
+ votes: 54977,
+ running_times: 5280,
+ },
+ {
+ title: "Scent of a Woman",
+ year: 1992,
+ rating: 8,
+ votes: 212640,
+ running_times: 9360,
+ },
+ {
+ title: "Schindler's List",
+ year: 1993,
+ rating: 8.9,
+ votes: 971107,
+ running_times: 11700,
+ },
+ {
+ title: "School Ties",
+ year: 1992,
+ rating: 6.9,
+ votes: 19369,
+ running_times: 6360,
+ },
+ {
+ title: "School for Scoundrels",
+ year: 2006,
+ rating: 5.9,
+ votes: 27341,
+ running_times: 6480,
+ },
+ {
+ title: "Scooby-Doo",
+ year: 2002,
+ rating: 5,
+ votes: 78942,
+ running_times: 5340,
+ },
+ {
+ title: "Scooby-Doo 2: Monsters Unleashed",
+ year: 2004,
+ rating: 5,
+ votes: 37459,
+ running_times: 5580,
+ },
+ {
+ title: "Scoop",
+ year: 2006,
+ rating: 6.7,
+ votes: 72462,
+ running_times: 5760,
+ },
+ {
+ title: "Scott Pilgrim vs. the World",
+ year: 2010,
+ rating: 7.5,
+ votes: 306142,
+ running_times: 6720,
+ },
+ {
+ title: "Scouts Guide to the Zombie Apocalypse",
+ year: 2015,
+ rating: 6.3,
+ votes: 35038,
+ running_times: 5580,
+ },
+ {
+ title: "Scream",
+ year: 1996,
+ rating: 7.2,
+ votes: 242085,
+ running_times: 6660,
+ },
+ {
+ title: "Scream 2",
+ year: 1997,
+ rating: 6.1,
+ votes: 134734,
+ running_times: 7200,
+ },
+ {
+ title: "Scream 3",
+ year: 2000,
+ rating: 5.5,
+ votes: 106429,
+ running_times: 6960,
+ },
+ {
+ title: "Scream 4",
+ year: 2011,
+ rating: 6.2,
+ votes: 111421,
+ running_times: 6660,
+ },
+ {
+ title: "Screamers",
+ year: 1995,
+ rating: 6.4,
+ votes: 21789,
+ running_times: 6480,
+ },
+ {
+ title: "Scrooge",
+ year: 1951,
+ rating: 8.1,
+ votes: 16428,
+ running_times: 5160,
+ },
+ {
+ title: "Scrooged",
+ year: 1988,
+ rating: 7,
+ votes: 69474,
+ running_times: 6060,
+ },
+ {
+ title: "Se, jie",
+ year: 2007,
+ rating: 7.6,
+ votes: 32595,
+ running_times: 9420,
+ },
+ {
+ title: "Se7en",
+ year: 1995,
+ rating: 8.6,
+ votes: 1151698,
+ running_times: 7620,
+ },
+ {
+ title: "Sea of Love",
+ year: 1989,
+ rating: 6.8,
+ votes: 32423,
+ running_times: 6780,
+ },
+ {
+ title: "Seabiscuit",
+ year: 2003,
+ rating: 7.3,
+ votes: 60328,
+ running_times: 8400,
+ },
+ {
+ title: "Searching for Bobby Fischer",
+ year: 1993,
+ rating: 7.5,
+ votes: 25503,
+ running_times: 6540,
+ },
+ {
+ title: "Searching for Sugar Man",
+ year: 2012,
+ rating: 8.2,
+ votes: 54182,
+ running_times: 5160,
+ },
+ {
+ title: "Season of the Witch",
+ year: 2011,
+ rating: 5.4,
+ votes: 80961,
+ running_times: 5700,
+ },
+ {
+ title: "Secondhand Lions",
+ year: 2003,
+ rating: 7.6,
+ votes: 46061,
+ running_times: 7200,
+ },
+ {
+ title: "Seconds",
+ year: 1966,
+ rating: 7.7,
+ votes: 12635,
+ running_times: 6420,
+ },
+ {
+ title: "Secret Window",
+ year: 2004,
+ rating: 6.6,
+ votes: 159468,
+ running_times: 5760,
+ },
+ {
+ title: "Secret in Their Eyes",
+ year: 2015,
+ rating: 6.2,
+ votes: 30327,
+ running_times: 6660,
+ },
+ {
+ title: "Secretariat",
+ year: 2010,
+ rating: 7.2,
+ votes: 22480,
+ running_times: 7380,
+ },
+ {
+ title: "Secretary",
+ year: 2002,
+ rating: 7,
+ votes: 72711,
+ running_times: 6420,
+ },
+ {
+ title: "Secrets & Lies",
+ year: 1996,
+ rating: 8,
+ votes: 31211,
+ running_times: 8160,
+ },
+ {
+ title: "See No Evil",
+ year: 2006,
+ rating: 5.1,
+ votes: 23294,
+ running_times: 5040,
+ },
+ {
+ title: "See No Evil, Hear No Evil",
+ year: 1989,
+ rating: 6.8,
+ votes: 40633,
+ running_times: 6180,
+ },
+ {
+ title: "Seed of Chucky",
+ year: 2004,
+ rating: 4.9,
+ votes: 31943,
+ running_times: 5280,
+ },
+ {
+ title: "Seeking Justice",
+ year: 2011,
+ rating: 6.2,
+ votes: 41086,
+ running_times: 6300,
+ },
+ {
+ title: "Seeking a Friend for the End of the World",
+ year: 2012,
+ rating: 6.7,
+ votes: 95893,
+ running_times: 6060,
+ },
+ {
+ title: "Selena",
+ year: 1997,
+ rating: 6.7,
+ votes: 20825,
+ running_times: 7620,
+ },
+ {
+ title: "Self/less",
+ year: 2015,
+ rating: 6.5,
+ votes: 71967,
+ running_times: 7020,
+ },
+ {
+ title: "Selma",
+ year: 2014,
+ rating: 7.5,
+ votes: 70669,
+ running_times: 7680,
+ },
+ {
+ title: "Semi-Pro",
+ year: 2008,
+ rating: 5.8,
+ votes: 70857,
+ running_times: 5940,
+ },
+ {
+ title: "Sen to Chihiro no kamikakushi",
+ year: 2001,
+ rating: 8.6,
+ votes: 485508,
+ running_times: 7500,
+ },
+ {
+ title: "Senna",
+ year: 2010,
+ rating: 8.6,
+ votes: 50116,
+ running_times: 9720,
+ },
+ {
+ title: "Sennen joyû",
+ year: 2001,
+ rating: 7.9,
+ votes: 17251,
+ running_times: 5220,
+ },
+ {
+ title: "Sense and Sensibility",
+ year: 1995,
+ rating: 7.7,
+ votes: 85268,
+ running_times: 8160,
+ },
+ {
+ title: "Senseless",
+ year: 1998,
+ rating: 6,
+ votes: 11518,
+ running_times: 6480,
+ },
+ {
+ title: "Seraphim Falls",
+ year: 2006,
+ rating: 6.7,
+ votes: 26207,
+ running_times: 6900,
+ },
+ {
+ title: "Serena",
+ year: 2014,
+ rating: 5.4,
+ votes: 21113,
+ running_times: 6540,
+ },
+ {
+ title: "Serendipity",
+ year: 2001,
+ rating: 6.9,
+ votes: 92682,
+ running_times: 5400,
+ },
+ {
+ title: "Serenity",
+ year: 2005,
+ rating: 7.9,
+ votes: 256866,
+ running_times: 7140,
+ },
+ {
+ title: "Sergeant York",
+ year: 1941,
+ rating: 7.8,
+ votes: 13214,
+ running_times: 8040,
+ },
+ {
+ title: "Serial Mom",
+ year: 1994,
+ rating: 6.7,
+ votes: 22738,
+ running_times: 5700,
+ },
+ {
+ title: "Serpico",
+ year: 1973,
+ rating: 7.8,
+ votes: 88491,
+ running_times: 7800,
+ },
+ {
+ title: "Serving Sara",
+ year: 2002,
+ rating: 5.3,
+ votes: 15137,
+ running_times: 6120,
+ },
+ {
+ title: "Session 9",
+ year: 2001,
+ rating: 6.5,
+ votes: 47139,
+ running_times: 6120,
+ },
+ {
+ title: "Set It Off",
+ year: 1996,
+ rating: 6.8,
+ votes: 11365,
+ running_times: 7380,
+ },
+ {
+ title: "Setup",
+ year: 2011,
+ rating: 4.4,
+ votes: 18941,
+ running_times: 5100,
+ },
+ {
+ title: "Seven Brides for Seven Brothers",
+ year: 1954,
+ rating: 7.4,
+ votes: 17609,
+ running_times: 6120,
+ },
+ {
+ title: "Seven Days in May",
+ year: 1964,
+ rating: 7.9,
+ votes: 10362,
+ running_times: 7080,
+ },
+ {
+ title: "Seven Pounds",
+ year: 2008,
+ rating: 7.7,
+ votes: 252535,
+ running_times: 7380,
+ },
+ {
+ title: "Seven Psychopaths",
+ year: 2012,
+ rating: 7.2,
+ votes: 203387,
+ running_times: 6600,
+ },
+ {
+ title: "Seven Sisters",
+ year: 2017,
+ rating: 6.9,
+ votes: 37842,
+ running_times: 7380,
+ },
+ {
+ title: "Seven Years in Tibet",
+ year: 1997,
+ rating: 7,
+ votes: 104958,
+ running_times: 8160,
+ },
+ {
+ title: "Seventh Son",
+ year: 2014,
+ rating: 5.5,
+ votes: 62169,
+ running_times: 6120,
+ },
+ {
+ title: "Severance",
+ year: 2006,
+ rating: 6.5,
+ votes: 33423,
+ running_times: 5760,
+ },
+ {
+ title: "Sex Drive",
+ year: 2008,
+ rating: 6.5,
+ votes: 76427,
+ running_times: 7740,
+ },
+ {
+ title: "Sex Tape",
+ year: 2014,
+ rating: 5.1,
+ votes: 93123,
+ running_times: 5640,
+ },
+ {
+ title: "Sex and the City",
+ year: 2008,
+ rating: 5.6,
+ votes: 104825,
+ running_times: 9060,
+ },
+ {
+ title: "Sex and the City 2",
+ year: 2010,
+ rating: 4.4,
+ votes: 64341,
+ running_times: 8760,
+ },
+ {
+ title: "Sex, Lies, and Videotape",
+ year: 1989,
+ rating: 7.2,
+ votes: 41140,
+ running_times: 6000,
+ },
+ {
+ title: "Sexy Beast",
+ year: 2000,
+ rating: 7.3,
+ votes: 46733,
+ running_times: 5340,
+ },
+ {
+ title: "Sgt. Bilko",
+ year: 1996,
+ rating: 5.7,
+ votes: 18882,
+ running_times: 5580,
+ },
+ {
+ title: "Shade",
+ year: 2003,
+ rating: 6.4,
+ votes: 11191,
+ running_times: 6060,
+ },
+ {
+ title: "Shadow Dancer",
+ year: 2012,
+ rating: 6.2,
+ votes: 10788,
+ running_times: 6060,
+ },
+ {
+ title: "Shadow of a Doubt",
+ year: 1943,
+ rating: 8,
+ votes: 49533,
+ running_times: 6480,
+ },
+ {
+ title: "Shadow of the Vampire",
+ year: 2000,
+ rating: 6.9,
+ votes: 35903,
+ running_times: 5520,
+ },
+ {
+ title: "Shadowlands",
+ year: 1993,
+ rating: 7.4,
+ votes: 14386,
+ running_times: 7860,
+ },
+ {
+ title: "Shadows and Fog",
+ year: 1991,
+ rating: 6.8,
+ votes: 14152,
+ running_times: 5100,
+ },
+ {
+ title: "Shaft",
+ year: 1971,
+ rating: 6.6,
+ votes: 13222,
+ running_times: 6000,
+ },
+ {
+ title: "Shaft",
+ year: 2000,
+ rating: 5.9,
+ votes: 62032,
+ running_times: 5940,
+ },
+ {
+ title: "Shakespeare in Love",
+ year: 1998,
+ rating: 7.2,
+ votes: 188788,
+ running_times: 7380,
+ },
+ {
+ title: "Shall We Dance",
+ year: 2004,
+ rating: 6.1,
+ votes: 38211,
+ running_times: 6360,
+ },
+ {
+ title: "Shallow Grave",
+ year: 1994,
+ rating: 7.3,
+ votes: 49609,
+ running_times: 5340,
+ },
+ {
+ title: "Shallow Hal",
+ year: 2001,
+ rating: 5.9,
+ votes: 115543,
+ running_times: 6840,
+ },
+ {
+ title: "Shame",
+ year: 2011,
+ rating: 7.2,
+ votes: 160333,
+ running_times: 6060,
+ },
+ {
+ title: "Shane",
+ year: 1953,
+ rating: 7.7,
+ votes: 30834,
+ running_times: 7080,
+ },
+ {
+ title: "Shanghai Knights",
+ year: 2003,
+ rating: 6.2,
+ votes: 88141,
+ running_times: 6840,
+ },
+ {
+ title: "Shanghai Noon",
+ year: 2000,
+ rating: 6.6,
+ votes: 104603,
+ running_times: 6600,
+ },
+ {
+ title: "Shark Night 3D",
+ year: 2011,
+ rating: 4,
+ votes: 22050,
+ running_times: 5400,
+ },
+ {
+ title: "Shark Tale",
+ year: 2004,
+ rating: 6,
+ votes: 143701,
+ running_times: 5400,
+ },
+ {
+ title: "Shattered Glass",
+ year: 2003,
+ rating: 7.2,
+ votes: 30336,
+ running_times: 5940,
+ },
+ {
+ title: "Shaun of the Dead",
+ year: 2004,
+ rating: 8,
+ votes: 433429,
+ running_times: 5940,
+ },
+ {
+ title: "She Wore a Yellow Ribbon",
+ year: 1949,
+ rating: 7.4,
+ votes: 13029,
+ running_times: 6180,
+ },
+ {
+ title: "She's All That",
+ year: 1999,
+ rating: 5.8,
+ votes: 72798,
+ running_times: 5700,
+ },
+ {
+ title: "She's Funny That Way",
+ year: 2014,
+ rating: 6.1,
+ votes: 20084,
+ running_times: 5580,
+ },
+ {
+ title: "She's Out of My League",
+ year: 2010,
+ rating: 6.4,
+ votes: 108427,
+ running_times: 6240,
+ },
+ {
+ title: "She's the Man",
+ year: 2006,
+ rating: 6.4,
+ votes: 127102,
+ running_times: 6300,
+ },
+ {
+ title: "She's the One",
+ year: 1996,
+ rating: 6,
+ votes: 14808,
+ running_times: 5760,
+ },
+ {
+ title: "She-Devil",
+ year: 1989,
+ rating: 5.5,
+ votes: 13645,
+ running_times: 5940,
+ },
+ {
+ title: "Shelter",
+ year: 2007,
+ rating: 7.8,
+ votes: 17698,
+ running_times: 5820,
+ },
+ {
+ title: "Sherlock Holmes",
+ year: 2009,
+ rating: 7.6,
+ votes: 516835,
+ running_times: 7680,
+ },
+ {
+ title: "Sherlock Holmes: A Game of Shadows",
+ year: 2011,
+ rating: 7.5,
+ votes: 368922,
+ running_times: 7740,
+ },
+ {
+ title: "Sherlock Jr.",
+ year: 1924,
+ rating: 8.3,
+ votes: 24468,
+ running_times: 2940,
+ },
+ {
+ title: "Sherrybaby",
+ year: 2006,
+ rating: 6.6,
+ votes: 10703,
+ running_times: 5760,
+ },
+ {
+ title: "Shin Gojira",
+ year: 2016,
+ rating: 6.7,
+ votes: 12838,
+ running_times: 7200,
+ },
+ {
+ title: "Shine",
+ year: 1996,
+ rating: 7.7,
+ votes: 45923,
+ running_times: 6300,
+ },
+ {
+ title: "Shine a Light",
+ year: 2008,
+ rating: 7.2,
+ votes: 10160,
+ running_times: 7320,
+ },
+ {
+ title: "Shivers",
+ year: 1975,
+ rating: 6.6,
+ votes: 13853,
+ running_times: 5220,
+ },
+ {
+ title: "Shocker",
+ year: 1989,
+ rating: 5.4,
+ votes: 12332,
+ running_times: 6540,
+ },
+ {
+ title: "Shoot 'Em Up",
+ year: 2007,
+ rating: 6.7,
+ votes: 135567,
+ running_times: 5160,
+ },
+ {
+ title: "Shooter",
+ year: 2007,
+ rating: 7.2,
+ votes: 275550,
+ running_times: 7440,
+ },
+ {
+ title: "Shooting Dogs",
+ year: 2005,
+ rating: 7.7,
+ votes: 10219,
+ running_times: 6900,
+ },
+ {
+ title: "Shopgirl",
+ year: 2005,
+ rating: 6.4,
+ votes: 21937,
+ running_times: 6360,
+ },
+ {
+ title: "Short Circuit",
+ year: 1986,
+ rating: 6.6,
+ votes: 47621,
+ running_times: 5880,
+ },
+ {
+ title: "Short Circuit 2",
+ year: 1988,
+ rating: 5.6,
+ votes: 20055,
+ running_times: 6600,
+ },
+ {
+ title: "Short Cuts",
+ year: 1993,
+ rating: 7.7,
+ votes: 37446,
+ running_times: 11400,
+ },
+ {
+ title: "Short Term 12",
+ year: 2013,
+ rating: 8,
+ votes: 65542,
+ running_times: 5760,
+ },
+ {
+ title: "Shortbus",
+ year: 2006,
+ rating: 6.5,
+ votes: 29029,
+ running_times: 6060,
+ },
+ {
+ title: "Shot Caller",
+ year: 2017,
+ rating: 7.4,
+ votes: 33834,
+ running_times: 7260,
+ },
+ {
+ title: "Showdown in Little Tokyo",
+ year: 1991,
+ rating: 6.1,
+ votes: 13607,
+ running_times: 4740,
+ },
+ {
+ title: "Showgirls",
+ year: 1995,
+ rating: 4.7,
+ votes: 53808,
+ running_times: 7860,
+ },
+ {
+ title: "Showtime",
+ year: 2002,
+ rating: 5.5,
+ votes: 55104,
+ running_times: 5760,
+ },
+ {
+ title: "Shrek",
+ year: 2001,
+ rating: 7.9,
+ votes: 512613,
+ running_times: 5400,
+ },
+ {
+ title: "Shrek 2",
+ year: 2004,
+ rating: 7.2,
+ votes: 346813,
+ running_times: 5580,
+ },
+ {
+ title: "Shrek Forever After",
+ year: 2010,
+ rating: 6.3,
+ votes: 152396,
+ running_times: 5580,
+ },
+ {
+ title: "Shrek the Third",
+ year: 2007,
+ rating: 6.1,
+ votes: 232828,
+ running_times: 5580,
+ },
+ {
+ title: "Shrink",
+ year: 2009,
+ rating: 6.7,
+ votes: 17142,
+ running_times: 6600,
+ },
+ {
+ title: "Shrooms",
+ year: 2007,
+ rating: 4.7,
+ votes: 14549,
+ running_times: 5160,
+ },
+ {
+ title: "Shutter",
+ year: 2008,
+ rating: 5.2,
+ votes: 28911,
+ running_times: 5400,
+ },
+ {
+ title: "Shutter Island",
+ year: 2010,
+ rating: 8.1,
+ votes: 898401,
+ running_times: 8280,
+ },
+ {
+ title: "Sibirskiy tsiryulnik",
+ year: 1998,
+ rating: 7.9,
+ votes: 10003,
+ running_times: 16500,
+ },
+ {
+ title: "Sicario",
+ year: 2015,
+ rating: 7.6,
+ votes: 266558,
+ running_times: 7260,
+ },
+ { title: "Sicko", year: 2007, rating: 8, votes: 69593, running_times: 7380 },
+ {
+ title: "Sid and Nancy",
+ year: 1986,
+ rating: 7.1,
+ votes: 25324,
+ running_times: 6720,
+ },
+ {
+ title: "Side Effects",
+ year: 2013,
+ rating: 7.1,
+ votes: 159048,
+ running_times: 6360,
+ },
+ {
+ title: "Side by Side",
+ year: 2012,
+ rating: 7.6,
+ votes: 11999,
+ running_times: 5940,
+ },
+ {
+ title: "Sideways",
+ year: 2004,
+ rating: 7.5,
+ votes: 159915,
+ running_times: 7560,
+ },
+ {
+ title: "Sightseers",
+ year: 2012,
+ rating: 6.5,
+ votes: 23052,
+ running_times: 5280,
+ },
+ {
+ title: "Signs",
+ year: 2002,
+ rating: 6.7,
+ votes: 294860,
+ running_times: 6360,
+ },
+ {
+ title: "Silence",
+ year: 2016,
+ rating: 7.2,
+ votes: 66803,
+ running_times: 9660,
+ },
+ {
+ title: "Silent Hill",
+ year: 2006,
+ rating: 6.6,
+ votes: 191211,
+ running_times: 7920,
+ },
+ {
+ title: "Silent Hill: Revelation",
+ year: 2012,
+ rating: 5,
+ votes: 53668,
+ running_times: 5700,
+ },
+ {
+ title: "Silent House",
+ year: 2011,
+ rating: 5.3,
+ votes: 19737,
+ running_times: 5160,
+ },
+ {
+ title: "Silent Night, Deadly Night",
+ year: 1984,
+ rating: 5.9,
+ votes: 10538,
+ running_times: 5760,
+ },
+ {
+ title: "Silent Running",
+ year: 1972,
+ rating: 6.7,
+ votes: 22780,
+ running_times: 5340,
+ },
+ { title: "Silk", year: 2007, rating: 5.9, votes: 10005, running_times: 6720 },
+ {
+ title: "Silkwood",
+ year: 1983,
+ rating: 7.2,
+ votes: 15363,
+ running_times: 7860,
+ },
+ {
+ title: "Silver Bullet",
+ year: 1985,
+ rating: 6.4,
+ votes: 18780,
+ running_times: 5700,
+ },
+ {
+ title: "Silver Linings Playbook",
+ year: 2012,
+ rating: 7.8,
+ votes: 581668,
+ running_times: 7320,
+ },
+ {
+ title: "Silver Streak",
+ year: 1976,
+ rating: 6.9,
+ votes: 15181,
+ running_times: 6840,
+ },
+ {
+ title: "Silverado",
+ year: 1985,
+ rating: 7.2,
+ votes: 30487,
+ running_times: 7980,
+ },
+ {
+ title: "Simon Birch",
+ year: 1998,
+ rating: 6.9,
+ votes: 19163,
+ running_times: 6840,
+ },
+ {
+ title: "Simply Irresistible",
+ year: 1999,
+ rating: 5.3,
+ votes: 12052,
+ running_times: 5760,
+ },
+ {
+ title: "Sin City",
+ year: 2005,
+ rating: 8,
+ votes: 693152,
+ running_times: 8820,
+ },
+ {
+ title: "Sin City: A Dame to Kill For",
+ year: 2014,
+ rating: 6.5,
+ votes: 127939,
+ running_times: 6120,
+ },
+ {
+ title: "Sinbad: Legend of the Seven Seas",
+ year: 2003,
+ rating: 6.7,
+ votes: 40341,
+ running_times: 5400,
+ },
+ { title: "Sing", year: 2016, rating: 7.1, votes: 88772, running_times: 6840 },
+ {
+ title: "Sing Street",
+ year: 2016,
+ rating: 8,
+ votes: 61913,
+ running_times: 6360,
+ },
+ {
+ title: "Singham",
+ year: 2011,
+ rating: 6.7,
+ votes: 11623,
+ running_times: 8580,
+ },
+ {
+ title: "Singin' in the Rain",
+ year: 1952,
+ rating: 8.3,
+ votes: 172852,
+ running_times: 6180,
+ },
+ {
+ title: "Single White Female",
+ year: 1992,
+ rating: 6.3,
+ votes: 26137,
+ running_times: 6420,
+ },
+ {
+ title: "Singles",
+ year: 1992,
+ rating: 6.7,
+ votes: 24370,
+ running_times: 5940,
+ },
+ {
+ title: "Sinister",
+ year: 2012,
+ rating: 6.8,
+ votes: 180429,
+ running_times: 6600,
+ },
+ {
+ title: "Sinister 2",
+ year: 2015,
+ rating: 5.3,
+ votes: 34973,
+ running_times: 5820,
+ },
+ {
+ title: "Sister Act",
+ year: 1992,
+ rating: 6.3,
+ votes: 71673,
+ running_times: 6000,
+ },
+ {
+ title: "Sister Act 2: Back in the Habit",
+ year: 1993,
+ rating: 5.4,
+ votes: 39947,
+ running_times: 6420,
+ },
+ {
+ title: "Sisters",
+ year: 1972,
+ rating: 7,
+ votes: 11910,
+ running_times: 5580,
+ },
+ {
+ title: "Sisters",
+ year: 2015,
+ rating: 6,
+ votes: 53056,
+ running_times: 7080,
+ },
+ {
+ title: "Sivaji",
+ year: 2007,
+ rating: 7.5,
+ votes: 13175,
+ running_times: 11280,
+ },
+ {
+ title: "Six Days Seven Nights",
+ year: 1998,
+ rating: 5.8,
+ votes: 64644,
+ running_times: 5880,
+ },
+ {
+ title: "Six Degrees of Separation",
+ year: 1993,
+ rating: 6.9,
+ votes: 17552,
+ running_times: 6720,
+ },
+ {
+ title: "Sixteen Candles",
+ year: 1984,
+ rating: 7.1,
+ votes: 83729,
+ running_times: 5580,
+ },
+ {
+ title: "Skinwalkers",
+ year: 2006,
+ rating: 4.6,
+ votes: 12097,
+ running_times: 6600,
+ },
+ {
+ title: "Sky Captain and the World of Tomorrow",
+ year: 2004,
+ rating: 6.1,
+ votes: 75817,
+ running_times: 6360,
+ },
+ {
+ title: "Sky High",
+ year: 2005,
+ rating: 6.2,
+ votes: 67093,
+ running_times: 6000,
+ },
+ {
+ title: "Skyfall",
+ year: 2012,
+ rating: 7.8,
+ votes: 560755,
+ running_times: 8580,
+ },
+ {
+ title: "Skyline",
+ year: 2010,
+ rating: 4.4,
+ votes: 79577,
+ running_times: 5820,
+ },
+ {
+ title: "Slacker",
+ year: 1991,
+ rating: 7.1,
+ votes: 16600,
+ running_times: 6000,
+ },
+ {
+ title: "Slackers",
+ year: 2002,
+ rating: 5.3,
+ votes: 12868,
+ running_times: 5160,
+ },
+ {
+ title: "Slap Shot",
+ year: 1977,
+ rating: 7.4,
+ votes: 30240,
+ running_times: 7380,
+ },
+ {
+ title: "Slaughterhouse-Five",
+ year: 1972,
+ rating: 7,
+ votes: 10444,
+ running_times: 6240,
+ },
+ {
+ title: "Sleepaway Camp",
+ year: 1983,
+ rating: 6.3,
+ votes: 18885,
+ running_times: 5040,
+ },
+ {
+ title: "Sleeper",
+ year: 1973,
+ rating: 7.3,
+ votes: 35717,
+ running_times: 5340,
+ },
+ {
+ title: "Sleepers",
+ year: 1996,
+ rating: 7.6,
+ votes: 165120,
+ running_times: 8820,
+ },
+ {
+ title: "Sleeping Beauty",
+ year: 1959,
+ rating: 7.3,
+ votes: 111600,
+ running_times: 4500,
+ },
+ {
+ title: "Sleeping Beauty",
+ year: 2011,
+ rating: 5.3,
+ votes: 27668,
+ running_times: 6060,
+ },
+ {
+ title: "Sleeping with Other People",
+ year: 2015,
+ rating: 6.5,
+ votes: 30768,
+ running_times: 6060,
+ },
+ {
+ title: "Sleeping with the Enemy",
+ year: 1991,
+ rating: 6.2,
+ votes: 41133,
+ running_times: 5940,
+ },
+ {
+ title: "Sleepless",
+ year: 2017,
+ rating: 5.6,
+ votes: 19069,
+ running_times: 5700,
+ },
+ {
+ title: "Sleepless in Seattle",
+ year: 1993,
+ rating: 6.8,
+ votes: 133798,
+ running_times: 6300,
+ },
+ {
+ title: "Sleepover",
+ year: 2004,
+ rating: 5.3,
+ votes: 13528,
+ running_times: 5340,
+ },
+ {
+ title: "Sleepwalk with Me",
+ year: 2012,
+ rating: 6.8,
+ votes: 10769,
+ running_times: 4860,
+ },
+ {
+ title: "Sleepwalkers",
+ year: 1992,
+ rating: 5.2,
+ votes: 16562,
+ running_times: 5460,
+ },
+ {
+ title: "Sleepy Hollow",
+ year: 1999,
+ rating: 7.4,
+ votes: 288484,
+ running_times: 6300,
+ },
+ {
+ title: "Sleuth",
+ year: 1972,
+ rating: 8.1,
+ votes: 39448,
+ running_times: 8280,
+ },
+ {
+ title: "Sleuth",
+ year: 2007,
+ rating: 6.5,
+ votes: 27574,
+ running_times: 5280,
+ },
+ {
+ title: "Sliding Doors",
+ year: 1998,
+ rating: 6.8,
+ votes: 55967,
+ running_times: 5940,
+ },
+ {
+ title: "Sling Blade",
+ year: 1996,
+ rating: 8,
+ votes: 77328,
+ running_times: 8880,
+ },
+ {
+ title: "Slither",
+ year: 2006,
+ rating: 6.5,
+ votes: 66043,
+ running_times: 5700,
+ },
+ {
+ title: "Sliver",
+ year: 1993,
+ rating: 4.9,
+ votes: 24667,
+ running_times: 6420,
+ },
+ {
+ title: "Slow West",
+ year: 2015,
+ rating: 6.9,
+ votes: 33707,
+ running_times: 5040,
+ },
+ {
+ title: "Slumdog Millionaire",
+ year: 2008,
+ rating: 8,
+ votes: 697092,
+ running_times: 7200,
+ },
+ {
+ title: "Slums of Beverly Hills",
+ year: 1998,
+ rating: 6.6,
+ votes: 10177,
+ running_times: 5520,
+ },
+ {
+ title: "Small Soldiers",
+ year: 1998,
+ rating: 6.1,
+ votes: 81823,
+ running_times: 6600,
+ },
+ {
+ title: "Small Time Crooks",
+ year: 2000,
+ rating: 6.7,
+ votes: 33129,
+ running_times: 5640,
+ },
+ {
+ title: "Smart People",
+ year: 2008,
+ rating: 6.2,
+ votes: 21359,
+ running_times: 5700,
+ },
+ {
+ title: "Smashed",
+ year: 2012,
+ rating: 6.8,
+ votes: 14793,
+ running_times: 4860,
+ },
+ {
+ title: "Smiley Face",
+ year: 2007,
+ rating: 5.8,
+ votes: 14734,
+ running_times: 5280,
+ },
+ {
+ title: "Smilla's Sense of Snow",
+ year: 1997,
+ rating: 6.4,
+ votes: 12278,
+ running_times: 7260,
+ },
+ {
+ title: "Smoke",
+ year: 1995,
+ rating: 7.4,
+ votes: 29719,
+ running_times: 6720,
+ },
+ {
+ title: "Smokey and the Bandit",
+ year: 1977,
+ rating: 6.9,
+ votes: 35477,
+ running_times: 5760,
+ },
+ {
+ title: "Smokey and the Bandit II",
+ year: 1980,
+ rating: 5.2,
+ votes: 12223,
+ running_times: 6000,
+ },
+ {
+ title: "Smokin' Aces",
+ year: 2006,
+ rating: 6.7,
+ votes: 126545,
+ running_times: 6540,
+ },
+ {
+ title: "Smurfs: The Lost Village",
+ year: 2017,
+ rating: 5.9,
+ votes: 11182,
+ running_times: 5400,
+ },
+ {
+ title: "Snabba cash",
+ year: 2010,
+ rating: 6.7,
+ votes: 14683,
+ running_times: 7440,
+ },
+ {
+ title: "Snake Eyes",
+ year: 1998,
+ rating: 6,
+ votes: 67876,
+ running_times: 5880,
+ },
+ {
+ title: "Snakes on a Plane",
+ year: 2006,
+ rating: 5.6,
+ votes: 120964,
+ running_times: 6300,
+ },
+ {
+ title: "Snatch",
+ year: 2000,
+ rating: 8.3,
+ votes: 662781,
+ running_times: 6240,
+ },
+ {
+ title: "Snatched",
+ year: 2017,
+ rating: 4.3,
+ votes: 20447,
+ running_times: 5400,
+ },
+ {
+ title: "Sneakers",
+ year: 1992,
+ rating: 7.1,
+ votes: 46445,
+ running_times: 7560,
+ },
+ {
+ title: "Sniper",
+ year: 1993,
+ rating: 6.1,
+ votes: 20484,
+ running_times: 5880,
+ },
+ {
+ title: "Snitch",
+ year: 2013,
+ rating: 6.5,
+ votes: 70259,
+ running_times: 6720,
+ },
+ {
+ title: "Snow Angels",
+ year: 2007,
+ rating: 6.9,
+ votes: 11437,
+ running_times: 6420,
+ },
+ {
+ title: "Snow Cake",
+ year: 2006,
+ rating: 7.6,
+ votes: 11373,
+ running_times: 6720,
+ },
+ {
+ title: "Snow Day",
+ year: 2000,
+ rating: 5,
+ votes: 10054,
+ running_times: 5340,
+ },
+ {
+ title: "Snow Dogs",
+ year: 2002,
+ rating: 5.1,
+ votes: 21931,
+ running_times: 5940,
+ },
+ {
+ title: "Snow Falling on Cedars",
+ year: 1999,
+ rating: 6.8,
+ votes: 12764,
+ running_times: 7620,
+ },
+ {
+ title: "Snow White and the Huntsman",
+ year: 2012,
+ rating: 6.1,
+ votes: 245114,
+ running_times: 7920,
+ },
+ {
+ title: "Snow White and the Seven Dwarfs",
+ year: 1937,
+ rating: 7.6,
+ votes: 149216,
+ running_times: 4980,
+ },
+ {
+ title: "Snowden",
+ year: 2016,
+ rating: 7.3,
+ votes: 97053,
+ running_times: 8040,
+ },
+ {
+ title: "Snowpiercer",
+ year: 2013,
+ rating: 7,
+ votes: 211297,
+ running_times: 7560,
+ },
+ {
+ title: "Snowtown",
+ year: 2011,
+ rating: 6.6,
+ votes: 14705,
+ running_times: 7140,
+ },
+ {
+ title: "So I Married an Axe Murderer",
+ year: 1993,
+ rating: 6.4,
+ votes: 29635,
+ running_times: 5580,
+ },
+ {
+ title: "So Undercover",
+ year: 2012,
+ rating: 5,
+ votes: 16254,
+ running_times: 5640,
+ },
+ {
+ title: "Soaked in Bleach",
+ year: 2015,
+ rating: 7.5,
+ votes: 11775,
+ running_times: 5400,
+ },
+ {
+ title: "Soapdish",
+ year: 1991,
+ rating: 6.5,
+ votes: 12426,
+ running_times: 5820,
+ },
+ {
+ title: "Solace",
+ year: 2015,
+ rating: 6.4,
+ votes: 40172,
+ running_times: 6060,
+ },
+ {
+ title: "Solaris",
+ year: 2002,
+ rating: 6.2,
+ votes: 71407,
+ running_times: 5940,
+ },
+ {
+ title: "Soldier",
+ year: 1998,
+ rating: 6,
+ votes: 46574,
+ running_times: 5940,
+ },
+ {
+ title: "Solitary Man",
+ year: 2009,
+ rating: 6.4,
+ votes: 14234,
+ running_times: 5400,
+ },
+ {
+ title: "Solomon Kane",
+ year: 2009,
+ rating: 6.1,
+ votes: 62676,
+ running_times: 6240,
+ },
+ {
+ title: "Some Kind of Wonderful",
+ year: 1987,
+ rating: 7.1,
+ votes: 22260,
+ running_times: 5700,
+ },
+ {
+ title: "Some Like It Hot",
+ year: 1959,
+ rating: 8.3,
+ votes: 196104,
+ running_times: 7260,
+ },
+ {
+ title: "Someone Like You...",
+ year: 2001,
+ rating: 6.1,
+ votes: 21215,
+ running_times: 5820,
+ },
+ {
+ title: "Something Borrowed",
+ year: 2011,
+ rating: 5.9,
+ votes: 51403,
+ running_times: 6720,
+ },
+ {
+ title: "Something New",
+ year: 2006,
+ rating: 6.8,
+ votes: 11183,
+ running_times: 5940,
+ },
+ {
+ title: "Something Wild",
+ year: 1986,
+ rating: 6.9,
+ votes: 13322,
+ running_times: 6840,
+ },
+ {
+ title: "Something to Talk About",
+ year: 1995,
+ rating: 5.7,
+ votes: 11196,
+ running_times: 6360,
+ },
+ {
+ title: "Something's Gotta Give",
+ year: 2003,
+ rating: 6.7,
+ votes: 97460,
+ running_times: 7680,
+ },
+ {
+ title: "Somewhere",
+ year: 2010,
+ rating: 6.3,
+ votes: 38373,
+ running_times: 5820,
+ },
+ {
+ title: "Somewhere in Time",
+ year: 1980,
+ rating: 7.3,
+ votes: 22652,
+ running_times: 6180,
+ },
+ {
+ title: "Sommersby",
+ year: 1993,
+ rating: 6.1,
+ votes: 16639,
+ running_times: 6840,
+ },
+ {
+ title: "Son in Law",
+ year: 1993,
+ rating: 5.7,
+ votes: 14621,
+ running_times: 5700,
+ },
+ {
+ title: "Son of God",
+ year: 2014,
+ rating: 5.7,
+ votes: 16625,
+ running_times: 10200,
+ },
+ {
+ title: "Son of Rambow",
+ year: 2007,
+ rating: 7,
+ votes: 28460,
+ running_times: 5760,
+ },
+ {
+ title: "Son of a Gun",
+ year: 2014,
+ rating: 6.5,
+ votes: 21903,
+ running_times: 6480,
+ },
+ {
+ title: "Son of the Mask",
+ year: 2005,
+ rating: 2.2,
+ votes: 44987,
+ running_times: 5640,
+ },
+ {
+ title: "Song of the Sea",
+ year: 2014,
+ rating: 8.1,
+ votes: 36215,
+ running_times: 5580,
+ },
+ {
+ title: "Song to Song",
+ year: 2017,
+ rating: 5.8,
+ votes: 10321,
+ running_times: 7740,
+ },
+ {
+ title: "Sophie's Choice",
+ year: 1982,
+ rating: 7.7,
+ votes: 32806,
+ running_times: 9420,
+ },
+ {
+ title: "Sorcerer",
+ year: 1977,
+ rating: 7.8,
+ votes: 11937,
+ running_times: 7260,
+ },
+ {
+ title: "Sorority Boys",
+ year: 2002,
+ rating: 5.4,
+ votes: 12562,
+ running_times: 5580,
+ },
+ {
+ title: "Sorority Row",
+ year: 2009,
+ rating: 5.1,
+ votes: 25521,
+ running_times: 6060,
+ },
+ {
+ title: "Soul Kitchen",
+ year: 2009,
+ rating: 7.3,
+ votes: 31562,
+ running_times: 5940,
+ },
+ {
+ title: "Soul Plane",
+ year: 2004,
+ rating: 4.4,
+ votes: 19355,
+ running_times: 5520,
+ },
+ {
+ title: "Soul Surfer",
+ year: 2011,
+ rating: 7.1,
+ votes: 38676,
+ running_times: 6720,
+ },
+ {
+ title: "Sound of My Voice",
+ year: 2011,
+ rating: 6.6,
+ votes: 18046,
+ running_times: 5100,
+ },
+ {
+ title: "Source Code",
+ year: 2011,
+ rating: 7.5,
+ votes: 420082,
+ running_times: 5580,
+ },
+ {
+ title: "South Park: Bigger, Longer & Uncut",
+ year: 1999,
+ rating: 7.8,
+ votes: 173169,
+ running_times: 4860,
+ },
+ {
+ title: "Southbound",
+ year: 2015,
+ rating: 5.9,
+ votes: 11805,
+ running_times: 5340,
+ },
+ {
+ title: "Southern Comfort",
+ year: 1981,
+ rating: 7.2,
+ votes: 13134,
+ running_times: 6360,
+ },
+ {
+ title: "Southland Tales",
+ year: 2006,
+ rating: 5.5,
+ votes: 33843,
+ running_times: 9600,
+ },
+ {
+ title: "Southpaw",
+ year: 2015,
+ rating: 7.4,
+ votes: 180071,
+ running_times: 7440,
+ },
+ {
+ title: "Soylent Green",
+ year: 1973,
+ rating: 7.1,
+ votes: 48661,
+ running_times: 5820,
+ },
+ {
+ title: "Space Cowboys",
+ year: 2000,
+ rating: 6.4,
+ votes: 64257,
+ running_times: 7800,
+ },
+ {
+ title: "Space Jam",
+ year: 1996,
+ rating: 6.3,
+ votes: 126652,
+ running_times: 5280,
+ },
+ {
+ title: "SpaceCamp",
+ year: 1986,
+ rating: 5.6,
+ votes: 11589,
+ running_times: 6420,
+ },
+ {
+ title: "Spaceballs",
+ year: 1987,
+ rating: 7.1,
+ votes: 148313,
+ running_times: 5760,
+ },
+ {
+ title: "Spanglish",
+ year: 2004,
+ rating: 6.4,
+ votes: 69742,
+ running_times: 7860,
+ },
+ {
+ title: "Sparks",
+ year: 2013,
+ rating: 5.9,
+ votes: 10225,
+ running_times: 5820,
+ },
+ {
+ title: "Spartacus",
+ year: 1960,
+ rating: 7.9,
+ votes: 105800,
+ running_times: 11820,
+ },
+ {
+ title: "Spartan",
+ year: 2004,
+ rating: 6.6,
+ votes: 27486,
+ running_times: 6360,
+ },
+ {
+ title: "Spawn",
+ year: 1997,
+ rating: 5.2,
+ votes: 56746,
+ running_times: 5880,
+ },
+ {
+ title: "Speak",
+ year: 2004,
+ rating: 7.4,
+ votes: 22204,
+ running_times: 5340,
+ },
+ {
+ title: "Special Correspondents",
+ year: 2016,
+ rating: 5.8,
+ votes: 13704,
+ running_times: 6060,
+ },
+ {
+ title: "Species",
+ year: 1995,
+ rating: 5.8,
+ votes: 65194,
+ running_times: 6480,
+ },
+ {
+ title: "Species II",
+ year: 1998,
+ rating: 4.3,
+ votes: 24126,
+ running_times: 5580,
+ },
+ {
+ title: "Spectral",
+ year: 2016,
+ rating: 6.3,
+ votes: 32422,
+ running_times: 6420,
+ },
+ {
+ title: "Spectre",
+ year: 2015,
+ rating: 6.8,
+ votes: 323174,
+ running_times: 8880,
+ },
+ {
+ title: "Speed",
+ year: 1994,
+ rating: 7.2,
+ votes: 282195,
+ running_times: 6960,
+ },
+ {
+ title: "Speed 2: Cruise Control",
+ year: 1997,
+ rating: 3.8,
+ votes: 64736,
+ running_times: 7260,
+ },
+ {
+ title: "Speed Racer",
+ year: 2008,
+ rating: 6,
+ votes: 61516,
+ running_times: 8100,
+ },
+ {
+ title: "Spellbound",
+ year: 1945,
+ rating: 7.6,
+ votes: 36085,
+ running_times: 7080,
+ },
+ {
+ title: "Spellbound",
+ year: 2002,
+ rating: 7.6,
+ votes: 11339,
+ running_times: 5820,
+ },
+ {
+ title: "Sphere",
+ year: 1998,
+ rating: 6.1,
+ votes: 88295,
+ running_times: 8040,
+ },
+ {
+ title: "Spice World",
+ year: 1997,
+ rating: 3.4,
+ votes: 29530,
+ running_times: 5580,
+ },
+ {
+ title: "Spider",
+ year: 2002,
+ rating: 6.8,
+ votes: 31954,
+ running_times: 5880,
+ },
+ {
+ title: "Spider-Man",
+ year: 2002,
+ rating: 7.3,
+ votes: 592886,
+ running_times: 7260,
+ },
+ {
+ title: "Spider-Man 2",
+ year: 2004,
+ rating: 7.3,
+ votes: 456912,
+ running_times: 8100,
+ },
+ {
+ title: "Spider-Man 3",
+ year: 2007,
+ rating: 6.2,
+ votes: 421570,
+ running_times: 8340,
+ },
+ {
+ title: "Spider-Man: Homecoming",
+ year: 2017,
+ rating: 7.6,
+ votes: 249739,
+ running_times: 7980,
+ },
+ {
+ title: "Spies Like Us",
+ year: 1985,
+ rating: 6.4,
+ votes: 37604,
+ running_times: 6120,
+ },
+ {
+ title: "Spirit: Stallion of the Cimarron",
+ year: 2002,
+ rating: 7.1,
+ votes: 51140,
+ running_times: 5160,
+ },
+ {
+ title: "Splash",
+ year: 1984,
+ rating: 6.2,
+ votes: 59128,
+ running_times: 6660,
+ },
+ {
+ title: "Splendor in the Grass",
+ year: 1961,
+ rating: 7.8,
+ votes: 14760,
+ running_times: 7440,
+ },
+ {
+ title: "Splice",
+ year: 2009,
+ rating: 5.8,
+ votes: 83775,
+ running_times: 6240,
+ },
+ {
+ title: "Splinter",
+ year: 2008,
+ rating: 6.1,
+ votes: 28948,
+ running_times: 4920,
+ },
+ {
+ title: "Split",
+ year: 2016,
+ rating: 7.3,
+ votes: 234221,
+ running_times: 7020,
+ },
+ {
+ title: "Spooks: The Greater Good",
+ year: 2015,
+ rating: 6.2,
+ votes: 16463,
+ running_times: 6240,
+ },
+ {
+ title: "Spoorloos",
+ year: 1988,
+ rating: 7.8,
+ votes: 27755,
+ running_times: 6420,
+ },
+ {
+ title: "Spotlight",
+ year: 2015,
+ rating: 8.1,
+ votes: 297395,
+ running_times: 7680,
+ },
+ {
+ title: "Spread",
+ year: 2009,
+ rating: 5.9,
+ votes: 34410,
+ running_times: 5820,
+ },
+ {
+ title: "Spring",
+ year: 2014,
+ rating: 6.7,
+ votes: 17755,
+ running_times: 6540,
+ },
+ {
+ title: "Spring Breakers",
+ year: 2012,
+ rating: 5.3,
+ votes: 117494,
+ running_times: 5640,
+ },
+ { title: "Spun", year: 2002, rating: 6.8, votes: 33594, running_times: 6360 },
+ { title: "Spy", year: 2015, rating: 7, votes: 196663, running_times: 7800 },
+ {
+ title: "Spy Game",
+ year: 2001,
+ rating: 7.1,
+ votes: 128296,
+ running_times: 7560,
+ },
+ {
+ title: "Spy Hard",
+ year: 1996,
+ rating: 5.3,
+ votes: 31921,
+ running_times: 4860,
+ },
+ {
+ title: "Spy Kids",
+ year: 2001,
+ rating: 5.4,
+ votes: 91900,
+ running_times: 5280,
+ },
+ {
+ title: "Spy Kids 2: Island of Lost Dreams",
+ year: 2002,
+ rating: 5.1,
+ votes: 49760,
+ running_times: 6000,
+ },
+ {
+ title: "Spy Kids 3: Game Over",
+ year: 2003,
+ rating: 4.2,
+ votes: 44716,
+ running_times: 5040,
+ },
+ {
+ title: "Spy Kids: All the Time in the World in 4D",
+ year: 2011,
+ rating: 3.6,
+ votes: 17547,
+ running_times: 5340,
+ },
+ {
+ title: "Srpski film",
+ year: 2010,
+ rating: 5.2,
+ votes: 45822,
+ running_times: 6240,
+ },
+ {
+ title: "St. Elmo's Fire",
+ year: 1985,
+ rating: 6.4,
+ votes: 30251,
+ running_times: 6600,
+ },
+ {
+ title: "St. Trinian's",
+ year: 2007,
+ rating: 5.8,
+ votes: 19445,
+ running_times: 6000,
+ },
+ {
+ title: "St. Vincent",
+ year: 2014,
+ rating: 7.3,
+ votes: 83606,
+ running_times: 6120,
+ },
+ {
+ title: "Stage Fright",
+ year: 1950,
+ rating: 7.1,
+ votes: 10406,
+ running_times: 6600,
+ },
+ {
+ title: "Stagecoach",
+ year: 1939,
+ rating: 7.9,
+ votes: 34419,
+ running_times: 5760,
+ },
+ {
+ title: "Stake Land",
+ year: 2010,
+ rating: 6.5,
+ votes: 37105,
+ running_times: 5880,
+ },
+ {
+ title: "Stakeout",
+ year: 1987,
+ rating: 6.6,
+ votes: 20222,
+ running_times: 7020,
+ },
+ {
+ title: "Stalag 17",
+ year: 1953,
+ rating: 8,
+ votes: 45605,
+ running_times: 7200,
+ },
+ {
+ title: "Stan Helsing",
+ year: 2009,
+ rating: 3.6,
+ votes: 10509,
+ running_times: 6480,
+ },
+ {
+ title: "Stand Up Guys",
+ year: 2012,
+ rating: 6.5,
+ votes: 48161,
+ running_times: 5700,
+ },
+ {
+ title: "Stand and Deliver",
+ year: 1988,
+ rating: 7.3,
+ votes: 13394,
+ running_times: 6180,
+ },
+ {
+ title: "Stand by Me",
+ year: 1986,
+ rating: 8.1,
+ votes: 303523,
+ running_times: 5340,
+ },
+ {
+ title: "Star Trek",
+ year: 2009,
+ rating: 8,
+ votes: 536248,
+ running_times: 7620,
+ },
+ {
+ title: "Star Trek III: The Search for Spock",
+ year: 1984,
+ rating: 6.7,
+ votes: 63865,
+ running_times: 6300,
+ },
+ {
+ title: "Star Trek IV: The Voyage Home",
+ year: 1986,
+ rating: 7.3,
+ votes: 67227,
+ running_times: 7140,
+ },
+ {
+ title: "Star Trek V: The Final Frontier",
+ year: 1989,
+ rating: 5.4,
+ votes: 47861,
+ running_times: 6420,
+ },
+ {
+ title: "Star Trek VI: The Undiscovered Country",
+ year: 1991,
+ rating: 7.2,
+ votes: 60259,
+ running_times: 6780,
+ },
+ {
+ title: "Star Trek: Beyond",
+ year: 2016,
+ rating: 7.1,
+ votes: 184977,
+ running_times: 7320,
+ },
+ {
+ title: "Star Trek: First Contact",
+ year: 1996,
+ rating: 7.6,
+ votes: 103993,
+ running_times: 6660,
+ },
+ {
+ title: "Star Trek: Generations",
+ year: 1994,
+ rating: 6.6,
+ votes: 65421,
+ running_times: 7080,
+ },
+ {
+ title: "Star Trek: Insurrection",
+ year: 1998,
+ rating: 6.4,
+ votes: 60876,
+ running_times: 6180,
+ },
+ {
+ title: "Star Trek: Into Darkness",
+ year: 2013,
+ rating: 7.8,
+ votes: 427145,
+ running_times: 7920,
+ },
+ {
+ title: "Star Trek: Nemesis",
+ year: 2002,
+ rating: 6.4,
+ votes: 63211,
+ running_times: 6960,
+ },
+ {
+ title: "Star Trek: The Motion Picture",
+ year: 1979,
+ rating: 6.4,
+ votes: 69315,
+ running_times: 8580,
+ },
+ {
+ title: "Star Trek: The Wrath of Khan",
+ year: 1982,
+ rating: 7.7,
+ votes: 98459,
+ running_times: 6960,
+ },
+ {
+ title: "Star Wars",
+ year: 1977,
+ rating: 8.7,
+ votes: 1017627,
+ running_times: 7500,
+ },
+ {
+ title: "Star Wars: Episode I - The Phantom Menace",
+ year: 1999,
+ rating: 6.5,
+ votes: 595846,
+ running_times: 8160,
+ },
+ {
+ title: "Star Wars: Episode II - Attack of the Clones",
+ year: 2002,
+ rating: 6.6,
+ votes: 521026,
+ running_times: 8520,
+ },
+ {
+ title: "Star Wars: Episode III - Revenge of the Sith",
+ year: 2005,
+ rating: 7.6,
+ votes: 581269,
+ running_times: 8400,
+ },
+ {
+ title: "Star Wars: Episode V - The Empire Strikes Back",
+ year: 1980,
+ rating: 8.8,
+ votes: 945421,
+ running_times: 7620,
+ },
+ {
+ title: "Star Wars: Episode VI - Return of the Jedi",
+ year: 1983,
+ rating: 8.4,
+ votes: 775825,
+ running_times: 8040,
+ },
+ {
+ title: "Star Wars: Episode VII - The Force Awakens",
+ year: 2015,
+ rating: 8.1,
+ votes: 707963,
+ running_times: 8160,
+ },
+ {
+ title: "Star Wars: Episode VIII - The Last Jedi",
+ year: 2017,
+ rating: 7.8,
+ votes: 151246,
+ running_times: 9120,
+ },
+ {
+ title: "Star Wars: The Clone Wars",
+ year: 2008,
+ rating: 5.9,
+ votes: 46331,
+ running_times: 5880,
+ },
+ {
+ title: "Stardust",
+ year: 2007,
+ rating: 7.7,
+ votes: 226118,
+ running_times: 7620,
+ },
+ {
+ title: "Stardust Memories",
+ year: 1980,
+ rating: 7.4,
+ votes: 18163,
+ running_times: 5340,
+ },
+ {
+ title: "Stargate",
+ year: 1994,
+ rating: 7.1,
+ votes: 157475,
+ running_times: 7800,
+ },
+ {
+ title: "Starman",
+ year: 1984,
+ rating: 7,
+ votes: 36137,
+ running_times: 6900,
+ },
+ {
+ title: "Starred Up",
+ year: 2013,
+ rating: 7.4,
+ votes: 36248,
+ running_times: 6360,
+ },
+ {
+ title: "Starry Eyes",
+ year: 2014,
+ rating: 6,
+ votes: 13931,
+ running_times: 5880,
+ },
+ {
+ title: "Starship Troopers",
+ year: 1997,
+ rating: 7.2,
+ votes: 237306,
+ running_times: 7740,
+ },
+ {
+ title: "Starsky & Hutch",
+ year: 2004,
+ rating: 6.1,
+ votes: 126352,
+ running_times: 6060,
+ },
+ {
+ title: "Starter for 10",
+ year: 2006,
+ rating: 6.7,
+ votes: 19276,
+ running_times: 5520,
+ },
+ {
+ title: "State and Main",
+ year: 2000,
+ rating: 6.8,
+ votes: 18956,
+ running_times: 6300,
+ },
+ {
+ title: "State of Grace",
+ year: 1990,
+ rating: 7.3,
+ votes: 17972,
+ running_times: 8040,
+ },
+ {
+ title: "State of Play",
+ year: 2009,
+ rating: 7.1,
+ votes: 119675,
+ running_times: 7620,
+ },
+ { title: "Stay", year: 2005, rating: 6.9, votes: 66125, running_times: 5940 },
+ {
+ title: "Stay Alive",
+ year: 2006,
+ rating: 5.1,
+ votes: 27146,
+ running_times: 6000,
+ },
+ {
+ title: "Staying Alive",
+ year: 1983,
+ rating: 4.5,
+ votes: 12227,
+ running_times: 5760,
+ },
+ {
+ title: "Stealing Beauty",
+ year: 1996,
+ rating: 6.6,
+ votes: 21983,
+ running_times: 7080,
+ },
+ {
+ title: "Stealing Harvard",
+ year: 2002,
+ rating: 5.1,
+ votes: 11543,
+ running_times: 5100,
+ },
+ {
+ title: "Stealth",
+ year: 2005,
+ rating: 5,
+ votes: 47402,
+ running_times: 7260,
+ },
+ {
+ title: "Steamboat Bill, Jr.",
+ year: 1928,
+ rating: 8,
+ votes: 10531,
+ running_times: 4200,
+ },
+ {
+ title: "Steel Magnolias",
+ year: 1989,
+ rating: 7.2,
+ votes: 37721,
+ running_times: 7140,
+ },
+ {
+ title: "Step Brothers",
+ year: 2008,
+ rating: 6.9,
+ votes: 229760,
+ running_times: 6360,
+ },
+ {
+ title: "Step Up",
+ year: 2006,
+ rating: 6.5,
+ votes: 98606,
+ running_times: 6240,
+ },
+ {
+ title: "Step Up 2: The Streets",
+ year: 2008,
+ rating: 6.2,
+ votes: 72340,
+ running_times: 5880,
+ },
+ {
+ title: "Step Up 3D",
+ year: 2010,
+ rating: 6.2,
+ votes: 50574,
+ running_times: 6420,
+ },
+ {
+ title: "Step Up All In",
+ year: 2014,
+ rating: 6,
+ votes: 28255,
+ running_times: 6720,
+ },
+ {
+ title: "Step Up Revolution",
+ year: 2012,
+ rating: 6.5,
+ votes: 48730,
+ running_times: 5940,
+ },
+ {
+ title: "Stepmom",
+ year: 1998,
+ rating: 6.7,
+ votes: 51070,
+ running_times: 7440,
+ },
+ {
+ title: "Steve Jobs",
+ year: 2015,
+ rating: 7.2,
+ votes: 124496,
+ running_times: 7320,
+ },
+ {
+ title: "Stick It",
+ year: 2006,
+ rating: 6.4,
+ votes: 24032,
+ running_times: 6180,
+ },
+ {
+ title: "Stigmata",
+ year: 1999,
+ rating: 6.2,
+ votes: 57586,
+ running_times: 6180,
+ },
+ {
+ title: "Still Alice",
+ year: 2014,
+ rating: 7.5,
+ votes: 104004,
+ running_times: 6060,
+ },
+ {
+ title: "Stir Crazy",
+ year: 1980,
+ rating: 6.8,
+ votes: 20418,
+ running_times: 6660,
+ },
+ {
+ title: "Stir of Echoes",
+ year: 1999,
+ rating: 7,
+ votes: 66144,
+ running_times: 5940,
+ },
+ {
+ title: "Stoker",
+ year: 2013,
+ rating: 6.8,
+ votes: 91869,
+ running_times: 5940,
+ },
+ {
+ title: "Stolen",
+ year: 2012,
+ rating: 5.5,
+ votes: 39431,
+ running_times: 5760,
+ },
+ {
+ title: "Stomp the Yard",
+ year: 2007,
+ rating: 5.3,
+ votes: 20324,
+ running_times: 6900,
+ },
+ {
+ title: "Stone",
+ year: 2010,
+ rating: 5.4,
+ votes: 36629,
+ running_times: 6300,
+ },
+ {
+ title: "Stop! Or My Mom Will Shoot",
+ year: 1992,
+ rating: 4.1,
+ votes: 33866,
+ running_times: 5220,
+ },
+ {
+ title: "Stop-Loss",
+ year: 2008,
+ rating: 6.5,
+ votes: 18497,
+ running_times: 6720,
+ },
+ {
+ title: "Stories We Tell",
+ year: 2012,
+ rating: 7.6,
+ votes: 10436,
+ running_times: 6480,
+ },
+ {
+ title: "Storks",
+ year: 2016,
+ rating: 6.8,
+ votes: 42746,
+ running_times: 5220,
+ },
+ {
+ title: "Stormbreaker",
+ year: 2006,
+ rating: 5.1,
+ votes: 21362,
+ running_times: 5580,
+ },
+ {
+ title: "Storytelling",
+ year: 2001,
+ rating: 6.9,
+ votes: 15914,
+ running_times: 5220,
+ },
+ {
+ title: "Straight Outta Compton",
+ year: 2015,
+ rating: 7.9,
+ votes: 149835,
+ running_times: 10020,
+ },
+ {
+ title: "Strange Days",
+ year: 1995,
+ rating: 7.2,
+ votes: 58409,
+ running_times: 8700,
+ },
+ {
+ title: "Strange Wilderness",
+ year: 2008,
+ rating: 5.3,
+ votes: 19489,
+ running_times: 5220,
+ },
+ {
+ title: "Stranger Than Fiction",
+ year: 2006,
+ rating: 7.6,
+ votes: 198359,
+ running_times: 6780,
+ },
+ {
+ title: "Stranger Than Paradise",
+ year: 1984,
+ rating: 7.6,
+ votes: 28124,
+ running_times: 5340,
+ },
+ {
+ title: "Strangers on a Train",
+ year: 1951,
+ rating: 8,
+ votes: 106706,
+ running_times: 6180,
+ },
+ {
+ title: "Straw Dogs",
+ year: 1971,
+ rating: 7.5,
+ votes: 48867,
+ running_times: 7080,
+ },
+ {
+ title: "Straw Dogs",
+ year: 2011,
+ rating: 5.8,
+ votes: 28934,
+ running_times: 6600,
+ },
+ {
+ title: "Street Fighter",
+ year: 1994,
+ rating: 3.8,
+ votes: 56501,
+ running_times: 6120,
+ },
+ {
+ title: "Street Fighter: The Legend of Chun-Li",
+ year: 2009,
+ rating: 3.7,
+ votes: 20710,
+ running_times: 5760,
+ },
+ {
+ title: "Street Kings",
+ year: 2008,
+ rating: 6.8,
+ votes: 99006,
+ running_times: 6540,
+ },
+ {
+ title: "Streets of Fire",
+ year: 1984,
+ rating: 6.7,
+ votes: 13960,
+ running_times: 5700,
+ },
+ {
+ title: "Stretch",
+ year: 2014,
+ rating: 6.5,
+ votes: 25506,
+ running_times: 5640,
+ },
+ {
+ title: "Strictly Ballroom",
+ year: 1992,
+ rating: 7.2,
+ votes: 21836,
+ running_times: 5640,
+ },
+ {
+ title: "Striking Distance",
+ year: 1993,
+ rating: 5.8,
+ votes: 35780,
+ running_times: 6120,
+ },
+ {
+ title: "Stripes",
+ year: 1981,
+ rating: 6.9,
+ votes: 53430,
+ running_times: 7320,
+ },
+ {
+ title: "Striptease",
+ year: 1996,
+ rating: 4.3,
+ votes: 37180,
+ running_times: 7020,
+ },
+ {
+ title: "Stroszek",
+ year: 1977,
+ rating: 8,
+ votes: 10592,
+ running_times: 6900,
+ },
+ {
+ title: "Struck by Lightning",
+ year: 2012,
+ rating: 6.3,
+ votes: 13599,
+ running_times: 5400,
+ },
+ {
+ title: "Stuart Little",
+ year: 1999,
+ rating: 5.9,
+ votes: 105005,
+ running_times: 5040,
+ },
+ {
+ title: "Stuart Little 2",
+ year: 2002,
+ rating: 5.4,
+ votes: 41063,
+ running_times: 4920,
+ },
+ {
+ title: "Stuck in Love",
+ year: 2012,
+ rating: 7.3,
+ votes: 73477,
+ running_times: 5820,
+ },
+ {
+ title: "Stuck on You",
+ year: 2003,
+ rating: 5.8,
+ votes: 46800,
+ running_times: 7080,
+ },
+ {
+ title: "Submarine",
+ year: 2010,
+ rating: 7.3,
+ votes: 74119,
+ running_times: 5820,
+ },
+ {
+ title: "Suburra",
+ year: 2015,
+ rating: 7.4,
+ votes: 11483,
+ running_times: 7800,
+ },
+ {
+ title: "Suchîmubôi",
+ year: 2004,
+ rating: 6.9,
+ votes: 14714,
+ running_times: 7620,
+ },
+ {
+ title: "Sucker Punch",
+ year: 2011,
+ rating: 6.1,
+ votes: 209381,
+ running_times: 7680,
+ },
+ {
+ title: "Sudden Death",
+ year: 1995,
+ rating: 5.7,
+ votes: 27751,
+ running_times: 6660,
+ },
+ {
+ title: "Sudden Impact",
+ year: 1983,
+ rating: 6.6,
+ votes: 34112,
+ running_times: 7020,
+ },
+ {
+ title: "Suddenly, Last Summer",
+ year: 1959,
+ rating: 7.6,
+ votes: 11425,
+ running_times: 6840,
+ },
+ {
+ title: "Suffragette",
+ year: 2015,
+ rating: 6.9,
+ votes: 28983,
+ running_times: 6360,
+ },
+ {
+ title: "Sugar & Spice",
+ year: 2001,
+ rating: 5.6,
+ votes: 12104,
+ running_times: 5040,
+ },
+ {
+ title: "Suicide Kings",
+ year: 1997,
+ rating: 7,
+ votes: 23626,
+ running_times: 6360,
+ },
+ {
+ title: "Suicide Squad",
+ year: 2016,
+ rating: 6.1,
+ votes: 453361,
+ running_times: 8040,
+ },
+ {
+ title: "Suite Française",
+ year: 2014,
+ rating: 6.9,
+ votes: 15697,
+ running_times: 6420,
+ },
+ {
+ title: "Sukiyaki Western Django",
+ year: 2007,
+ rating: 6.3,
+ votes: 13457,
+ running_times: 7260,
+ },
+ {
+ title: "Sullivan's Travels",
+ year: 1941,
+ rating: 8.1,
+ votes: 20038,
+ running_times: 5400,
+ },
+ {
+ title: "Sully",
+ year: 2016,
+ rating: 7.5,
+ votes: 165235,
+ running_times: 5760,
+ },
+ {
+ title: "Summer Catch",
+ year: 2001,
+ rating: 5,
+ votes: 13708,
+ running_times: 6480,
+ },
+ {
+ title: "Summer Rental",
+ year: 1985,
+ rating: 6.2,
+ votes: 11213,
+ running_times: 5280,
+ },
+ {
+ title: "Summer School",
+ year: 1987,
+ rating: 6.5,
+ votes: 14190,
+ running_times: 5820,
+ },
+ {
+ title: "Summer of Sam",
+ year: 1999,
+ rating: 6.6,
+ votes: 32643,
+ running_times: 8520,
+ },
+ {
+ title: "Sunrise: A Song of Two Humans",
+ year: 1927,
+ rating: 8.2,
+ votes: 34599,
+ running_times: 6360,
+ },
+ {
+ title: "Sunset Blvd.",
+ year: 1950,
+ rating: 8.5,
+ votes: 157474,
+ running_times: 6900,
+ },
+ {
+ title: "Sunshine",
+ year: 1999,
+ rating: 7.5,
+ votes: 11782,
+ running_times: 10860,
+ },
+ {
+ title: "Sunshine",
+ year: 2007,
+ rating: 7.3,
+ votes: 206210,
+ running_times: 6420,
+ },
+ {
+ title: "Sunshine Cleaning",
+ year: 2008,
+ rating: 6.9,
+ votes: 63947,
+ running_times: 5460,
+ },
+ {
+ title: "Super",
+ year: 2010,
+ rating: 6.8,
+ votes: 66282,
+ running_times: 5760,
+ },
+ {
+ title: "Super 8",
+ year: 2011,
+ rating: 7,
+ votes: 305903,
+ running_times: 6720,
+ },
+ {
+ title: "Super High Me",
+ year: 2007,
+ rating: 6.1,
+ votes: 12122,
+ running_times: 5640,
+ },
+ {
+ title: "Super Mario Bros.",
+ year: 1993,
+ rating: 4,
+ votes: 40962,
+ running_times: 6240,
+ },
+ {
+ title: "Super Size Me",
+ year: 2004,
+ rating: 7.2,
+ votes: 91271,
+ running_times: 6000,
+ },
+ {
+ title: "Super Troopers",
+ year: 2001,
+ rating: 7.1,
+ votes: 81588,
+ running_times: 6000,
+ },
+ {
+ title: "Superbabies: Baby Geniuses 2",
+ year: 2004,
+ rating: 2,
+ votes: 27008,
+ running_times: 5280,
+ },
+ {
+ title: "Superbad",
+ year: 2007,
+ rating: 7.6,
+ votes: 454499,
+ running_times: 7140,
+ },
+ {
+ title: "Supergirl",
+ year: 1984,
+ rating: 4.3,
+ votes: 15532,
+ running_times: 9000,
+ },
+ {
+ title: "Superhero Movie",
+ year: 2008,
+ rating: 4.5,
+ votes: 55895,
+ running_times: 4920,
+ },
+ {
+ title: "Superman",
+ year: 1978,
+ rating: 7.3,
+ votes: 137512,
+ running_times: 11280,
+ },
+ {
+ title: "Superman II",
+ year: 1980,
+ rating: 6.8,
+ votes: 83797,
+ running_times: 7620,
+ },
+ {
+ title: "Superman III",
+ year: 1983,
+ rating: 4.9,
+ votes: 54869,
+ running_times: 7500,
+ },
+ {
+ title: "Superman IV: The Quest for Peace",
+ year: 1987,
+ rating: 3.7,
+ votes: 36261,
+ running_times: 8040,
+ },
+ {
+ title: "Superman Returns",
+ year: 2006,
+ rating: 6.1,
+ votes: 251227,
+ running_times: 9240,
+ },
+ {
+ title: "Supernova",
+ year: 2000,
+ rating: 4.8,
+ votes: 15455,
+ running_times: 5460,
+ },
+ {
+ title: "Superstar",
+ year: 1999,
+ rating: 5,
+ votes: 15843,
+ running_times: 4860,
+ },
+ {
+ title: "Surf's Up",
+ year: 2007,
+ rating: 6.7,
+ votes: 58422,
+ running_times: 5100,
+ },
+ {
+ title: "Surrogates",
+ year: 2009,
+ rating: 6.3,
+ votes: 158065,
+ running_times: 5340,
+ },
+ {
+ title: "Surveillance",
+ year: 2008,
+ rating: 6.4,
+ votes: 15562,
+ running_times: 5820,
+ },
+ {
+ title: "Survival of the Dead",
+ year: 2009,
+ rating: 4.9,
+ votes: 18505,
+ running_times: 5400,
+ },
+ {
+ title: "Surviving Christmas",
+ year: 2004,
+ rating: 5.4,
+ votes: 19131,
+ running_times: 5460,
+ },
+ {
+ title: "Survivor",
+ year: 2015,
+ rating: 5.6,
+ votes: 25487,
+ running_times: 5760,
+ },
+ {
+ title: "Suspect Zero",
+ year: 2004,
+ rating: 5.9,
+ votes: 17272,
+ running_times: 5940,
+ },
+ {
+ title: "Suspicion",
+ year: 1941,
+ rating: 7.4,
+ votes: 26314,
+ running_times: 5940,
+ },
+ {
+ title: "Suspiria",
+ year: 1977,
+ rating: 7.5,
+ votes: 53227,
+ running_times: 5880,
+ },
+ {
+ title: "Swades: We, the People",
+ year: 2004,
+ rating: 8.3,
+ votes: 67127,
+ running_times: 12600,
+ },
+ {
+ title: "Swamp Thing",
+ year: 1982,
+ rating: 5.4,
+ votes: 10572,
+ running_times: 5580,
+ },
+ {
+ title: "Sweeney Todd: The Demon Barber of Fleet Street",
+ year: 2007,
+ rating: 7.4,
+ votes: 304578,
+ running_times: 6960,
+ },
+ {
+ title: "Sweet Home Alabama",
+ year: 2002,
+ rating: 6.2,
+ votes: 89850,
+ running_times: 6480,
+ },
+ {
+ title: "Sweet November",
+ year: 2001,
+ rating: 6.7,
+ votes: 75538,
+ running_times: 7140,
+ },
+ {
+ title: "Sweet Sixteen",
+ year: 2002,
+ rating: 7.5,
+ votes: 11509,
+ running_times: 6360,
+ },
+ {
+ title: "Sweet Smell of Success",
+ year: 1957,
+ rating: 8.2,
+ votes: 22137,
+ running_times: 5760,
+ },
+ {
+ title: "Sweet and Lowdown",
+ year: 1999,
+ rating: 7.3,
+ votes: 29295,
+ running_times: 5700,
+ },
+ {
+ title: "Swept Away",
+ year: 2002,
+ rating: 3.6,
+ votes: 13837,
+ running_times: 5340,
+ },
+ {
+ title: "Swimfan",
+ year: 2002,
+ rating: 5,
+ votes: 17194,
+ running_times: 5100,
+ },
+ {
+ title: "Swimming Pool",
+ year: 2003,
+ rating: 6.8,
+ votes: 37303,
+ running_times: 6120,
+ },
+ {
+ title: "Swimming with Sharks",
+ year: 1994,
+ rating: 7.1,
+ votes: 20150,
+ running_times: 5580,
+ },
+ {
+ title: "Swing Kids",
+ year: 1993,
+ rating: 6.8,
+ votes: 13991,
+ running_times: 6720,
+ },
+ {
+ title: "Swing Vote",
+ year: 2008,
+ rating: 6.1,
+ votes: 15920,
+ running_times: 7200,
+ },
+ {
+ title: "Swingers",
+ year: 1996,
+ rating: 7.3,
+ votes: 67695,
+ running_times: 5760,
+ },
+ {
+ title: "Swiss Army Man",
+ year: 2016,
+ rating: 7,
+ votes: 73349,
+ running_times: 5820,
+ },
+ {
+ title: "Swiss Family Robinson",
+ year: 1960,
+ rating: 7.2,
+ votes: 11259,
+ running_times: 7560,
+ },
+ {
+ title: "Switchback",
+ year: 1997,
+ rating: 6.4,
+ votes: 10691,
+ running_times: 7080,
+ },
+ {
+ title: "Swordfish",
+ year: 2001,
+ rating: 6.5,
+ votes: 162723,
+ running_times: 5940,
+ },
+ {
+ title: "Sydney",
+ year: 1996,
+ rating: 7.3,
+ votes: 31752,
+ running_times: 6120,
+ },
+ {
+ title: "Sydney White",
+ year: 2007,
+ rating: 6.3,
+ votes: 40517,
+ running_times: 6480,
+ },
+ {
+ title: "Synecdoche, New York",
+ year: 2008,
+ rating: 7.5,
+ votes: 64501,
+ running_times: 7440,
+ },
+ {
+ title: "Syriana",
+ year: 2005,
+ rating: 7,
+ votes: 115584,
+ running_times: 7680,
+ },
+ {
+ title: "Så som i himmelen",
+ year: 2004,
+ rating: 7.6,
+ votes: 14507,
+ running_times: 7980,
+ },
+ {
+ title: "T2 Trainspotting",
+ year: 2017,
+ rating: 7.3,
+ votes: 71133,
+ running_times: 7020,
+ },
+ {
+ title: "THX 1138",
+ year: 1971,
+ rating: 6.8,
+ votes: 42170,
+ running_times: 5280,
+ },
+ { title: "TMNT", year: 2007, rating: 6.3, votes: 56090, running_times: 5220 },
+ {
+ title: "TRON",
+ year: 1982,
+ rating: 6.8,
+ votes: 100273,
+ running_times: 5760,
+ },
+ {
+ title: "Taare Zameen Par",
+ year: 2007,
+ rating: 8.5,
+ votes: 113334,
+ running_times: 9900,
+ },
+ {
+ title: "Table 19",
+ year: 2017,
+ rating: 5.8,
+ votes: 13202,
+ running_times: 5220,
+ },
+ {
+ title: "Take Me Home Tonight",
+ year: 2011,
+ rating: 6.3,
+ votes: 46354,
+ running_times: 5820,
+ },
+ {
+ title: "Take Shelter",
+ year: 2011,
+ rating: 7.4,
+ votes: 77009,
+ running_times: 7260,
+ },
+ {
+ title: "Take This Waltz",
+ year: 2011,
+ rating: 6.6,
+ votes: 24404,
+ running_times: 6960,
+ },
+ {
+ title: "Take the Lead",
+ year: 2006,
+ rating: 6.7,
+ votes: 22877,
+ running_times: 7080,
+ },
+ {
+ title: "Take the Money and Run",
+ year: 1969,
+ rating: 7.3,
+ votes: 24562,
+ running_times: 5100,
+ },
+ {
+ title: "Taken",
+ year: 2008,
+ rating: 7.8,
+ votes: 513482,
+ running_times: 5580,
+ },
+ {
+ title: "Taken 2",
+ year: 2012,
+ rating: 6.3,
+ votes: 257220,
+ running_times: 5880,
+ },
+ {
+ title: "Taken 3",
+ year: 2014,
+ rating: 6,
+ votes: 151174,
+ running_times: 6900,
+ },
+ {
+ title: "Takers",
+ year: 2010,
+ rating: 6.2,
+ votes: 50191,
+ running_times: 6420,
+ },
+ {
+ title: "Taking Lives",
+ year: 2004,
+ rating: 6.2,
+ votes: 69873,
+ running_times: 6540,
+ },
+ {
+ title: "Taking Woodstock",
+ year: 2009,
+ rating: 6.7,
+ votes: 26011,
+ running_times: 7200,
+ },
+ {
+ title: "Talaash",
+ year: 2012,
+ rating: 7.3,
+ votes: 32847,
+ running_times: 8400,
+ },
+ {
+ title: "Tales from the Crypt: Demon Knight",
+ year: 1995,
+ rating: 6.7,
+ votes: 17987,
+ running_times: 5520,
+ },
+ {
+ title: "Tales from the Darkside: The Movie",
+ year: 1990,
+ rating: 6.2,
+ votes: 12283,
+ running_times: 5580,
+ },
+ {
+ title: "Talk Radio",
+ year: 1988,
+ rating: 7.3,
+ votes: 10822,
+ running_times: 6600,
+ },
+ {
+ title: "Talladega Nights: The Ballad of Ricky Bobby",
+ year: 2006,
+ rating: 6.6,
+ votes: 141841,
+ running_times: 7320,
+ },
+ {
+ title: "Tallulah",
+ year: 2016,
+ rating: 6.8,
+ votes: 11732,
+ running_times: 6660,
+ },
+ {
+ title: "Tamara Drewe",
+ year: 2010,
+ rating: 6.2,
+ votes: 18287,
+ running_times: 6540,
+ },
+ {
+ title: "También la lluvia",
+ year: 2010,
+ rating: 7.5,
+ votes: 10848,
+ running_times: 6180,
+ },
+ {
+ title: "Tammy",
+ year: 2014,
+ rating: 4.9,
+ votes: 40482,
+ running_times: 6000,
+ },
+ {
+ title: "Tangerine",
+ year: 2015,
+ rating: 7.1,
+ votes: 17459,
+ running_times: 5280,
+ },
+ {
+ title: "Tangled",
+ year: 2010,
+ rating: 7.8,
+ votes: 330137,
+ running_times: 6000,
+ },
+ {
+ title: "Tangled Ever After",
+ year: 2012,
+ rating: 7.7,
+ votes: 14090,
+ running_times: 360,
+ },
+ {
+ title: "Tango & Cash",
+ year: 1989,
+ rating: 6.3,
+ votes: 82157,
+ running_times: 6240,
+ },
+ {
+ title: "Tank Girl",
+ year: 1995,
+ rating: 5.3,
+ votes: 26488,
+ running_times: 6240,
+ },
+ { title: "Tape", year: 2001, rating: 7.3, votes: 16803, running_times: 5160 },
+ { title: "Taps", year: 1981, rating: 6.7, votes: 14164, running_times: 7560 },
+ {
+ title: "Tarzan",
+ year: 1999,
+ rating: 7.2,
+ votes: 163076,
+ running_times: 5280,
+ },
+ {
+ title: "Tarzan",
+ year: 2013,
+ rating: 4.8,
+ votes: 11169,
+ running_times: 5640,
+ },
+ { title: "Taxi", year: 2004, rating: 4.4, votes: 35435, running_times: 6240 },
+ {
+ title: "Taxi Driver",
+ year: 1976,
+ rating: 8.3,
+ votes: 571416,
+ running_times: 6780,
+ },
+ {
+ title: "Taxi to the Dark Side",
+ year: 2007,
+ rating: 7.6,
+ votes: 12445,
+ running_times: 6360,
+ },
+ {
+ title: "Taxidermia",
+ year: 2006,
+ rating: 7,
+ votes: 14280,
+ running_times: 5460,
+ },
+ {
+ title: "Te wu mi cheng",
+ year: 2001,
+ rating: 5.9,
+ votes: 13830,
+ running_times: 6480,
+ },
+ {
+ title: "Teaching Mrs. Tingle",
+ year: 1999,
+ rating: 5.2,
+ votes: 18065,
+ running_times: 5760,
+ },
+ {
+ title: "Team America: World Police",
+ year: 2004,
+ rating: 7.2,
+ votes: 143954,
+ running_times: 5880,
+ },
+ {
+ title: "Tears of the Sun",
+ year: 2003,
+ rating: 6.6,
+ votes: 100114,
+ running_times: 8520,
+ },
+ { title: "Ted", year: 2012, rating: 7, votes: 507957, running_times: 6720 },
+ {
+ title: "Ted 2",
+ year: 2015,
+ rating: 6.3,
+ votes: 146086,
+ running_times: 7500,
+ },
+ {
+ title: "Teen Wolf",
+ year: 1985,
+ rating: 6,
+ votes: 38362,
+ running_times: 5460,
+ },
+ {
+ title: "Teenage Mutant Ninja Turtles",
+ year: 1990,
+ rating: 6.7,
+ votes: 74041,
+ running_times: 5580,
+ },
+ {
+ title: "Teenage Mutant Ninja Turtles",
+ year: 2014,
+ rating: 5.8,
+ votes: 183023,
+ running_times: 6060,
+ },
+ {
+ title: "Teenage Mutant Ninja Turtles II: The Secret of the Ooze",
+ year: 1991,
+ rating: 6,
+ votes: 45238,
+ running_times: 5280,
+ },
+ {
+ title: "Teenage Mutant Ninja Turtles III",
+ year: 1993,
+ rating: 4.8,
+ votes: 26894,
+ running_times: 5760,
+ },
+ {
+ title: "Teenage Mutant Ninja Turtles: Out of the Shadows",
+ year: 2016,
+ rating: 6,
+ votes: 66805,
+ running_times: 6720,
+ },
+ {
+ title: "Teeth",
+ year: 2007,
+ rating: 5.4,
+ votes: 36765,
+ running_times: 5640,
+ },
+ {
+ title: "Tekken",
+ year: 2010,
+ rating: 4.8,
+ votes: 23706,
+ running_times: 5520,
+ },
+ {
+ title: "Temptation: Confessions of a Marriage Counselor",
+ year: 2013,
+ rating: 5,
+ votes: 10536,
+ running_times: 6660,
+ },
+ {
+ title: "Ten Inch Hero",
+ year: 2007,
+ rating: 7.5,
+ votes: 10805,
+ running_times: 6120,
+ },
+ {
+ title: "Tenacious D in The Pick of Destiny",
+ year: 2006,
+ rating: 6.8,
+ votes: 91597,
+ running_times: 5580,
+ },
+ {
+ title: "Tenebre",
+ year: 1982,
+ rating: 7.2,
+ votes: 16000,
+ running_times: 6060,
+ },
+ {
+ title: "Tequila Sunrise",
+ year: 1988,
+ rating: 6,
+ votes: 24950,
+ running_times: 6900,
+ },
+ {
+ title: "Terminal Velocity",
+ year: 1994,
+ rating: 5.4,
+ votes: 11461,
+ running_times: 6120,
+ },
+ {
+ title: "Terminator 2: Judgment Day",
+ year: 1991,
+ rating: 8.5,
+ votes: 824332,
+ running_times: 9360,
+ },
+ {
+ title: "Terminator 3: Rise of the Machines",
+ year: 2003,
+ rating: 6.3,
+ votes: 328905,
+ running_times: 6540,
+ },
+ {
+ title: "Terminator Genisys",
+ year: 2015,
+ rating: 6.5,
+ votes: 215687,
+ running_times: 7560,
+ },
+ {
+ title: "Terminator Salvation",
+ year: 2009,
+ rating: 6.6,
+ votes: 304237,
+ running_times: 7080,
+ },
+ {
+ title: "Terms of Endearment",
+ year: 1983,
+ rating: 7.4,
+ votes: 44741,
+ running_times: 7920,
+ },
+ {
+ title: "Terra",
+ year: 2007,
+ rating: 6.6,
+ votes: 10448,
+ running_times: 5100,
+ },
+ {
+ title: "Tess",
+ year: 1979,
+ rating: 7.3,
+ votes: 12322,
+ running_times: 11160,
+ },
+ {
+ title: "Testament of Youth",
+ year: 2014,
+ rating: 7.3,
+ votes: 19729,
+ running_times: 7800,
+ },
+ {
+ title: "Tetro",
+ year: 2009,
+ rating: 6.9,
+ votes: 11124,
+ running_times: 7620,
+ },
+ {
+ title: "Texas Chainsaw 3D",
+ year: 2013,
+ rating: 4.8,
+ votes: 38655,
+ running_times: 5520,
+ },
+ {
+ title: "Texas Killing Fields",
+ year: 2011,
+ rating: 5.7,
+ votes: 16211,
+ running_times: 6300,
+ },
+ {
+ title: "Thank You for Smoking",
+ year: 2005,
+ rating: 7.6,
+ votes: 199541,
+ running_times: 5520,
+ },
+ {
+ title: "Thanks for Sharing",
+ year: 2012,
+ rating: 6.4,
+ votes: 22550,
+ running_times: 6720,
+ },
+ {
+ title: "That Awkward Moment",
+ year: 2014,
+ rating: 6.2,
+ votes: 84885,
+ running_times: 5640,
+ },
+ {
+ title: "That Thing You Do!",
+ year: 1996,
+ rating: 6.9,
+ votes: 53878,
+ running_times: 8940,
+ },
+ {
+ title: "That's My Boy",
+ year: 2012,
+ rating: 5.6,
+ votes: 76768,
+ running_times: 6960,
+ },
+ {
+ title: "The 'Burbs",
+ year: 1989,
+ rating: 6.9,
+ votes: 56541,
+ running_times: 6060,
+ },
+ {
+ title: "The 13th Warrior",
+ year: 1999,
+ rating: 6.6,
+ votes: 106127,
+ running_times: 6120,
+ },
+ {
+ title: "The 33",
+ year: 2015,
+ rating: 6.9,
+ votes: 28594,
+ running_times: 7620,
+ },
+ {
+ title: "The 39 Steps",
+ year: 1935,
+ rating: 7.8,
+ votes: 43400,
+ running_times: 5160,
+ },
+ {
+ title: "The 40 Year Old Virgin",
+ year: 2005,
+ rating: 7.1,
+ votes: 337621,
+ running_times: 7980,
+ },
+ {
+ title: "The 51st State",
+ year: 2001,
+ rating: 6.3,
+ votes: 44500,
+ running_times: 5580,
+ },
+ {
+ title: "The 5th Wave",
+ year: 2016,
+ rating: 5.2,
+ votes: 78607,
+ running_times: 6720,
+ },
+ {
+ title: "The 6th Day",
+ year: 2000,
+ rating: 5.9,
+ votes: 105516,
+ running_times: 7380,
+ },
+ {
+ title: "The A-Team",
+ year: 2010,
+ rating: 6.8,
+ votes: 224171,
+ running_times: 7980,
+ },
+ {
+ title: "The ABCs of Death",
+ year: 2012,
+ rating: 4.7,
+ votes: 15744,
+ running_times: 7740,
+ },
+ {
+ title: "The Abandoned",
+ year: 2006,
+ rating: 5.6,
+ votes: 11545,
+ running_times: 5940,
+ },
+ {
+ title: "The Abominable Dr. Phibes",
+ year: 1971,
+ rating: 7.2,
+ votes: 11188,
+ running_times: 5640,
+ },
+ {
+ title: "The Abyss",
+ year: 1989,
+ rating: 7.6,
+ votes: 141969,
+ running_times: 10260,
+ },
+ {
+ title: "The Accidental Husband",
+ year: 2008,
+ rating: 5.6,
+ votes: 20747,
+ running_times: 5400,
+ },
+ {
+ title: "The Accidental Tourist",
+ year: 1988,
+ rating: 6.8,
+ votes: 13149,
+ running_times: 7260,
+ },
+ {
+ title: "The Accountant",
+ year: 2016,
+ rating: 7.4,
+ votes: 198484,
+ running_times: 7680,
+ },
+ {
+ title: "The Accused",
+ year: 1988,
+ rating: 7.1,
+ votes: 26442,
+ running_times: 6660,
+ },
+ {
+ title: "The Act of Killing",
+ year: 2012,
+ rating: 8.2,
+ votes: 28060,
+ running_times: 9600,
+ },
+ {
+ title: "The Addams Family",
+ year: 1991,
+ rating: 6.8,
+ votes: 106391,
+ running_times: 5940,
+ },
+ {
+ title: "The Adjustment Bureau",
+ year: 2011,
+ rating: 7.1,
+ votes: 213923,
+ running_times: 6360,
+ },
+ {
+ title: "The Adventures of Baron Munchausen",
+ year: 1988,
+ rating: 7.2,
+ votes: 44289,
+ running_times: 7560,
+ },
+ {
+ title: "The Adventures of Bob & Doug McKenzie: Strange Brew",
+ year: 1983,
+ rating: 6.8,
+ votes: 13716,
+ running_times: 5400,
+ },
+ {
+ title: "The Adventures of Buckaroo Banzai Across the 8th Dimension",
+ year: 1984,
+ rating: 6.4,
+ votes: 19401,
+ running_times: 6180,
+ },
+ {
+ title: "The Adventures of Ford Fairlane",
+ year: 1990,
+ rating: 6.3,
+ votes: 15293,
+ running_times: 6240,
+ },
+ {
+ title: "The Adventures of Pluto Nash",
+ year: 2002,
+ rating: 3.8,
+ votes: 21371,
+ running_times: 5700,
+ },
+ {
+ title: "The Adventures of Priscilla, Queen of the Desert",
+ year: 1994,
+ rating: 7.5,
+ votes: 39960,
+ running_times: 6240,
+ },
+ {
+ title: "The Adventures of Robin Hood",
+ year: 1938,
+ rating: 8,
+ votes: 41275,
+ running_times: 6120,
+ },
+ {
+ title: "The Adventures of Rocky & Bullwinkle",
+ year: 2000,
+ rating: 4.2,
+ votes: 17533,
+ running_times: 5520,
+ },
+ {
+ title: "The Adventures of Sharkboy and Lavagirl 3-D",
+ year: 2005,
+ rating: 3.5,
+ votes: 23046,
+ running_times: 5580,
+ },
+ {
+ title: "The Adventures of Tintin",
+ year: 2011,
+ rating: 7.4,
+ votes: 189928,
+ running_times: 6420,
+ },
+ {
+ title: "The African Queen",
+ year: 1951,
+ rating: 7.9,
+ votes: 62420,
+ running_times: 6300,
+ },
+ {
+ title: "The Age of Adaline",
+ year: 2015,
+ rating: 7.2,
+ votes: 121718,
+ running_times: 6720,
+ },
+ {
+ title: "The Age of Innocence",
+ year: 1993,
+ rating: 7.2,
+ votes: 39664,
+ running_times: 8340,
+ },
+ {
+ title: "The Air I Breathe",
+ year: 2007,
+ rating: 6.9,
+ votes: 32248,
+ running_times: 5700,
+ },
+ {
+ title: "The Alamo",
+ year: 1960,
+ rating: 6.9,
+ votes: 11909,
+ running_times: 12180,
+ },
+ {
+ title: "The Alamo",
+ year: 2004,
+ rating: 6,
+ votes: 17754,
+ running_times: 8220,
+ },
+ {
+ title: "The Amazing Spider-Man",
+ year: 2012,
+ rating: 7,
+ votes: 489511,
+ running_times: 8160,
+ },
+ {
+ title: "The Amazing Spider-Man 2",
+ year: 2014,
+ rating: 6.7,
+ votes: 356578,
+ running_times: 8520,
+ },
+ {
+ title: "The American",
+ year: 2010,
+ rating: 6.3,
+ votes: 83595,
+ running_times: 6300,
+ },
+ {
+ title: "The American President",
+ year: 1995,
+ rating: 6.8,
+ votes: 45620,
+ running_times: 6840,
+ },
+ {
+ title: "The Amityville Horror",
+ year: 1979,
+ rating: 6.2,
+ votes: 30078,
+ running_times: 7020,
+ },
+ {
+ title: "The Amityville Horror",
+ year: 2005,
+ rating: 6,
+ votes: 92636,
+ running_times: 5400,
+ },
+ {
+ title: "The Andromeda Strain",
+ year: 1971,
+ rating: 7.2,
+ votes: 28205,
+ running_times: 7860,
+ },
+ {
+ title: "The Angels' Share",
+ year: 2012,
+ rating: 7,
+ votes: 20149,
+ running_times: 6060,
+ },
+ {
+ title: "The Angriest Man in Brooklyn",
+ year: 2014,
+ rating: 5.7,
+ votes: 18298,
+ running_times: 4980,
+ },
+ {
+ title: "The Animal",
+ year: 2001,
+ rating: 4.8,
+ votes: 50589,
+ running_times: 5040,
+ },
+ {
+ title: "The Ant Bully",
+ year: 2006,
+ rating: 5.9,
+ votes: 32279,
+ running_times: 5280,
+ },
+ {
+ title: "The Apartment",
+ year: 1960,
+ rating: 8.3,
+ votes: 124560,
+ running_times: 7500,
+ },
+ {
+ title: "The Apostle",
+ year: 1997,
+ rating: 7.2,
+ votes: 12080,
+ running_times: 8040,
+ },
+ {
+ title: "The Apparition",
+ year: 2012,
+ rating: 4.1,
+ votes: 17285,
+ running_times: 4980,
+ },
+ {
+ title: "The AristoCats",
+ year: 1970,
+ rating: 7.1,
+ votes: 73750,
+ running_times: 4680,
+ },
+ {
+ title: "The Aristocrats",
+ year: 2005,
+ rating: 6.4,
+ votes: 15362,
+ running_times: 5340,
+ },
+ {
+ title: "The Arrival",
+ year: 1996,
+ rating: 6.3,
+ votes: 27998,
+ running_times: 6900,
+ },
+ {
+ title: "The Art of Getting By",
+ year: 2011,
+ rating: 6.6,
+ votes: 50390,
+ running_times: 4980,
+ },
+ {
+ title: "The Art of War",
+ year: 2000,
+ rating: 5.7,
+ votes: 26345,
+ running_times: 7020,
+ },
+ {
+ title: "The Art of the Steal",
+ year: 2013,
+ rating: 6.3,
+ votes: 20660,
+ running_times: 5400,
+ },
+ {
+ title: "The Artist",
+ year: 2011,
+ rating: 7.9,
+ votes: 204685,
+ running_times: 6000,
+ },
+ {
+ title: "The Asphalt Jungle",
+ year: 1950,
+ rating: 7.9,
+ votes: 19607,
+ running_times: 6720,
+ },
+ {
+ title: "The Assassination of Jesse James by the Coward Robert Ford",
+ year: 2007,
+ rating: 7.5,
+ votes: 148086,
+ running_times: 9600,
+ },
+ {
+ title: "The Assassination of Richard Nixon",
+ year: 2004,
+ rating: 7,
+ votes: 24037,
+ running_times: 5700,
+ },
+ {
+ title: "The Astronaut Farmer",
+ year: 2006,
+ rating: 6.3,
+ votes: 20721,
+ running_times: 6240,
+ },
+ {
+ title: "The Astronaut's Wife",
+ year: 1999,
+ rating: 5.3,
+ votes: 48379,
+ running_times: 6540,
+ },
+ {
+ title: "The Autopsy of Jane Doe",
+ year: 2016,
+ rating: 6.8,
+ votes: 53254,
+ running_times: 5160,
+ },
+ {
+ title: "The Avengers",
+ year: 1998,
+ rating: 3.7,
+ votes: 36996,
+ running_times: 6900,
+ },
+ {
+ title: "The Avengers",
+ year: 2012,
+ rating: 8.1,
+ votes: 1076167,
+ running_times: 10380,
+ },
+ {
+ title: "The Aviator",
+ year: 2004,
+ rating: 7.5,
+ votes: 287186,
+ running_times: 10200,
+ },
+ {
+ title: "The Awakening",
+ year: 2011,
+ rating: 6.5,
+ votes: 56034,
+ running_times: 6120,
+ },
+ {
+ title: "The Awful Truth",
+ year: 1937,
+ rating: 7.9,
+ votes: 14615,
+ running_times: 5460,
+ },
+ {
+ title: "The BFG",
+ year: 2016,
+ rating: 6.4,
+ votes: 58384,
+ running_times: 7020,
+ },
+ {
+ title: "The Babadook",
+ year: 2014,
+ rating: 6.8,
+ votes: 145814,
+ running_times: 5580,
+ },
+ {
+ title: "The Babysitter",
+ year: 2017,
+ rating: 6.4,
+ votes: 23750,
+ running_times: 5100,
+ },
+ {
+ title: "The Bachelor",
+ year: 1999,
+ rating: 5,
+ votes: 15389,
+ running_times: 6060,
+ },
+ {
+ title: "The Back-up Plan",
+ year: 2010,
+ rating: 5.3,
+ votes: 43572,
+ running_times: 6240,
+ },
+ {
+ title: "The Bad Batch",
+ year: 2016,
+ rating: 5.3,
+ votes: 12315,
+ running_times: 7080,
+ },
+ {
+ title: "The Bad Lieutenant: Port of Call - New Orleans",
+ year: 2009,
+ rating: 6.7,
+ votes: 67911,
+ running_times: 7320,
+ },
+ {
+ title: "The Bad News Bears",
+ year: 1976,
+ rating: 7.3,
+ votes: 17548,
+ running_times: 6120,
+ },
+ {
+ title: "The Bad Seed",
+ year: 1956,
+ rating: 7.5,
+ votes: 10625,
+ running_times: 7740,
+ },
+ {
+ title: "The Bad and the Beautiful",
+ year: 1952,
+ rating: 7.9,
+ votes: 10767,
+ running_times: 7080,
+ },
+ {
+ title: "The Bag Man",
+ year: 2014,
+ rating: 5.3,
+ votes: 14481,
+ running_times: 6480,
+ },
+ {
+ title: "The Banger Sisters",
+ year: 2002,
+ rating: 5.6,
+ votes: 13118,
+ running_times: 5880,
+ },
+ {
+ title: "The Bank Job",
+ year: 2008,
+ rating: 7.3,
+ votes: 159896,
+ running_times: 6660,
+ },
+ {
+ title: "The Basketball Diaries",
+ year: 1995,
+ rating: 7.3,
+ votes: 87598,
+ running_times: 6120,
+ },
+ {
+ title: "The Bay",
+ year: 2012,
+ rating: 5.6,
+ votes: 21848,
+ running_times: 5040,
+ },
+ {
+ title: "The Baytown Outlaws",
+ year: 2012,
+ rating: 6.4,
+ votes: 12067,
+ running_times: 5880,
+ },
+ {
+ title: "The Beach",
+ year: 2000,
+ rating: 6.6,
+ votes: 193605,
+ running_times: 7140,
+ },
+ {
+ title: "The Beastmaster",
+ year: 1982,
+ rating: 6.2,
+ votes: 16843,
+ running_times: 7080,
+ },
+ {
+ title: "The Beaver",
+ year: 2011,
+ rating: 6.7,
+ votes: 42970,
+ running_times: 5460,
+ },
+ {
+ title: "The Beguiled",
+ year: 1971,
+ rating: 7.2,
+ votes: 12372,
+ running_times: 6300,
+ },
+ {
+ title: "The Beguiled",
+ year: 2017,
+ rating: 6.5,
+ votes: 25372,
+ running_times: 5580,
+ },
+ {
+ title: "The Believer",
+ year: 2001,
+ rating: 7.2,
+ votes: 32765,
+ running_times: 5880,
+ },
+ {
+ title: "The Belko Experiment",
+ year: 2016,
+ rating: 6.1,
+ votes: 26349,
+ running_times: 5340,
+ },
+ {
+ title: "The Benchwarmers",
+ year: 2006,
+ rating: 5.6,
+ votes: 43224,
+ running_times: 4800,
+ },
+ {
+ title: "The Best Exotic Marigold Hotel",
+ year: 2011,
+ rating: 7.3,
+ votes: 80701,
+ running_times: 7440,
+ },
+ {
+ title: "The Best Man Holiday",
+ year: 2013,
+ rating: 6.7,
+ votes: 12444,
+ running_times: 7380,
+ },
+ {
+ title: "The Best Years of Our Lives",
+ year: 1946,
+ rating: 8.1,
+ votes: 45211,
+ running_times: 10200,
+ },
+ {
+ title: "The Best of Me",
+ year: 2014,
+ rating: 6.7,
+ votes: 52301,
+ running_times: 7080,
+ },
+ {
+ title: "The Beverly Hillbillies",
+ year: 1993,
+ rating: 4.9,
+ votes: 15413,
+ running_times: 5520,
+ },
+ {
+ title: "The Big Bounce",
+ year: 2004,
+ rating: 4.9,
+ votes: 16572,
+ running_times: 5280,
+ },
+ {
+ title: "The Big Chill",
+ year: 1983,
+ rating: 7.2,
+ votes: 27814,
+ running_times: 6300,
+ },
+ {
+ title: "The Big Country",
+ year: 1958,
+ rating: 7.9,
+ votes: 12621,
+ running_times: 9960,
+ },
+ {
+ title: "The Big Easy",
+ year: 1986,
+ rating: 6.6,
+ votes: 10097,
+ running_times: 6120,
+ },
+ {
+ title: "The Big Heat",
+ year: 1953,
+ rating: 8,
+ votes: 18479,
+ running_times: 5400,
+ },
+ {
+ title: "The Big Hit",
+ year: 1998,
+ rating: 6.1,
+ votes: 25926,
+ running_times: 5460,
+ },
+ {
+ title: "The Big Kahuna",
+ year: 1999,
+ rating: 6.6,
+ votes: 12791,
+ running_times: 5400,
+ },
+ {
+ title: "The Big Lebowski",
+ year: 1998,
+ rating: 8.2,
+ votes: 601049,
+ running_times: 7020,
+ },
+ {
+ title: "The Big Red One",
+ year: 1980,
+ rating: 7.2,
+ votes: 16487,
+ running_times: 9720,
+ },
+ {
+ title: "The Big Short",
+ year: 2015,
+ rating: 7.8,
+ votes: 267728,
+ running_times: 7800,
+ },
+ {
+ title: "The Big Sick",
+ year: 2017,
+ rating: 7.7,
+ votes: 53386,
+ running_times: 7200,
+ },
+ {
+ title: "The Big Sleep",
+ year: 1946,
+ rating: 8,
+ votes: 69100,
+ running_times: 6960,
+ },
+ {
+ title: "The Big Wedding",
+ year: 2013,
+ rating: 5.6,
+ votes: 41213,
+ running_times: 5340,
+ },
+ {
+ title: "The Big White",
+ year: 2005,
+ rating: 6.4,
+ votes: 12913,
+ running_times: 6300,
+ },
+ {
+ title: "The Big Year",
+ year: 2011,
+ rating: 6.2,
+ votes: 37408,
+ running_times: 6000,
+ },
+ {
+ title: "The Birdcage",
+ year: 1996,
+ rating: 7,
+ votes: 67196,
+ running_times: 7020,
+ },
+ {
+ title: "The Birds",
+ year: 1963,
+ rating: 7.7,
+ votes: 142556,
+ running_times: 7140,
+ },
+ {
+ title: "The Birth of a Nation",
+ year: 2016,
+ rating: 6.3,
+ votes: 15740,
+ running_times: 7200,
+ },
+ {
+ title: "The Bishop's Wife",
+ year: 1947,
+ rating: 7.6,
+ votes: 11115,
+ running_times: 6540,
+ },
+ {
+ title: "The Black Cauldron",
+ year: 1985,
+ rating: 6.5,
+ votes: 24726,
+ running_times: 4800,
+ },
+ {
+ title: "The Black Dahlia",
+ year: 2006,
+ rating: 5.6,
+ votes: 65934,
+ running_times: 7260,
+ },
+ {
+ title: "The Black Hole",
+ year: 1979,
+ rating: 5.9,
+ votes: 19648,
+ running_times: 5880,
+ },
+ {
+ title: "The Blair Witch Project",
+ year: 1999,
+ rating: 6.4,
+ votes: 204574,
+ running_times: 5280,
+ },
+ {
+ title: "The Blind Side",
+ year: 2009,
+ rating: 7.7,
+ votes: 245570,
+ running_times: 7740,
+ },
+ {
+ title: "The Bling Ring",
+ year: 2013,
+ rating: 5.6,
+ votes: 73490,
+ running_times: 5400,
+ },
+ {
+ title: "The Blob",
+ year: 1958,
+ rating: 6.4,
+ votes: 18288,
+ running_times: 5160,
+ },
+ {
+ title: "The Blob",
+ year: 1988,
+ rating: 6.4,
+ votes: 25457,
+ running_times: 5700,
+ },
+ {
+ title: "The Blue Lagoon",
+ year: 1980,
+ rating: 5.7,
+ votes: 54458,
+ running_times: 6240,
+ },
+ {
+ title: "The Blues Brothers",
+ year: 1980,
+ rating: 7.9,
+ votes: 155256,
+ running_times: 8880,
+ },
+ {
+ title: "The Boat That Rocked",
+ year: 2009,
+ rating: 7.4,
+ votes: 96541,
+ running_times: 8100,
+ },
+ {
+ title: "The Bodyguard",
+ year: 1992,
+ rating: 6.2,
+ votes: 99144,
+ running_times: 7740,
+ },
+ {
+ title: "The Bone Collector",
+ year: 1999,
+ rating: 6.7,
+ votes: 131239,
+ running_times: 7080,
+ },
+ {
+ title: "The Bonfire of the Vanities",
+ year: 1990,
+ rating: 5.5,
+ votes: 19027,
+ running_times: 7500,
+ },
+ {
+ title: "The Book Thief",
+ year: 2013,
+ rating: 7.6,
+ votes: 110378,
+ running_times: 7860,
+ },
+ {
+ title: "The Book of Eli",
+ year: 2010,
+ rating: 6.9,
+ votes: 249346,
+ running_times: 7080,
+ },
+ {
+ title: "The Book of Life",
+ year: 2014,
+ rating: 7.3,
+ votes: 53590,
+ running_times: 5700,
+ },
+ {
+ title: "The Boondock Saints",
+ year: 1999,
+ rating: 7.9,
+ votes: 208050,
+ running_times: 6480,
+ },
+ {
+ title: "The Boondock Saints II: All Saints Day",
+ year: 2009,
+ rating: 6.3,
+ votes: 56167,
+ running_times: 8280,
+ },
+ {
+ title: "The Borrowers",
+ year: 1997,
+ rating: 5.8,
+ votes: 17522,
+ running_times: 5340,
+ },
+ {
+ title: "The Boss",
+ year: 2016,
+ rating: 5.4,
+ votes: 32380,
+ running_times: 6240,
+ },
+ {
+ title: "The Boss Baby",
+ year: 2017,
+ rating: 6.4,
+ votes: 63831,
+ running_times: 5820,
+ },
+ {
+ title: "The Bounty",
+ year: 1984,
+ rating: 7.1,
+ votes: 19851,
+ running_times: 7920,
+ },
+ {
+ title: "The Bounty Hunter",
+ year: 2010,
+ rating: 5.5,
+ votes: 104853,
+ running_times: 6600,
+ },
+ {
+ title: "The Bourne Identity",
+ year: 2002,
+ rating: 7.9,
+ votes: 446706,
+ running_times: 7140,
+ },
+ {
+ title: "The Bourne Legacy",
+ year: 2012,
+ rating: 6.7,
+ votes: 252525,
+ running_times: 8100,
+ },
+ {
+ title: "The Bourne Supremacy",
+ year: 2004,
+ rating: 7.8,
+ votes: 383149,
+ running_times: 6480,
+ },
+ {
+ title: "The Bourne Ultimatum",
+ year: 2007,
+ rating: 8.1,
+ votes: 543338,
+ running_times: 6900,
+ },
+ {
+ title: "The Box",
+ year: 2009,
+ rating: 5.6,
+ votes: 81032,
+ running_times: 6900,
+ },
+ {
+ title: "The Boxer",
+ year: 1997,
+ rating: 7.1,
+ votes: 15626,
+ running_times: 6780,
+ },
+ {
+ title: "The Boxtrolls",
+ year: 2014,
+ rating: 6.8,
+ votes: 47051,
+ running_times: 5760,
+ },
+ {
+ title: "The Boy",
+ year: 2016,
+ rating: 6,
+ votes: 57479,
+ running_times: 5820,
+ },
+ {
+ title: "The Boy Next Door",
+ year: 2015,
+ rating: 4.7,
+ votes: 31552,
+ running_times: 5460,
+ },
+ {
+ title: "The Boy in the Striped Pyjamas",
+ year: 2008,
+ rating: 7.8,
+ votes: 152019,
+ running_times: 5640,
+ },
+ {
+ title: "The Boys from Brazil",
+ year: 1978,
+ rating: 7,
+ votes: 22147,
+ running_times: 7500,
+ },
+ {
+ title: "The Brady Bunch Movie",
+ year: 1995,
+ rating: 5.9,
+ votes: 18341,
+ running_times: 5400,
+ },
+ {
+ title: "The Brass Teapot",
+ year: 2012,
+ rating: 6.4,
+ votes: 12898,
+ running_times: 6060,
+ },
+ {
+ title: "The Brave Little Toaster",
+ year: 1987,
+ rating: 7.3,
+ votes: 21079,
+ running_times: 5400,
+ },
+ {
+ title: "The Brave One",
+ year: 2007,
+ rating: 6.8,
+ votes: 53271,
+ running_times: 7320,
+ },
+ {
+ title: "The Break-Up",
+ year: 2006,
+ rating: 5.8,
+ votes: 109364,
+ running_times: 6360,
+ },
+ {
+ title: "The Breakfast Club",
+ year: 1985,
+ rating: 7.9,
+ votes: 288451,
+ running_times: 5820,
+ },
+ {
+ title: "The Breed",
+ year: 2006,
+ rating: 5.1,
+ votes: 10967,
+ running_times: 5460,
+ },
+ {
+ title: "The Bridge",
+ year: 2006,
+ rating: 7.3,
+ votes: 10012,
+ running_times: 5640,
+ },
+ {
+ title: "The Bridge on the River Kwai",
+ year: 1957,
+ rating: 8.2,
+ votes: 166597,
+ running_times: 9660,
+ },
+ {
+ title: "The Bridges of Madison County",
+ year: 1995,
+ rating: 7.6,
+ votes: 59681,
+ running_times: 8100,
+ },
+ {
+ title: "The Broken Circle Breakdown",
+ year: 2012,
+ rating: 7.8,
+ votes: 33487,
+ running_times: 6660,
+ },
+ {
+ title: "The Brood",
+ year: 1979,
+ rating: 6.9,
+ votes: 20386,
+ running_times: 5520,
+ },
+ {
+ title: "The Brothers Bloom",
+ year: 2008,
+ rating: 6.8,
+ votes: 44152,
+ running_times: 6840,
+ },
+ {
+ title: "The Brothers Grimm",
+ year: 2005,
+ rating: 5.9,
+ votes: 104533,
+ running_times: 7080,
+ },
+ {
+ title: "The Brown Bunny",
+ year: 2003,
+ rating: 5,
+ votes: 12246,
+ running_times: 5580,
+ },
+ {
+ title: "The Bucket List",
+ year: 2007,
+ rating: 7.4,
+ votes: 200761,
+ running_times: 5820,
+ },
+ {
+ title: "The Burning",
+ year: 1981,
+ rating: 6.5,
+ votes: 12063,
+ running_times: 5460,
+ },
+ {
+ title: "The Burning Plain",
+ year: 2008,
+ rating: 6.8,
+ votes: 16532,
+ running_times: 6660,
+ },
+ {
+ title: "The Business",
+ year: 2005,
+ rating: 6.7,
+ votes: 11837,
+ running_times: 5820,
+ },
+ {
+ title: "The Butler",
+ year: 2013,
+ rating: 7.2,
+ votes: 95749,
+ running_times: 7920,
+ },
+ {
+ title: "The Butterfly Effect",
+ year: 2004,
+ rating: 7.7,
+ votes: 391975,
+ running_times: 7200,
+ },
+ {
+ title: "The Butterfly Effect 3: Revelations",
+ year: 2009,
+ rating: 5.6,
+ votes: 16592,
+ running_times: 6300,
+ },
+ {
+ title: "The Bye Bye Man",
+ year: 2017,
+ rating: 4.3,
+ votes: 11949,
+ running_times: 6060,
+ },
+ {
+ title: "The Cabin in the Woods",
+ year: 2012,
+ rating: 7,
+ votes: 308636,
+ running_times: 5700,
+ },
+ {
+ title: "The Cable Guy",
+ year: 1996,
+ rating: 6.1,
+ votes: 132035,
+ running_times: 5760,
+ },
+ {
+ title: "The Caine Mutiny",
+ year: 1954,
+ rating: 7.9,
+ votes: 21348,
+ running_times: 7500,
+ },
+ {
+ title: "The Call",
+ year: 2013,
+ rating: 6.7,
+ votes: 96999,
+ running_times: 5640,
+ },
+ {
+ title: "The Campaign",
+ year: 2012,
+ rating: 6.1,
+ votes: 112910,
+ running_times: 5760,
+ },
+ {
+ title: "The Canal",
+ year: 2014,
+ rating: 5.9,
+ votes: 10928,
+ running_times: 5520,
+ },
+ {
+ title: "The Cannonball Run",
+ year: 1981,
+ rating: 6.2,
+ votes: 27997,
+ running_times: 5700,
+ },
+ {
+ title: "The Captive",
+ year: 2014,
+ rating: 5.9,
+ votes: 22667,
+ running_times: 6720,
+ },
+ {
+ title: "The Castle",
+ year: 1997,
+ rating: 7.7,
+ votes: 12869,
+ running_times: 5100,
+ },
+ {
+ title: "The Cat in the Hat",
+ year: 2003,
+ rating: 3.8,
+ votes: 40048,
+ running_times: 4920,
+ },
+ {
+ title: "The Cave",
+ year: 2005,
+ rating: 5.1,
+ votes: 30609,
+ running_times: 5820,
+ },
+ {
+ title: "The Cell",
+ year: 2000,
+ rating: 6.3,
+ votes: 84984,
+ running_times: 6540,
+ },
+ {
+ title: "The Chamber",
+ year: 1996,
+ rating: 6,
+ votes: 11124,
+ running_times: 6780,
+ },
+ {
+ title: "The Change-Up",
+ year: 2011,
+ rating: 6.3,
+ votes: 145281,
+ running_times: 7080,
+ },
+ {
+ title: "The Changeling",
+ year: 1980,
+ rating: 7.3,
+ votes: 23916,
+ running_times: 6420,
+ },
+ {
+ title: "The Chase",
+ year: 1994,
+ rating: 5.8,
+ votes: 15334,
+ running_times: 5640,
+ },
+ {
+ title: "The Children",
+ year: 2008,
+ rating: 6,
+ votes: 15438,
+ running_times: 5040,
+ },
+ {
+ title: "The Children's Hour",
+ year: 1961,
+ rating: 7.8,
+ votes: 11701,
+ running_times: 6480,
+ },
+ {
+ title: "The China Syndrome",
+ year: 1979,
+ rating: 7.4,
+ votes: 22339,
+ running_times: 7320,
+ },
+ {
+ title: "The Choice",
+ year: 2016,
+ rating: 6.6,
+ votes: 24018,
+ running_times: 6660,
+ },
+ {
+ title: "The Chronicles of Narnia: Prince Caspian",
+ year: 2008,
+ rating: 6.6,
+ votes: 164777,
+ running_times: 9000,
+ },
+ {
+ title: "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",
+ year: 2005,
+ rating: 6.9,
+ votes: 314354,
+ running_times: 9000,
+ },
+ {
+ title: "The Chronicles of Narnia: The Voyage of the Dawn Treader",
+ year: 2010,
+ rating: 6.3,
+ votes: 117763,
+ running_times: 6780,
+ },
+ {
+ title: "The Chronicles of Riddick",
+ year: 2004,
+ rating: 6.7,
+ votes: 195033,
+ running_times: 8040,
+ },
+ {
+ title: "The Chumscrubber",
+ year: 2005,
+ rating: 7,
+ votes: 16830,
+ running_times: 6480,
+ },
+ {
+ title: "The Cider House Rules",
+ year: 1999,
+ rating: 7.4,
+ votes: 83846,
+ running_times: 7560,
+ },
+ {
+ title: "The Cincinnati Kid",
+ year: 1965,
+ rating: 7.3,
+ votes: 12747,
+ running_times: 6120,
+ },
+ {
+ title: "The Circle",
+ year: 2017,
+ rating: 5.3,
+ votes: 49927,
+ running_times: 6600,
+ },
+ {
+ title: "The Circus",
+ year: 1928,
+ rating: 8.1,
+ votes: 20578,
+ running_times: 4320,
+ },
+ {
+ title: "The Clearing",
+ year: 2004,
+ rating: 5.9,
+ votes: 12264,
+ running_times: 5700,
+ },
+ {
+ title: "The Client",
+ year: 1994,
+ rating: 6.7,
+ votes: 50194,
+ running_times: 7140,
+ },
+ {
+ title: "The Cobbler",
+ year: 2014,
+ rating: 5.8,
+ votes: 42876,
+ running_times: 5940,
+ },
+ {
+ title: "The Cold Light of Day",
+ year: 2012,
+ rating: 4.9,
+ votes: 31139,
+ running_times: 5580,
+ },
+ {
+ title: "The Collection",
+ year: 2012,
+ rating: 6.1,
+ votes: 39094,
+ running_times: 4920,
+ },
+ {
+ title: "The Collector",
+ year: 2009,
+ rating: 6.4,
+ votes: 47976,
+ running_times: 5400,
+ },
+ {
+ title: "The Colony",
+ year: 2013,
+ rating: 5.3,
+ votes: 38078,
+ running_times: 5700,
+ },
+ {
+ title: "The Color Purple",
+ year: 1985,
+ rating: 7.8,
+ votes: 66127,
+ running_times: 9240,
+ },
+ {
+ title: "The Color of Money",
+ year: 1986,
+ rating: 7,
+ votes: 63117,
+ running_times: 7140,
+ },
+ {
+ title: "The Comebacks",
+ year: 2007,
+ rating: 4.2,
+ votes: 10359,
+ running_times: 6420,
+ },
+ {
+ title: "The Commitments",
+ year: 1991,
+ rating: 7.6,
+ votes: 28042,
+ running_times: 7080,
+ },
+ {
+ title: "The Company Men",
+ year: 2010,
+ rating: 6.8,
+ votes: 38949,
+ running_times: 6240,
+ },
+ {
+ title: "The Company You Keep",
+ year: 2012,
+ rating: 6.4,
+ votes: 28047,
+ running_times: 7500,
+ },
+ {
+ title: "The Company of Wolves",
+ year: 1984,
+ rating: 6.8,
+ votes: 12490,
+ running_times: 5700,
+ },
+ {
+ title: "The Condemned",
+ year: 2007,
+ rating: 6.1,
+ votes: 46846,
+ running_times: 6840,
+ },
+ {
+ title: "The Congress",
+ year: 2013,
+ rating: 6.5,
+ votes: 14545,
+ running_times: 7320,
+ },
+ {
+ title: "The Conjuring",
+ year: 2013,
+ rating: 7.5,
+ votes: 348698,
+ running_times: 6720,
+ },
+ {
+ title: "The Conjuring 2",
+ year: 2016,
+ rating: 7.4,
+ votes: 157206,
+ running_times: 8040,
+ },
+ {
+ title: "The Conspirator",
+ year: 2010,
+ rating: 6.9,
+ votes: 25221,
+ running_times: 7320,
+ },
+ {
+ title: "The Constant Gardener",
+ year: 2005,
+ rating: 7.5,
+ votes: 118632,
+ running_times: 7740,
+ },
+ {
+ title: "The Contender",
+ year: 2000,
+ rating: 7,
+ votes: 21284,
+ running_times: 7560,
+ },
+ {
+ title: "The Contract",
+ year: 2006,
+ rating: 5.7,
+ votes: 21488,
+ running_times: 5760,
+ },
+ {
+ title: "The Conversation",
+ year: 1974,
+ rating: 7.9,
+ votes: 81291,
+ running_times: 6780,
+ },
+ {
+ title: "The Cook, the Thief, His Wife & Her Lover",
+ year: 1989,
+ rating: 7.6,
+ votes: 29255,
+ running_times: 7440,
+ },
+ {
+ title: "The Cooler",
+ year: 2003,
+ rating: 7,
+ votes: 29684,
+ running_times: 6060,
+ },
+ {
+ title: "The Core",
+ year: 2003,
+ rating: 5.5,
+ votes: 81833,
+ running_times: 8100,
+ },
+ {
+ title: "The Corporation",
+ year: 2003,
+ rating: 8.1,
+ votes: 18984,
+ running_times: 9900,
+ },
+ {
+ title: "The Corruptor",
+ year: 1999,
+ rating: 6,
+ votes: 16047,
+ running_times: 6600,
+ },
+ {
+ title: "The Cottage",
+ year: 2008,
+ rating: 6.1,
+ votes: 10703,
+ running_times: 5520,
+ },
+ {
+ title: "The Cotton Club",
+ year: 1984,
+ rating: 6.5,
+ votes: 13741,
+ running_times: 7620,
+ },
+ {
+ title: "The Counselor",
+ year: 2013,
+ rating: 5.3,
+ votes: 87224,
+ running_times: 8280,
+ },
+ {
+ title: "The Count of Monte Cristo",
+ year: 2002,
+ rating: 7.8,
+ votes: 112596,
+ running_times: 8040,
+ },
+ {
+ title: "The Cove",
+ year: 2009,
+ rating: 8.5,
+ votes: 43055,
+ running_times: 5520,
+ },
+ {
+ title: "The Covenant",
+ year: 2006,
+ rating: 5.3,
+ votes: 41822,
+ running_times: 5820,
+ },
+ {
+ title: "The Cowboys",
+ year: 1972,
+ rating: 7.4,
+ votes: 11123,
+ running_times: 8040,
+ },
+ {
+ title: "The Craft",
+ year: 1996,
+ rating: 6.3,
+ votes: 63253,
+ running_times: 6060,
+ },
+ {
+ title: "The Crazies",
+ year: 2010,
+ rating: 6.5,
+ votes: 99111,
+ running_times: 6060,
+ },
+ {
+ title: "The Croods",
+ year: 2013,
+ rating: 7.2,
+ votes: 164945,
+ running_times: 5880,
+ },
+ {
+ title: "The Crossing Guard",
+ year: 1995,
+ rating: 6.3,
+ votes: 11372,
+ running_times: 6660,
+ },
+ {
+ title: "The Crow",
+ year: 1994,
+ rating: 7.6,
+ votes: 146355,
+ running_times: 6120,
+ },
+ {
+ title: "The Crow: City of Angels",
+ year: 1996,
+ rating: 4.6,
+ votes: 16864,
+ running_times: 5040,
+ },
+ {
+ title: "The Crucible",
+ year: 1996,
+ rating: 6.8,
+ votes: 31119,
+ running_times: 7440,
+ },
+ {
+ title: "The Crush",
+ year: 1993,
+ rating: 5.7,
+ votes: 13065,
+ running_times: 5340,
+ },
+ {
+ title: "The Crying Game",
+ year: 1992,
+ rating: 7.3,
+ votes: 44414,
+ running_times: 6720,
+ },
+ {
+ title: "The Curious Case of Benjamin Button",
+ year: 2008,
+ rating: 7.8,
+ votes: 501739,
+ running_times: 9960,
+ },
+ {
+ title: "The Curse of the Jade Scorpion",
+ year: 2001,
+ rating: 6.8,
+ votes: 34156,
+ running_times: 6180,
+ },
+ {
+ title: "The Curse of the Were-Rabbit",
+ year: 2005,
+ rating: 7.5,
+ votes: 106749,
+ running_times: 5100,
+ },
+ {
+ title: "The Cutting Edge",
+ year: 1992,
+ rating: 6.9,
+ votes: 16136,
+ running_times: 6060,
+ },
+ {
+ title: "The DUFF",
+ year: 2015,
+ rating: 6.5,
+ votes: 61918,
+ running_times: 6060,
+ },
+ {
+ title: "The Da Vinci Code",
+ year: 2006,
+ rating: 6.6,
+ votes: 348542,
+ running_times: 10440,
+ },
+ {
+ title: "The Damned United",
+ year: 2009,
+ rating: 7.6,
+ votes: 35342,
+ running_times: 5880,
+ },
+ {
+ title: "The Dangerous Lives of Altar Boys",
+ year: 2002,
+ rating: 7.1,
+ votes: 12389,
+ running_times: 6300,
+ },
+ {
+ title: "The Danish Girl",
+ year: 2015,
+ rating: 7.1,
+ votes: 121304,
+ running_times: 7140,
+ },
+ {
+ title: "The Darjeeling Limited",
+ year: 2007,
+ rating: 7.2,
+ votes: 151549,
+ running_times: 5460,
+ },
+ {
+ title: "The Dark Crystal",
+ year: 1982,
+ rating: 7.2,
+ votes: 45775,
+ running_times: 5580,
+ },
+ {
+ title: "The Dark Half",
+ year: 1993,
+ rating: 5.9,
+ votes: 13163,
+ running_times: 7320,
+ },
+ {
+ title: "The Dark Knight",
+ year: 2008,
+ rating: 9,
+ votes: 1864164,
+ running_times: 9120,
+ },
+ {
+ title: "The Dark Knight Rises",
+ year: 2012,
+ rating: 8.4,
+ votes: 1269255,
+ running_times: 9840,
+ },
+ {
+ title: "The Dark Tower",
+ year: 2017,
+ rating: 5.7,
+ votes: 69330,
+ running_times: 5700,
+ },
+ {
+ title: "The Darkest Hour",
+ year: 2011,
+ rating: 4.9,
+ votes: 52123,
+ running_times: 5340,
+ },
+ {
+ title: "The Day",
+ year: 2011,
+ rating: 5.2,
+ votes: 11245,
+ running_times: 5760,
+ },
+ {
+ title: "The Day After Tomorrow",
+ year: 2004,
+ rating: 6.4,
+ votes: 360260,
+ running_times: 7440,
+ },
+ {
+ title: "The Day of the Jackal",
+ year: 1973,
+ rating: 7.8,
+ votes: 31843,
+ running_times: 8580,
+ },
+ {
+ title: "The Day the Earth Stood Still",
+ year: 1951,
+ rating: 7.8,
+ votes: 68463,
+ running_times: 5520,
+ },
+ {
+ title: "The Day the Earth Stood Still",
+ year: 2008,
+ rating: 5.5,
+ votes: 147772,
+ running_times: 6240,
+ },
+ {
+ title: "The Dead Girl",
+ year: 2006,
+ rating: 6.7,
+ votes: 13077,
+ running_times: 6600,
+ },
+ {
+ title: "The Dead Pool",
+ year: 1988,
+ rating: 6.3,
+ votes: 33680,
+ running_times: 5460,
+ },
+ {
+ title: "The Dead Zone",
+ year: 1983,
+ rating: 7.2,
+ votes: 49908,
+ running_times: 6180,
+ },
+ {
+ title: "The Death and Life of Bobby Z",
+ year: 2007,
+ rating: 5.9,
+ votes: 12779,
+ running_times: 5820,
+ },
+ {
+ title: "The Deaths of Ian Stone",
+ year: 2007,
+ rating: 5.6,
+ votes: 11779,
+ running_times: 5220,
+ },
+ {
+ title: "The Debt",
+ year: 2010,
+ rating: 6.9,
+ votes: 58446,
+ running_times: 6780,
+ },
+ {
+ title: "The Deep Blue Sea",
+ year: 2011,
+ rating: 6.3,
+ votes: 12745,
+ running_times: 5880,
+ },
+ {
+ title: "The Deep End",
+ year: 2001,
+ rating: 6.7,
+ votes: 10170,
+ running_times: 6060,
+ },
+ {
+ title: "The Deep End of the Ocean",
+ year: 1999,
+ rating: 6.3,
+ votes: 11230,
+ running_times: 6360,
+ },
+ {
+ title: "The Deer Hunter",
+ year: 1978,
+ rating: 8.2,
+ votes: 257892,
+ running_times: 10980,
+ },
+ {
+ title: "The Defiant Ones",
+ year: 1958,
+ rating: 7.7,
+ votes: 10512,
+ running_times: 5760,
+ },
+ {
+ title: "The Delta Force",
+ year: 1986,
+ rating: 5.6,
+ votes: 16009,
+ running_times: 7740,
+ },
+ {
+ title: "The Den",
+ year: 2013,
+ rating: 6.1,
+ votes: 10840,
+ running_times: 4860,
+ },
+ {
+ title: "The Departed",
+ year: 2006,
+ rating: 8.5,
+ votes: 975301,
+ running_times: 9060,
+ },
+ {
+ title: "The Descendants",
+ year: 2011,
+ rating: 7.3,
+ votes: 215007,
+ running_times: 6900,
+ },
+ {
+ title: "The Descent",
+ year: 2005,
+ rating: 7.2,
+ votes: 170442,
+ running_times: 6000,
+ },
+ {
+ title: "The Descent: Part 2",
+ year: 2009,
+ rating: 5.8,
+ votes: 35987,
+ running_times: 5640,
+ },
+ {
+ title: "The Devil Inside",
+ year: 2012,
+ rating: 4.2,
+ votes: 32082,
+ running_times: 4980,
+ },
+ {
+ title: "The Devil Wears Prada",
+ year: 2006,
+ rating: 6.8,
+ votes: 311658,
+ running_times: 6540,
+ },
+ {
+ title: "The Devil's Advocate",
+ year: 1997,
+ rating: 7.5,
+ votes: 282173,
+ running_times: 8640,
+ },
+ {
+ title: "The Devil's Double",
+ year: 2011,
+ rating: 7.1,
+ votes: 56407,
+ running_times: 6540,
+ },
+ {
+ title: "The Devil's Own",
+ year: 1997,
+ rating: 6.1,
+ votes: 49873,
+ running_times: 6660,
+ },
+ {
+ title: "The Devil's Rejects",
+ year: 2005,
+ rating: 6.9,
+ votes: 81531,
+ running_times: 6540,
+ },
+ {
+ title: "The Devils",
+ year: 1971,
+ rating: 7.8,
+ votes: 10094,
+ running_times: 7020,
+ },
+ {
+ title: "The Diary of Anne Frank",
+ year: 1959,
+ rating: 7.4,
+ votes: 10181,
+ running_times: 10800,
+ },
+ {
+ title: "The Diary of a Teenage Girl",
+ year: 2015,
+ rating: 6.9,
+ votes: 23775,
+ running_times: 6120,
+ },
+ {
+ title: "The Dictator",
+ year: 2012,
+ rating: 6.4,
+ votes: 232383,
+ running_times: 5940,
+ },
+ {
+ title: "The Dilemma",
+ year: 2011,
+ rating: 5.3,
+ votes: 46181,
+ running_times: 6660,
+ },
+ {
+ title: "The Dirty Dozen",
+ year: 1967,
+ rating: 7.8,
+ votes: 57460,
+ running_times: 9000,
+ },
+ {
+ title: "The Disappearance of Alice Creed",
+ year: 2009,
+ rating: 6.8,
+ votes: 22306,
+ running_times: 6000,
+ },
+ {
+ title: "The Disaster Artist",
+ year: 2017,
+ rating: 8.1,
+ votes: 13911,
+ running_times: 6240,
+ },
+ {
+ title: "The Discovery",
+ year: 2017,
+ rating: 6.3,
+ votes: 18069,
+ running_times: 6120,
+ },
+ {
+ title: "The Dish",
+ year: 2000,
+ rating: 7.2,
+ votes: 13534,
+ running_times: 6060,
+ },
+ {
+ title: "The Distinguished Gentleman",
+ year: 1992,
+ rating: 5.9,
+ votes: 13275,
+ running_times: 6720,
+ },
+ {
+ title: "The Divide",
+ year: 2011,
+ rating: 5.8,
+ votes: 32184,
+ running_times: 7320,
+ },
+ {
+ title: "The Do-Over",
+ year: 2016,
+ rating: 5.7,
+ votes: 27382,
+ running_times: 6480,
+ },
+ {
+ title: "The Doom Generation",
+ year: 1995,
+ rating: 6,
+ votes: 12220,
+ running_times: 4980,
+ },
+ {
+ title: "The Door in the Floor",
+ year: 2004,
+ rating: 6.7,
+ votes: 14022,
+ running_times: 6660,
+ },
+ {
+ title: "The Doors",
+ year: 1991,
+ rating: 7.2,
+ votes: 73120,
+ running_times: 8400,
+ },
+ {
+ title: "The Double",
+ year: 2011,
+ rating: 5.9,
+ votes: 25630,
+ running_times: 5880,
+ },
+ {
+ title: "The Double",
+ year: 2013,
+ rating: 6.5,
+ votes: 40539,
+ running_times: 5580,
+ },
+ {
+ title: "The Dream Team",
+ year: 1989,
+ rating: 6.5,
+ votes: 10878,
+ running_times: 6780,
+ },
+ {
+ title: "The Dreamers",
+ year: 2003,
+ rating: 7.2,
+ votes: 91059,
+ running_times: 6900,
+ },
+ {
+ title: "The Dressmaker",
+ year: 2015,
+ rating: 7.1,
+ votes: 38252,
+ running_times: 7140,
+ },
+ {
+ title: "The Driver",
+ year: 1978,
+ rating: 7.2,
+ votes: 10892,
+ running_times: 7860,
+ },
+ {
+ title: "The Drop",
+ year: 2014,
+ rating: 7.1,
+ votes: 121549,
+ running_times: 6360,
+ },
+ {
+ title: "The Duchess",
+ year: 2008,
+ rating: 6.9,
+ votes: 67201,
+ running_times: 6600,
+ },
+ {
+ title: "The Duellists",
+ year: 1977,
+ rating: 7.5,
+ votes: 16242,
+ running_times: 6000,
+ },
+ {
+ title: "The Dukes of Hazzard",
+ year: 2005,
+ rating: 5.1,
+ votes: 69430,
+ running_times: 6420,
+ },
+ {
+ title: "The Dyatlov Pass Incident",
+ year: 2013,
+ rating: 5.7,
+ votes: 18197,
+ running_times: 6000,
+ },
+ {
+ title: "The Eagle",
+ year: 2011,
+ rating: 6.2,
+ votes: 57714,
+ running_times: 6840,
+ },
+ {
+ title: "The Eagle Has Landed",
+ year: 1976,
+ rating: 6.9,
+ votes: 15561,
+ running_times: 8700,
+ },
+ {
+ title: "The East",
+ year: 2013,
+ rating: 6.8,
+ votes: 44769,
+ running_times: 6960,
+ },
+ {
+ title: "The Edge",
+ year: 1997,
+ rating: 6.9,
+ votes: 60012,
+ running_times: 7020,
+ },
+ {
+ title: "The Edge of Love",
+ year: 2008,
+ rating: 6.3,
+ votes: 14525,
+ running_times: 6600,
+ },
+ {
+ title: "The Edge of Seventeen",
+ year: 2016,
+ rating: 7.4,
+ votes: 64320,
+ running_times: 6240,
+ },
+ {
+ title: "The Eiger Sanction",
+ year: 1975,
+ rating: 6.4,
+ votes: 14326,
+ running_times: 7740,
+ },
+ {
+ title: "The Elephant Man",
+ year: 1980,
+ rating: 8.2,
+ votes: 180762,
+ running_times: 7440,
+ },
+ {
+ title: "The Emoji Movie",
+ year: 2017,
+ rating: 2.9,
+ votes: 30594,
+ running_times: 5160,
+ },
+ {
+ title: "The Emperor's Club",
+ year: 2002,
+ rating: 6.9,
+ votes: 15186,
+ running_times: 6540,
+ },
+ {
+ title: "The Emperor's New Groove",
+ year: 2000,
+ rating: 7.3,
+ votes: 143961,
+ running_times: 4680,
+ },
+ {
+ title: "The End of the Affair",
+ year: 1999,
+ rating: 7.2,
+ votes: 18879,
+ running_times: 6120,
+ },
+ {
+ title: "The End of the Tour",
+ year: 2015,
+ rating: 7.3,
+ votes: 22666,
+ running_times: 6360,
+ },
+ {
+ title: "The Enforcer",
+ year: 1976,
+ rating: 6.8,
+ votes: 34977,
+ running_times: 5760,
+ },
+ {
+ title: "The English Patient",
+ year: 1996,
+ rating: 7.4,
+ votes: 154290,
+ running_times: 15000,
+ },
+ {
+ title: "The English Teacher",
+ year: 2013,
+ rating: 5.8,
+ votes: 10264,
+ running_times: 5580,
+ },
+ {
+ title: "The Englishman Who Went Up a Hill But Came Down a Mountain",
+ year: 1995,
+ rating: 6.6,
+ votes: 14515,
+ running_times: 5940,
+ },
+ {
+ title: "The Entity",
+ year: 1982,
+ rating: 6.6,
+ votes: 12185,
+ running_times: 7500,
+ },
+ {
+ title: "The Equalizer",
+ year: 2014,
+ rating: 7.2,
+ votes: 257869,
+ running_times: 7920,
+ },
+ {
+ title: "The Escapist",
+ year: 2008,
+ rating: 6.8,
+ votes: 15325,
+ running_times: 6120,
+ },
+ {
+ title: "The Evil Dead",
+ year: 1981,
+ rating: 7.5,
+ votes: 156301,
+ running_times: 5100,
+ },
+ {
+ title: "The Exorcism of Emily Rose",
+ year: 2005,
+ rating: 6.7,
+ votes: 104459,
+ running_times: 7320,
+ },
+ {
+ title: "The Exorcist",
+ year: 1973,
+ rating: 8,
+ votes: 308000,
+ running_times: 7920,
+ },
+ {
+ title: "The Exorcist III",
+ year: 1990,
+ rating: 6.3,
+ votes: 19690,
+ running_times: 6600,
+ },
+ {
+ title: "The Expendables",
+ year: 2010,
+ rating: 6.5,
+ votes: 291039,
+ running_times: 6780,
+ },
+ {
+ title: "The Expendables 2",
+ year: 2012,
+ rating: 6.6,
+ votes: 263602,
+ running_times: 6180,
+ },
+ {
+ title: "The Expendables 3",
+ year: 2014,
+ rating: 6.1,
+ votes: 143428,
+ running_times: 7860,
+ },
+ {
+ title: "The Experiment",
+ year: 2010,
+ rating: 6.4,
+ votes: 45286,
+ running_times: 5760,
+ },
+ {
+ title: "The Express",
+ year: 2008,
+ rating: 7.3,
+ votes: 17692,
+ running_times: 7800,
+ },
+ {
+ title: "The Eye",
+ year: 2008,
+ rating: 5.4,
+ votes: 46769,
+ running_times: 5880,
+ },
+ {
+ title: "The F Word",
+ year: 2013,
+ rating: 6.8,
+ votes: 58518,
+ running_times: 5880,
+ },
+ {
+ title: "The Fabulous Baker Boys",
+ year: 1989,
+ rating: 6.8,
+ votes: 18943,
+ running_times: 6840,
+ },
+ {
+ title: "The Faculty",
+ year: 1998,
+ rating: 6.5,
+ votes: 97855,
+ running_times: 6240,
+ },
+ {
+ title: "The Fall",
+ year: 2006,
+ rating: 7.9,
+ votes: 95904,
+ running_times: 7020,
+ },
+ {
+ title: "The Family",
+ year: 2013,
+ rating: 6.3,
+ votes: 96336,
+ running_times: 6660,
+ },
+ {
+ title: "The Family Man",
+ year: 2000,
+ rating: 6.7,
+ votes: 91526,
+ running_times: 7500,
+ },
+ {
+ title: "The Family Stone",
+ year: 2005,
+ rating: 6.3,
+ votes: 52823,
+ running_times: 6180,
+ },
+ {
+ title: "The Fan",
+ year: 1996,
+ rating: 5.8,
+ votes: 41100,
+ running_times: 6960,
+ },
+ {
+ title: "The Fast and the Furious",
+ year: 2001,
+ rating: 6.7,
+ votes: 298782,
+ running_times: 6360,
+ },
+ {
+ title: "The Fast and the Furious: Tokyo Drift",
+ year: 2006,
+ rating: 6,
+ votes: 201378,
+ running_times: 6240,
+ },
+ {
+ title: "The Fate of the Furious",
+ year: 2017,
+ rating: 6.8,
+ votes: 145524,
+ running_times: 8940,
+ },
+ {
+ title: "The Fault in Our Stars",
+ year: 2014,
+ rating: 7.8,
+ votes: 284557,
+ running_times: 7980,
+ },
+ {
+ title: "The Fifth Estate",
+ year: 2013,
+ rating: 6.2,
+ votes: 33032,
+ running_times: 7680,
+ },
+ {
+ title: "The Fighter",
+ year: 2010,
+ rating: 7.8,
+ votes: 297659,
+ running_times: 6960,
+ },
+ {
+ title: "The Final Conflict",
+ year: 1981,
+ rating: 5.6,
+ votes: 15344,
+ running_times: 6480,
+ },
+ {
+ title: "The Final Countdown",
+ year: 1980,
+ rating: 6.7,
+ votes: 17625,
+ running_times: 6180,
+ },
+ {
+ title: "The Final Cut",
+ year: 2004,
+ rating: 6.2,
+ votes: 28220,
+ running_times: 5700,
+ },
+ {
+ title: "The Final Destination",
+ year: 2009,
+ rating: 5.2,
+ votes: 82313,
+ running_times: 4920,
+ },
+ {
+ title: "The Final Girls",
+ year: 2015,
+ rating: 6.6,
+ votes: 25800,
+ running_times: 5280,
+ },
+ {
+ title: "The Finest Hours",
+ year: 2016,
+ rating: 6.8,
+ votes: 49089,
+ running_times: 7020,
+ },
+ {
+ title: "The Firm",
+ year: 1993,
+ rating: 6.8,
+ votes: 96653,
+ running_times: 9240,
+ },
+ {
+ title: "The First Great Train Robbery",
+ year: 1978,
+ rating: 7,
+ votes: 12833,
+ running_times: 6600,
+ },
+ {
+ title: "The First Time",
+ year: 2012,
+ rating: 6.9,
+ votes: 56573,
+ running_times: 5700,
+ },
+ {
+ title: "The First Wives Club",
+ year: 1996,
+ rating: 6.2,
+ votes: 35126,
+ running_times: 6180,
+ },
+ {
+ title: "The Fisher King",
+ year: 1991,
+ rating: 7.6,
+ votes: 68514,
+ running_times: 8220,
+ },
+ {
+ title: "The Five-Year Engagement",
+ year: 2012,
+ rating: 6.2,
+ votes: 83519,
+ running_times: 7860,
+ },
+ {
+ title: "The Flight of the Phoenix",
+ year: 1965,
+ rating: 7.6,
+ votes: 16592,
+ running_times: 8520,
+ },
+ {
+ title: "The Flintstones",
+ year: 1994,
+ rating: 4.8,
+ votes: 65040,
+ running_times: 5460,
+ },
+ {
+ title: "The Flintstones in Viva Rock Vegas",
+ year: 2000,
+ rating: 3.6,
+ votes: 17059,
+ running_times: 5400,
+ },
+ {
+ title: "The Flock",
+ year: 2007,
+ rating: 5.7,
+ votes: 10214,
+ running_times: 6300,
+ },
+ {
+ title: "The Fly",
+ year: 1958,
+ rating: 7.1,
+ votes: 17323,
+ running_times: 5640,
+ },
+ {
+ title: "The Fly",
+ year: 1986,
+ rating: 7.5,
+ votes: 131951,
+ running_times: 5760,
+ },
+ {
+ title: "The Fly II",
+ year: 1989,
+ rating: 4.9,
+ votes: 18231,
+ running_times: 6300,
+ },
+ {
+ title: "The Fog",
+ year: 1980,
+ rating: 6.8,
+ votes: 51466,
+ running_times: 5340,
+ },
+ {
+ title: "The Fog",
+ year: 2005,
+ rating: 3.6,
+ votes: 31194,
+ running_times: 6180,
+ },
+ {
+ title: "The Fog of War: Eleven Lessons from the Life of Robert S. McNamara",
+ year: 2003,
+ rating: 8.2,
+ votes: 20482,
+ running_times: 6420,
+ },
+ {
+ title: "The Football Factory",
+ year: 2004,
+ rating: 6.9,
+ votes: 25482,
+ running_times: 5460,
+ },
+ {
+ title: "The Forbidden Kingdom",
+ year: 2008,
+ rating: 6.6,
+ votes: 92869,
+ running_times: 6240,
+ },
+ {
+ title: "The Foreigner",
+ year: 2017,
+ rating: 7.2,
+ votes: 20056,
+ running_times: 6780,
+ },
+ {
+ title: "The Forest",
+ year: 2016,
+ rating: 4.8,
+ votes: 31517,
+ running_times: 5580,
+ },
+ {
+ title: "The Forgotten",
+ year: 2004,
+ rating: 5.8,
+ votes: 59837,
+ running_times: 5640,
+ },
+ {
+ title: "The Fortune Cookie",
+ year: 1966,
+ rating: 7.4,
+ votes: 10116,
+ running_times: 7500,
+ },
+ {
+ title: "The Founder",
+ year: 2016,
+ rating: 7.2,
+ votes: 69763,
+ running_times: 6900,
+ },
+ {
+ title: "The Fountain",
+ year: 2006,
+ rating: 7.3,
+ votes: 205452,
+ running_times: 5760,
+ },
+ {
+ title: "The Four Feathers",
+ year: 2002,
+ rating: 6.5,
+ votes: 29710,
+ running_times: 7920,
+ },
+ {
+ title: "The Fourth Kind",
+ year: 2009,
+ rating: 5.9,
+ votes: 66763,
+ running_times: 5880,
+ },
+ {
+ title: "The Fox and the Hound",
+ year: 1981,
+ rating: 7.3,
+ votes: 70116,
+ running_times: 4980,
+ },
+ {
+ title: "The French Connection",
+ year: 1971,
+ rating: 7.8,
+ votes: 91035,
+ running_times: 6240,
+ },
+ {
+ title: "The Freshman",
+ year: 1990,
+ rating: 6.5,
+ votes: 16664,
+ running_times: 6120,
+ },
+ {
+ title: "The Frighteners",
+ year: 1996,
+ rating: 7.1,
+ votes: 72402,
+ running_times: 7380,
+ },
+ {
+ title: "The Front Page",
+ year: 1974,
+ rating: 7.4,
+ votes: 10029,
+ running_times: 6300,
+ },
+ {
+ title: "The Frozen Ground",
+ year: 2013,
+ rating: 6.4,
+ votes: 47639,
+ running_times: 6300,
+ },
+ {
+ title: "The Fugitive",
+ year: 1993,
+ rating: 7.8,
+ votes: 229254,
+ running_times: 7800,
+ },
+ {
+ title: "The Full Monty",
+ year: 1997,
+ rating: 7.2,
+ votes: 87658,
+ running_times: 5460,
+ },
+ {
+ title: "The Fundamentals of Caring",
+ year: 2016,
+ rating: 7.3,
+ votes: 37504,
+ running_times: 5820,
+ },
+ {
+ title: "The Fury",
+ year: 1978,
+ rating: 6.4,
+ votes: 10870,
+ running_times: 7080,
+ },
+ {
+ title: "The Gallows",
+ year: 2015,
+ rating: 4.2,
+ votes: 16251,
+ running_times: 4860,
+ },
+ {
+ title: "The Gambler",
+ year: 2014,
+ rating: 6,
+ votes: 54739,
+ running_times: 6660,
+ },
+ {
+ title: "The Game",
+ year: 1997,
+ rating: 7.8,
+ votes: 289122,
+ running_times: 7740,
+ },
+ {
+ title: "The Game Plan",
+ year: 2007,
+ rating: 6.2,
+ votes: 48546,
+ running_times: 6600,
+ },
+ {
+ title: "The Gate",
+ year: 1987,
+ rating: 6,
+ votes: 11654,
+ running_times: 5100,
+ },
+ {
+ title: "The Gauntlet",
+ year: 1977,
+ rating: 6.4,
+ votes: 17358,
+ running_times: 6540,
+ },
+ {
+ title: "The General",
+ year: 1926,
+ rating: 8.2,
+ votes: 60825,
+ running_times: 6420,
+ },
+ {
+ title: "The General's Daughter",
+ year: 1999,
+ rating: 6.3,
+ votes: 45863,
+ running_times: 6960,
+ },
+ {
+ title: "The Getaway",
+ year: 1972,
+ rating: 7.5,
+ votes: 23131,
+ running_times: 7380,
+ },
+ {
+ title: "The Getaway",
+ year: 1994,
+ rating: 5.7,
+ votes: 15013,
+ running_times: 6960,
+ },
+ {
+ title: "The Ghost Writer",
+ year: 2010,
+ rating: 7.2,
+ votes: 141312,
+ running_times: 7680,
+ },
+ {
+ title: "The Ghost and Mrs. Muir",
+ year: 1947,
+ rating: 7.9,
+ votes: 12874,
+ running_times: 6240,
+ },
+ {
+ title: "The Ghost and the Darkness",
+ year: 1996,
+ rating: 6.8,
+ votes: 49449,
+ running_times: 6600,
+ },
+ {
+ title: "The Gift",
+ year: 2000,
+ rating: 6.7,
+ votes: 55680,
+ running_times: 6720,
+ },
+ {
+ title: "The Gift",
+ year: 2015,
+ rating: 7.1,
+ votes: 105875,
+ running_times: 6480,
+ },
+ {
+ title: "The Girl Next Door",
+ year: 2004,
+ rating: 6.8,
+ votes: 181517,
+ running_times: 6600,
+ },
+ {
+ title: "The Girl Next Door",
+ year: 2007,
+ rating: 6.7,
+ votes: 19959,
+ running_times: 5460,
+ },
+ {
+ title: "The Girl on the Train",
+ year: 2016,
+ rating: 6.5,
+ votes: 122564,
+ running_times: 6720,
+ },
+ {
+ title: "The Girl with All the Gifts",
+ year: 2016,
+ rating: 6.7,
+ votes: 35303,
+ running_times: 6660,
+ },
+ {
+ title: "The Girl with the Dragon Tattoo",
+ year: 2011,
+ rating: 7.8,
+ votes: 360665,
+ running_times: 9480,
+ },
+ {
+ title: "The Girlfriend Experience",
+ year: 2009,
+ rating: 5.5,
+ votes: 14540,
+ running_times: 4620,
+ },
+ {
+ title: "The Giver",
+ year: 2014,
+ rating: 6.5,
+ votes: 97577,
+ running_times: 5820,
+ },
+ {
+ title: "The Glass House",
+ year: 2001,
+ rating: 5.8,
+ votes: 27338,
+ running_times: 6360,
+ },
+ {
+ title: "The Glimmer Man",
+ year: 1996,
+ rating: 5.3,
+ votes: 16552,
+ running_times: 5460,
+ },
+ {
+ title: "The Godfather",
+ year: 1972,
+ rating: 9.2,
+ votes: 1289428,
+ running_times: 10500,
+ },
+ {
+ title: "The Godfather: Part II",
+ year: 1974,
+ rating: 9,
+ votes: 889607,
+ running_times: 13200,
+ },
+ {
+ title: "The Godfather: Part III",
+ year: 1990,
+ rating: 7.6,
+ votes: 299652,
+ running_times: 10200,
+ },
+ {
+ title: "The Gods Must Be Crazy",
+ year: 1980,
+ rating: 7.3,
+ votes: 46369,
+ running_times: 6540,
+ },
+ {
+ title: "The Gods Must Be Crazy II",
+ year: 1989,
+ rating: 6.8,
+ votes: 13913,
+ running_times: 5880,
+ },
+ {
+ title: "The Gold Rush",
+ year: 1925,
+ rating: 8.2,
+ votes: 77314,
+ running_times: 5700,
+ },
+ {
+ title: "The Golden Child",
+ year: 1986,
+ rating: 5.9,
+ votes: 43511,
+ running_times: 5640,
+ },
+ {
+ title: "The Golden Compass",
+ year: 2007,
+ rating: 6.1,
+ votes: 158622,
+ running_times: 6780,
+ },
+ {
+ title: "The Good Dinosaur",
+ year: 2015,
+ rating: 6.7,
+ votes: 82278,
+ running_times: 5580,
+ },
+ {
+ title: "The Good German",
+ year: 2006,
+ rating: 6.1,
+ votes: 22383,
+ running_times: 6300,
+ },
+ {
+ title: "The Good Girl",
+ year: 2002,
+ rating: 6.5,
+ votes: 39827,
+ running_times: 5580,
+ },
+ {
+ title: "The Good Lie",
+ year: 2014,
+ rating: 7.4,
+ votes: 23071,
+ running_times: 6600,
+ },
+ {
+ title: "The Good Neighbor",
+ year: 2016,
+ rating: 6.3,
+ votes: 10679,
+ running_times: 5880,
+ },
+ {
+ title: "The Good Shepherd",
+ year: 2006,
+ rating: 6.7,
+ votes: 90768,
+ running_times: 10020,
+ },
+ {
+ title: "The Good Son",
+ year: 1993,
+ rating: 6.4,
+ votes: 30990,
+ running_times: 5220,
+ },
+ {
+ title: "The Goodbye Girl",
+ year: 1977,
+ rating: 7.4,
+ votes: 10241,
+ running_times: 6660,
+ },
+ {
+ title: "The Goods: Live Hard, Sell Hard",
+ year: 2009,
+ rating: 5.8,
+ votes: 18442,
+ running_times: 5340,
+ },
+ {
+ title: "The Goonies",
+ year: 1985,
+ rating: 7.8,
+ votes: 197148,
+ running_times: 6840,
+ },
+ {
+ title: "The Graduate",
+ year: 1967,
+ rating: 8,
+ votes: 224868,
+ running_times: 6360,
+ },
+ {
+ title: "The Grand Budapest Hotel",
+ year: 2014,
+ rating: 8.1,
+ votes: 561138,
+ running_times: 5940,
+ },
+ {
+ title: "The Grand Seduction",
+ year: 2013,
+ rating: 7,
+ votes: 13205,
+ running_times: 6780,
+ },
+ {
+ title: "The Grapes of Wrath",
+ year: 1940,
+ rating: 8.1,
+ votes: 70651,
+ running_times: 7740,
+ },
+ {
+ title: "The Great Buck Howard",
+ year: 2008,
+ rating: 6.5,
+ votes: 12430,
+ running_times: 5400,
+ },
+ {
+ title: "The Great Debaters",
+ year: 2007,
+ rating: 7.6,
+ votes: 50698,
+ running_times: 7560,
+ },
+ {
+ title: "The Great Dictator",
+ year: 1940,
+ rating: 8.5,
+ votes: 157821,
+ running_times: 7500,
+ },
+ {
+ title: "The Great Escape",
+ year: 1963,
+ rating: 8.2,
+ votes: 184206,
+ running_times: 10320,
+ },
+ {
+ title: "The Great Gatsby",
+ year: 1974,
+ rating: 6.4,
+ votes: 20793,
+ running_times: 8640,
+ },
+ {
+ title: "The Great Gatsby",
+ year: 2013,
+ rating: 7.3,
+ votes: 399342,
+ running_times: 8580,
+ },
+ {
+ title: "The Great Mouse Detective",
+ year: 1986,
+ rating: 7.2,
+ votes: 37022,
+ running_times: 4440,
+ },
+ {
+ title: "The Great Muppet Caper",
+ year: 1981,
+ rating: 7.2,
+ votes: 11033,
+ running_times: 5820,
+ },
+ {
+ title: "The Great Outdoors",
+ year: 1988,
+ rating: 6.6,
+ votes: 31809,
+ running_times: 5460,
+ },
+ {
+ title: "The Great Race",
+ year: 1965,
+ rating: 7.3,
+ votes: 13583,
+ running_times: 9600,
+ },
+ {
+ title: "The Great Raid",
+ year: 2005,
+ rating: 6.7,
+ votes: 19473,
+ running_times: 7920,
+ },
+ {
+ title: "The Great Train Robbery",
+ year: 1903,
+ rating: 7.3,
+ votes: 13461,
+ running_times: 660,
+ },
+ {
+ title: "The Great Wall",
+ year: 2016,
+ rating: 6,
+ votes: 89046,
+ running_times: 6180,
+ },
+ {
+ title: "The Greatest Game Ever Played",
+ year: 2005,
+ rating: 7.5,
+ votes: 24027,
+ running_times: 7200,
+ },
+ {
+ title: "The Greatest Movie Ever Sold",
+ year: 2011,
+ rating: 6.6,
+ votes: 13836,
+ running_times: 5400,
+ },
+ {
+ title: "The Greatest Show on Earth",
+ year: 1952,
+ rating: 6.7,
+ votes: 10459,
+ running_times: 9120,
+ },
+ {
+ title: "The Green Berets",
+ year: 1968,
+ rating: 5.7,
+ votes: 10562,
+ running_times: 8520,
+ },
+ {
+ title: "The Green Hornet",
+ year: 2011,
+ rating: 5.8,
+ votes: 142985,
+ running_times: 7140,
+ },
+ {
+ title: "The Green Inferno",
+ year: 2013,
+ rating: 5.3,
+ votes: 29044,
+ running_times: 6000,
+ },
+ {
+ title: "The Green Mile",
+ year: 1999,
+ rating: 8.5,
+ votes: 894678,
+ running_times: 11340,
+ },
+ {
+ title: "The Grey",
+ year: 2011,
+ rating: 6.8,
+ votes: 216353,
+ running_times: 7020,
+ },
+ {
+ title: "The Grifters",
+ year: 1990,
+ rating: 7,
+ votes: 22164,
+ running_times: 6600,
+ },
+ {
+ title: "The Grudge",
+ year: 2004,
+ rating: 5.9,
+ votes: 124345,
+ running_times: 5880,
+ },
+ {
+ title: "The Grudge 2",
+ year: 2006,
+ rating: 5,
+ votes: 41766,
+ running_times: 8220,
+ },
+ {
+ title: "The Grudge 3",
+ year: 2009,
+ rating: 4.7,
+ votes: 14317,
+ running_times: 5400,
+ },
+ {
+ title: "The Guard",
+ year: 2011,
+ rating: 7.3,
+ votes: 70283,
+ running_times: 5760,
+ },
+ {
+ title: "The Guardian",
+ year: 2006,
+ rating: 6.9,
+ votes: 79495,
+ running_times: 8340,
+ },
+ {
+ title: "The Guest",
+ year: 2014,
+ rating: 6.7,
+ votes: 74941,
+ running_times: 6000,
+ },
+ {
+ title: "The Guilt Trip",
+ year: 2012,
+ rating: 5.8,
+ votes: 32258,
+ running_times: 5700,
+ },
+ {
+ title: "The Gunman",
+ year: 2015,
+ rating: 5.8,
+ votes: 32856,
+ running_times: 6900,
+ },
+ {
+ title: "The Guns of Navarone",
+ year: 1961,
+ rating: 7.6,
+ votes: 38967,
+ running_times: 9480,
+ },
+ {
+ title: "The Guru",
+ year: 2002,
+ rating: 5.4,
+ votes: 13997,
+ running_times: 5640,
+ },
+ {
+ title: "The Hallow",
+ year: 2015,
+ rating: 5.7,
+ votes: 11871,
+ running_times: 5820,
+ },
+ {
+ title: "The Hand That Rocks the Cradle",
+ year: 1992,
+ rating: 6.6,
+ votes: 32195,
+ running_times: 6600,
+ },
+ {
+ title: "The Hangover",
+ year: 2009,
+ rating: 7.7,
+ votes: 628581,
+ running_times: 6480,
+ },
+ {
+ title: "The Hangover Part II",
+ year: 2011,
+ rating: 6.5,
+ votes: 405784,
+ running_times: 6120,
+ },
+ {
+ title: "The Hangover Part III",
+ year: 2013,
+ rating: 5.9,
+ votes: 248444,
+ running_times: 6000,
+ },
+ {
+ title: "The Happening",
+ year: 2008,
+ rating: 5,
+ votes: 175416,
+ running_times: 5460,
+ },
+ {
+ title: "The Hard Way",
+ year: 1991,
+ rating: 6.3,
+ votes: 15713,
+ running_times: 6660,
+ },
+ {
+ title: "The Hateful Eight",
+ year: 2015,
+ rating: 7.8,
+ votes: 371314,
+ running_times: 11220,
+ },
+ {
+ title: "The Haunted Mansion",
+ year: 2003,
+ rating: 4.9,
+ votes: 35158,
+ running_times: 5280,
+ },
+ {
+ title: "The Haunting",
+ year: 1963,
+ rating: 7.6,
+ votes: 28813,
+ running_times: 6720,
+ },
+ {
+ title: "The Haunting",
+ year: 1999,
+ rating: 4.9,
+ votes: 62383,
+ running_times: 6780,
+ },
+ {
+ title: "The Haunting in Connecticut",
+ year: 2009,
+ rating: 5.9,
+ votes: 53737,
+ running_times: 6120,
+ },
+ {
+ title: "The Haunting in Connecticut 2: Ghosts of Georgia",
+ year: 2013,
+ rating: 5.3,
+ votes: 14226,
+ running_times: 6060,
+ },
+ {
+ title: "The Heartbreak Kid",
+ year: 2007,
+ rating: 5.8,
+ votes: 76510,
+ running_times: 6960,
+ },
+ {
+ title: "The Heat",
+ year: 2013,
+ rating: 6.6,
+ votes: 143870,
+ running_times: 7200,
+ },
+ {
+ title: "The Heiress",
+ year: 1949,
+ rating: 8.2,
+ votes: 10798,
+ running_times: 6900,
+ },
+ {
+ title: "The Help",
+ year: 2011,
+ rating: 8.1,
+ votes: 355833,
+ running_times: 8760,
+ },
+ {
+ title: "The Hidden",
+ year: 1987,
+ rating: 7,
+ votes: 14177,
+ running_times: 5760,
+ },
+ {
+ title: "The Hill",
+ year: 1965,
+ rating: 7.9,
+ votes: 10218,
+ running_times: 7380,
+ },
+ {
+ title: "The Hills Have Eyes",
+ year: 1977,
+ rating: 6.4,
+ votes: 24184,
+ running_times: 5340,
+ },
+ {
+ title: "The Hills Have Eyes",
+ year: 2006,
+ rating: 6.4,
+ votes: 140564,
+ running_times: 6480,
+ },
+ {
+ title: "The Hills Have Eyes II",
+ year: 2007,
+ rating: 5.1,
+ votes: 53674,
+ running_times: 5340,
+ },
+ {
+ title: "The History Boys",
+ year: 2006,
+ rating: 6.9,
+ votes: 18686,
+ running_times: 6540,
+ },
+ {
+ title: "The Hit List",
+ year: 2011,
+ rating: 5.4,
+ votes: 10708,
+ running_times: 5400,
+ },
+ {
+ title: "The Hitcher",
+ year: 1986,
+ rating: 7.3,
+ votes: 36646,
+ running_times: 5820,
+ },
+ {
+ title: "The Hitcher",
+ year: 2007,
+ rating: 5.6,
+ votes: 36919,
+ running_times: 5400,
+ },
+ {
+ title: "The Hitchhiker's Guide to the Galaxy",
+ year: 2005,
+ rating: 6.8,
+ votes: 166812,
+ running_times: 6540,
+ },
+ {
+ title: "The Hitman's Bodyguard",
+ year: 2017,
+ rating: 7,
+ votes: 96031,
+ running_times: 7080,
+ },
+ {
+ title: "The Hoax",
+ year: 2006,
+ rating: 6.7,
+ votes: 15075,
+ running_times: 6960,
+ },
+ {
+ title: "The Hobbit: An Unexpected Journey",
+ year: 2012,
+ rating: 7.9,
+ votes: 685564,
+ running_times: 10920,
+ },
+ {
+ title: "The Hobbit: The Battle of the Five Armies",
+ year: 2014,
+ rating: 7.4,
+ votes: 402317,
+ running_times: 9840,
+ },
+ {
+ title: "The Hobbit: The Desolation of Smaug",
+ year: 2013,
+ rating: 7.9,
+ votes: 530117,
+ running_times: 11160,
+ },
+ {
+ title: "The Hole",
+ year: 2001,
+ rating: 6.2,
+ votes: 40802,
+ running_times: 6120,
+ },
+ {
+ title: "The Hole",
+ year: 2009,
+ rating: 5.7,
+ votes: 20485,
+ running_times: 5520,
+ },
+ {
+ title: "The Holiday",
+ year: 2006,
+ rating: 6.9,
+ votes: 201183,
+ running_times: 8280,
+ },
+ {
+ title: "The Homesman",
+ year: 2014,
+ rating: 6.6,
+ votes: 25011,
+ running_times: 7320,
+ },
+ {
+ title: "The Horse Whisperer",
+ year: 1998,
+ rating: 6.6,
+ votes: 34548,
+ running_times: 10200,
+ },
+ {
+ title: "The Host",
+ year: 2013,
+ rating: 5.9,
+ votes: 99595,
+ running_times: 7500,
+ },
+ {
+ title: "The Hot Chick",
+ year: 2002,
+ rating: 5.5,
+ votes: 80111,
+ running_times: 6240,
+ },
+ {
+ title: "The Hottie & the Nottie",
+ year: 2008,
+ rating: 1.9,
+ votes: 34344,
+ running_times: 5460,
+ },
+ {
+ title: "The Hours",
+ year: 2002,
+ rating: 7.6,
+ votes: 109423,
+ running_times: 6600,
+ },
+ {
+ title: "The House",
+ year: 2017,
+ rating: 5.6,
+ votes: 16827,
+ running_times: 5280,
+ },
+ {
+ title: "The House Bunny",
+ year: 2008,
+ rating: 5.5,
+ votes: 69088,
+ running_times: 5820,
+ },
+ {
+ title: "The House of the Devil",
+ year: 2009,
+ rating: 6.4,
+ votes: 33789,
+ running_times: 5700,
+ },
+ {
+ title: "The House of the Spirits",
+ year: 1993,
+ rating: 6.9,
+ votes: 18218,
+ running_times: 8760,
+ },
+ {
+ title: "The Howling",
+ year: 1981,
+ rating: 6.6,
+ votes: 25122,
+ running_times: 5460,
+ },
+ {
+ title: "The Hudsucker Proxy",
+ year: 1994,
+ rating: 7.3,
+ votes: 69082,
+ running_times: 6660,
+ },
+ {
+ title: "The Human Centipede (First Sequence)",
+ year: 2009,
+ rating: 4.4,
+ votes: 62836,
+ running_times: 5520,
+ },
+ {
+ title: "The Human Centipede II (Full Sequence)",
+ year: 2011,
+ rating: 3.9,
+ votes: 29662,
+ running_times: 5460,
+ },
+ {
+ title: "The Human Centipede III (Final Sequence)",
+ year: 2015,
+ rating: 2.8,
+ votes: 10385,
+ running_times: 6120,
+ },
+ {
+ title: "The Human Race",
+ year: 2013,
+ rating: 5.3,
+ votes: 10292,
+ running_times: 5220,
+ },
+ {
+ title: "The Human Stain",
+ year: 2003,
+ rating: 6.3,
+ votes: 26760,
+ running_times: 6360,
+ },
+ {
+ title: "The Hunchback of Notre Dame",
+ year: 1996,
+ rating: 6.9,
+ votes: 115443,
+ running_times: 5460,
+ },
+ {
+ title: "The Hundred-Foot Journey",
+ year: 2014,
+ rating: 7.3,
+ votes: 62251,
+ running_times: 7320,
+ },
+ {
+ title: "The Hunger",
+ year: 1983,
+ rating: 6.7,
+ votes: 19245,
+ running_times: 5820,
+ },
+ {
+ title: "The Hunger Games",
+ year: 2012,
+ rating: 7.2,
+ votes: 754986,
+ running_times: 8520,
+ },
+ {
+ title: "The Hunger Games: Catching Fire",
+ year: 2013,
+ rating: 7.5,
+ votes: 541328,
+ running_times: 8760,
+ },
+ {
+ title: "The Hunger Games: Mockingjay - Part 1",
+ year: 2014,
+ rating: 6.7,
+ votes: 346570,
+ running_times: 7380,
+ },
+ {
+ title: "The Hunger Games: Mockingjay - Part 2",
+ year: 2015,
+ rating: 6.6,
+ votes: 218419,
+ running_times: 8220,
+ },
+ {
+ title: "The Hunt for Red October",
+ year: 1990,
+ rating: 7.6,
+ votes: 153965,
+ running_times: 8100,
+ },
+ {
+ title: "The Hunted",
+ year: 2003,
+ rating: 6,
+ votes: 38171,
+ running_times: 5640,
+ },
+ {
+ title: "The Hunter",
+ year: 2011,
+ rating: 6.8,
+ votes: 33016,
+ running_times: 6120,
+ },
+ {
+ title: "The Hunting Party",
+ year: 2007,
+ rating: 6.9,
+ votes: 22998,
+ running_times: 6060,
+ },
+ {
+ title: "The Huntsman: Winter's War",
+ year: 2016,
+ rating: 6.1,
+ votes: 73796,
+ running_times: 7200,
+ },
+ {
+ title: "The Hurricane",
+ year: 1999,
+ rating: 7.6,
+ votes: 81748,
+ running_times: 8760,
+ },
+ {
+ title: "The Hurt Locker",
+ year: 2008,
+ rating: 7.6,
+ votes: 363360,
+ running_times: 7860,
+ },
+ {
+ title: "The Hustler",
+ year: 1961,
+ rating: 8,
+ votes: 66871,
+ running_times: 8040,
+ },
+ {
+ title: "The Ice Harvest",
+ year: 2005,
+ rating: 6.3,
+ votes: 21621,
+ running_times: 5520,
+ },
+ {
+ title: "The Ice Storm",
+ year: 1997,
+ rating: 7.5,
+ votes: 48839,
+ running_times: 6720,
+ },
+ {
+ title: "The Iceman",
+ year: 2012,
+ rating: 6.9,
+ votes: 60972,
+ running_times: 6360,
+ },
+ {
+ title: "The Ides of March",
+ year: 2011,
+ rating: 7.1,
+ votes: 199959,
+ running_times: 6060,
+ },
+ {
+ title: "The Illusionist",
+ year: 2006,
+ rating: 7.6,
+ votes: 319514,
+ running_times: 6600,
+ },
+ {
+ title: "The Imaginarium of Doctor Parnassus",
+ year: 2009,
+ rating: 6.8,
+ votes: 132579,
+ running_times: 7380,
+ },
+ {
+ title: "The Imitation Game",
+ year: 2014,
+ rating: 8,
+ votes: 557214,
+ running_times: 6840,
+ },
+ {
+ title: "The Immigrant",
+ year: 2013,
+ rating: 6.6,
+ votes: 24241,
+ running_times: 7200,
+ },
+ {
+ title: "The Importance of Being Earnest",
+ year: 2002,
+ rating: 6.9,
+ votes: 20040,
+ running_times: 5820,
+ },
+ {
+ title: "The Imposter",
+ year: 2012,
+ rating: 7.5,
+ votes: 39049,
+ running_times: 5940,
+ },
+ {
+ title: "The In-Laws",
+ year: 2003,
+ rating: 5.7,
+ votes: 14691,
+ running_times: 5880,
+ },
+ {
+ title: "The Inbetweeners Movie",
+ year: 2011,
+ rating: 6.8,
+ votes: 68706,
+ running_times: 5820,
+ },
+ {
+ title: "The Incredible Burt Wonderstone",
+ year: 2013,
+ rating: 5.9,
+ votes: 64175,
+ running_times: 6000,
+ },
+ {
+ title: "The Incredible Hulk",
+ year: 2008,
+ rating: 6.8,
+ votes: 355393,
+ running_times: 8100,
+ },
+ {
+ title: "The Incredible Shrinking Man",
+ year: 1957,
+ rating: 7.7,
+ votes: 12983,
+ running_times: 4860,
+ },
+ {
+ title: "The Incredibles",
+ year: 2004,
+ rating: 8,
+ votes: 528232,
+ running_times: 6900,
+ },
+ {
+ title: "The Indian in the Cupboard",
+ year: 1995,
+ rating: 5.9,
+ votes: 22226,
+ running_times: 5760,
+ },
+ {
+ title: "The Infiltrator",
+ year: 2016,
+ rating: 7,
+ votes: 52466,
+ running_times: 7620,
+ },
+ {
+ title: "The Informant!",
+ year: 2009,
+ rating: 6.5,
+ votes: 55888,
+ running_times: 6480,
+ },
+ {
+ title: "The Informers",
+ year: 2008,
+ rating: 5,
+ votes: 14859,
+ running_times: 5880,
+ },
+ {
+ title: "The Innkeepers",
+ year: 2011,
+ rating: 5.5,
+ votes: 29339,
+ running_times: 6060,
+ },
+ {
+ title: "The Innocents",
+ year: 1961,
+ rating: 7.9,
+ votes: 21569,
+ running_times: 6000,
+ },
+ {
+ title: "The Insider",
+ year: 1999,
+ rating: 7.9,
+ votes: 142214,
+ running_times: 9420,
+ },
+ {
+ title: "The Intern",
+ year: 2015,
+ rating: 7.1,
+ votes: 170025,
+ running_times: 7260,
+ },
+ {
+ title: "The International",
+ year: 2009,
+ rating: 6.5,
+ votes: 83532,
+ running_times: 7080,
+ },
+ {
+ title: "The Internet's Own Boy: The Story of Aaron Swartz",
+ year: 2014,
+ rating: 8.1,
+ votes: 13666,
+ running_times: 6300,
+ },
+ {
+ title: "The Internship",
+ year: 2013,
+ rating: 6.3,
+ votes: 170490,
+ running_times: 7500,
+ },
+ {
+ title: "The Interpreter",
+ year: 2005,
+ rating: 6.4,
+ votes: 89818,
+ running_times: 7680,
+ },
+ {
+ title: "The Interview",
+ year: 2014,
+ rating: 6.6,
+ votes: 269477,
+ running_times: 6720,
+ },
+ {
+ title: "The Invasion",
+ year: 2007,
+ rating: 5.9,
+ votes: 68278,
+ running_times: 5940,
+ },
+ {
+ title: "The Invention of Lying",
+ year: 2009,
+ rating: 6.4,
+ votes: 100451,
+ running_times: 6000,
+ },
+ {
+ title: "The Invisible",
+ year: 2007,
+ rating: 6.3,
+ votes: 32411,
+ running_times: 6120,
+ },
+ {
+ title: "The Invisible Man",
+ year: 1933,
+ rating: 7.7,
+ votes: 23608,
+ running_times: 4260,
+ },
+ {
+ title: "The Invitation",
+ year: 2015,
+ rating: 6.7,
+ votes: 49850,
+ running_times: 6000,
+ },
+ {
+ title: "The Ipcress File",
+ year: 1965,
+ rating: 7.3,
+ votes: 11333,
+ running_times: 6540,
+ },
+ {
+ title: "The Iron Giant",
+ year: 1999,
+ rating: 8,
+ votes: 142069,
+ running_times: 5400,
+ },
+ {
+ title: "The Iron Lady",
+ year: 2011,
+ rating: 6.4,
+ votes: 89826,
+ running_times: 6300,
+ },
+ {
+ title: "The Island",
+ year: 2005,
+ rating: 6.9,
+ votes: 277513,
+ running_times: 8160,
+ },
+ {
+ title: "The Island of Dr. Moreau",
+ year: 1996,
+ rating: 4.4,
+ votes: 27744,
+ running_times: 5940,
+ },
+ {
+ title: "The Italian Job",
+ year: 1969,
+ rating: 7.4,
+ votes: 33958,
+ running_times: 5940,
+ },
+ {
+ title: "The Italian Job",
+ year: 2003,
+ rating: 7,
+ votes: 305232,
+ running_times: 6660,
+ },
+ {
+ title: "The Jackal",
+ year: 1997,
+ rating: 6.4,
+ votes: 93573,
+ running_times: 7440,
+ },
+ {
+ title: "The Jacket",
+ year: 2005,
+ rating: 7.1,
+ votes: 98859,
+ running_times: 6180,
+ },
+ {
+ title: "The Jane Austen Book Club",
+ year: 2007,
+ rating: 6.8,
+ votes: 22992,
+ running_times: 6360,
+ },
+ {
+ title: "The Jerk",
+ year: 1979,
+ rating: 7.2,
+ votes: 46074,
+ running_times: 5640,
+ },
+ {
+ title: "The Jewel of the Nile",
+ year: 1985,
+ rating: 6.1,
+ votes: 42960,
+ running_times: 6360,
+ },
+ {
+ title: "The Joneses",
+ year: 2009,
+ rating: 6.5,
+ votes: 35379,
+ running_times: 5760,
+ },
+ {
+ title: "The Joy Luck Club",
+ year: 1993,
+ rating: 7.6,
+ votes: 13162,
+ running_times: 8340,
+ },
+ {
+ title: "The Judge",
+ year: 2014,
+ rating: 7.4,
+ votes: 151986,
+ running_times: 8460,
+ },
+ {
+ title: "The Jungle Book",
+ year: 1967,
+ rating: 7.6,
+ votes: 137104,
+ running_times: 4680,
+ },
+ {
+ title: "The Jungle Book",
+ year: 1994,
+ rating: 6,
+ votes: 14136,
+ running_times: 6660,
+ },
+ {
+ title: "The Jungle Book",
+ year: 2016,
+ rating: 7.5,
+ votes: 214632,
+ running_times: 6360,
+ },
+ {
+ title: "The Jungle Book 2",
+ year: 2003,
+ rating: 5.4,
+ votes: 12654,
+ running_times: 4320,
+ },
+ {
+ title: "The Juror",
+ year: 1996,
+ rating: 5.6,
+ votes: 14913,
+ running_times: 7080,
+ },
+ {
+ title: "The Karate Kid",
+ year: 1984,
+ rating: 7.2,
+ votes: 143057,
+ running_times: 7560,
+ },
+ {
+ title: "The Karate Kid",
+ year: 2010,
+ rating: 6.2,
+ votes: 133659,
+ running_times: 8400,
+ },
+ {
+ title: "The Karate Kid Part II",
+ year: 1986,
+ rating: 5.9,
+ votes: 59233,
+ running_times: 6780,
+ },
+ {
+ title: "The Karate Kid Part III",
+ year: 1989,
+ rating: 5,
+ votes: 39191,
+ running_times: 6720,
+ },
+ {
+ title: "The Kentucky Fried Movie",
+ year: 1977,
+ rating: 6.5,
+ votes: 14750,
+ running_times: 4980,
+ },
+ {
+ title: "The Kid",
+ year: 1921,
+ rating: 8.3,
+ votes: 80699,
+ running_times: 4080,
+ },
+ {
+ title: "The Kid",
+ year: 2000,
+ rating: 6.1,
+ votes: 36333,
+ running_times: 6240,
+ },
+ {
+ title: "The Kids Are All Right",
+ year: 2010,
+ rating: 7.1,
+ votes: 116244,
+ running_times: 6360,
+ },
+ {
+ title: "The Killer Inside Me",
+ year: 2010,
+ rating: 6.1,
+ votes: 30253,
+ running_times: 6540,
+ },
+ {
+ title: "The Killers",
+ year: 1946,
+ rating: 7.8,
+ votes: 15492,
+ running_times: 6180,
+ },
+ {
+ title: "The Killing",
+ year: 1956,
+ rating: 8,
+ votes: 67769,
+ running_times: 5100,
+ },
+ {
+ title: "The Killing Fields",
+ year: 1984,
+ rating: 7.9,
+ votes: 44901,
+ running_times: 8460,
+ },
+ {
+ title: "The Killing Room",
+ year: 2009,
+ rating: 5.7,
+ votes: 12284,
+ running_times: 5580,
+ },
+ {
+ title: "The Killing of a Sacred Deer",
+ year: 2017,
+ rating: 7.5,
+ votes: 17681,
+ running_times: 7260,
+ },
+ {
+ title: "The King and I",
+ year: 1956,
+ rating: 7.5,
+ votes: 20645,
+ running_times: 7980,
+ },
+ {
+ title: "The King of Comedy",
+ year: 1982,
+ rating: 7.8,
+ votes: 60357,
+ running_times: 6540,
+ },
+ {
+ title: "The King of Kong",
+ year: 2007,
+ rating: 8.2,
+ votes: 32123,
+ running_times: 4740,
+ },
+ {
+ title: "The King's Speech",
+ year: 2010,
+ rating: 8,
+ votes: 550814,
+ running_times: 7080,
+ },
+ {
+ title: "The Kingdom",
+ year: 2007,
+ rating: 7.1,
+ votes: 107076,
+ running_times: 6600,
+ },
+ {
+ title: "The Kings of Summer",
+ year: 2013,
+ rating: 7.2,
+ votes: 68006,
+ running_times: 5700,
+ },
+ {
+ title: "The Kite Runner",
+ year: 2007,
+ rating: 7.6,
+ votes: 71569,
+ running_times: 7680,
+ },
+ {
+ title: "The LEGO Batman Movie",
+ year: 2017,
+ rating: 7.3,
+ votes: 87348,
+ running_times: 6240,
+ },
+ {
+ title: "The LEGO Movie",
+ year: 2014,
+ rating: 7.8,
+ votes: 277876,
+ running_times: 6000,
+ },
+ {
+ title: "The Ladies Man",
+ year: 2000,
+ rating: 5.1,
+ votes: 11284,
+ running_times: 5040,
+ },
+ {
+ title: "The Lady Eve",
+ year: 1941,
+ rating: 8,
+ votes: 16038,
+ running_times: 5640,
+ },
+ {
+ title: "The Lady Vanishes",
+ year: 1938,
+ rating: 7.9,
+ votes: 39168,
+ running_times: 5760,
+ },
+ {
+ title: "The Lady from Shanghai",
+ year: 1947,
+ rating: 7.7,
+ votes: 21256,
+ running_times: 5520,
+ },
+ {
+ title: "The Lady in the Van",
+ year: 2015,
+ rating: 6.7,
+ votes: 18691,
+ running_times: 6240,
+ },
+ {
+ title: "The Ladykillers",
+ year: 1955,
+ rating: 7.8,
+ votes: 22382,
+ running_times: 5460,
+ },
+ {
+ title: "The Ladykillers",
+ year: 2004,
+ rating: 6.2,
+ votes: 89327,
+ running_times: 6240,
+ },
+ {
+ title: "The Lake House",
+ year: 2006,
+ rating: 6.8,
+ votes: 122280,
+ running_times: 5940,
+ },
+ {
+ title: "The Land Before Time",
+ year: 1988,
+ rating: 7.4,
+ votes: 67462,
+ running_times: 4140,
+ },
+ {
+ title: "The Last Airbender",
+ year: 2010,
+ rating: 4.2,
+ votes: 128562,
+ running_times: 6180,
+ },
+ {
+ title: "The Last Boy Scout",
+ year: 1991,
+ rating: 6.9,
+ votes: 81045,
+ running_times: 6300,
+ },
+ {
+ title: "The Last Castle",
+ year: 2001,
+ rating: 6.9,
+ votes: 60790,
+ running_times: 7860,
+ },
+ {
+ title: "The Last Days of Disco",
+ year: 1998,
+ rating: 6.6,
+ votes: 10594,
+ running_times: 6780,
+ },
+ {
+ title: "The Last Days on Mars",
+ year: 2013,
+ rating: 5.5,
+ votes: 31366,
+ running_times: 5880,
+ },
+ {
+ title: "The Last Detail",
+ year: 1973,
+ rating: 7.6,
+ votes: 18086,
+ running_times: 6240,
+ },
+ {
+ title: "The Last Dragon",
+ year: 1985,
+ rating: 6.9,
+ votes: 10341,
+ running_times: 6540,
+ },
+ {
+ title: "The Last Emperor",
+ year: 1987,
+ rating: 7.8,
+ votes: 77398,
+ running_times: 13140,
+ },
+ {
+ title: "The Last Exorcism",
+ year: 2010,
+ rating: 5.6,
+ votes: 43905,
+ running_times: 5220,
+ },
+ {
+ title: "The Last Exorcism Part II",
+ year: 2013,
+ rating: 4,
+ votes: 14396,
+ running_times: 5580,
+ },
+ {
+ title: "The Last House on the Left",
+ year: 1972,
+ rating: 6,
+ votes: 27511,
+ running_times: 5460,
+ },
+ {
+ title: "The Last House on the Left",
+ year: 2009,
+ rating: 6.6,
+ votes: 73887,
+ running_times: 6840,
+ },
+ {
+ title: "The Last King of Scotland",
+ year: 2006,
+ rating: 7.7,
+ votes: 156424,
+ running_times: 7380,
+ },
+ {
+ title: "The Last Kiss",
+ year: 2006,
+ rating: 6.5,
+ votes: 39056,
+ running_times: 6900,
+ },
+ {
+ title: "The Last Legion",
+ year: 2007,
+ rating: 5.4,
+ votes: 31238,
+ running_times: 6120,
+ },
+ {
+ title: "The Last Man on Earth",
+ year: 1964,
+ rating: 6.9,
+ votes: 14115,
+ running_times: 5160,
+ },
+ {
+ title: "The Last Mimzy",
+ year: 2007,
+ rating: 6.3,
+ votes: 19614,
+ running_times: 5760,
+ },
+ {
+ title: "The Last Picture Show",
+ year: 1971,
+ rating: 8.1,
+ votes: 34547,
+ running_times: 7620,
+ },
+ {
+ title: "The Last Samurai",
+ year: 2003,
+ rating: 7.7,
+ votes: 343858,
+ running_times: 9240,
+ },
+ {
+ title: "The Last Seduction",
+ year: 1994,
+ rating: 7.1,
+ votes: 17490,
+ running_times: 7740,
+ },
+ {
+ title: "The Last Song",
+ year: 2010,
+ rating: 5.9,
+ votes: 67037,
+ running_times: 6420,
+ },
+ {
+ title: "The Last Stand",
+ year: 2013,
+ rating: 6.4,
+ votes: 121189,
+ running_times: 6420,
+ },
+ {
+ title: "The Last Starfighter",
+ year: 1984,
+ rating: 6.7,
+ votes: 31850,
+ running_times: 6060,
+ },
+ {
+ title: "The Last Station",
+ year: 2009,
+ rating: 7,
+ votes: 16168,
+ running_times: 6720,
+ },
+ {
+ title: "The Last Supper",
+ year: 1995,
+ rating: 6.8,
+ votes: 12803,
+ running_times: 5520,
+ },
+ {
+ title: "The Last Temptation of Christ",
+ year: 1988,
+ rating: 7.6,
+ votes: 43169,
+ running_times: 9840,
+ },
+ {
+ title: "The Last Unicorn",
+ year: 1982,
+ rating: 7.5,
+ votes: 20743,
+ running_times: 5520,
+ },
+ {
+ title: "The Last Waltz",
+ year: 1978,
+ rating: 8.2,
+ votes: 13674,
+ running_times: 7020,
+ },
+ {
+ title: "The Last Witch Hunter",
+ year: 2015,
+ rating: 6,
+ votes: 76521,
+ running_times: 6360,
+ },
+ {
+ title: "The Last of the Mohicans",
+ year: 1992,
+ rating: 7.8,
+ votes: 124618,
+ running_times: 7020,
+ },
+ {
+ title: "The Lavender Hill Mob",
+ year: 1951,
+ rating: 7.7,
+ votes: 10460,
+ running_times: 4860,
+ },
+ {
+ title: "The Lawnmower Man",
+ year: 1992,
+ rating: 5.4,
+ votes: 29850,
+ running_times: 8400,
+ },
+ {
+ title: "The Lazarus Effect",
+ year: 2015,
+ rating: 5.2,
+ votes: 33199,
+ running_times: 4980,
+ },
+ {
+ title: "The Lazarus Project",
+ year: 2008,
+ rating: 6.2,
+ votes: 15187,
+ running_times: 6000,
+ },
+ {
+ title: "The League of Extraordinary Gentlemen",
+ year: 2003,
+ rating: 5.8,
+ votes: 149821,
+ running_times: 6600,
+ },
+ {
+ title: "The Ledge",
+ year: 2011,
+ rating: 6.6,
+ votes: 16738,
+ running_times: 6060,
+ },
+ {
+ title: "The Legend of Bagger Vance",
+ year: 2000,
+ rating: 6.7,
+ votes: 48336,
+ running_times: 7560,
+ },
+ {
+ title: "The Legend of Bhagat Singh",
+ year: 2002,
+ rating: 8.1,
+ votes: 11090,
+ running_times: 9300,
+ },
+ {
+ title: "The Legend of Hell House",
+ year: 1973,
+ rating: 6.8,
+ votes: 10186,
+ running_times: 5700,
+ },
+ {
+ title: "The Legend of Hercules",
+ year: 2014,
+ rating: 4.2,
+ votes: 47928,
+ running_times: 5940,
+ },
+ {
+ title: "The Legend of Tarzan",
+ year: 2016,
+ rating: 6.3,
+ votes: 132022,
+ running_times: 6600,
+ },
+ {
+ title: "The Legend of Zorro",
+ year: 2005,
+ rating: 5.9,
+ votes: 78734,
+ running_times: 7740,
+ },
+ {
+ title: "The Libertine",
+ year: 2004,
+ rating: 6.4,
+ votes: 32595,
+ running_times: 6840,
+ },
+ {
+ title: "The Life Aquatic with Steve Zissou",
+ year: 2004,
+ rating: 7.3,
+ votes: 153261,
+ running_times: 7140,
+ },
+ {
+ title: "The Life Before Her Eyes",
+ year: 2007,
+ rating: 6.4,
+ votes: 12657,
+ running_times: 5400,
+ },
+ {
+ title: "The Life and Death of Colonel Blimp",
+ year: 1943,
+ rating: 8.2,
+ votes: 10828,
+ running_times: 9780,
+ },
+ {
+ title: "The Life and Death of Peter Sellers",
+ year: 2004,
+ rating: 6.9,
+ votes: 13563,
+ running_times: 7320,
+ },
+ {
+ title: "The Life of David Gale",
+ year: 2003,
+ rating: 7.6,
+ votes: 95802,
+ running_times: 7800,
+ },
+ {
+ title: "The Lifeguard",
+ year: 2013,
+ rating: 5.7,
+ votes: 12490,
+ running_times: 5880,
+ },
+ {
+ title: "The Light Between Oceans",
+ year: 2016,
+ rating: 7.2,
+ votes: 34727,
+ running_times: 7980,
+ },
+ {
+ title: "The Limey",
+ year: 1999,
+ rating: 7.1,
+ votes: 26116,
+ running_times: 5340,
+ },
+ {
+ title: "The Limits of Control",
+ year: 2009,
+ rating: 6.3,
+ votes: 17145,
+ running_times: 6960,
+ },
+ {
+ title: "The Lincoln Lawyer",
+ year: 2011,
+ rating: 7.3,
+ votes: 186192,
+ running_times: 7080,
+ },
+ {
+ title: "The Lion King",
+ year: 1994,
+ rating: 8.5,
+ votes: 735442,
+ running_times: 5280,
+ },
+ {
+ title: "The Lion in Winter",
+ year: 1968,
+ rating: 8.1,
+ votes: 24882,
+ running_times: 8220,
+ },
+ {
+ title: "The Little Death",
+ year: 2014,
+ rating: 7.1,
+ votes: 21713,
+ running_times: 5880,
+ },
+ {
+ title: "The Little Girl Who Lives Down the Lane",
+ year: 1976,
+ rating: 7.1,
+ votes: 10499,
+ running_times: 6000,
+ },
+ {
+ title: "The Little Mermaid",
+ year: 1989,
+ rating: 7.6,
+ votes: 191159,
+ running_times: 4980,
+ },
+ {
+ title: "The Little Prince",
+ year: 2015,
+ rating: 7.8,
+ votes: 42970,
+ running_times: 6480,
+ },
+ {
+ title: "The Little Rascals",
+ year: 1994,
+ rating: 6.3,
+ votes: 37088,
+ running_times: 4920,
+ },
+ {
+ title: "The Little Shop of Horrors",
+ year: 1960,
+ rating: 6.3,
+ votes: 13565,
+ running_times: 4320,
+ },
+ {
+ title: "The Living Daylights",
+ year: 1987,
+ rating: 6.7,
+ votes: 75085,
+ running_times: 7800,
+ },
+ {
+ title: "The Lizzie McGuire Movie",
+ year: 2003,
+ rating: 5.4,
+ votes: 30483,
+ running_times: 5640,
+ },
+ {
+ title: "The Lobster",
+ year: 2015,
+ rating: 7.1,
+ votes: 138204,
+ running_times: 7140,
+ },
+ {
+ title: "The Loft",
+ year: 2014,
+ rating: 6.3,
+ votes: 41266,
+ running_times: 6480,
+ },
+ {
+ title: "The Lone Ranger",
+ year: 2013,
+ rating: 6.5,
+ votes: 196792,
+ running_times: 9000,
+ },
+ {
+ title: "The Long Good Friday",
+ year: 1980,
+ rating: 7.7,
+ votes: 15439,
+ running_times: 6840,
+ },
+ {
+ title: "The Long Goodbye",
+ year: 1973,
+ rating: 7.7,
+ votes: 20432,
+ running_times: 6720,
+ },
+ {
+ title: "The Long Kiss Goodnight",
+ year: 1996,
+ rating: 6.7,
+ votes: 64190,
+ running_times: 7260,
+ },
+ {
+ title: "The Longest Day",
+ year: 1962,
+ rating: 7.8,
+ votes: 46242,
+ running_times: 10680,
+ },
+ {
+ title: "The Longest Ride",
+ year: 2015,
+ rating: 7.1,
+ votes: 62410,
+ running_times: 7380,
+ },
+ {
+ title: "The Longest Yard",
+ year: 1974,
+ rating: 7.1,
+ votes: 14139,
+ running_times: 7320,
+ },
+ {
+ title: "The Longest Yard",
+ year: 2005,
+ rating: 6.4,
+ votes: 141183,
+ running_times: 6780,
+ },
+ {
+ title: "The Lookout",
+ year: 2007,
+ rating: 7.1,
+ votes: 53036,
+ running_times: 5940,
+ },
+ {
+ title: "The Lorax",
+ year: 2012,
+ rating: 6.4,
+ votes: 83985,
+ running_times: 5160,
+ },
+ {
+ title: "The Lord of the Rings",
+ year: 1978,
+ rating: 6.2,
+ votes: 25910,
+ running_times: 7920,
+ },
+ {
+ title: "The Lord of the Rings: The Fellowship of the Ring",
+ year: 2001,
+ rating: 8.8,
+ votes: 1369632,
+ running_times: 13680,
+ },
+ {
+ title: "The Lord of the Rings: The Return of the King",
+ year: 2003,
+ rating: 8.9,
+ votes: 1349449,
+ running_times: 15780,
+ },
+ {
+ title: "The Lord of the Rings: The Two Towers",
+ year: 2002,
+ rating: 8.7,
+ votes: 1221456,
+ running_times: 14100,
+ },
+ {
+ title: "The Lords of Salem",
+ year: 2012,
+ rating: 5.1,
+ votes: 22967,
+ running_times: 6060,
+ },
+ {
+ title: "The Losers",
+ year: 2010,
+ rating: 6.4,
+ votes: 79049,
+ running_times: 5820,
+ },
+ {
+ title: "The Lost Boys",
+ year: 1987,
+ rating: 7.3,
+ votes: 102017,
+ running_times: 5820,
+ },
+ {
+ title: "The Lost City of Z",
+ year: 2016,
+ rating: 6.6,
+ votes: 45774,
+ running_times: 8460,
+ },
+ {
+ title: "The Lost Weekend",
+ year: 1945,
+ rating: 8,
+ votes: 27909,
+ running_times: 6060,
+ },
+ {
+ title: "The Lost World: Jurassic Park",
+ year: 1997,
+ rating: 6.5,
+ votes: 308796,
+ running_times: 7740,
+ },
+ {
+ title: "The Love Bug",
+ year: 1968,
+ rating: 6.5,
+ votes: 11610,
+ running_times: 6480,
+ },
+ {
+ title: "The Love Guru",
+ year: 2008,
+ rating: 3.8,
+ votes: 45254,
+ running_times: 5220,
+ },
+ {
+ title: "The Love Punch",
+ year: 2013,
+ rating: 5.7,
+ votes: 10551,
+ running_times: 5640,
+ },
+ {
+ title: "The Loved Ones",
+ year: 2009,
+ rating: 6.7,
+ votes: 31227,
+ running_times: 5040,
+ },
+ {
+ title: "The Lovely Bones",
+ year: 2009,
+ rating: 6.7,
+ votes: 134513,
+ running_times: 8100,
+ },
+ {
+ title: "The Lucky One",
+ year: 2012,
+ rating: 6.5,
+ votes: 86309,
+ running_times: 6060,
+ },
+ {
+ title: "The Lucky Ones",
+ year: 2008,
+ rating: 7,
+ votes: 12384,
+ running_times: 6900,
+ },
+ {
+ title: "The Machine",
+ year: 2013,
+ rating: 6.1,
+ votes: 27158,
+ running_times: 5460,
+ },
+ {
+ title: "The Machinist",
+ year: 2004,
+ rating: 7.7,
+ votes: 307967,
+ running_times: 6060,
+ },
+ {
+ title: "The Madness of King George",
+ year: 1994,
+ rating: 7.2,
+ votes: 13102,
+ running_times: 6240,
+ },
+ {
+ title: "The Magdalene Sisters",
+ year: 2002,
+ rating: 7.8,
+ votes: 23532,
+ running_times: 6840,
+ },
+ {
+ title: "The Magic of Belle Isle",
+ year: 2012,
+ rating: 7,
+ votes: 14905,
+ running_times: 6540,
+ },
+ {
+ title: "The Magnificent Ambersons",
+ year: 1942,
+ rating: 7.9,
+ votes: 18255,
+ running_times: 8880,
+ },
+ {
+ title: "The Magnificent Seven",
+ year: 1960,
+ rating: 7.8,
+ votes: 75093,
+ running_times: 7680,
+ },
+ {
+ title: "The Magnificent Seven",
+ year: 2016,
+ rating: 6.9,
+ votes: 144193,
+ running_times: 7920,
+ },
+ {
+ title: "The Maiden Heist",
+ year: 2009,
+ rating: 6.1,
+ votes: 13687,
+ running_times: 5400,
+ },
+ {
+ title: "The Majestic",
+ year: 2001,
+ rating: 6.9,
+ votes: 47475,
+ running_times: 9120,
+ },
+ {
+ title: "The Maltese Falcon",
+ year: 1941,
+ rating: 8.1,
+ votes: 125756,
+ running_times: 6000,
+ },
+ {
+ title: "The Man",
+ year: 2005,
+ rating: 5.5,
+ votes: 22837,
+ running_times: 4980,
+ },
+ {
+ title: "The Man Who Cried",
+ year: 2000,
+ rating: 6.2,
+ votes: 13144,
+ running_times: 6000,
+ },
+ {
+ title: "The Man Who Fell to Earth",
+ year: 1976,
+ rating: 6.7,
+ votes: 19563,
+ running_times: 8340,
+ },
+ {
+ title: "The Man Who Knew Infinity",
+ year: 2015,
+ rating: 7.2,
+ votes: 35156,
+ running_times: 6480,
+ },
+ {
+ title: "The Man Who Knew Too Little",
+ year: 1997,
+ rating: 6.6,
+ votes: 25635,
+ running_times: 5640,
+ },
+ {
+ title: "The Man Who Knew Too Much",
+ year: 1934,
+ rating: 6.9,
+ votes: 13970,
+ running_times: 4500,
+ },
+ {
+ title: "The Man Who Knew Too Much",
+ year: 1956,
+ rating: 7.5,
+ votes: 47038,
+ running_times: 7200,
+ },
+ {
+ title: "The Man Who Shot Liberty Valance",
+ year: 1962,
+ rating: 8.1,
+ votes: 58224,
+ running_times: 7440,
+ },
+ {
+ title: "The Man Who Wasn't There",
+ year: 2001,
+ rating: 7.6,
+ votes: 91464,
+ running_times: 7080,
+ },
+ {
+ title: "The Man Who Would Be King",
+ year: 1975,
+ rating: 7.9,
+ votes: 38413,
+ running_times: 7740,
+ },
+ {
+ title: "The Man Without a Face",
+ year: 1993,
+ rating: 6.7,
+ votes: 24519,
+ running_times: 6900,
+ },
+ {
+ title: "The Man from Earth",
+ year: 2007,
+ rating: 8,
+ votes: 146211,
+ running_times: 5220,
+ },
+ {
+ title: "The Man from U.N.C.L.E.",
+ year: 2015,
+ rating: 7.3,
+ votes: 216468,
+ running_times: 6960,
+ },
+ {
+ title: "The Man in the Iron Mask",
+ year: 1998,
+ rating: 6.5,
+ votes: 136416,
+ running_times: 7920,
+ },
+ {
+ title: "The Man in the Moon",
+ year: 1991,
+ rating: 7.4,
+ votes: 13109,
+ running_times: 5940,
+ },
+ {
+ title: "The Man with One Red Shoe",
+ year: 1985,
+ rating: 5.7,
+ votes: 12850,
+ running_times: 5520,
+ },
+ {
+ title: "The Man with Two Brains",
+ year: 1983,
+ rating: 6.4,
+ votes: 21124,
+ running_times: 5580,
+ },
+ {
+ title: "The Man with the Golden Gun",
+ year: 1974,
+ rating: 6.8,
+ votes: 80331,
+ running_times: 7500,
+ },
+ {
+ title: "The Man with the Iron Fists",
+ year: 2012,
+ rating: 5.4,
+ votes: 56139,
+ running_times: 6420,
+ },
+ {
+ title: "The Manchurian Candidate",
+ year: 1962,
+ rating: 8,
+ votes: 64529,
+ running_times: 7560,
+ },
+ {
+ title: "The Manchurian Candidate",
+ year: 2004,
+ rating: 6.6,
+ votes: 92180,
+ running_times: 7740,
+ },
+ {
+ title: "The Many Adventures of Winnie the Pooh",
+ year: 1977,
+ rating: 7.6,
+ votes: 27101,
+ running_times: 4440,
+ },
+ {
+ title: "The Marine",
+ year: 2006,
+ rating: 4.7,
+ votes: 29126,
+ running_times: 5520,
+ },
+ {
+ title: "The Martian",
+ year: 2015,
+ rating: 8,
+ votes: 592557,
+ running_times: 9060,
+ },
+ {
+ title: "The Mask",
+ year: 1994,
+ rating: 6.9,
+ votes: 290014,
+ running_times: 6840,
+ },
+ {
+ title: "The Mask of Zorro",
+ year: 1998,
+ rating: 6.7,
+ votes: 146223,
+ running_times: 8160,
+ },
+ {
+ title: "The Master",
+ year: 2012,
+ rating: 7.1,
+ votes: 117674,
+ running_times: 8280,
+ },
+ {
+ title: "The Master of Disguise",
+ year: 2002,
+ rating: 3.3,
+ votes: 19140,
+ running_times: 4800,
+ },
+ {
+ title: "The Matador",
+ year: 2005,
+ rating: 6.8,
+ votes: 41655,
+ running_times: 5760,
+ },
+ {
+ title: "The Matrix",
+ year: 1999,
+ rating: 8.7,
+ votes: 1358510,
+ running_times: 8160,
+ },
+ {
+ title: "The Matrix Reloaded",
+ year: 2003,
+ rating: 7.2,
+ votes: 450569,
+ running_times: 8280,
+ },
+ {
+ title: "The Matrix Revolutions",
+ year: 2003,
+ rating: 6.7,
+ votes: 390666,
+ running_times: 7740,
+ },
+ {
+ title: "The Maze Runner",
+ year: 2014,
+ rating: 6.8,
+ votes: 349853,
+ running_times: 6780,
+ },
+ {
+ title: "The Meaning of Life",
+ year: 1983,
+ rating: 7.6,
+ votes: 95426,
+ running_times: 6720,
+ },
+ {
+ title: "The Mechanic",
+ year: 2011,
+ rating: 6.6,
+ votes: 132870,
+ running_times: 5580,
+ },
+ {
+ title: "The Medallion",
+ year: 2003,
+ rating: 5.2,
+ votes: 33182,
+ running_times: 6480,
+ },
+ {
+ title: "The Men Who Stare at Goats",
+ year: 2009,
+ rating: 6.2,
+ votes: 115503,
+ running_times: 5640,
+ },
+ {
+ title: "The Merchant of Venice",
+ year: 2004,
+ rating: 7.1,
+ votes: 31425,
+ running_times: 8040,
+ },
+ {
+ title: "The Message",
+ year: 1976,
+ rating: 8.3,
+ votes: 37406,
+ running_times: 10620,
+ },
+ {
+ title: "The Messenger",
+ year: 2009,
+ rating: 7.1,
+ votes: 31080,
+ running_times: 6780,
+ },
+ {
+ title: "The Messengers",
+ year: 2007,
+ rating: 5.4,
+ votes: 35223,
+ running_times: 5400,
+ },
+ {
+ title: "The Mexican",
+ year: 2001,
+ rating: 6.1,
+ votes: 92498,
+ running_times: 7380,
+ },
+ {
+ title: "The Meyerowitz Stories (New and Selected)",
+ year: 2017,
+ rating: 7.1,
+ votes: 15162,
+ running_times: 6720,
+ },
+ {
+ title: "The Midnight Meat Train",
+ year: 2008,
+ rating: 6.1,
+ votes: 52051,
+ running_times: 6180,
+ },
+ {
+ title: "The Mighty",
+ year: 1998,
+ rating: 7.3,
+ votes: 11094,
+ running_times: 6000,
+ },
+ {
+ title: "The Mighty Ducks",
+ year: 1992,
+ rating: 6.5,
+ votes: 48711,
+ running_times: 6000,
+ },
+ {
+ title: "The Million Dollar Hotel",
+ year: 2000,
+ rating: 5.9,
+ votes: 19243,
+ running_times: 7320,
+ },
+ {
+ title: "The Miracle Worker",
+ year: 1962,
+ rating: 8.1,
+ votes: 13427,
+ running_times: 6360,
+ },
+ {
+ title: "The Mirror Has Two Faces",
+ year: 1996,
+ rating: 6.5,
+ votes: 12283,
+ running_times: 7560,
+ },
+ {
+ title: "The Misfits",
+ year: 1961,
+ rating: 7.4,
+ votes: 14251,
+ running_times: 7500,
+ },
+ {
+ title: "The Missing",
+ year: 2003,
+ rating: 6.5,
+ votes: 29324,
+ running_times: 9240,
+ },
+ {
+ title: "The Mission",
+ year: 1986,
+ rating: 7.5,
+ votes: 48098,
+ running_times: 7500,
+ },
+ {
+ title: "The Mist",
+ year: 2007,
+ rating: 7.2,
+ votes: 242656,
+ running_times: 7560,
+ },
+ {
+ title: "The Money Pit",
+ year: 1986,
+ rating: 6.3,
+ votes: 41778,
+ running_times: 5460,
+ },
+ {
+ title: "The Monster",
+ year: 2016,
+ rating: 5.4,
+ votes: 10461,
+ running_times: 5460,
+ },
+ {
+ title: "The Monster Squad",
+ year: 1987,
+ rating: 7.1,
+ votes: 21965,
+ running_times: 4740,
+ },
+ {
+ title: "The Monuments Men",
+ year: 2014,
+ rating: 6.1,
+ votes: 111036,
+ running_times: 7080,
+ },
+ {
+ title: "The Mortal Instruments: City of Bones",
+ year: 2013,
+ rating: 5.9,
+ votes: 115406,
+ running_times: 7800,
+ },
+ {
+ title: "The Mosquito Coast",
+ year: 1986,
+ rating: 6.6,
+ votes: 23286,
+ running_times: 7020,
+ },
+ {
+ title: "The Mothman Prophecies",
+ year: 2002,
+ rating: 6.5,
+ votes: 67631,
+ running_times: 7680,
+ },
+ {
+ title: "The Mountain Between Us",
+ year: 2017,
+ rating: 6.3,
+ votes: 12554,
+ running_times: 6720,
+ },
+ {
+ title: "The Mummy",
+ year: 1932,
+ rating: 7.2,
+ votes: 18569,
+ running_times: 4380,
+ },
+ {
+ title: "The Mummy",
+ year: 1999,
+ rating: 7,
+ votes: 343729,
+ running_times: 7440,
+ },
+ {
+ title: "The Mummy",
+ year: 2017,
+ rating: 5.5,
+ votes: 114356,
+ running_times: 6600,
+ },
+ {
+ title: "The Mummy Returns",
+ year: 2001,
+ rating: 6.3,
+ votes: 266813,
+ running_times: 7800,
+ },
+ {
+ title: "The Mummy: Tomb of the Dragon Emperor",
+ year: 2008,
+ rating: 5.2,
+ votes: 129879,
+ running_times: 6720,
+ },
+ {
+ title: "The Muppet Christmas Carol",
+ year: 1992,
+ rating: 7.7,
+ votes: 38106,
+ running_times: 5340,
+ },
+ {
+ title: "The Muppet Movie",
+ year: 1979,
+ rating: 7.6,
+ votes: 27403,
+ running_times: 5700,
+ },
+ {
+ title: "The Muppets",
+ year: 2011,
+ rating: 7.1,
+ votes: 78899,
+ running_times: 6180,
+ },
+ {
+ title: "The Muppets Take Manhattan",
+ year: 1984,
+ rating: 6.9,
+ votes: 16510,
+ running_times: 5640,
+ },
+ {
+ title: "The Music Man",
+ year: 1962,
+ rating: 7.7,
+ votes: 13834,
+ running_times: 9060,
+ },
+ {
+ title: "The Musketeer",
+ year: 2001,
+ rating: 4.7,
+ votes: 13252,
+ running_times: 6240,
+ },
+ {
+ title: "The Naked Gun 2½: The Smell of Fear",
+ year: 1991,
+ rating: 6.8,
+ votes: 90089,
+ running_times: 5100,
+ },
+ {
+ title: "The Naked Gun: From the Files of Police Squad!",
+ year: 1988,
+ rating: 7.6,
+ votes: 126110,
+ running_times: 5100,
+ },
+ {
+ title: "The Namesake",
+ year: 2006,
+ rating: 7.6,
+ votes: 17432,
+ running_times: 7320,
+ },
+ {
+ title: "The Nanny Diaries",
+ year: 2007,
+ rating: 6.2,
+ votes: 51391,
+ running_times: 6360,
+ },
+ {
+ title: "The Natural",
+ year: 1984,
+ rating: 7.5,
+ votes: 36890,
+ running_times: 8640,
+ },
+ {
+ title: "The Necessary Death of Charlie Countryman",
+ year: 2013,
+ rating: 6.4,
+ votes: 23761,
+ running_times: 6180,
+ },
+ {
+ title: "The Negotiator",
+ year: 1998,
+ rating: 7.3,
+ votes: 114963,
+ running_times: 8400,
+ },
+ {
+ title: "The Neon Demon",
+ year: 2016,
+ rating: 6.2,
+ votes: 59341,
+ running_times: 7080,
+ },
+ {
+ title: "The Net",
+ year: 1995,
+ rating: 5.9,
+ votes: 52305,
+ running_times: 6840,
+ },
+ {
+ title: "The NeverEnding Story II: The Next Chapter",
+ year: 1990,
+ rating: 5.1,
+ votes: 19978,
+ running_times: 5400,
+ },
+ {
+ title: "The New Daughter",
+ year: 2009,
+ rating: 5.3,
+ votes: 12381,
+ running_times: 6480,
+ },
+ {
+ title: "The New Guy",
+ year: 2002,
+ rating: 5.9,
+ votes: 30223,
+ running_times: 5520,
+ },
+ {
+ title: "The New World",
+ year: 2005,
+ rating: 6.7,
+ votes: 75203,
+ running_times: 10320,
+ },
+ {
+ title: "The Next Karate Kid",
+ year: 1994,
+ rating: 4.3,
+ votes: 20316,
+ running_times: 6420,
+ },
+ {
+ title: "The Next Three Days",
+ year: 2010,
+ rating: 7.4,
+ votes: 156806,
+ running_times: 7980,
+ },
+ {
+ title: "The Nice Guys",
+ year: 2016,
+ rating: 7.4,
+ votes: 200979,
+ running_times: 6960,
+ },
+ {
+ title: "The Night Before",
+ year: 2015,
+ rating: 6.4,
+ votes: 49476,
+ running_times: 6060,
+ },
+ {
+ title: "The Night Listener",
+ year: 2006,
+ rating: 5.9,
+ votes: 13514,
+ running_times: 5460,
+ },
+ {
+ title: "The Night of the Hunter",
+ year: 1955,
+ rating: 8,
+ votes: 70141,
+ running_times: 5520,
+ },
+ {
+ title: "The Nightmare Before Christmas",
+ year: 1993,
+ rating: 8,
+ votes: 247257,
+ running_times: 4560,
+ },
+ {
+ title: "The Nines",
+ year: 2007,
+ rating: 6.4,
+ votes: 30202,
+ running_times: 6000,
+ },
+ {
+ title: "The Ninth Gate",
+ year: 1999,
+ rating: 6.7,
+ votes: 146217,
+ running_times: 7980,
+ },
+ {
+ title: "The Notebook",
+ year: 2004,
+ rating: 7.9,
+ votes: 436020,
+ running_times: 7380,
+ },
+ {
+ title: "The November Man",
+ year: 2014,
+ rating: 6.3,
+ votes: 55446,
+ running_times: 6480,
+ },
+ {
+ title: "The Number 23",
+ year: 2007,
+ rating: 6.4,
+ votes: 175665,
+ running_times: 6060,
+ },
+ {
+ title: "The Numbers Station",
+ year: 2013,
+ rating: 5.6,
+ votes: 17235,
+ running_times: 5340,
+ },
+ {
+ title: "The Nut Job",
+ year: 2014,
+ rating: 5.8,
+ votes: 22351,
+ running_times: 5100,
+ },
+ {
+ title: "The Nutty Professor",
+ year: 1963,
+ rating: 6.7,
+ votes: 13282,
+ running_times: 6420,
+ },
+ {
+ title: "The Nutty Professor",
+ year: 1996,
+ rating: 5.6,
+ votes: 93784,
+ running_times: 5700,
+ },
+ {
+ title: "The Object of My Affection",
+ year: 1998,
+ rating: 6,
+ votes: 16633,
+ running_times: 6660,
+ },
+ {
+ title: "The Odd Couple",
+ year: 1968,
+ rating: 7.7,
+ votes: 27013,
+ running_times: 6300,
+ },
+ {
+ title: "The Odd Life of Timothy Green",
+ year: 2012,
+ rating: 6.6,
+ votes: 40357,
+ running_times: 6300,
+ },
+ {
+ title: "The Omega Man",
+ year: 1971,
+ rating: 6.6,
+ votes: 24872,
+ running_times: 5880,
+ },
+ {
+ title: "The Omen",
+ year: 1976,
+ rating: 7.6,
+ votes: 89724,
+ running_times: 6660,
+ },
+ {
+ title: "The Omen",
+ year: 2006,
+ rating: 5.5,
+ votes: 51300,
+ running_times: 6600,
+ },
+ {
+ title: "The One",
+ year: 2001,
+ rating: 5.9,
+ votes: 82216,
+ running_times: 5220,
+ },
+ {
+ title: "The One I Love",
+ year: 2014,
+ rating: 7.1,
+ votes: 27718,
+ running_times: 5460,
+ },
+ {
+ title: "The Onion Movie",
+ year: 2008,
+ rating: 6.3,
+ votes: 14278,
+ running_times: 4800,
+ },
+ {
+ title: "The Oogieloves in the Big Balloon Adventure",
+ year: 2012,
+ rating: 6.3,
+ votes: 14494,
+ running_times: 5280,
+ },
+ {
+ title: "The Opposite of Sex",
+ year: 1998,
+ rating: 6.5,
+ votes: 18864,
+ running_times: 6300,
+ },
+ {
+ title: "The Oranges",
+ year: 2011,
+ rating: 5.9,
+ votes: 11158,
+ running_times: 5400,
+ },
+ {
+ title: "The Order",
+ year: 2003,
+ rating: 5.2,
+ votes: 15687,
+ running_times: 6120,
+ },
+ {
+ title: "The Other Boleyn Girl",
+ year: 2008,
+ rating: 6.7,
+ votes: 90521,
+ running_times: 6900,
+ },
+ {
+ title: "The Other Guys",
+ year: 2010,
+ rating: 6.7,
+ votes: 206139,
+ running_times: 6960,
+ },
+ {
+ title: "The Other Side of the Door",
+ year: 2016,
+ rating: 5.3,
+ votes: 14034,
+ running_times: 5760,
+ },
+ {
+ title: "The Other Sister",
+ year: 1999,
+ rating: 6.5,
+ votes: 10939,
+ running_times: 7740,
+ },
+ {
+ title: "The Other Woman",
+ year: 2014,
+ rating: 6,
+ votes: 114420,
+ running_times: 6540,
+ },
+ {
+ title: "The Others",
+ year: 2001,
+ rating: 7.6,
+ votes: 294127,
+ running_times: 6240,
+ },
+ {
+ title: "The Ottoman Lieutenant",
+ year: 2017,
+ rating: 6.9,
+ votes: 19405,
+ running_times: 6360,
+ },
+ {
+ title: "The Out-of-Towners",
+ year: 1999,
+ rating: 5.3,
+ votes: 11334,
+ running_times: 5400,
+ },
+ {
+ title: "The Outlaw Josey Wales",
+ year: 1976,
+ rating: 7.9,
+ votes: 55131,
+ running_times: 8100,
+ },
+ {
+ title: "The Outsiders",
+ year: 1983,
+ rating: 7.2,
+ votes: 62501,
+ running_times: 6840,
+ },
+ {
+ title: "The Overnight",
+ year: 2015,
+ rating: 6.1,
+ votes: 13121,
+ running_times: 4740,
+ },
+ {
+ title: "The Ox-Bow Incident",
+ year: 1943,
+ rating: 8.1,
+ votes: 17397,
+ running_times: 4500,
+ },
+ {
+ title: "The Oxford Murders",
+ year: 2008,
+ rating: 6.1,
+ votes: 24510,
+ running_times: 6240,
+ },
+ {
+ title: "The Pacifier",
+ year: 2005,
+ rating: 5.6,
+ votes: 73772,
+ running_times: 5700,
+ },
+ {
+ title: "The Pact",
+ year: 2012,
+ rating: 5.8,
+ votes: 21193,
+ running_times: 5340,
+ },
+ {
+ title: "The Pagemaster",
+ year: 1994,
+ rating: 6,
+ votes: 17586,
+ running_times: 4800,
+ },
+ {
+ title: "The Painted Veil",
+ year: 2006,
+ rating: 7.5,
+ votes: 82205,
+ running_times: 7500,
+ },
+ {
+ title: "The Panic in Needle Park",
+ year: 1971,
+ rating: 7.1,
+ votes: 13115,
+ running_times: 6600,
+ },
+ {
+ title: "The Paper",
+ year: 1994,
+ rating: 6.6,
+ votes: 11209,
+ running_times: 6720,
+ },
+ {
+ title: "The Paperboy",
+ year: 2012,
+ rating: 5.8,
+ votes: 31446,
+ running_times: 6420,
+ },
+ {
+ title: "The Parallax View",
+ year: 1974,
+ rating: 7.2,
+ votes: 12309,
+ running_times: 6120,
+ },
+ {
+ title: "The Parent Trap",
+ year: 1961,
+ rating: 7.1,
+ votes: 15693,
+ running_times: 7740,
+ },
+ {
+ title: "The Parent Trap",
+ year: 1998,
+ rating: 6.5,
+ votes: 97899,
+ running_times: 7680,
+ },
+ {
+ title: "The Party",
+ year: 1968,
+ rating: 7.6,
+ votes: 32463,
+ running_times: 5940,
+ },
+ {
+ title: "The Patriot",
+ year: 1998,
+ rating: 4.1,
+ votes: 10623,
+ running_times: 5640,
+ },
+ {
+ title: "The Patriot",
+ year: 2000,
+ rating: 7.2,
+ votes: 223677,
+ running_times: 10500,
+ },
+ {
+ title: "The Peacemaker",
+ year: 1997,
+ rating: 5.9,
+ votes: 48800,
+ running_times: 7440,
+ },
+ {
+ title: "The Peanuts Movie",
+ year: 2015,
+ rating: 7.1,
+ votes: 35551,
+ running_times: 5280,
+ },
+ {
+ title: "The Pelican Brief",
+ year: 1993,
+ rating: 6.6,
+ votes: 64563,
+ running_times: 8460,
+ },
+ {
+ title: "The People Under the Stairs",
+ year: 1991,
+ rating: 6.3,
+ votes: 26112,
+ running_times: 6120,
+ },
+ {
+ title: "The People vs. Larry Flynt",
+ year: 1996,
+ rating: 7.3,
+ votes: 76653,
+ running_times: 7740,
+ },
+ {
+ title: "The Perfect Host",
+ year: 2010,
+ rating: 6.8,
+ votes: 22080,
+ running_times: 5580,
+ },
+ {
+ title: "The Perfect Man",
+ year: 2005,
+ rating: 5.5,
+ votes: 25126,
+ running_times: 6000,
+ },
+ {
+ title: "The Perfect Score",
+ year: 2004,
+ rating: 5.7,
+ votes: 20986,
+ running_times: 5580,
+ },
+ {
+ title: "The Perfect Storm",
+ year: 2000,
+ rating: 6.4,
+ votes: 140346,
+ running_times: 7800,
+ },
+ {
+ title: "The Perks of Being a Wallflower",
+ year: 2012,
+ rating: 8,
+ votes: 391846,
+ running_times: 6120,
+ },
+ {
+ title: "The Petrified Forest",
+ year: 1936,
+ rating: 7.6,
+ votes: 10327,
+ running_times: 4920,
+ },
+ {
+ title: "The Phantom",
+ year: 1996,
+ rating: 4.9,
+ votes: 29100,
+ running_times: 6000,
+ },
+ {
+ title: "The Phantom of the Opera",
+ year: 2004,
+ rating: 7.3,
+ votes: 103249,
+ running_times: 8580,
+ },
+ {
+ title: "The Philadelphia Experiment",
+ year: 1984,
+ rating: 6.1,
+ votes: 12160,
+ running_times: 6120,
+ },
+ {
+ title: "The Philadelphia Story",
+ year: 1940,
+ rating: 8,
+ votes: 54146,
+ running_times: 6720,
+ },
+ {
+ title: "The Physician",
+ year: 2013,
+ rating: 7.2,
+ votes: 29595,
+ running_times: 9000,
+ },
+ {
+ title: "The Pianist",
+ year: 2002,
+ rating: 8.5,
+ votes: 567718,
+ running_times: 9000,
+ },
+ {
+ title: "The Piano",
+ year: 1993,
+ rating: 7.6,
+ votes: 68631,
+ running_times: 7260,
+ },
+ {
+ title: "The Pillow Book",
+ year: 1996,
+ rating: 6.7,
+ votes: 11158,
+ running_times: 7560,
+ },
+ {
+ title: "The Pink Panther",
+ year: 1963,
+ rating: 7.2,
+ votes: 41425,
+ running_times: 6900,
+ },
+ {
+ title: "The Pink Panther",
+ year: 2006,
+ rating: 5.6,
+ votes: 70795,
+ running_times: 5580,
+ },
+ {
+ title: "The Pink Panther 2",
+ year: 2009,
+ rating: 5.6,
+ votes: 36263,
+ running_times: 5520,
+ },
+ {
+ title: "The Pink Panther Strikes Again",
+ year: 1976,
+ rating: 7.3,
+ votes: 23815,
+ running_times: 6180,
+ },
+ {
+ title: "The Pirates! In an Adventure with Scientists!",
+ year: 2012,
+ rating: 6.7,
+ votes: 39134,
+ running_times: 5280,
+ },
+ {
+ title: "The Place Beyond the Pines",
+ year: 2012,
+ rating: 7.3,
+ votes: 208561,
+ running_times: 8400,
+ },
+ {
+ title: "The Player",
+ year: 1992,
+ rating: 7.6,
+ votes: 45754,
+ running_times: 7440,
+ },
+ {
+ title: "The Pleasure of Your Company",
+ year: 2006,
+ rating: 5.7,
+ votes: 13637,
+ running_times: 5400,
+ },
+ {
+ title: "The Pledge",
+ year: 2001,
+ rating: 6.8,
+ votes: 46026,
+ running_times: 7440,
+ },
+ {
+ title: "The Polar Express",
+ year: 2004,
+ rating: 6.6,
+ votes: 137765,
+ running_times: 6000,
+ },
+ {
+ title: "The Poseidon Adventure",
+ year: 1972,
+ rating: 7.1,
+ votes: 35192,
+ running_times: 7020,
+ },
+ {
+ title: "The Possession",
+ year: 2012,
+ rating: 5.9,
+ votes: 50728,
+ running_times: 5520,
+ },
+ {
+ title: "The Postman",
+ year: 1997,
+ rating: 6,
+ votes: 60345,
+ running_times: 10620,
+ },
+ {
+ title: "The Postman Always Rings Twice",
+ year: 1946,
+ rating: 7.6,
+ votes: 15385,
+ running_times: 6780,
+ },
+ {
+ title: "The Postman Always Rings Twice",
+ year: 1981,
+ rating: 6.6,
+ votes: 18313,
+ running_times: 7320,
+ },
+ {
+ title: "The Poughkeepsie Tapes",
+ year: 2007,
+ rating: 6.1,
+ votes: 11016,
+ running_times: 4860,
+ },
+ {
+ title: "The Presidio",
+ year: 1988,
+ rating: 6,
+ votes: 14000,
+ running_times: 5820,
+ },
+ {
+ title: "The Prestige",
+ year: 2006,
+ rating: 8.5,
+ votes: 958889,
+ running_times: 7800,
+ },
+ {
+ title: "The Prince & Me",
+ year: 2004,
+ rating: 5.9,
+ votes: 34100,
+ running_times: 6660,
+ },
+ {
+ title: "The Prince",
+ year: 2014,
+ rating: 4.6,
+ votes: 14635,
+ running_times: 5580,
+ },
+ {
+ title: "The Prince of Egypt",
+ year: 1998,
+ rating: 7,
+ votes: 99560,
+ running_times: 5940,
+ },
+ {
+ title: "The Prince of Tides",
+ year: 1991,
+ rating: 6.7,
+ votes: 13542,
+ running_times: 7920,
+ },
+ {
+ title: "The Princess Bride",
+ year: 1987,
+ rating: 8.1,
+ votes: 325463,
+ running_times: 5880,
+ },
+ {
+ title: "The Princess Diaries",
+ year: 2001,
+ rating: 6.3,
+ votes: 105164,
+ running_times: 6660,
+ },
+ {
+ title: "The Princess Diaries 2: Royal Engagement",
+ year: 2004,
+ rating: 5.7,
+ votes: 60658,
+ running_times: 6780,
+ },
+ {
+ title: "The Princess and the Frog",
+ year: 2009,
+ rating: 7.1,
+ votes: 99027,
+ running_times: 5820,
+ },
+ {
+ title: "The Private Lives of Pippa Lee",
+ year: 2009,
+ rating: 6.4,
+ votes: 11693,
+ running_times: 5880,
+ },
+ {
+ title: "The Producers",
+ year: 1967,
+ rating: 7.7,
+ votes: 43152,
+ running_times: 5280,
+ },
+ {
+ title: "The Producers",
+ year: 2005,
+ rating: 6.4,
+ votes: 36865,
+ running_times: 8040,
+ },
+ {
+ title: "The Professionals",
+ year: 1966,
+ rating: 7.4,
+ votes: 11097,
+ running_times: 7380,
+ },
+ {
+ title: "The Program",
+ year: 2015,
+ rating: 6.5,
+ votes: 12447,
+ running_times: 5940,
+ },
+ {
+ title: "The Promise",
+ year: 2016,
+ rating: 6,
+ votes: 158352,
+ running_times: 7980,
+ },
+ {
+ title: "The Promotion",
+ year: 2008,
+ rating: 5.7,
+ votes: 17075,
+ running_times: 5160,
+ },
+ {
+ title: "The Prophecy",
+ year: 1995,
+ rating: 6.6,
+ votes: 25816,
+ running_times: 5880,
+ },
+ {
+ title: "The Proposal",
+ year: 2009,
+ rating: 6.7,
+ votes: 250312,
+ running_times: 6480,
+ },
+ {
+ title: "The Proposition",
+ year: 2005,
+ rating: 7.4,
+ votes: 45238,
+ running_times: 6240,
+ },
+ {
+ title: "The Public Enemy",
+ year: 1931,
+ rating: 7.7,
+ votes: 14696,
+ running_times: 4980,
+ },
+ {
+ title: "The Punisher",
+ year: 1989,
+ rating: 5.7,
+ votes: 18060,
+ running_times: 5340,
+ },
+ {
+ title: "The Punisher",
+ year: 2004,
+ rating: 6.5,
+ votes: 134403,
+ running_times: 8400,
+ },
+ {
+ title: "The Purge",
+ year: 2013,
+ rating: 5.7,
+ votes: 161386,
+ running_times: 5100,
+ },
+ {
+ title: "The Purge: Anarchy",
+ year: 2014,
+ rating: 6.5,
+ votes: 111618,
+ running_times: 6180,
+ },
+ {
+ title: "The Purge: Election Year",
+ year: 2016,
+ rating: 6,
+ votes: 62579,
+ running_times: 6480,
+ },
+ {
+ title: "The Purple Rose of Cairo",
+ year: 1985,
+ rating: 7.7,
+ votes: 40054,
+ running_times: 4920,
+ },
+ {
+ title: "The Pursuit of Happyness",
+ year: 2006,
+ rating: 8,
+ votes: 374451,
+ running_times: 7020,
+ },
+ {
+ title: "The Pyramid",
+ year: 2014,
+ rating: 4.6,
+ votes: 19641,
+ running_times: 5340,
+ },
+ {
+ title: "The Queen",
+ year: 2006,
+ rating: 7.3,
+ votes: 92368,
+ running_times: 6180,
+ },
+ {
+ title: "The Queen of Versailles",
+ year: 2012,
+ rating: 7.1,
+ votes: 11417,
+ running_times: 6000,
+ },
+ {
+ title: "The Quest",
+ year: 1996,
+ rating: 5.5,
+ votes: 20623,
+ running_times: 5700,
+ },
+ {
+ title: "The Quick and the Dead",
+ year: 1995,
+ rating: 6.4,
+ votes: 73840,
+ running_times: 6420,
+ },
+ {
+ title: "The Quiet",
+ year: 2005,
+ rating: 6.4,
+ votes: 14028,
+ running_times: 5760,
+ },
+ {
+ title: "The Quiet American",
+ year: 2002,
+ rating: 7.1,
+ votes: 24933,
+ running_times: 6060,
+ },
+ {
+ title: "The Quiet Earth",
+ year: 1985,
+ rating: 6.8,
+ votes: 21712,
+ running_times: 5460,
+ },
+ {
+ title: "The Quiet Man",
+ year: 1952,
+ rating: 7.9,
+ votes: 29304,
+ running_times: 7740,
+ },
+ {
+ title: "The Quiet Ones",
+ year: 2014,
+ rating: 5.1,
+ votes: 16808,
+ running_times: 5880,
+ },
+ {
+ title: "The Rage: Carrie 2",
+ year: 1999,
+ rating: 4.6,
+ votes: 13798,
+ running_times: 6240,
+ },
+ {
+ title: "The Raid 2: Berandal",
+ year: 2014,
+ rating: 8,
+ votes: 95124,
+ running_times: 9000,
+ },
+ {
+ title: "The Railway Man",
+ year: 2013,
+ rating: 7.1,
+ votes: 31511,
+ running_times: 6960,
+ },
+ {
+ title: "The Rainmaker",
+ year: 1997,
+ rating: 7.1,
+ votes: 50689,
+ running_times: 8100,
+ },
+ {
+ title: "The Raven",
+ year: 2012,
+ rating: 6.4,
+ votes: 76793,
+ running_times: 6600,
+ },
+ {
+ title: "The Reader",
+ year: 2008,
+ rating: 7.6,
+ votes: 204566,
+ running_times: 7440,
+ },
+ {
+ title: "The Reaping",
+ year: 2007,
+ rating: 5.7,
+ votes: 39200,
+ running_times: 5940,
+ },
+ {
+ title: "The Rebound",
+ year: 2009,
+ rating: 6.3,
+ votes: 42033,
+ running_times: 5820,
+ },
+ {
+ title: "The Recruit",
+ year: 2003,
+ rating: 6.6,
+ votes: 119599,
+ running_times: 6900,
+ },
+ {
+ title: "The Red Shoes",
+ year: 1948,
+ rating: 8.3,
+ votes: 22241,
+ running_times: 8160,
+ },
+ {
+ title: "The Reef",
+ year: 2010,
+ rating: 5.8,
+ votes: 13613,
+ running_times: 5640,
+ },
+ {
+ title: "The Ref",
+ year: 1994,
+ rating: 6.9,
+ votes: 20844,
+ running_times: 5760,
+ },
+ {
+ title: "The Relic",
+ year: 1997,
+ rating: 5.7,
+ votes: 20776,
+ running_times: 6600,
+ },
+ {
+ title: "The Reluctant Fundamentalist",
+ year: 2012,
+ rating: 6.9,
+ votes: 11665,
+ running_times: 7800,
+ },
+ {
+ title: "The Remains of the Day",
+ year: 1993,
+ rating: 7.9,
+ votes: 50598,
+ running_times: 8040,
+ },
+ {
+ title: "The Replacement Killers",
+ year: 1998,
+ rating: 6.1,
+ votes: 24445,
+ running_times: 5760,
+ },
+ {
+ title: "The Replacements",
+ year: 2000,
+ rating: 6.5,
+ votes: 51436,
+ running_times: 7080,
+ },
+ {
+ title: "The Rescuers",
+ year: 1977,
+ rating: 6.9,
+ votes: 47886,
+ running_times: 4680,
+ },
+ {
+ title: "The Rescuers Down Under",
+ year: 1990,
+ rating: 6.9,
+ votes: 30652,
+ running_times: 4620,
+ },
+ {
+ title: "The Resident",
+ year: 2011,
+ rating: 5.3,
+ votes: 22986,
+ running_times: 5460,
+ },
+ {
+ title: "The Return",
+ year: 2006,
+ rating: 4.8,
+ votes: 10496,
+ running_times: 5100,
+ },
+ {
+ title: "The Return of the Living Dead",
+ year: 1985,
+ rating: 7.3,
+ votes: 44081,
+ running_times: 6480,
+ },
+ {
+ title: "The Return of the Pink Panther",
+ year: 1975,
+ rating: 7.1,
+ votes: 21148,
+ running_times: 6780,
+ },
+ {
+ title: "The Return of the Texas Chainsaw Massacre",
+ year: 1994,
+ rating: 3.2,
+ votes: 16423,
+ running_times: 5700,
+ },
+ {
+ title: "The Revenant",
+ year: 2015,
+ rating: 8,
+ votes: 534685,
+ running_times: 9360,
+ },
+ {
+ title: "The Rewrite",
+ year: 2014,
+ rating: 6.2,
+ votes: 14434,
+ running_times: 6420,
+ },
+ {
+ title: "The Ridiculous 6",
+ year: 2015,
+ rating: 4.8,
+ votes: 33152,
+ running_times: 7140,
+ },
+ {
+ title: "The Right Stuff",
+ year: 1983,
+ rating: 7.9,
+ votes: 48740,
+ running_times: 11580,
+ },
+ {
+ title: "The Ring",
+ year: 2002,
+ rating: 7.1,
+ votes: 278872,
+ running_times: 6900,
+ },
+ {
+ title: "The Ring Two",
+ year: 2005,
+ rating: 5.4,
+ votes: 79526,
+ running_times: 7680,
+ },
+ {
+ title: "The Ringer",
+ year: 2005,
+ rating: 5.8,
+ votes: 32454,
+ running_times: 5700,
+ },
+ {
+ title: "The Riot Club",
+ year: 2014,
+ rating: 6,
+ votes: 17763,
+ running_times: 6420,
+ },
+ {
+ title: "The Rite",
+ year: 2011,
+ rating: 6,
+ votes: 81084,
+ running_times: 6840,
+ },
+ {
+ title: "The River Wild",
+ year: 1994,
+ rating: 6.3,
+ votes: 35528,
+ running_times: 6660,
+ },
+ {
+ title: "The Road",
+ year: 2009,
+ rating: 7.3,
+ votes: 193198,
+ running_times: 6660,
+ },
+ {
+ title: "The Road Within",
+ year: 2014,
+ rating: 7.1,
+ votes: 11272,
+ running_times: 6000,
+ },
+ {
+ title: "The Road to El Dorado",
+ year: 2000,
+ rating: 6.9,
+ votes: 67039,
+ running_times: 5340,
+ },
+ {
+ title: "The Road to Guantanamo",
+ year: 2006,
+ rating: 7.5,
+ votes: 10739,
+ running_times: 5700,
+ },
+ {
+ title: "The Road to Wellville",
+ year: 1994,
+ rating: 5.8,
+ votes: 10290,
+ running_times: 7080,
+ },
+ {
+ title: "The Roaring Twenties",
+ year: 1939,
+ rating: 7.9,
+ votes: 10363,
+ running_times: 6360,
+ },
+ {
+ title: "The Rock",
+ year: 1996,
+ rating: 7.4,
+ votes: 276498,
+ running_times: 8160,
+ },
+ {
+ title: "The Rocker",
+ year: 2008,
+ rating: 6.2,
+ votes: 34007,
+ running_times: 6120,
+ },
+ {
+ title: "The Rocketeer",
+ year: 1991,
+ rating: 6.4,
+ votes: 45916,
+ running_times: 6480,
+ },
+ {
+ title: "The Rocky Horror Picture Show",
+ year: 1975,
+ rating: 7.4,
+ votes: 113940,
+ running_times: 6000,
+ },
+ {
+ title: "The Romantics",
+ year: 2010,
+ rating: 5.1,
+ votes: 10614,
+ running_times: 5700,
+ },
+ {
+ title: "The Rookie",
+ year: 1990,
+ rating: 5.8,
+ votes: 21836,
+ running_times: 7200,
+ },
+ {
+ title: "The Rookie",
+ year: 2002,
+ rating: 7,
+ votes: 28296,
+ running_times: 7620,
+ },
+ {
+ title: "The Room",
+ year: 2003,
+ rating: 3.6,
+ votes: 47057,
+ running_times: 5940,
+ },
+ {
+ title: "The Roommate",
+ year: 2011,
+ rating: 4.9,
+ votes: 31218,
+ running_times: 5460,
+ },
+ {
+ title: "The Rover",
+ year: 2014,
+ rating: 6.4,
+ votes: 37334,
+ running_times: 6180,
+ },
+ {
+ title: "The Royal Tenenbaums",
+ year: 2001,
+ rating: 7.6,
+ votes: 227998,
+ running_times: 6600,
+ },
+ {
+ title: "The Rugrats Movie",
+ year: 1998,
+ rating: 5.9,
+ votes: 15377,
+ running_times: 5400,
+ },
+ {
+ title: "The Ruins",
+ year: 2008,
+ rating: 5.9,
+ votes: 63013,
+ running_times: 5580,
+ },
+ {
+ title: "The Rules of Attraction",
+ year: 2002,
+ rating: 6.7,
+ votes: 46137,
+ running_times: 6600,
+ },
+ {
+ title: "The Rum Diary",
+ year: 2011,
+ rating: 6.2,
+ votes: 91193,
+ running_times: 7140,
+ },
+ {
+ title: "The Runaways",
+ year: 2010,
+ rating: 6.6,
+ votes: 41923,
+ running_times: 6360,
+ },
+ {
+ title: "The Rundown",
+ year: 2003,
+ rating: 6.7,
+ votes: 87944,
+ running_times: 6240,
+ },
+ {
+ title: "The Running Man",
+ year: 1987,
+ rating: 6.7,
+ votes: 121624,
+ running_times: 6060,
+ },
+ {
+ title: "The Russia House",
+ year: 1990,
+ rating: 6.1,
+ votes: 12429,
+ running_times: 7380,
+ },
+ {
+ title: "The Sacrament",
+ year: 2013,
+ rating: 6.1,
+ votes: 13925,
+ running_times: 5940,
+ },
+ {
+ title: "The Saint",
+ year: 1997,
+ rating: 6.2,
+ votes: 54873,
+ running_times: 6960,
+ },
+ {
+ title: "The Salt of the Earth",
+ year: 2014,
+ rating: 8.4,
+ votes: 15191,
+ running_times: 6600,
+ },
+ {
+ title: "The Salton Sea",
+ year: 2002,
+ rating: 7.2,
+ votes: 27675,
+ running_times: 6180,
+ },
+ {
+ title: "The Salvation",
+ year: 2014,
+ rating: 6.8,
+ votes: 29594,
+ running_times: 5520,
+ },
+ {
+ title: "The Sand Pebbles",
+ year: 1966,
+ rating: 7.7,
+ votes: 11150,
+ running_times: 11760,
+ },
+ {
+ title: "The Sandlot",
+ year: 1993,
+ rating: 7.8,
+ votes: 64212,
+ running_times: 6060,
+ },
+ {
+ title: "The Santa Clause",
+ year: 1994,
+ rating: 6.4,
+ votes: 74291,
+ running_times: 5820,
+ },
+ {
+ title: "The Santa Clause 2",
+ year: 2002,
+ rating: 5.6,
+ votes: 39364,
+ running_times: 6240,
+ },
+ {
+ title: "The Santa Clause 3: The Escape Clause",
+ year: 2006,
+ rating: 4.7,
+ votes: 25133,
+ running_times: 5820,
+ },
+ {
+ title: "The Sapphires",
+ year: 2012,
+ rating: 7.1,
+ votes: 11309,
+ running_times: 6180,
+ },
+ {
+ title: "The Savages",
+ year: 2007,
+ rating: 7.2,
+ votes: 33269,
+ running_times: 6840,
+ },
+ {
+ title: "The Scarlet Letter",
+ year: 1995,
+ rating: 5.2,
+ votes: 12823,
+ running_times: 8100,
+ },
+ {
+ title: "The School of Rock",
+ year: 2003,
+ rating: 7.1,
+ votes: 226397,
+ running_times: 6480,
+ },
+ {
+ title: "The Score",
+ year: 2001,
+ rating: 6.8,
+ votes: 107813,
+ running_times: 7440,
+ },
+ {
+ title: "The Scorpion King",
+ year: 2002,
+ rating: 5.5,
+ votes: 112073,
+ running_times: 6000,
+ },
+ {
+ title: "The Searchers",
+ year: 1956,
+ rating: 8,
+ votes: 67908,
+ running_times: 7140,
+ },
+ {
+ title: "The Second Best Exotic Marigold Hotel",
+ year: 2015,
+ rating: 6.6,
+ votes: 26293,
+ running_times: 7320,
+ },
+ {
+ title: "The Secret Garden",
+ year: 1993,
+ rating: 7.3,
+ votes: 31316,
+ running_times: 6060,
+ },
+ {
+ title: "The Secret Life of Bees",
+ year: 2008,
+ rating: 7.3,
+ votes: 21358,
+ running_times: 6840,
+ },
+ {
+ title: "The Secret Life of Pets",
+ year: 2016,
+ rating: 6.6,
+ votes: 137977,
+ running_times: 5220,
+ },
+ {
+ title: "The Secret Life of Walter Mitty",
+ year: 2013,
+ rating: 7.3,
+ votes: 257706,
+ running_times: 6780,
+ },
+ {
+ title: "The Secret Life of Words",
+ year: 2005,
+ rating: 7.5,
+ votes: 10709,
+ running_times: 6900,
+ },
+ {
+ title: "The Secret of Kells",
+ year: 2009,
+ rating: 7.7,
+ votes: 25776,
+ running_times: 4500,
+ },
+ {
+ title: "The Secret of My Succe$s",
+ year: 1987,
+ rating: 6.5,
+ votes: 24924,
+ running_times: 6660,
+ },
+ {
+ title: "The Secret of NIMH",
+ year: 1982,
+ rating: 7.6,
+ votes: 30265,
+ running_times: 4920,
+ },
+ {
+ title: "The Seeker: The Dark Is Rising",
+ year: 2007,
+ rating: 4.8,
+ votes: 13743,
+ running_times: 5940,
+ },
+ {
+ title: "The Sentinel",
+ year: 2006,
+ rating: 6.1,
+ votes: 44185,
+ running_times: 6480,
+ },
+ {
+ title: "The Serpent and the Rainbow",
+ year: 1988,
+ rating: 6.5,
+ votes: 18758,
+ running_times: 5880,
+ },
+ {
+ title: "The Sessions",
+ year: 2012,
+ rating: 7.2,
+ votes: 38256,
+ running_times: 5700,
+ },
+ {
+ title: "The Seven Year Itch",
+ year: 1955,
+ rating: 7.2,
+ votes: 28217,
+ running_times: 6300,
+ },
+ {
+ title: "The Seventh Sign",
+ year: 1988,
+ rating: 5.9,
+ votes: 11175,
+ running_times: 5820,
+ },
+ {
+ title: "The Shack",
+ year: 2017,
+ rating: 6.3,
+ votes: 18221,
+ running_times: 7920,
+ },
+ {
+ title: "The Shadow",
+ year: 1994,
+ rating: 6,
+ votes: 20129,
+ running_times: 6480,
+ },
+ {
+ title: "The Shaggy Dog",
+ year: 2006,
+ rating: 4.4,
+ votes: 15990,
+ running_times: 5880,
+ },
+ {
+ title: "The Shallows",
+ year: 2016,
+ rating: 6.3,
+ votes: 89641,
+ running_times: 5160,
+ },
+ {
+ title: "The Shape of Things",
+ year: 2003,
+ rating: 6.7,
+ votes: 10095,
+ running_times: 5760,
+ },
+ {
+ title: "The Shawshank Redemption",
+ year: 1994,
+ rating: 9.3,
+ votes: 1888533,
+ running_times: 8520,
+ },
+ {
+ title: "The Shining",
+ year: 1980,
+ rating: 8.4,
+ votes: 692021,
+ running_times: 8760,
+ },
+ {
+ title: "The Shipping News",
+ year: 2001,
+ rating: 6.8,
+ votes: 29935,
+ running_times: 6660,
+ },
+ {
+ title: "The Shootist",
+ year: 1976,
+ rating: 7.7,
+ votes: 18572,
+ running_times: 6000,
+ },
+ {
+ title: "The Shop Around the Corner",
+ year: 1940,
+ rating: 8.1,
+ votes: 22183,
+ running_times: 5940,
+ },
+ {
+ title: "The Siege",
+ year: 1998,
+ rating: 6.3,
+ votes: 61557,
+ running_times: 6960,
+ },
+ {
+ title: "The Siege of Jadotville",
+ year: 2016,
+ rating: 7.3,
+ votes: 17814,
+ running_times: 6480,
+ },
+ {
+ title: "The Signal",
+ year: 2007,
+ rating: 6.1,
+ votes: 18972,
+ running_times: 6180,
+ },
+ {
+ title: "The Signal",
+ year: 2014,
+ rating: 6.1,
+ votes: 53979,
+ running_times: 5820,
+ },
+ {
+ title: "The Silence of the Lambs",
+ year: 1991,
+ rating: 8.6,
+ votes: 1005824,
+ running_times: 8280,
+ },
+ {
+ title: "The Simpsons Movie",
+ year: 2007,
+ rating: 7.4,
+ votes: 275789,
+ running_times: 5220,
+ },
+ {
+ title: "The Sisterhood of the Traveling Pants",
+ year: 2005,
+ rating: 6.5,
+ votes: 48049,
+ running_times: 7140,
+ },
+ {
+ title: "The Sisterhood of the Traveling Pants 2",
+ year: 2008,
+ rating: 6.2,
+ votes: 23987,
+ running_times: 7140,
+ },
+ {
+ title: "The Sitter",
+ year: 2011,
+ rating: 5.7,
+ votes: 63242,
+ running_times: 5220,
+ },
+ {
+ title: "The Sixth Sense",
+ year: 1999,
+ rating: 8.1,
+ votes: 776053,
+ running_times: 6420,
+ },
+ {
+ title: "The Skeleton Key",
+ year: 2005,
+ rating: 6.5,
+ votes: 94403,
+ running_times: 6240,
+ },
+ {
+ title: "The Skeleton Twins",
+ year: 2014,
+ rating: 6.8,
+ votes: 34525,
+ running_times: 5580,
+ },
+ {
+ title: "The Skulls",
+ year: 2000,
+ rating: 5.6,
+ votes: 28314,
+ running_times: 6360,
+ },
+ {
+ title: "The Slammin' Salmon",
+ year: 2009,
+ rating: 6.5,
+ votes: 11416,
+ running_times: 5400,
+ },
+ {
+ title: "The Smurfs",
+ year: 2011,
+ rating: 5.5,
+ votes: 72567,
+ running_times: 6180,
+ },
+ {
+ title: "The Smurfs 2",
+ year: 2013,
+ rating: 5.4,
+ votes: 31061,
+ running_times: 6300,
+ },
+ {
+ title: "The Snowman",
+ year: 2017,
+ rating: 5.1,
+ votes: 14779,
+ running_times: 7140,
+ },
+ {
+ title: "The Social Network",
+ year: 2010,
+ rating: 7.7,
+ votes: 528377,
+ running_times: 7200,
+ },
+ {
+ title: "The Soloist",
+ year: 2009,
+ rating: 6.7,
+ votes: 46174,
+ running_times: 7020,
+ },
+ {
+ title: "The Son of No One",
+ year: 2011,
+ rating: 5.1,
+ votes: 15063,
+ running_times: 5400,
+ },
+ {
+ title: "The Sons of Katie Elder",
+ year: 1965,
+ rating: 7.2,
+ votes: 11668,
+ running_times: 7320,
+ },
+ {
+ title: "The Sorcerer's Apprentice",
+ year: 2010,
+ rating: 6.1,
+ votes: 134792,
+ running_times: 6540,
+ },
+ {
+ title: "The Sound of Music",
+ year: 1965,
+ rating: 8,
+ votes: 163945,
+ running_times: 10440,
+ },
+ {
+ title: "The Space Between Us",
+ year: 2017,
+ rating: 6.4,
+ votes: 29211,
+ running_times: 7200,
+ },
+ {
+ title: "The Spanish Prisoner",
+ year: 1997,
+ rating: 7.3,
+ votes: 19572,
+ running_times: 6600,
+ },
+ {
+ title: "The Specialist",
+ year: 1994,
+ rating: 5.5,
+ votes: 54437,
+ running_times: 6600,
+ },
+ {
+ title: "The Spectacular Now",
+ year: 2013,
+ rating: 7.1,
+ votes: 121292,
+ running_times: 5700,
+ },
+ {
+ title: "The Spiderwick Chronicles",
+ year: 2008,
+ rating: 6.6,
+ votes: 75232,
+ running_times: 6420,
+ },
+ {
+ title: "The Spirit",
+ year: 2008,
+ rating: 4.8,
+ votes: 55852,
+ running_times: 6180,
+ },
+ {
+ title: "The SpongeBob Movie: Sponge Out of Water",
+ year: 2015,
+ rating: 6,
+ votes: 39185,
+ running_times: 5520,
+ },
+ {
+ title: "The SpongeBob SquarePants Movie",
+ year: 2004,
+ rating: 7,
+ votes: 64917,
+ running_times: 5220,
+ },
+ {
+ title: "The Spy Next Door",
+ year: 2010,
+ rating: 5.4,
+ votes: 33445,
+ running_times: 5640,
+ },
+ {
+ title: "The Spy Who Came in from the Cold",
+ year: 1965,
+ rating: 7.7,
+ votes: 11988,
+ running_times: 6720,
+ },
+ {
+ title: "The Spy Who Loved Me",
+ year: 1977,
+ rating: 7.1,
+ votes: 83086,
+ running_times: 7500,
+ },
+ {
+ title: "The Square",
+ year: 2017,
+ rating: 7.7,
+ votes: 10452,
+ running_times: 8520,
+ },
+ {
+ title: "The Squid and the Whale",
+ year: 2005,
+ rating: 7.4,
+ votes: 65586,
+ running_times: 5280,
+ },
+ {
+ title: "The Stanford Prison Experiment",
+ year: 2015,
+ rating: 6.9,
+ votes: 24929,
+ running_times: 7320,
+ },
+ {
+ title: "The Starving Games",
+ year: 2013,
+ rating: 3.3,
+ votes: 15908,
+ running_times: 5580,
+ },
+ {
+ title: "The Station Agent",
+ year: 2003,
+ rating: 7.7,
+ votes: 61383,
+ running_times: 5340,
+ },
+ {
+ title: "The Stepfather",
+ year: 1987,
+ rating: 6.8,
+ votes: 10118,
+ running_times: 5340,
+ },
+ {
+ title: "The Stepfather",
+ year: 2009,
+ rating: 5.6,
+ votes: 25548,
+ running_times: 6060,
+ },
+ {
+ title: "The Stepford Wives",
+ year: 1975,
+ rating: 6.9,
+ votes: 13376,
+ running_times: 6900,
+ },
+ {
+ title: "The Stepford Wives",
+ year: 2004,
+ rating: 5.2,
+ votes: 52642,
+ running_times: 5580,
+ },
+ {
+ title: "The Sting",
+ year: 1973,
+ rating: 8.3,
+ votes: 196224,
+ running_times: 7740,
+ },
+ {
+ title: "The Stoning of Soraya M.",
+ year: 2008,
+ rating: 8,
+ votes: 15633,
+ running_times: 6840,
+ },
+ {
+ title: "The Story of Us",
+ year: 1999,
+ rating: 5.9,
+ votes: 19337,
+ running_times: 5700,
+ },
+ {
+ title: "The Straight Story",
+ year: 1999,
+ rating: 8,
+ votes: 69476,
+ running_times: 6720,
+ },
+ {
+ title: "The Stranger",
+ year: 1946,
+ rating: 7.4,
+ votes: 14987,
+ running_times: 5700,
+ },
+ {
+ title: "The Strangers",
+ year: 2008,
+ rating: 6.2,
+ votes: 100210,
+ running_times: 5280,
+ },
+ {
+ title: "The Substitute",
+ year: 1996,
+ rating: 5.9,
+ votes: 10182,
+ running_times: 6840,
+ },
+ {
+ title: "The Sugarland Express",
+ year: 1974,
+ rating: 6.8,
+ votes: 12491,
+ running_times: 6600,
+ },
+ {
+ title: "The Sum of All Fears",
+ year: 2002,
+ rating: 6.4,
+ votes: 91728,
+ running_times: 7680,
+ },
+ {
+ title: "The Sure Thing",
+ year: 1985,
+ rating: 7,
+ votes: 16657,
+ running_times: 6000,
+ },
+ {
+ title: "The Survivalist",
+ year: 2015,
+ rating: 6.3,
+ votes: 11292,
+ running_times: 6240,
+ },
+ {
+ title: "The Swan Princess",
+ year: 1994,
+ rating: 6.4,
+ votes: 19213,
+ running_times: 5400,
+ },
+ {
+ title: "The Sweeney",
+ year: 2012,
+ rating: 6.1,
+ votes: 17373,
+ running_times: 6720,
+ },
+ {
+ title: "The Sweet Hereafter",
+ year: 1997,
+ rating: 7.6,
+ votes: 28526,
+ running_times: 6720,
+ },
+ {
+ title: "The Sweetest Thing",
+ year: 2002,
+ rating: 5.1,
+ votes: 49102,
+ running_times: 5400,
+ },
+ {
+ title: "The Switch",
+ year: 2010,
+ rating: 6.1,
+ votes: 84752,
+ running_times: 6060,
+ },
+ {
+ title: "The Sword in the Stone",
+ year: 1963,
+ rating: 7.2,
+ votes: 72723,
+ running_times: 4740,
+ },
+ {
+ title: "The Tailor of Panama",
+ year: 2001,
+ rating: 6.1,
+ votes: 25172,
+ running_times: 6540,
+ },
+ {
+ title: "The Taking",
+ year: 2014,
+ rating: 6,
+ votes: 19155,
+ running_times: 5400,
+ },
+ {
+ title: "The Taking of Pelham 123",
+ year: 2009,
+ rating: 6.4,
+ votes: 162021,
+ running_times: 6360,
+ },
+ {
+ title: "The Taking of Pelham One Two Three",
+ year: 1974,
+ rating: 7.7,
+ votes: 21595,
+ running_times: 6240,
+ },
+ {
+ title: "The Tale of Despereaux",
+ year: 2008,
+ rating: 6.1,
+ votes: 32678,
+ running_times: 5580,
+ },
+ {
+ title: "The Talented Mr. Ripley",
+ year: 1999,
+ rating: 7.3,
+ votes: 150246,
+ running_times: 8340,
+ },
+ {
+ title: "The Tall Man",
+ year: 2012,
+ rating: 5.9,
+ votes: 33866,
+ running_times: 6360,
+ },
+ {
+ title: "The Ten",
+ year: 2007,
+ rating: 5,
+ votes: 15676,
+ running_times: 5760,
+ },
+ {
+ title: "The Ten Commandments",
+ year: 1956,
+ rating: 7.9,
+ votes: 52473,
+ running_times: 13200,
+ },
+ {
+ title: "The Terminal",
+ year: 2004,
+ rating: 7.3,
+ votes: 335257,
+ running_times: 7680,
+ },
+ {
+ title: "The Terminator",
+ year: 1984,
+ rating: 8,
+ votes: 665696,
+ running_times: 6420,
+ },
+ {
+ title: "The Texas Chain Saw Massacre",
+ year: 1974,
+ rating: 7.5,
+ votes: 109598,
+ running_times: 5280,
+ },
+ {
+ title: "The Texas Chainsaw Massacre",
+ year: 2003,
+ rating: 6.2,
+ votes: 116056,
+ running_times: 5880,
+ },
+ {
+ title: "The Texas Chainsaw Massacre 2",
+ year: 1986,
+ rating: 5.6,
+ votes: 21886,
+ running_times: 6060,
+ },
+ {
+ title: "The Texas Chainsaw Massacre: The Beginning",
+ year: 2006,
+ rating: 5.9,
+ votes: 60550,
+ running_times: 5760,
+ },
+ {
+ title: "The Thaw",
+ year: 2009,
+ rating: 5.2,
+ votes: 10084,
+ running_times: 5400,
+ },
+ {
+ title: "The Theory of Everything",
+ year: 2014,
+ rating: 7.7,
+ votes: 316106,
+ running_times: 7380,
+ },
+ {
+ title: "The Thin Blue Line",
+ year: 1988,
+ rating: 8.1,
+ votes: 17925,
+ running_times: 6060,
+ },
+ {
+ title: "The Thin Man",
+ year: 1934,
+ rating: 8.1,
+ votes: 22285,
+ running_times: 5460,
+ },
+ {
+ title: "The Thin Red Line",
+ year: 1998,
+ rating: 7.6,
+ votes: 150404,
+ running_times: 12900,
+ },
+ {
+ title: "The Thing",
+ year: 1982,
+ rating: 8.2,
+ votes: 293518,
+ running_times: 6540,
+ },
+ {
+ title: "The Thing",
+ year: 2011,
+ rating: 6.2,
+ votes: 103362,
+ running_times: 6180,
+ },
+ {
+ title: "The Thing from Another World",
+ year: 1951,
+ rating: 7.2,
+ votes: 20919,
+ running_times: 5220,
+ },
+ {
+ title: "The Third Man",
+ year: 1949,
+ rating: 8.2,
+ votes: 127466,
+ running_times: 6240,
+ },
+ {
+ title: "The Thirteenth Floor",
+ year: 1999,
+ rating: 7,
+ votes: 57011,
+ running_times: 6000,
+ },
+ {
+ title: "The Thomas Crown Affair",
+ year: 1968,
+ rating: 7,
+ votes: 18269,
+ running_times: 6120,
+ },
+ {
+ title: "The Thomas Crown Affair",
+ year: 1999,
+ rating: 6.8,
+ votes: 77349,
+ running_times: 6780,
+ },
+ {
+ title: "The Three Burials of Melquiades Estrada",
+ year: 2005,
+ rating: 7.4,
+ votes: 35698,
+ running_times: 7260,
+ },
+ {
+ title: "The Three Musketeers",
+ year: 1973,
+ rating: 7.3,
+ votes: 13230,
+ running_times: 6360,
+ },
+ {
+ title: "The Three Musketeers",
+ year: 1993,
+ rating: 6.4,
+ votes: 44143,
+ running_times: 6300,
+ },
+ {
+ title: "The Three Musketeers",
+ year: 2011,
+ rating: 5.8,
+ votes: 94299,
+ running_times: 6600,
+ },
+ {
+ title: "The Three Stooges",
+ year: 2012,
+ rating: 5.1,
+ votes: 26998,
+ running_times: 5520,
+ },
+ {
+ title: "The Tigger Movie",
+ year: 2000,
+ rating: 6.3,
+ votes: 14400,
+ running_times: 4620,
+ },
+ {
+ title: "The Time Machine",
+ year: 1960,
+ rating: 7.6,
+ votes: 30163,
+ running_times: 6180,
+ },
+ {
+ title: "The Time Machine",
+ year: 2002,
+ rating: 5.9,
+ votes: 108614,
+ running_times: 5760,
+ },
+ {
+ title: "The Time Traveler's Wife",
+ year: 2009,
+ rating: 7.1,
+ votes: 124143,
+ running_times: 6420,
+ },
+ {
+ title: "The To Do List",
+ year: 2013,
+ rating: 5.8,
+ votes: 32406,
+ running_times: 6240,
+ },
+ {
+ title: "The Tourist",
+ year: 2010,
+ rating: 6,
+ votes: 192546,
+ running_times: 6180,
+ },
+ {
+ title: "The Tournament",
+ year: 2009,
+ rating: 6.1,
+ votes: 32011,
+ running_times: 5700,
+ },
+ {
+ title: "The Towering Inferno",
+ year: 1974,
+ rating: 6.9,
+ votes: 32856,
+ running_times: 9900,
+ },
+ {
+ title: "The Town",
+ year: 2010,
+ rating: 7.6,
+ votes: 302386,
+ running_times: 9180,
+ },
+ {
+ title: "The Town That Dreaded Sundown",
+ year: 2014,
+ rating: 5.6,
+ votes: 11248,
+ running_times: 5160,
+ },
+ {
+ title: "The Toxic Avenger",
+ year: 1984,
+ rating: 6.2,
+ votes: 20890,
+ running_times: 5460,
+ },
+ {
+ title: "The Tragedy of Macbeth",
+ year: 1971,
+ rating: 7.5,
+ votes: 10629,
+ running_times: 8400,
+ },
+ {
+ title: "The Train",
+ year: 1964,
+ rating: 7.9,
+ votes: 11335,
+ running_times: 8400,
+ },
+ {
+ title: "The Transformers: The Movie",
+ year: 1986,
+ rating: 7.3,
+ votes: 33807,
+ running_times: 5100,
+ },
+ {
+ title: "The Transporter",
+ year: 2002,
+ rating: 6.8,
+ votes: 255330,
+ running_times: 5520,
+ },
+ {
+ title: "The Transporter Refueled",
+ year: 2015,
+ rating: 5.1,
+ votes: 32968,
+ running_times: 5760,
+ },
+ {
+ title: "The Treasure of the Sierra Madre",
+ year: 1948,
+ rating: 8.3,
+ votes: 88818,
+ running_times: 7560,
+ },
+ {
+ title: "The Tree of Life",
+ year: 2011,
+ rating: 6.8,
+ votes: 147663,
+ running_times: 8340,
+ },
+ {
+ title: "The Trip",
+ year: 2010,
+ rating: 7,
+ votes: 19086,
+ running_times: 6720,
+ },
+ {
+ title: "The Trip to Italy",
+ year: 2014,
+ rating: 6.6,
+ votes: 12519,
+ running_times: 10500,
+ },
+ {
+ title: "The Trouble with Harry",
+ year: 1955,
+ rating: 7.2,
+ votes: 27605,
+ running_times: 5940,
+ },
+ {
+ title: "The Truman Show",
+ year: 1998,
+ rating: 8.1,
+ votes: 752414,
+ running_times: 6180,
+ },
+ {
+ title: "The Trust",
+ year: 2016,
+ rating: 5.4,
+ votes: 13898,
+ running_times: 5520,
+ },
+ {
+ title: "The Truth About Cats & Dogs",
+ year: 1996,
+ rating: 6.3,
+ votes: 23194,
+ running_times: 5820,
+ },
+ {
+ title: "The Tunnel",
+ year: 2011,
+ rating: 5.9,
+ votes: 16883,
+ running_times: 5400,
+ },
+ {
+ title: "The Tuxedo",
+ year: 2002,
+ rating: 5.3,
+ votes: 67876,
+ running_times: 5880,
+ },
+ {
+ title: "The Twilight Saga: Breaking Dawn - Part 1",
+ year: 2011,
+ rating: 4.9,
+ votes: 194719,
+ running_times: 7500,
+ },
+ {
+ title: "The Twilight Saga: Breaking Dawn - Part 2",
+ year: 2012,
+ rating: 5.5,
+ votes: 199491,
+ running_times: 7320,
+ },
+ {
+ title: "The Twilight Saga: Eclipse",
+ year: 2010,
+ rating: 4.9,
+ votes: 197473,
+ running_times: 7860,
+ },
+ {
+ title: "The Twilight Saga: New Moon",
+ year: 2009,
+ rating: 4.7,
+ votes: 234090,
+ running_times: 7800,
+ },
+ {
+ title: "The Two Faces of January",
+ year: 2014,
+ rating: 6.2,
+ votes: 25170,
+ running_times: 5760,
+ },
+ {
+ title: "The Ugly Truth",
+ year: 2009,
+ rating: 6.5,
+ votes: 177843,
+ running_times: 5760,
+ },
+ {
+ title: "The Ultimate Gift",
+ year: 2006,
+ rating: 7.4,
+ votes: 15293,
+ running_times: 6840,
+ },
+ {
+ title: "The Unbearable Lightness of Being",
+ year: 1988,
+ rating: 7.4,
+ votes: 29201,
+ running_times: 10260,
+ },
+ {
+ title: "The Unborn",
+ year: 2009,
+ rating: 4.8,
+ votes: 44583,
+ running_times: 5340,
+ },
+ {
+ title: "The Uninvited",
+ year: 2009,
+ rating: 6.4,
+ votes: 67429,
+ running_times: 5220,
+ },
+ {
+ title: "The United States of Leland",
+ year: 2003,
+ rating: 7.1,
+ votes: 21022,
+ running_times: 6480,
+ },
+ {
+ title: "The Untouchables",
+ year: 1987,
+ rating: 7.9,
+ votes: 236735,
+ running_times: 7140,
+ },
+ {
+ title: "The Upside of Anger",
+ year: 2005,
+ rating: 6.9,
+ votes: 19799,
+ running_times: 7080,
+ },
+ {
+ title: "The Usual Suspects",
+ year: 1995,
+ rating: 8.6,
+ votes: 825415,
+ running_times: 6360,
+ },
+ {
+ title: "The VVitch: A New-England Folktale",
+ year: 2015,
+ rating: 6.8,
+ votes: 116302,
+ running_times: 5520,
+ },
+ {
+ title: "The Vanishing",
+ year: 1993,
+ rating: 6.3,
+ votes: 20064,
+ running_times: 6540,
+ },
+ {
+ title: "The Vatican Tapes",
+ year: 2015,
+ rating: 5,
+ votes: 14242,
+ running_times: 5460,
+ },
+ {
+ title: "The Verdict",
+ year: 1982,
+ rating: 7.8,
+ votes: 29321,
+ running_times: 7740,
+ },
+ {
+ title: "The Vikings",
+ year: 1958,
+ rating: 7.1,
+ votes: 10339,
+ running_times: 6960,
+ },
+ {
+ title: "The Village",
+ year: 2004,
+ rating: 6.5,
+ votes: 211351,
+ running_times: 6480,
+ },
+ {
+ title: "The Virgin Suicides",
+ year: 1999,
+ rating: 7.2,
+ votes: 126377,
+ running_times: 5820,
+ },
+ {
+ title: "The Visit",
+ year: 2015,
+ rating: 6.2,
+ votes: 89398,
+ running_times: 5640,
+ },
+ {
+ title: "The Visitor",
+ year: 2007,
+ rating: 7.7,
+ votes: 38887,
+ running_times: 6240,
+ },
+ {
+ title: "The Voices",
+ year: 2014,
+ rating: 6.4,
+ votes: 42329,
+ running_times: 6180,
+ },
+ {
+ title: "The Void",
+ year: 2016,
+ rating: 5.8,
+ votes: 17759,
+ running_times: 5400,
+ },
+ {
+ title: "The Vow",
+ year: 2012,
+ rating: 6.8,
+ votes: 161595,
+ running_times: 6240,
+ },
+ {
+ title: "The Wackness",
+ year: 2008,
+ rating: 7,
+ votes: 28228,
+ running_times: 5940,
+ },
+ {
+ title: "The Walk",
+ year: 2015,
+ rating: 7.3,
+ votes: 99230,
+ running_times: 7380,
+ },
+ {
+ title: "The Wall",
+ year: 2017,
+ rating: 6.1,
+ votes: 13630,
+ running_times: 5280,
+ },
+ {
+ title: "The War",
+ year: 1994,
+ rating: 6.7,
+ votes: 10819,
+ running_times: 7560,
+ },
+ {
+ title: "The War of the Roses",
+ year: 1989,
+ rating: 6.8,
+ votes: 41078,
+ running_times: 6960,
+ },
+ {
+ title: "The War of the Worlds",
+ year: 1953,
+ rating: 7.1,
+ votes: 27465,
+ running_times: 5100,
+ },
+ {
+ title: "The Ward",
+ year: 2010,
+ rating: 5.6,
+ votes: 36222,
+ running_times: 5340,
+ },
+ {
+ title: "The Warrior's Way",
+ year: 2010,
+ rating: 6.3,
+ votes: 23298,
+ running_times: 6000,
+ },
+ {
+ title: "The Warriors",
+ year: 1979,
+ rating: 7.7,
+ votes: 78567,
+ running_times: 5520,
+ },
+ {
+ title: "The Watch",
+ year: 2012,
+ rating: 5.7,
+ votes: 110365,
+ running_times: 6120,
+ },
+ {
+ title: "The Watcher",
+ year: 2000,
+ rating: 5.3,
+ votes: 23272,
+ running_times: 5820,
+ },
+ {
+ title: "The Water Diviner",
+ year: 2014,
+ rating: 7.1,
+ votes: 61571,
+ running_times: 6660,
+ },
+ {
+ title: "The Water Horse",
+ year: 2007,
+ rating: 6.5,
+ votes: 33841,
+ running_times: 6720,
+ },
+ {
+ title: "The Waterboy",
+ year: 1998,
+ rating: 6.1,
+ votes: 128608,
+ running_times: 5400,
+ },
+ {
+ title: "The Way",
+ year: 2010,
+ rating: 7.4,
+ votes: 25485,
+ running_times: 7380,
+ },
+ {
+ title: "The Way Back",
+ year: 2010,
+ rating: 7.3,
+ votes: 95405,
+ running_times: 7980,
+ },
+ {
+ title: "The Way Way Back",
+ year: 2013,
+ rating: 7.4,
+ votes: 125222,
+ running_times: 6180,
+ },
+ {
+ title: "The Way We Were",
+ year: 1973,
+ rating: 7.1,
+ votes: 18180,
+ running_times: 7080,
+ },
+ {
+ title: "The Way of the Gun",
+ year: 2000,
+ rating: 6.7,
+ votes: 28622,
+ running_times: 7200,
+ },
+ {
+ title: "The Weather Man",
+ year: 2005,
+ rating: 6.6,
+ votes: 72135,
+ running_times: 6120,
+ },
+ {
+ title: "The Wedding Date",
+ year: 2005,
+ rating: 6.1,
+ votes: 41956,
+ running_times: 5400,
+ },
+ {
+ title: "The Wedding Planner",
+ year: 2001,
+ rating: 5.2,
+ votes: 66485,
+ running_times: 6180,
+ },
+ {
+ title: "The Wedding Ringer",
+ year: 2015,
+ rating: 6.7,
+ votes: 61464,
+ running_times: 6060,
+ },
+ {
+ title: "The Wedding Singer",
+ year: 1998,
+ rating: 6.8,
+ votes: 117472,
+ running_times: 5700,
+ },
+ {
+ title: "The Whistleblower",
+ year: 2010,
+ rating: 7.2,
+ votes: 27422,
+ running_times: 6720,
+ },
+ {
+ title: "The Whole Nine Yards",
+ year: 2000,
+ rating: 6.7,
+ votes: 96501,
+ running_times: 5880,
+ },
+ {
+ title: "The Whole Ten Yards",
+ year: 2004,
+ rating: 5.5,
+ votes: 48689,
+ running_times: 5880,
+ },
+ {
+ title: "The Whole Truth",
+ year: 2016,
+ rating: 6.2,
+ votes: 14683,
+ running_times: 5640,
+ },
+ {
+ title: "The Wicker Man",
+ year: 1973,
+ rating: 7.6,
+ votes: 53387,
+ running_times: 5940,
+ },
+ {
+ title: "The Wicker Man",
+ year: 2006,
+ rating: 3.7,
+ votes: 56687,
+ running_times: 6120,
+ },
+ {
+ title: "The Wild",
+ year: 2006,
+ rating: 5.3,
+ votes: 20527,
+ running_times: 4920,
+ },
+ {
+ title: "The Wild Bunch",
+ year: 1969,
+ rating: 8,
+ votes: 67529,
+ running_times: 8700,
+ },
+ {
+ title: "The Wild Geese",
+ year: 1978,
+ rating: 6.8,
+ votes: 10009,
+ running_times: 8040,
+ },
+ {
+ title: "The Wild One",
+ year: 1953,
+ rating: 6.9,
+ votes: 12360,
+ running_times: 4740,
+ },
+ {
+ title: "The Wild Thornberrys Movie",
+ year: 2002,
+ rating: 5.3,
+ votes: 12815,
+ running_times: 5100,
+ },
+ {
+ title: "The Wind That Shakes the Barley",
+ year: 2006,
+ rating: 7.5,
+ votes: 39810,
+ running_times: 7620,
+ },
+ {
+ title: "The Witches",
+ year: 1990,
+ rating: 6.8,
+ votes: 27846,
+ running_times: 5460,
+ },
+ {
+ title: "The Witches of Eastwick",
+ year: 1987,
+ rating: 6.5,
+ votes: 52381,
+ running_times: 7080,
+ },
+ {
+ title: "The Wiz",
+ year: 1978,
+ rating: 5.3,
+ votes: 11821,
+ running_times: 8160,
+ },
+ {
+ title: "The Wizard",
+ year: 1989,
+ rating: 6,
+ votes: 11413,
+ running_times: 6000,
+ },
+ {
+ title: "The Wizard of Oz",
+ year: 1939,
+ rating: 8.1,
+ votes: 321107,
+ running_times: 6120,
+ },
+ {
+ title: "The Wolf Man",
+ year: 1941,
+ rating: 7.4,
+ votes: 18812,
+ running_times: 4200,
+ },
+ {
+ title: "The Wolf of Wall Street",
+ year: 2013,
+ rating: 8.2,
+ votes: 911859,
+ running_times: 14400,
+ },
+ {
+ title: "The Wolfman",
+ year: 2010,
+ rating: 5.8,
+ votes: 93751,
+ running_times: 7140,
+ },
+ {
+ title: "The Wolverine",
+ year: 2013,
+ rating: 6.7,
+ votes: 369113,
+ running_times: 8280,
+ },
+ {
+ title: "The Woman",
+ year: 2011,
+ rating: 6,
+ votes: 18754,
+ running_times: 6060,
+ },
+ {
+ title: "The Woman in Black",
+ year: 2012,
+ rating: 6.4,
+ votes: 155529,
+ running_times: 5700,
+ },
+ {
+ title: "The Woman in Black 2: Angel of Death",
+ year: 2014,
+ rating: 4.9,
+ votes: 22594,
+ running_times: 5880,
+ },
+ {
+ title: "The Woman in Red",
+ year: 1984,
+ rating: 5.9,
+ votes: 11392,
+ running_times: 5220,
+ },
+ {
+ title: "The Woman in the Window",
+ year: 1944,
+ rating: 7.8,
+ votes: 10497,
+ running_times: 6420,
+ },
+ {
+ title: "The Women",
+ year: 1939,
+ rating: 8,
+ votes: 10584,
+ running_times: 7980,
+ },
+ {
+ title: "The Women",
+ year: 2008,
+ rating: 4.9,
+ votes: 18004,
+ running_times: 6840,
+ },
+ {
+ title: "The Woodsman",
+ year: 2004,
+ rating: 7.2,
+ votes: 29060,
+ running_times: 5220,
+ },
+ {
+ title: "The Words",
+ year: 2012,
+ rating: 7.1,
+ votes: 65538,
+ running_times: 6120,
+ },
+ {
+ title: "The World According to Garp",
+ year: 1982,
+ rating: 7.2,
+ votes: 22128,
+ running_times: 8160,
+ },
+ {
+ title: "The World Is Not Enough",
+ year: 1999,
+ rating: 6.4,
+ votes: 166771,
+ running_times: 9600,
+ },
+ {
+ title: "The World's End",
+ year: 2013,
+ rating: 7,
+ votes: 210573,
+ running_times: 6540,
+ },
+ {
+ title: "The World's Fastest Indian",
+ year: 2005,
+ rating: 7.8,
+ votes: 46860,
+ running_times: 7620,
+ },
+ {
+ title: "The Wraith",
+ year: 1986,
+ rating: 5.9,
+ votes: 11815,
+ running_times: 5580,
+ },
+ {
+ title: "The Wrestler",
+ year: 2008,
+ rating: 7.9,
+ votes: 266299,
+ running_times: 6540,
+ },
+ {
+ title: "The Wrong Man",
+ year: 1956,
+ rating: 7.5,
+ votes: 21010,
+ running_times: 6300,
+ },
+ {
+ title: "The Wrong Trousers",
+ year: 1993,
+ rating: 8.4,
+ votes: 44121,
+ running_times: 1800,
+ },
+ {
+ title: "The X Files",
+ year: 1998,
+ rating: 7,
+ votes: 91195,
+ running_times: 7260,
+ },
+ {
+ title: "The X Files: I Want to Believe",
+ year: 2008,
+ rating: 5.9,
+ votes: 82186,
+ running_times: 6480,
+ },
+ {
+ title: "The Yards",
+ year: 2000,
+ rating: 6.4,
+ votes: 17330,
+ running_times: 6900,
+ },
+ {
+ title: "The Year of Living Dangerously",
+ year: 1982,
+ rating: 7.2,
+ votes: 16789,
+ running_times: 6900,
+ },
+ {
+ title: "The Young Victoria",
+ year: 2009,
+ rating: 7.3,
+ votes: 49898,
+ running_times: 6300,
+ },
+ {
+ title: "The Young and Prodigious T.S. Spivet",
+ year: 2013,
+ rating: 7.1,
+ votes: 13735,
+ running_times: 6300,
+ },
+ {
+ title: "The Zero Theorem",
+ year: 2013,
+ rating: 6.1,
+ votes: 38906,
+ running_times: 6420,
+ },
+ {
+ title: "The Zookeeper's Wife",
+ year: 2017,
+ rating: 7,
+ votes: 18921,
+ running_times: 7620,
+ },
+ {
+ title: "Their Finest",
+ year: 2016,
+ rating: 6.8,
+ votes: 10101,
+ running_times: 7020,
+ },
+ {
+ title: "Thelma & Louise",
+ year: 1991,
+ rating: 7.4,
+ votes: 111181,
+ running_times: 7800,
+ },
+ {
+ title: "Them!",
+ year: 1954,
+ rating: 7.3,
+ votes: 16401,
+ running_times: 5640,
+ },
+ {
+ title: "There Will Be Blood",
+ year: 2007,
+ rating: 8.1,
+ votes: 418664,
+ running_times: 9480,
+ },
+ {
+ title: "There's Something About Mary",
+ year: 1998,
+ rating: 7.1,
+ votes: 261762,
+ running_times: 7800,
+ },
+ {
+ title: "These Final Hours",
+ year: 2013,
+ rating: 6.7,
+ votes: 12815,
+ running_times: 5220,
+ },
+ { title: "They", year: 2002, rating: 4.8, votes: 11399, running_times: 5340 },
+ {
+ title: "They Came Together",
+ year: 2014,
+ rating: 5.5,
+ votes: 18600,
+ running_times: 4980,
+ },
+ {
+ title: "They Live",
+ year: 1988,
+ rating: 7.3,
+ votes: 85066,
+ running_times: 5640,
+ },
+ {
+ title: "They Shoot Horses, Don't They?",
+ year: 1969,
+ rating: 7.9,
+ votes: 13393,
+ running_times: 7740,
+ },
+ {
+ title: "Thick as Thieves",
+ year: 2009,
+ rating: 6,
+ votes: 30544,
+ running_times: 6240,
+ },
+ {
+ title: "Thief",
+ year: 1981,
+ rating: 7.4,
+ votes: 18773,
+ running_times: 7320,
+ },
+ {
+ title: "Things We Lost in the Fire",
+ year: 2007,
+ rating: 7.2,
+ votes: 25533,
+ running_times: 7080,
+ },
+ {
+ title: "Things to Do in Denver When You're Dead",
+ year: 1995,
+ rating: 6.8,
+ votes: 23523,
+ running_times: 6900,
+ },
+ {
+ title: "Think Like a Man",
+ year: 2012,
+ rating: 6.6,
+ votes: 37687,
+ running_times: 7320,
+ },
+ {
+ title: "Think Like a Man Too",
+ year: 2014,
+ rating: 5.8,
+ votes: 16909,
+ running_times: 6360,
+ },
+ {
+ title: "Thinner",
+ year: 1996,
+ rating: 5.7,
+ votes: 22657,
+ running_times: 5580,
+ },
+ {
+ title: "Thir13en Ghosts",
+ year: 2001,
+ rating: 5.6,
+ votes: 69826,
+ running_times: 5460,
+ },
+ {
+ title: "Third Person",
+ year: 2013,
+ rating: 6.4,
+ votes: 23048,
+ running_times: 8220,
+ },
+ {
+ title: "Thirteen",
+ year: 2003,
+ rating: 6.8,
+ votes: 72716,
+ running_times: 6000,
+ },
+ {
+ title: "Thirteen Days",
+ year: 2000,
+ rating: 7.3,
+ votes: 48091,
+ running_times: 8700,
+ },
+ {
+ title: "This Boy's Life",
+ year: 1993,
+ rating: 7.3,
+ votes: 39017,
+ running_times: 6900,
+ },
+ {
+ title: "This Film Is Not Yet Rated",
+ year: 2006,
+ rating: 7.5,
+ votes: 26134,
+ running_times: 5880,
+ },
+ {
+ title: "This Is 40",
+ year: 2012,
+ rating: 6.2,
+ votes: 110651,
+ running_times: 8040,
+ },
+ {
+ title: "This Is England",
+ year: 2006,
+ rating: 7.7,
+ votes: 104758,
+ running_times: 6060,
+ },
+ {
+ title: "This Is It",
+ year: 2009,
+ rating: 7.3,
+ votes: 34810,
+ running_times: 6660,
+ },
+ {
+ title: "This Is Spinal Tap",
+ year: 1984,
+ rating: 8,
+ votes: 113091,
+ running_times: 4920,
+ },
+ {
+ title: "This Is Where I Leave You",
+ year: 2014,
+ rating: 6.6,
+ votes: 60539,
+ running_times: 6180,
+ },
+ {
+ title: "This Is the End",
+ year: 2013,
+ rating: 6.6,
+ votes: 338167,
+ running_times: 6420,
+ },
+ {
+ title: "This Means War",
+ year: 2012,
+ rating: 6.3,
+ votes: 158614,
+ running_times: 6180,
+ },
+ {
+ title: "This Must Be the Place",
+ year: 2011,
+ rating: 6.7,
+ votes: 28430,
+ running_times: 7080,
+ },
+ { title: "Thor", year: 2011, rating: 7, votes: 597270, running_times: 6900 },
+ {
+ title: "Thor: Ragnarok",
+ year: 2017,
+ rating: 8.1,
+ votes: 170098,
+ running_times: 7800,
+ },
+ {
+ title: "Thor: The Dark World",
+ year: 2013,
+ rating: 7,
+ votes: 466861,
+ running_times: 6720,
+ },
+ {
+ title: "Three Billboards Outside Ebbing, Missouri",
+ year: 2017,
+ rating: 8.5,
+ votes: 12269,
+ running_times: 6900,
+ },
+ {
+ title: "Three Days of the Condor",
+ year: 1975,
+ rating: 7.5,
+ votes: 38865,
+ running_times: 7020,
+ },
+ {
+ title: "Three Kings",
+ year: 1999,
+ rating: 7.1,
+ votes: 146204,
+ running_times: 6840,
+ },
+ {
+ title: "Three to Tango",
+ year: 1999,
+ rating: 6.1,
+ votes: 16986,
+ running_times: 5880,
+ },
+ {
+ title: "Threesome",
+ year: 1994,
+ rating: 6.2,
+ votes: 11466,
+ running_times: 5340,
+ },
+ {
+ title: "Throw Momma from the Train",
+ year: 1987,
+ rating: 6.2,
+ votes: 28749,
+ running_times: 5280,
+ },
+ {
+ title: "Thumbelina",
+ year: 1994,
+ rating: 6.4,
+ votes: 12645,
+ running_times: 5220,
+ },
+ {
+ title: "Thumbsucker",
+ year: 2005,
+ rating: 6.6,
+ votes: 19455,
+ running_times: 5760,
+ },
+ {
+ title: "Thunderball",
+ year: 1965,
+ rating: 7,
+ votes: 88693,
+ running_times: 7800,
+ },
+ {
+ title: "Thunderbirds",
+ year: 2004,
+ rating: 4.2,
+ votes: 11828,
+ running_times: 5700,
+ },
+ {
+ title: "Thunderbolt and Lightfoot",
+ year: 1974,
+ rating: 7.1,
+ votes: 17590,
+ running_times: 6900,
+ },
+ {
+ title: "Thunderheart",
+ year: 1992,
+ rating: 6.8,
+ votes: 12172,
+ running_times: 7140,
+ },
+ {
+ title: "Thursday",
+ year: 1998,
+ rating: 7.2,
+ votes: 15020,
+ running_times: 5220,
+ },
+ {
+ title: "TiMER",
+ year: 2009,
+ rating: 6.6,
+ votes: 11302,
+ running_times: 5940,
+ },
+ {
+ title: "Tian jiang xiong shi",
+ year: 2015,
+ rating: 6.1,
+ votes: 14550,
+ running_times: 7620,
+ },
+ {
+ title: "Tideland",
+ year: 2005,
+ rating: 6.5,
+ votes: 28552,
+ running_times: 7200,
+ },
+ {
+ title: "Tigerland",
+ year: 2000,
+ rating: 7,
+ votes: 34855,
+ running_times: 6060,
+ },
+ {
+ title: "Tightrope",
+ year: 1984,
+ rating: 6.3,
+ votes: 12721,
+ running_times: 6840,
+ },
+ {
+ title: "Timbuktu",
+ year: 2014,
+ rating: 7.2,
+ votes: 13276,
+ running_times: 5820,
+ },
+ {
+ title: "Time After Time",
+ year: 1979,
+ rating: 7.2,
+ votes: 12886,
+ running_times: 6720,
+ },
+ {
+ title: "Time Bandits",
+ year: 1981,
+ rating: 7,
+ votes: 49534,
+ running_times: 6960,
+ },
+ {
+ title: "Time Lapse",
+ year: 2014,
+ rating: 6.5,
+ votes: 33700,
+ running_times: 6240,
+ },
+ {
+ title: "Timecop",
+ year: 1994,
+ rating: 5.8,
+ votes: 48177,
+ running_times: 5940,
+ },
+ {
+ title: "Timeline",
+ year: 2003,
+ rating: 5.6,
+ votes: 55343,
+ running_times: 6960,
+ },
+ {
+ title: "Tin Cup",
+ year: 1996,
+ rating: 6.3,
+ votes: 40422,
+ running_times: 8100,
+ },
+ {
+ title: "Tinker Tailor Soldier Spy",
+ year: 2011,
+ rating: 7.1,
+ votes: 162349,
+ running_times: 7320,
+ },
+ {
+ title: "Tiny Furniture",
+ year: 2010,
+ rating: 6.2,
+ votes: 12833,
+ running_times: 5880,
+ },
+ {
+ title: "Titan A.E.",
+ year: 2000,
+ rating: 6.6,
+ votes: 54378,
+ running_times: 5640,
+ },
+ {
+ title: "Titanic",
+ year: 1997,
+ rating: 7.8,
+ votes: 872744,
+ running_times: 11640,
+ },
+ {
+ title: "Titus",
+ year: 1999,
+ rating: 7.2,
+ votes: 18157,
+ running_times: 9720,
+ },
+ {
+ title: "To Be or Not to Be",
+ year: 1942,
+ rating: 8.2,
+ votes: 21156,
+ running_times: 5940,
+ },
+ {
+ title: "To Catch a Thief",
+ year: 1955,
+ rating: 7.5,
+ votes: 51136,
+ running_times: 6360,
+ },
+ {
+ title: "To Die For",
+ year: 1995,
+ rating: 6.8,
+ votes: 37325,
+ running_times: 6600,
+ },
+ {
+ title: "To Have and Have Not",
+ year: 1944,
+ rating: 8,
+ votes: 25610,
+ running_times: 6000,
+ },
+ {
+ title: "To Kill a Mockingbird",
+ year: 1962,
+ rating: 8.3,
+ votes: 243039,
+ running_times: 7740,
+ },
+ {
+ title: "To Live and Die in L.A.",
+ year: 1985,
+ rating: 7.3,
+ votes: 23530,
+ running_times: 6960,
+ },
+ {
+ title: "To Rome with Love",
+ year: 2012,
+ rating: 6.3,
+ votes: 74663,
+ running_times: 6720,
+ },
+ {
+ title: "To Sir, with Love",
+ year: 1967,
+ rating: 7.7,
+ votes: 13076,
+ running_times: 6300,
+ },
+ {
+ title: "To Wong Foo Thanks for Everything, Julie Newmar",
+ year: 1995,
+ rating: 6.4,
+ votes: 23230,
+ running_times: 6540,
+ },
+ {
+ title: "To the Bone",
+ year: 2017,
+ rating: 6.9,
+ votes: 21942,
+ running_times: 6420,
+ },
+ {
+ title: "To the Wonder",
+ year: 2012,
+ rating: 5.9,
+ votes: 23641,
+ running_times: 6720,
+ },
+ {
+ title: "Tokarev",
+ year: 2014,
+ rating: 5,
+ votes: 20189,
+ running_times: 5880,
+ },
+ {
+ title: "Tokyo Goddofazazu",
+ year: 2003,
+ rating: 7.9,
+ votes: 22743,
+ running_times: 5580,
+ },
+ {
+ title: "Tom yum goong",
+ year: 2005,
+ rating: 7.1,
+ votes: 31950,
+ running_times: 6660,
+ },
+ {
+ title: "Tombstone",
+ year: 1993,
+ rating: 7.8,
+ votes: 104882,
+ running_times: 8040,
+ },
+ {
+ title: "Tomcats",
+ year: 2001,
+ rating: 5.3,
+ votes: 16003,
+ running_times: 5700,
+ },
+ {
+ title: "Tommy",
+ year: 1975,
+ rating: 6.6,
+ votes: 16577,
+ running_times: 6660,
+ },
+ {
+ title: "Tommy Boy",
+ year: 1995,
+ rating: 7.1,
+ votes: 66806,
+ running_times: 5820,
+ },
+ {
+ title: "Tomorrow Never Dies",
+ year: 1997,
+ rating: 6.5,
+ votes: 159140,
+ running_times: 7140,
+ },
+ {
+ title: "Tomorrow, When the War Began",
+ year: 2010,
+ rating: 6.2,
+ votes: 28223,
+ running_times: 6180,
+ },
+ {
+ title: "Tomorrowland",
+ year: 2015,
+ rating: 6.5,
+ votes: 149378,
+ running_times: 7800,
+ },
+ {
+ title: "Toni Erdmann",
+ year: 2016,
+ rating: 7.5,
+ votes: 30830,
+ running_times: 9720,
+ },
+ {
+ title: "Tooth Fairy",
+ year: 2010,
+ rating: 5,
+ votes: 33791,
+ running_times: 6060,
+ },
+ {
+ title: "Tootsie",
+ year: 1982,
+ rating: 7.4,
+ votes: 83730,
+ running_times: 6960,
+ },
+ {
+ title: "Top Five",
+ year: 2014,
+ rating: 6.4,
+ votes: 23587,
+ running_times: 6120,
+ },
+ {
+ title: "Top Gun",
+ year: 1986,
+ rating: 6.9,
+ votes: 239755,
+ running_times: 6600,
+ },
+ {
+ title: "Top Hat",
+ year: 1935,
+ rating: 7.8,
+ votes: 14522,
+ running_times: 6060,
+ },
+ {
+ title: "Top Secret!",
+ year: 1984,
+ rating: 7.2,
+ votes: 50375,
+ running_times: 5400,
+ },
+ {
+ title: "Topaz",
+ year: 1969,
+ rating: 6.3,
+ votes: 13928,
+ running_times: 8580,
+ },
+ {
+ title: "Topsy-Turvy",
+ year: 1999,
+ rating: 7.4,
+ votes: 10533,
+ running_times: 9240,
+ },
+ {
+ title: "Tora! Tora! Tora!",
+ year: 1970,
+ rating: 7.5,
+ votes: 27158,
+ running_times: 8940,
+ },
+ {
+ title: "Torn Curtain",
+ year: 1966,
+ rating: 6.7,
+ votes: 20568,
+ running_times: 7680,
+ },
+ { title: "Torque", year: 2004, rating: 4, votes: 24817, running_times: 5040 },
+ {
+ title: "Total Eclipse",
+ year: 1995,
+ rating: 6.6,
+ votes: 11463,
+ running_times: 6660,
+ },
+ {
+ title: "Total Recall",
+ year: 1990,
+ rating: 7.5,
+ votes: 260008,
+ running_times: 6780,
+ },
+ {
+ title: "Total Recall",
+ year: 2012,
+ rating: 6.3,
+ votes: 216376,
+ running_times: 7800,
+ },
+ {
+ title: "Touch of Evil",
+ year: 1958,
+ rating: 8.1,
+ votes: 80814,
+ running_times: 6720,
+ },
+ {
+ title: "Touching the Void",
+ year: 2003,
+ rating: 8.1,
+ votes: 29255,
+ running_times: 6360,
+ },
+ {
+ title: "Tower Heist",
+ year: 2011,
+ rating: 6.2,
+ votes: 117332,
+ running_times: 6240,
+ },
+ {
+ title: "Town Creek",
+ year: 2009,
+ rating: 5.4,
+ votes: 10254,
+ running_times: 5400,
+ },
+ {
+ title: "Toy Soldiers",
+ year: 1991,
+ rating: 6.5,
+ votes: 17221,
+ running_times: 6660,
+ },
+ {
+ title: "Toy Story",
+ year: 1995,
+ rating: 8.3,
+ votes: 704806,
+ running_times: 4860,
+ },
+ {
+ title: "Toy Story 2",
+ year: 1999,
+ rating: 7.9,
+ votes: 425458,
+ running_times: 5520,
+ },
+ {
+ title: "Toy Story 3",
+ year: 2010,
+ rating: 8.3,
+ votes: 612021,
+ running_times: 6180,
+ },
+ { title: "Toys", year: 1992, rating: 5, votes: 27937, running_times: 7320 },
+ {
+ title: "Tracers",
+ year: 2015,
+ rating: 5.6,
+ votes: 15688,
+ running_times: 5640,
+ },
+ {
+ title: "Tracks",
+ year: 2013,
+ rating: 7.2,
+ votes: 22926,
+ running_times: 6720,
+ },
+ {
+ title: "Trade",
+ year: 2007,
+ rating: 7.4,
+ votes: 15564,
+ running_times: 7200,
+ },
+ {
+ title: "Trading Places",
+ year: 1983,
+ rating: 7.5,
+ votes: 113180,
+ running_times: 6960,
+ },
+ {
+ title: "Traffic",
+ year: 2000,
+ rating: 7.6,
+ votes: 178628,
+ running_times: 11400,
+ },
+ {
+ title: "Trailer Park Boys: The Movie",
+ year: 2006,
+ rating: 7.3,
+ votes: 10730,
+ running_times: 5700,
+ },
+ {
+ title: "Training Day",
+ year: 2001,
+ rating: 7.7,
+ votes: 332078,
+ running_times: 7320,
+ },
+ {
+ title: "Trainspotting",
+ year: 1996,
+ rating: 8.2,
+ votes: 538219,
+ running_times: 5640,
+ },
+ {
+ title: "Trainwreck",
+ year: 2015,
+ rating: 6.2,
+ votes: 111924,
+ running_times: 7740,
+ },
+ {
+ title: "Traitor",
+ year: 2008,
+ rating: 7,
+ votes: 51231,
+ running_times: 6840,
+ },
+ {
+ title: "Trance",
+ year: 2013,
+ rating: 6.9,
+ votes: 100012,
+ running_times: 6060,
+ },
+ {
+ title: "Transamerica",
+ year: 2005,
+ rating: 7.4,
+ votes: 37802,
+ running_times: 6180,
+ },
+ {
+ title: "Transcendence",
+ year: 2014,
+ rating: 6.3,
+ votes: 191749,
+ running_times: 7140,
+ },
+ {
+ title: "Transformers",
+ year: 2007,
+ rating: 7.1,
+ votes: 544522,
+ running_times: 8640,
+ },
+ {
+ title: "Transformers: Age of Extinction",
+ year: 2014,
+ rating: 5.7,
+ votes: 266571,
+ running_times: 9900,
+ },
+ {
+ title: "Transformers: Dark of the Moon",
+ year: 2011,
+ rating: 6.3,
+ votes: 348266,
+ running_times: 9240,
+ },
+ {
+ title: "Transformers: Revenge of the Fallen",
+ year: 2009,
+ rating: 6,
+ votes: 346287,
+ running_times: 9000,
+ },
+ {
+ title: "Transformers: The Last Knight",
+ year: 2017,
+ rating: 5.2,
+ votes: 83297,
+ running_times: 9300,
+ },
+ {
+ title: "Transporter 2",
+ year: 2005,
+ rating: 6.3,
+ votes: 169325,
+ running_times: 5220,
+ },
+ {
+ title: "Transporter 3",
+ year: 2008,
+ rating: 6.1,
+ votes: 137799,
+ running_times: 6240,
+ },
+ {
+ title: "Transsiberian",
+ year: 2008,
+ rating: 6.7,
+ votes: 45274,
+ running_times: 6660,
+ },
+ {
+ title: "Trapped",
+ year: 2002,
+ rating: 6.2,
+ votes: 20815,
+ running_times: 6360,
+ },
+ {
+ title: "Trapped in Paradise",
+ year: 1994,
+ rating: 5.9,
+ votes: 10743,
+ running_times: 6660,
+ },
+ {
+ title: "Trash",
+ year: 2014,
+ rating: 7.2,
+ votes: 17202,
+ running_times: 6840,
+ },
+ {
+ title: "Treasure Planet",
+ year: 2002,
+ rating: 7.1,
+ votes: 81221,
+ running_times: 5700,
+ },
+ {
+ title: "Trees Lounge",
+ year: 1996,
+ rating: 7.2,
+ votes: 12006,
+ running_times: 5700,
+ },
+ {
+ title: "Tremors",
+ year: 1990,
+ rating: 7.1,
+ votes: 99377,
+ running_times: 5760,
+ },
+ {
+ title: "Trespass",
+ year: 2011,
+ rating: 5.3,
+ votes: 37084,
+ running_times: 5460,
+ },
+ {
+ title: "Triangle",
+ year: 2009,
+ rating: 6.9,
+ votes: 78209,
+ running_times: 5940,
+ },
+ {
+ title: "Trick 'r Treat",
+ year: 2007,
+ rating: 6.8,
+ votes: 69181,
+ running_times: 4920,
+ },
+ {
+ title: "Triple 9",
+ year: 2016,
+ rating: 6.3,
+ votes: 52847,
+ running_times: 6900,
+ },
+ {
+ title: "Tristan + Isolde",
+ year: 2006,
+ rating: 6.8,
+ votes: 47170,
+ running_times: 7500,
+ },
+ {
+ title: "Troll 2",
+ year: 1990,
+ rating: 2.8,
+ votes: 26609,
+ running_times: 5700,
+ },
+ {
+ title: "Trolljegeren",
+ year: 2010,
+ rating: 7,
+ votes: 59467,
+ running_times: 6180,
+ },
+ {
+ title: "Trolls",
+ year: 2016,
+ rating: 6.5,
+ votes: 52257,
+ running_times: 5520,
+ },
+ {
+ title: "Tron",
+ year: 2010,
+ rating: 6.8,
+ votes: 280444,
+ running_times: 7500,
+ },
+ {
+ title: "Tropic Thunder",
+ year: 2008,
+ rating: 7,
+ votes: 330614,
+ running_times: 7260,
+ },
+ {
+ title: "Trouble in Paradise",
+ year: 1932,
+ rating: 8.2,
+ votes: 10603,
+ running_times: 4980,
+ },
+ {
+ title: "Trouble with the Curve",
+ year: 2012,
+ rating: 6.8,
+ votes: 52238,
+ running_times: 6660,
+ },
+ {
+ title: "Troy",
+ year: 2004,
+ rating: 7.2,
+ votes: 418856,
+ running_times: 11760,
+ },
+ {
+ title: "True Crime",
+ year: 1999,
+ rating: 6.6,
+ votes: 27548,
+ running_times: 7620,
+ },
+ {
+ title: "True Grit",
+ year: 1969,
+ rating: 7.4,
+ votes: 36110,
+ running_times: 7680,
+ },
+ {
+ title: "True Grit",
+ year: 2010,
+ rating: 7.6,
+ votes: 262595,
+ running_times: 6600,
+ },
+ {
+ title: "True Lies",
+ year: 1994,
+ rating: 7.2,
+ votes: 204843,
+ running_times: 8460,
+ },
+ {
+ title: "True Romance",
+ year: 1993,
+ rating: 7.9,
+ votes: 176419,
+ running_times: 7260,
+ },
+ {
+ title: "True Story",
+ year: 2015,
+ rating: 6.3,
+ votes: 45075,
+ running_times: 5940,
+ },
+ {
+ title: "Trumbo",
+ year: 2015,
+ rating: 7.5,
+ votes: 61971,
+ running_times: 7440,
+ },
+ {
+ title: "Trust",
+ year: 2010,
+ rating: 6.9,
+ votes: 37077,
+ running_times: 6360,
+ },
+ {
+ title: "Truth",
+ year: 2015,
+ rating: 6.8,
+ votes: 14963,
+ running_times: 7500,
+ },
+ {
+ title: "Tsotsi",
+ year: 2005,
+ rating: 7.3,
+ votes: 25959,
+ running_times: 5640,
+ },
+ {
+ title: "Tuck Everlasting",
+ year: 2002,
+ rating: 6.7,
+ votes: 19122,
+ running_times: 5760,
+ },
+ {
+ title: "Tucker and Dale vs Evil",
+ year: 2010,
+ rating: 7.6,
+ votes: 142633,
+ running_times: 5340,
+ },
+ {
+ title: "Tucker: The Man and His Dream",
+ year: 1988,
+ rating: 6.9,
+ votes: 12569,
+ running_times: 6600,
+ },
+ {
+ title: "Turbo",
+ year: 2013,
+ rating: 6.5,
+ votes: 68370,
+ running_times: 5760,
+ },
+ {
+ title: "Turbo Kid",
+ year: 2015,
+ rating: 6.7,
+ votes: 20823,
+ running_times: 5580,
+ },
+ {
+ title: "Turist",
+ year: 2014,
+ rating: 7.3,
+ votes: 35515,
+ running_times: 7200,
+ },
+ {
+ title: "Turistas",
+ year: 2006,
+ rating: 5.4,
+ votes: 32784,
+ running_times: 5760,
+ },
+ {
+ title: "Turner & Hooch",
+ year: 1989,
+ rating: 6.1,
+ votes: 53216,
+ running_times: 5820,
+ },
+ { title: "Tusk", year: 2014, rating: 5.4, votes: 36058, running_times: 6120 },
+ {
+ title: "Twelve",
+ year: 2010,
+ rating: 5.7,
+ votes: 11188,
+ running_times: 5700,
+ },
+ {
+ title: "Twelve Monkeys",
+ year: 1995,
+ rating: 8,
+ votes: 506089,
+ running_times: 7740,
+ },
+ {
+ title: "Twelve O'Clock High",
+ year: 1949,
+ rating: 7.8,
+ votes: 10789,
+ running_times: 7920,
+ },
+ {
+ title: "Twenty Feet from Stardom",
+ year: 2013,
+ rating: 7.4,
+ votes: 10501,
+ running_times: 5460,
+ },
+ {
+ title: "Twilight",
+ year: 2008,
+ rating: 5.2,
+ votes: 369363,
+ running_times: 7320,
+ },
+ {
+ title: "Twilight Zone: The Movie",
+ year: 1983,
+ rating: 6.5,
+ votes: 28051,
+ running_times: 6060,
+ },
+ {
+ title: "Twin Peaks: Fire Walk with Me",
+ year: 1992,
+ rating: 7.2,
+ votes: 68624,
+ running_times: 8100,
+ },
+ { title: "Twins", year: 1988, rating: 6, votes: 95388, running_times: 6420 },
+ {
+ title: "Twisted",
+ year: 2004,
+ rating: 5.2,
+ votes: 18116,
+ running_times: 5820,
+ },
+ {
+ title: "Twister",
+ year: 1996,
+ rating: 6.3,
+ votes: 153606,
+ running_times: 6780,
+ },
+ {
+ title: "Two Lovers",
+ year: 2008,
+ rating: 7.1,
+ votes: 31847,
+ running_times: 6600,
+ },
+ {
+ title: "Two Mules for Sister Sara",
+ year: 1970,
+ rating: 7,
+ votes: 19054,
+ running_times: 6960,
+ },
+ {
+ title: "Two Night Stand",
+ year: 2014,
+ rating: 6.4,
+ votes: 53970,
+ running_times: 5160,
+ },
+ {
+ title: "Two Weeks Notice",
+ year: 2002,
+ rating: 6.1,
+ votes: 92598,
+ running_times: 6060,
+ },
+ {
+ title: "Two for the Money",
+ year: 2005,
+ rating: 6.2,
+ votes: 38961,
+ running_times: 7320,
+ },
+ {
+ title: "Tyrannosaur",
+ year: 2011,
+ rating: 7.6,
+ votes: 26375,
+ running_times: 5520,
+ },
+ {
+ title: "Tyson",
+ year: 2008,
+ rating: 7.5,
+ votes: 11211,
+ running_times: 5400,
+ },
+ {
+ title: "Tystnaden",
+ year: 1963,
+ rating: 8,
+ votes: 13626,
+ running_times: 5760,
+ },
+ {
+ title: "Tôkyô monogatari",
+ year: 1953,
+ rating: 8.2,
+ votes: 33514,
+ running_times: 8160,
+ },
+ {
+ title: "U Turn",
+ year: 1997,
+ rating: 6.8,
+ votes: 44393,
+ running_times: 7500,
+ },
+ {
+ title: "U-571",
+ year: 2000,
+ rating: 6.6,
+ votes: 69146,
+ running_times: 6960,
+ },
+ {
+ title: "U.S. Marshals",
+ year: 1998,
+ rating: 6.5,
+ votes: 83366,
+ running_times: 7860,
+ },
+ { title: "UHF", year: 1989, rating: 7, votes: 22543, running_times: 9000 },
+ {
+ title: "Udaan",
+ year: 2010,
+ rating: 8.2,
+ votes: 35711,
+ running_times: 8040,
+ },
+ {
+ title: "Ultimo tango a Parigi",
+ year: 1972,
+ rating: 7.1,
+ votes: 40747,
+ running_times: 15000,
+ },
+ {
+ title: "Ultraviolet",
+ year: 2006,
+ rating: 4.4,
+ votes: 73834,
+ running_times: 5640,
+ },
+ {
+ title: "Un monstre à Paris",
+ year: 2011,
+ rating: 6.7,
+ votes: 17120,
+ running_times: 5400,
+ },
+ {
+ title: "Unbreakable",
+ year: 2000,
+ rating: 7.2,
+ votes: 284513,
+ running_times: 6360,
+ },
+ {
+ title: "Unbroken",
+ year: 2014,
+ rating: 7.2,
+ votes: 119486,
+ running_times: 8220,
+ },
+ {
+ title: "Uncle Buck",
+ year: 1989,
+ rating: 7,
+ votes: 69088,
+ running_times: 6000,
+ },
+ {
+ title: "Undead",
+ year: 2003,
+ rating: 5.5,
+ votes: 11859,
+ running_times: 6240,
+ },
+ {
+ title: "Under Siege",
+ year: 1992,
+ rating: 6.5,
+ votes: 66049,
+ running_times: 6180,
+ },
+ {
+ title: "Under Siege 2: Dark Territory",
+ year: 1995,
+ rating: 5.4,
+ votes: 38553,
+ running_times: 6000,
+ },
+ {
+ title: "Under Suspicion",
+ year: 2000,
+ rating: 6.5,
+ votes: 19443,
+ running_times: 6660,
+ },
+ {
+ title: "Under sandet",
+ year: 2015,
+ rating: 7.8,
+ votes: 19375,
+ running_times: 6000,
+ },
+ {
+ title: "Under the Skin",
+ year: 2013,
+ rating: 6.3,
+ votes: 100131,
+ running_times: 6480,
+ },
+ {
+ title: "Under the Tuscan Sun",
+ year: 2003,
+ rating: 6.8,
+ votes: 39571,
+ running_times: 6780,
+ },
+ {
+ title: "Undercover Brother",
+ year: 2002,
+ rating: 5.8,
+ votes: 30747,
+ running_times: 5280,
+ },
+ {
+ title: "Underdog",
+ year: 2007,
+ rating: 4.8,
+ votes: 16932,
+ running_times: 5040,
+ },
+ {
+ title: "Underground",
+ year: 1995,
+ rating: 8.1,
+ votes: 47977,
+ running_times: 19200,
+ },
+ {
+ title: "Underworld",
+ year: 2003,
+ rating: 7,
+ votes: 227288,
+ running_times: 7980,
+ },
+ {
+ title: "Underworld Awakening",
+ year: 2012,
+ rating: 6.4,
+ votes: 131014,
+ running_times: 5280,
+ },
+ {
+ title: "Underworld: Blood Wars",
+ year: 2016,
+ rating: 5.8,
+ votes: 52723,
+ running_times: 5460,
+ },
+ {
+ title: "Underworld: Evolution",
+ year: 2006,
+ rating: 6.7,
+ votes: 171177,
+ running_times: 6360,
+ },
+ {
+ title: "Underworld: Rise of the Lycans",
+ year: 2009,
+ rating: 6.6,
+ votes: 133868,
+ running_times: 5520,
+ },
+ {
+ title: "Undisputed",
+ year: 2002,
+ rating: 6.2,
+ votes: 24816,
+ running_times: 5760,
+ },
+ {
+ title: "Unfaithful",
+ year: 2002,
+ rating: 6.7,
+ votes: 68502,
+ running_times: 7500,
+ },
+ {
+ title: "Unfinished Business",
+ year: 2015,
+ rating: 5.4,
+ votes: 26311,
+ running_times: 5460,
+ },
+ {
+ title: "Unforgiven",
+ year: 1992,
+ rating: 8.2,
+ votes: 308492,
+ running_times: 7800,
+ },
+ {
+ title: "Unfriended",
+ year: 2014,
+ rating: 5.6,
+ votes: 54063,
+ running_times: 4980,
+ },
+ {
+ title: "United 93",
+ year: 2006,
+ rating: 7.6,
+ votes: 88351,
+ running_times: 6660,
+ },
+ {
+ title: "Universal Soldier",
+ year: 1992,
+ rating: 6,
+ votes: 73321,
+ running_times: 6120,
+ },
+ {
+ title: "Universal Soldier: Day of Reckoning",
+ year: 2012,
+ rating: 5,
+ votes: 17251,
+ running_times: 6840,
+ },
+ {
+ title: "Universal Soldier: Regeneration",
+ year: 2009,
+ rating: 5.2,
+ votes: 22922,
+ running_times: 5820,
+ },
+ {
+ title: "Universal Soldier: The Return",
+ year: 1999,
+ rating: 4.1,
+ votes: 25435,
+ running_times: 4980,
+ },
+ {
+ title: "Unknown",
+ year: 2006,
+ rating: 6.5,
+ votes: 27168,
+ running_times: 5100,
+ },
+ {
+ title: "Unknown",
+ year: 2011,
+ rating: 6.9,
+ votes: 223409,
+ running_times: 6780,
+ },
+ {
+ title: "Unlawful Entry",
+ year: 1992,
+ rating: 6.3,
+ votes: 12116,
+ running_times: 7020,
+ },
+ {
+ title: "Unleashed",
+ year: 2005,
+ rating: 7,
+ votes: 90174,
+ running_times: 6180,
+ },
+ {
+ title: "Unlocked",
+ year: 2017,
+ rating: 6.2,
+ votes: 12382,
+ running_times: 5880,
+ },
+ {
+ title: "Unstoppable",
+ year: 2010,
+ rating: 6.8,
+ votes: 162057,
+ running_times: 5880,
+ },
+ {
+ title: "Untamed Heart",
+ year: 1993,
+ rating: 6.8,
+ votes: 10899,
+ running_times: 6120,
+ },
+ {
+ title: "Unthinkable",
+ year: 2010,
+ rating: 7.1,
+ votes: 76928,
+ running_times: 5820,
+ },
+ {
+ title: "Untraceable",
+ year: 2008,
+ rating: 6.2,
+ votes: 43124,
+ running_times: 6060,
+ },
+ { title: "Up", year: 2009, rating: 8.3, votes: 754724, running_times: 5760 },
+ {
+ title: "Up Close & Personal",
+ year: 1996,
+ rating: 6.1,
+ votes: 12047,
+ running_times: 7440,
+ },
+ {
+ title: "Up in Smoke",
+ year: 1978,
+ rating: 7,
+ votes: 31136,
+ running_times: 5160,
+ },
+ {
+ title: "Up in the Air",
+ year: 2009,
+ rating: 7.4,
+ votes: 285417,
+ running_times: 6540,
+ },
+ {
+ title: "Upside Down",
+ year: 2012,
+ rating: 6.4,
+ votes: 63039,
+ running_times: 6540,
+ },
+ {
+ title: "Upstream Color",
+ year: 2013,
+ rating: 6.7,
+ votes: 26189,
+ running_times: 5760,
+ },
+ {
+ title: "Uptown Girls",
+ year: 2003,
+ rating: 6.1,
+ votes: 31104,
+ running_times: 5520,
+ },
+ {
+ title: "Urban Cowboy",
+ year: 1980,
+ rating: 6.2,
+ votes: 10991,
+ running_times: 7920,
+ },
+ {
+ title: "Urban Legend",
+ year: 1998,
+ rating: 5.5,
+ votes: 51232,
+ running_times: 5940,
+ },
+ {
+ title: "Urban Legends: Final Cut",
+ year: 2000,
+ rating: 4.2,
+ votes: 13917,
+ running_times: 5820,
+ },
+ {
+ title: "Used Cars",
+ year: 1980,
+ rating: 6.8,
+ votes: 11538,
+ running_times: 6780,
+ },
+ {
+ title: "V for Vendetta",
+ year: 2005,
+ rating: 8.2,
+ votes: 878025,
+ running_times: 7920,
+ },
+ {
+ title: "V/H/S",
+ year: 2012,
+ rating: 5.8,
+ votes: 49302,
+ running_times: 6960,
+ },
+ {
+ title: "V/H/S Viral",
+ year: 2014,
+ rating: 4.2,
+ votes: 12558,
+ running_times: 5880,
+ },
+ {
+ title: "V/H/S/2",
+ year: 2013,
+ rating: 6.1,
+ votes: 30647,
+ running_times: 5760,
+ },
+ {
+ title: "Vacancy",
+ year: 2007,
+ rating: 6.2,
+ votes: 84820,
+ running_times: 5100,
+ },
+ {
+ title: "Vacation",
+ year: 2015,
+ rating: 6.1,
+ votes: 78709,
+ running_times: 5940,
+ },
+ {
+ title: "Valentine",
+ year: 2001,
+ rating: 4.7,
+ votes: 21677,
+ running_times: 5760,
+ },
+ {
+ title: "Valentine's Day",
+ year: 2010,
+ rating: 5.7,
+ votes: 101218,
+ running_times: 7500,
+ },
+ {
+ title: "Valerian and the City of a Thousand Planets",
+ year: 2017,
+ rating: 6.6,
+ votes: 81807,
+ running_times: 8220,
+ },
+ {
+ title: "Valhalla Rising",
+ year: 2009,
+ rating: 6,
+ votes: 47989,
+ running_times: 5580,
+ },
+ {
+ title: "Valiant",
+ year: 2005,
+ rating: 5.6,
+ votes: 17433,
+ running_times: 4560,
+ },
+ {
+ title: "Valkyrie",
+ year: 2008,
+ rating: 7.1,
+ votes: 199643,
+ running_times: 7260,
+ },
+ {
+ title: "Valley Girl",
+ year: 1983,
+ rating: 6.4,
+ votes: 10847,
+ running_times: 5940,
+ },
+ {
+ title: "Valmont",
+ year: 1989,
+ rating: 7,
+ votes: 10895,
+ running_times: 8220,
+ },
+ {
+ title: "Vals Im Bashir",
+ year: 2008,
+ rating: 8,
+ votes: 49445,
+ running_times: 5400,
+ },
+ {
+ title: "Vampire Academy",
+ year: 2014,
+ rating: 5.6,
+ votes: 45777,
+ running_times: 6240,
+ },
+ {
+ title: "Vampire Hunter D: Bloodlust",
+ year: 2000,
+ rating: 7.7,
+ votes: 24820,
+ running_times: 6180,
+ },
+ {
+ title: "Vampire in Brooklyn",
+ year: 1995,
+ rating: 4.5,
+ votes: 18539,
+ running_times: 6000,
+ },
+ {
+ title: "Vampire's Kiss",
+ year: 1988,
+ rating: 5.9,
+ votes: 10620,
+ running_times: 6180,
+ },
+ {
+ title: "Vampires",
+ year: 1998,
+ rating: 6.1,
+ votes: 45850,
+ running_times: 6480,
+ },
+ {
+ title: "Vampires Suck",
+ year: 2010,
+ rating: 3.5,
+ votes: 41417,
+ running_times: 4920,
+ },
+ {
+ title: "Van Helsing",
+ year: 2004,
+ rating: 6.1,
+ votes: 213927,
+ running_times: 7860,
+ },
+ {
+ title: "Van Wilder",
+ year: 2002,
+ rating: 6.4,
+ votes: 93922,
+ running_times: 5640,
+ },
+ {
+ title: "Van Wilder 2: The Rise of Taj",
+ year: 2006,
+ rating: 4.8,
+ votes: 20342,
+ running_times: 5820,
+ },
+ {
+ title: "Vanilla Sky",
+ year: 2001,
+ rating: 6.9,
+ votes: 220421,
+ running_times: 8460,
+ },
+ {
+ title: "Vanishing Point",
+ year: 1971,
+ rating: 7.3,
+ votes: 23211,
+ running_times: 6360,
+ },
+ {
+ title: "Vanishing on 7th Street",
+ year: 2010,
+ rating: 4.9,
+ votes: 22968,
+ running_times: 5520,
+ },
+ {
+ title: "Vanity Fair",
+ year: 2004,
+ rating: 6.2,
+ votes: 18278,
+ running_times: 8460,
+ },
+ {
+ title: "Vantage Point",
+ year: 2008,
+ rating: 6.6,
+ votes: 133654,
+ running_times: 5400,
+ },
+ {
+ title: "Varsity Blues",
+ year: 1999,
+ rating: 6.4,
+ votes: 37306,
+ running_times: 6360,
+ },
+ {
+ title: "Vegas Vacation",
+ year: 1997,
+ rating: 5.9,
+ votes: 36659,
+ running_times: 5580,
+ },
+ {
+ title: "Vehicle 19",
+ year: 2013,
+ rating: 4.9,
+ votes: 13186,
+ running_times: 5100,
+ },
+ {
+ title: "Velvet Goldmine",
+ year: 1998,
+ rating: 7,
+ votes: 29482,
+ running_times: 7080,
+ },
+ {
+ title: "Venus",
+ year: 2006,
+ rating: 7.1,
+ votes: 11555,
+ running_times: 5700,
+ },
+ {
+ title: "Venuto al mondo",
+ year: 2012,
+ rating: 7.4,
+ votes: 13309,
+ running_times: 7620,
+ },
+ {
+ title: "Vera Drake",
+ year: 2004,
+ rating: 7.7,
+ votes: 21374,
+ running_times: 7500,
+ },
+ {
+ title: "Veronica Guerin",
+ year: 2003,
+ rating: 6.9,
+ votes: 17197,
+ running_times: 5880,
+ },
+ {
+ title: "Veronica Mars",
+ year: 2014,
+ rating: 6.8,
+ votes: 44371,
+ running_times: 6420,
+ },
+ {
+ title: "Veronika Decides to Die",
+ year: 2009,
+ rating: 6.5,
+ votes: 10862,
+ running_times: 6180,
+ },
+ {
+ title: "Versus",
+ year: 2000,
+ rating: 6.5,
+ votes: 11539,
+ running_times: 7140,
+ },
+ {
+ title: "Vertical Limit",
+ year: 2000,
+ rating: 5.9,
+ votes: 52544,
+ running_times: 7440,
+ },
+ {
+ title: "Vertigo",
+ year: 1958,
+ rating: 8.4,
+ votes: 282823,
+ running_times: 7740,
+ },
+ {
+ title: "Very Bad Things",
+ year: 1998,
+ rating: 6.3,
+ votes: 41265,
+ running_times: 6000,
+ },
+ {
+ title: "Very Good Girls",
+ year: 2013,
+ rating: 6,
+ votes: 12016,
+ running_times: 5460,
+ },
+ { title: "Vice", year: 2015, rating: 4.2, votes: 13323, running_times: 5760 },
+ {
+ title: "Vicky Cristina Barcelona",
+ year: 2008,
+ rating: 7.1,
+ votes: 214956,
+ running_times: 5760,
+ },
+ {
+ title: "Victor Frankenstein",
+ year: 2015,
+ rating: 6,
+ votes: 41566,
+ running_times: 6600,
+ },
+ {
+ title: "Victor Victoria",
+ year: 1982,
+ rating: 7.6,
+ votes: 16492,
+ running_times: 8040,
+ },
+ {
+ title: "Victoria",
+ year: 2015,
+ rating: 7.7,
+ votes: 37987,
+ running_times: 8280,
+ },
+ {
+ title: "Victory",
+ year: 1981,
+ rating: 6.6,
+ votes: 22838,
+ running_times: 6960,
+ },
+ {
+ title: "Videodrome",
+ year: 1983,
+ rating: 7.3,
+ votes: 67766,
+ running_times: 5340,
+ },
+ {
+ title: "View from the Top",
+ year: 2003,
+ rating: 5.2,
+ votes: 22568,
+ running_times: 5220,
+ },
+ {
+ title: "Village of the Damned",
+ year: 1960,
+ rating: 7.3,
+ votes: 12036,
+ running_times: 4620,
+ },
+ {
+ title: "Village of the Damned",
+ year: 1995,
+ rating: 5.6,
+ votes: 23863,
+ running_times: 5940,
+ },
+ {
+ title: "Vincent",
+ year: 1982,
+ rating: 8.4,
+ votes: 19267,
+ running_times: 360,
+ },
+ {
+ title: "Violet & Daisy",
+ year: 2011,
+ rating: 6.1,
+ votes: 10176,
+ running_times: 5280,
+ },
+ {
+ title: "Viridiana",
+ year: 1961,
+ rating: 8.2,
+ votes: 18029,
+ running_times: 5400,
+ },
+ {
+ title: "Virtuosity",
+ year: 1995,
+ rating: 5.6,
+ votes: 24921,
+ running_times: 6360,
+ },
+ {
+ title: "Virus",
+ year: 1999,
+ rating: 4.9,
+ votes: 23377,
+ running_times: 5940,
+ },
+ {
+ title: "Vizontele Tuuba",
+ year: 2003,
+ rating: 6.5,
+ votes: 10727,
+ running_times: 6660,
+ },
+ {
+ title: "Volcano",
+ year: 1997,
+ rating: 5.4,
+ votes: 63055,
+ running_times: 6240,
+ },
+ {
+ title: "Von Ryan's Express",
+ year: 1965,
+ rating: 7.1,
+ votes: 11050,
+ running_times: 7020,
+ },
+ { title: "W.", year: 2008, rating: 6.3, votes: 42728, running_times: 7740 },
+ { title: "W.E.", year: 2011, rating: 6.3, votes: 10607, running_times: 7140 },
+ {
+ title: "WALL·E",
+ year: 2008,
+ rating: 8.4,
+ votes: 812013,
+ running_times: 5880,
+ },
+ { title: "Waar", year: 2013, rating: 8.2, votes: 28439, running_times: 7800 },
+ {
+ title: "Wag the Dog",
+ year: 1997,
+ rating: 7.1,
+ votes: 71281,
+ running_times: 5820,
+ },
+ {
+ title: "Wait Until Dark",
+ year: 1967,
+ rating: 7.9,
+ votes: 22782,
+ running_times: 6480,
+ },
+ {
+ title: "Waiting for 'Superman'",
+ year: 2010,
+ rating: 7.5,
+ votes: 10027,
+ running_times: 6660,
+ },
+ {
+ title: "Waiting for Forever",
+ year: 2010,
+ rating: 6,
+ votes: 18719,
+ running_times: 5700,
+ },
+ {
+ title: "Waiting for Guffman",
+ year: 1996,
+ rating: 7.6,
+ votes: 23751,
+ running_times: 5040,
+ },
+ {
+ title: "Waiting...",
+ year: 2005,
+ rating: 6.8,
+ votes: 79927,
+ running_times: 5640,
+ },
+ {
+ title: "Waitress",
+ year: 2007,
+ rating: 7,
+ votes: 39505,
+ running_times: 6480,
+ },
+ {
+ title: "Wake Up Sid",
+ year: 2009,
+ rating: 7.6,
+ votes: 21957,
+ running_times: 8280,
+ },
+ {
+ title: "Waking Life",
+ year: 2001,
+ rating: 7.8,
+ votes: 53627,
+ running_times: 6060,
+ },
+ {
+ title: "Waking Ned",
+ year: 1998,
+ rating: 7.3,
+ votes: 22591,
+ running_times: 5520,
+ },
+ {
+ title: "Walk Hard: The Dewey Cox Story",
+ year: 2007,
+ rating: 6.8,
+ votes: 58599,
+ running_times: 7200,
+ },
+ {
+ title: "Walk of Shame",
+ year: 2014,
+ rating: 6,
+ votes: 44953,
+ running_times: 5700,
+ },
+ {
+ title: "Walk the Line",
+ year: 2005,
+ rating: 7.9,
+ votes: 200422,
+ running_times: 9180,
+ },
+ {
+ title: "Walkabout",
+ year: 1971,
+ rating: 7.7,
+ votes: 18963,
+ running_times: 6000,
+ },
+ {
+ title: "Walking Tall",
+ year: 2004,
+ rating: 6.2,
+ votes: 57700,
+ running_times: 5160,
+ },
+ {
+ title: "Wall Street",
+ year: 1987,
+ rating: 7.4,
+ votes: 127432,
+ running_times: 7560,
+ },
+ {
+ title: "Wall Street: Money Never Sleeps",
+ year: 2010,
+ rating: 6.2,
+ votes: 89241,
+ running_times: 8160,
+ },
+ {
+ title: "Wanderlust",
+ year: 2012,
+ rating: 5.6,
+ votes: 65787,
+ running_times: 5880,
+ },
+ {
+ title: "Wanted",
+ year: 2008,
+ rating: 6.7,
+ votes: 320677,
+ running_times: 6600,
+ },
+ { title: "War", year: 2007, rating: 6.3, votes: 77054, running_times: 6180 },
+ {
+ title: "War Dogs",
+ year: 2016,
+ rating: 7.1,
+ votes: 128613,
+ running_times: 6840,
+ },
+ {
+ title: "War Horse",
+ year: 2011,
+ rating: 7.2,
+ votes: 126737,
+ running_times: 8760,
+ },
+ {
+ title: "War Machine",
+ year: 2017,
+ rating: 6.1,
+ votes: 26077,
+ running_times: 7320,
+ },
+ {
+ title: "War Room",
+ year: 2015,
+ rating: 6.4,
+ votes: 10436,
+ running_times: 7200,
+ },
+ {
+ title: "War for the Planet of the Apes",
+ year: 2017,
+ rating: 7.5,
+ votes: 137537,
+ running_times: 8400,
+ },
+ {
+ title: "War of the Worlds",
+ year: 2005,
+ rating: 6.5,
+ votes: 361418,
+ running_times: 6960,
+ },
+ {
+ title: "War on Everyone",
+ year: 2016,
+ rating: 5.9,
+ votes: 12576,
+ running_times: 5880,
+ },
+ {
+ title: "War, Inc.",
+ year: 2008,
+ rating: 5.7,
+ votes: 20478,
+ running_times: 6420,
+ },
+ {
+ title: "WarGames",
+ year: 1983,
+ rating: 7.1,
+ votes: 77419,
+ running_times: 6840,
+ },
+ {
+ title: "Warcraft",
+ year: 2016,
+ rating: 6.9,
+ votes: 201525,
+ running_times: 7380,
+ },
+ {
+ title: "Warlock",
+ year: 1989,
+ rating: 6.2,
+ votes: 12599,
+ running_times: 6180,
+ },
+ {
+ title: "Warm Bodies",
+ year: 2013,
+ rating: 6.9,
+ votes: 198209,
+ running_times: 5880,
+ },
+ {
+ title: "Warrior",
+ year: 2011,
+ rating: 8.2,
+ votes: 369802,
+ running_times: 8400,
+ },
+ {
+ title: "Watchmen",
+ year: 2009,
+ rating: 7.6,
+ votes: 423383,
+ running_times: 12900,
+ },
+ {
+ title: "Water for Elephants",
+ year: 2011,
+ rating: 6.9,
+ votes: 100901,
+ running_times: 7200,
+ },
+ {
+ title: "Watership Down",
+ year: 1978,
+ rating: 7.7,
+ votes: 27768,
+ running_times: 5460,
+ },
+ {
+ title: "Waterworld",
+ year: 1995,
+ rating: 6.1,
+ votes: 155351,
+ running_times: 10560,
+ },
+ {
+ title: "Wayne's World",
+ year: 1992,
+ rating: 7,
+ votes: 123659,
+ running_times: 5640,
+ },
+ {
+ title: "Wayne's World 2",
+ year: 1993,
+ rating: 6.1,
+ votes: 67102,
+ running_times: 5700,
+ },
+ {
+ title: "We Are Marshall",
+ year: 2006,
+ rating: 7.1,
+ votes: 50569,
+ running_times: 7860,
+ },
+ {
+ title: "We Are Still Here",
+ year: 2015,
+ rating: 5.7,
+ votes: 13867,
+ running_times: 5040,
+ },
+ {
+ title: "We Are What We Are",
+ year: 2013,
+ rating: 5.9,
+ votes: 17047,
+ running_times: 6300,
+ },
+ {
+ title: "We Are Your Friends",
+ year: 2015,
+ rating: 6.2,
+ votes: 28314,
+ running_times: 5760,
+ },
+ {
+ title: "We Bought a Zoo",
+ year: 2011,
+ rating: 7.1,
+ votes: 119778,
+ running_times: 7440,
+ },
+ {
+ title: "We Need to Talk About Kevin",
+ year: 2011,
+ rating: 7.5,
+ votes: 110469,
+ running_times: 6720,
+ },
+ {
+ title: "We Own the Night",
+ year: 2007,
+ rating: 6.9,
+ votes: 76188,
+ running_times: 7020,
+ },
+ {
+ title: "We Were Soldiers",
+ year: 2002,
+ rating: 7.2,
+ votes: 112887,
+ running_times: 8580,
+ },
+ {
+ title: "We're Back! A Dinosaur's Story",
+ year: 1993,
+ rating: 6.1,
+ votes: 11500,
+ running_times: 4320,
+ },
+ {
+ title: "We're No Angels",
+ year: 1989,
+ rating: 6.1,
+ votes: 18713,
+ running_times: 6360,
+ },
+ {
+ title: "We're the Millers",
+ year: 2013,
+ rating: 7,
+ votes: 346039,
+ running_times: 7680,
+ },
+ {
+ title: "Wedding Crashers",
+ year: 2005,
+ rating: 7,
+ votes: 297708,
+ running_times: 7680,
+ },
+ {
+ title: "Weekend",
+ year: 2011,
+ rating: 7.7,
+ votes: 22804,
+ running_times: 5820,
+ },
+ {
+ title: "Weekend at Bernie's",
+ year: 1989,
+ rating: 6.4,
+ votes: 41289,
+ running_times: 5820,
+ },
+ {
+ title: "Weekend at Bernie's II",
+ year: 1993,
+ rating: 4.6,
+ votes: 11096,
+ running_times: 5820,
+ },
+ {
+ title: "Weird Science",
+ year: 1985,
+ rating: 6.6,
+ votes: 66176,
+ running_times: 5640,
+ },
+ {
+ title: "Welcome Home, Roscoe Jenkins",
+ year: 2008,
+ rating: 5.4,
+ votes: 11552,
+ running_times: 6840,
+ },
+ {
+ title: "Welcome to Collinwood",
+ year: 2002,
+ rating: 6.4,
+ votes: 13020,
+ running_times: 5160,
+ },
+ {
+ title: "Welcome to Me",
+ year: 2014,
+ rating: 5.9,
+ votes: 15623,
+ running_times: 5220,
+ },
+ {
+ title: "Welcome to Mooseport",
+ year: 2004,
+ rating: 5.2,
+ votes: 11146,
+ running_times: 7020,
+ },
+ {
+ title: "Welcome to the Dollhouse",
+ year: 1995,
+ rating: 7.4,
+ votes: 28328,
+ running_times: 5280,
+ },
+ {
+ title: "Welcome to the Jungle",
+ year: 2013,
+ rating: 5,
+ votes: 10638,
+ running_times: 5700,
+ },
+ {
+ title: "Welcome to the Punch",
+ year: 2013,
+ rating: 6.1,
+ votes: 29070,
+ running_times: 6000,
+ },
+ {
+ title: "Welcome to the Rileys",
+ year: 2010,
+ rating: 7,
+ votes: 21278,
+ running_times: 6600,
+ },
+ {
+ title: "Wendy and Lucy",
+ year: 2008,
+ rating: 7.1,
+ votes: 13530,
+ running_times: 4800,
+ },
+ {
+ title: "West Side Story",
+ year: 1961,
+ rating: 7.6,
+ votes: 79399,
+ running_times: 9180,
+ },
+ {
+ title: "Westworld",
+ year: 1973,
+ rating: 7,
+ votes: 41034,
+ running_times: 5280,
+ },
+ {
+ title: "Wet Hot American Summer",
+ year: 2001,
+ rating: 6.7,
+ votes: 45977,
+ running_times: 5820,
+ },
+ {
+ title: "Whale Rider",
+ year: 2002,
+ rating: 7.6,
+ votes: 36011,
+ running_times: 6060,
+ },
+ {
+ title: "What About Bob?",
+ year: 1991,
+ rating: 7,
+ votes: 54257,
+ running_times: 5940,
+ },
+ {
+ title: "What Doesn't Kill You",
+ year: 2008,
+ rating: 6.6,
+ votes: 10317,
+ running_times: 6000,
+ },
+ {
+ title: "What Dreams May Come",
+ year: 1998,
+ rating: 7,
+ votes: 89534,
+ running_times: 6780,
+ },
+ {
+ title: "What Ever Happened to Baby Jane?",
+ year: 1962,
+ rating: 8.1,
+ votes: 40325,
+ running_times: 8100,
+ },
+ {
+ title: "What Happens in Vegas",
+ year: 2008,
+ rating: 6.1,
+ votes: 150102,
+ running_times: 6060,
+ },
+ {
+ title: "What Just Happened",
+ year: 2008,
+ rating: 5.7,
+ votes: 24650,
+ running_times: 6240,
+ },
+ {
+ title: "What Lies Beneath",
+ year: 2000,
+ rating: 6.6,
+ votes: 104333,
+ running_times: 7800,
+ },
+ {
+ title: "What Maisie Knew",
+ year: 2012,
+ rating: 7.5,
+ votes: 23733,
+ running_times: 5940,
+ },
+ {
+ title: "What We Did on Our Holiday",
+ year: 2014,
+ rating: 6.9,
+ votes: 14692,
+ running_times: 5700,
+ },
+ {
+ title: "What We Do in the Shadows",
+ year: 2014,
+ rating: 7.6,
+ votes: 97317,
+ running_times: 5160,
+ },
+ {
+ title: "What Women Want",
+ year: 2000,
+ rating: 6.4,
+ votes: 170689,
+ running_times: 7620,
+ },
+ {
+ title: "What a Girl Wants",
+ year: 2003,
+ rating: 5.8,
+ votes: 51761,
+ running_times: 6300,
+ },
+ {
+ title: "What the #$*! Do We (K)now!?",
+ year: 2004,
+ rating: 5.3,
+ votes: 12450,
+ running_times: 6780,
+ },
+ {
+ title: "What the Health",
+ year: 2017,
+ rating: 8,
+ votes: 18833,
+ running_times: 5820,
+ },
+ {
+ title: "What to Expect When You're Expecting",
+ year: 2012,
+ rating: 5.7,
+ votes: 61745,
+ running_times: 6600,
+ },
+ {
+ title: "What's Eating Gilbert Grape",
+ year: 1993,
+ rating: 7.8,
+ votes: 185200,
+ running_times: 7080,
+ },
+ {
+ title: "What's Love Got to Do with It",
+ year: 1993,
+ rating: 7.2,
+ votes: 14393,
+ running_times: 7080,
+ },
+ {
+ title: "What's Up, Doc?",
+ year: 1972,
+ rating: 7.8,
+ votes: 15727,
+ running_times: 5640,
+ },
+ {
+ title: "What's Your Number?",
+ year: 2011,
+ rating: 6.1,
+ votes: 64002,
+ running_times: 7020,
+ },
+ {
+ title: "What's the Worst That Could Happen?",
+ year: 2001,
+ rating: 5.5,
+ votes: 13371,
+ running_times: 5640,
+ },
+ {
+ title: "Whatever Works",
+ year: 2009,
+ rating: 7.2,
+ votes: 63720,
+ running_times: 5580,
+ },
+ {
+ title: "When Harry Met Sally...",
+ year: 1989,
+ rating: 7.6,
+ votes: 163450,
+ running_times: 5760,
+ },
+ {
+ title: "When We Were Kings",
+ year: 1996,
+ rating: 8,
+ votes: 13204,
+ running_times: 5280,
+ },
+ {
+ title: "When a Man Loves a Woman",
+ year: 1994,
+ rating: 6.5,
+ votes: 17885,
+ running_times: 7560,
+ },
+ {
+ title: "When a Stranger Calls",
+ year: 2006,
+ rating: 5.1,
+ votes: 37689,
+ running_times: 5220,
+ },
+ {
+ title: "When in Rome",
+ year: 2010,
+ rating: 5.6,
+ votes: 54300,
+ running_times: 5460,
+ },
+ {
+ title: "When the Game Stands Tall",
+ year: 2014,
+ rating: 6.7,
+ votes: 13756,
+ running_times: 6900,
+ },
+ {
+ title: "Where Eagles Dare",
+ year: 1968,
+ rating: 7.7,
+ votes: 43900,
+ running_times: 9480,
+ },
+ {
+ title: "Where the Buffalo Roam",
+ year: 1980,
+ rating: 6.7,
+ votes: 10050,
+ running_times: 5760,
+ },
+ {
+ title: "Where the Heart Is",
+ year: 2000,
+ rating: 6.8,
+ votes: 28717,
+ running_times: 7200,
+ },
+ {
+ title: "Where the Truth Lies",
+ year: 2005,
+ rating: 6.5,
+ votes: 15715,
+ running_times: 6420,
+ },
+ {
+ title: "Where the Wild Things Are",
+ year: 2009,
+ rating: 6.8,
+ votes: 92375,
+ running_times: 6060,
+ },
+ {
+ title: "Where to Invade Next",
+ year: 2015,
+ rating: 7.6,
+ votes: 17948,
+ running_times: 7200,
+ },
+ {
+ title: "While We're Young",
+ year: 2014,
+ rating: 6.3,
+ votes: 36693,
+ running_times: 5820,
+ },
+ {
+ title: "While You Were Sleeping",
+ year: 1995,
+ rating: 6.7,
+ votes: 77975,
+ running_times: 6180,
+ },
+ {
+ title: "Whip It",
+ year: 2009,
+ rating: 6.9,
+ votes: 58495,
+ running_times: 6660,
+ },
+ {
+ title: "Whiplash",
+ year: 2014,
+ rating: 8.5,
+ votes: 517001,
+ running_times: 6420,
+ },
+ {
+ title: "Whiskey Tango Foxtrot",
+ year: 2016,
+ rating: 6.6,
+ votes: 40192,
+ running_times: 6720,
+ },
+ {
+ title: "White Bird in a Blizzard",
+ year: 2014,
+ rating: 6.4,
+ votes: 23569,
+ running_times: 5460,
+ },
+ {
+ title: "White Chicks",
+ year: 2004,
+ rating: 5.5,
+ votes: 108969,
+ running_times: 6900,
+ },
+ {
+ title: "White Christmas",
+ year: 1954,
+ rating: 7.6,
+ votes: 24345,
+ running_times: 7200,
+ },
+ {
+ title: "White Fang",
+ year: 1991,
+ rating: 6.7,
+ votes: 16867,
+ running_times: 6420,
+ },
+ {
+ title: "White Heat",
+ year: 1949,
+ rating: 8.2,
+ votes: 22555,
+ running_times: 6840,
+ },
+ {
+ title: "White House Down",
+ year: 2013,
+ rating: 6.4,
+ votes: 178695,
+ running_times: 7860,
+ },
+ {
+ title: "White Men Can't Jump",
+ year: 1992,
+ rating: 6.7,
+ votes: 63633,
+ running_times: 7080,
+ },
+ {
+ title: "White Noise",
+ year: 2005,
+ rating: 5.5,
+ votes: 43784,
+ running_times: 6060,
+ },
+ {
+ title: "White Noise 2: The Light",
+ year: 2007,
+ rating: 5.7,
+ votes: 11785,
+ running_times: 5940,
+ },
+ {
+ title: "White Oleander",
+ year: 2002,
+ rating: 7.2,
+ votes: 26933,
+ running_times: 6540,
+ },
+ {
+ title: "White Squall",
+ year: 1996,
+ rating: 6.6,
+ votes: 19008,
+ running_times: 7740,
+ },
+ {
+ title: "Whiteout",
+ year: 2009,
+ rating: 5.5,
+ votes: 33828,
+ running_times: 6060,
+ },
+ {
+ title: "Who Am I - Kein System ist sicher",
+ year: 2014,
+ rating: 7.6,
+ votes: 33183,
+ running_times: 6120,
+ },
+ {
+ title: "Who Framed Roger Rabbit",
+ year: 1988,
+ rating: 7.7,
+ votes: 155219,
+ running_times: 6240,
+ },
+ {
+ title: "Who Killed the Electric Car?",
+ year: 2006,
+ rating: 7.7,
+ votes: 11606,
+ running_times: 5520,
+ },
+ {
+ title: "Who's Afraid of Virginia Woolf?",
+ year: 1966,
+ rating: 8.1,
+ votes: 60336,
+ running_times: 7860,
+ },
+ {
+ title: "Who's Harry Crumb?",
+ year: 1989,
+ rating: 5.8,
+ votes: 13504,
+ running_times: 5640,
+ },
+ {
+ title: "Who's Your Caddy?",
+ year: 2007,
+ rating: 2.1,
+ votes: 14081,
+ running_times: 5580,
+ },
+ {
+ title: "Why Did I Get Married?",
+ year: 2007,
+ rating: 5.7,
+ votes: 10391,
+ running_times: 6780,
+ },
+ {
+ title: "Why Him?",
+ year: 2016,
+ rating: 6.2,
+ votes: 71669,
+ running_times: 6660,
+ },
+ {
+ title: "Wicker Park",
+ year: 2004,
+ rating: 7,
+ votes: 47786,
+ running_times: 6840,
+ },
+ {
+ title: "Wild",
+ year: 2014,
+ rating: 7.1,
+ votes: 100424,
+ running_times: 6900,
+ },
+ {
+ title: "Wild Bill",
+ year: 2011,
+ rating: 7.2,
+ votes: 10888,
+ running_times: 5880,
+ },
+ {
+ title: "Wild Card",
+ year: 2015,
+ rating: 5.6,
+ votes: 42106,
+ running_times: 6120,
+ },
+ {
+ title: "Wild Child",
+ year: 2008,
+ rating: 6.1,
+ votes: 40936,
+ running_times: 7440,
+ },
+ {
+ title: "Wild Hogs",
+ year: 2007,
+ rating: 5.9,
+ votes: 104851,
+ running_times: 6000,
+ },
+ {
+ title: "Wild Target",
+ year: 2010,
+ rating: 6.9,
+ votes: 32102,
+ running_times: 5880,
+ },
+ {
+ title: "Wild Things",
+ year: 1998,
+ rating: 6.5,
+ votes: 96058,
+ running_times: 6900,
+ },
+ {
+ title: "Wild Wild West",
+ year: 1999,
+ rating: 4.8,
+ votes: 137656,
+ running_times: 6360,
+ },
+ {
+ title: "Wild at Heart",
+ year: 1990,
+ rating: 7.2,
+ votes: 68263,
+ running_times: 7500,
+ },
+ {
+ title: "Wildcats",
+ year: 1986,
+ rating: 5.9,
+ votes: 10337,
+ running_times: 6360,
+ },
+ {
+ title: "Wilde",
+ year: 1997,
+ rating: 6.9,
+ votes: 13098,
+ running_times: 7080,
+ },
+ {
+ title: "Willard",
+ year: 2003,
+ rating: 6.2,
+ votes: 15937,
+ running_times: 6000,
+ },
+ {
+ title: "Willow",
+ year: 1988,
+ rating: 7.3,
+ votes: 86915,
+ running_times: 7560,
+ },
+ {
+ title: "Willy Wonka & the Chocolate Factory",
+ year: 1971,
+ rating: 7.8,
+ votes: 144970,
+ running_times: 6000,
+ },
+ {
+ title: "Wimbledon",
+ year: 2004,
+ rating: 6.3,
+ votes: 54516,
+ running_times: 5880,
+ },
+ {
+ title: "Win Win",
+ year: 2011,
+ rating: 7.2,
+ votes: 50308,
+ running_times: 6360,
+ },
+ {
+ title: "Win a Date with Tad Hamilton!",
+ year: 2004,
+ rating: 5.6,
+ votes: 24089,
+ running_times: 5700,
+ },
+ {
+ title: "Winchester '73",
+ year: 1950,
+ rating: 7.7,
+ votes: 13765,
+ running_times: 5520,
+ },
+ {
+ title: "Wind Chill",
+ year: 2007,
+ rating: 5.9,
+ votes: 19074,
+ running_times: 5460,
+ },
+ {
+ title: "Wind River",
+ year: 2017,
+ rating: 7.8,
+ votes: 74682,
+ running_times: 6420,
+ },
+ {
+ title: "Windtalkers",
+ year: 2002,
+ rating: 6,
+ votes: 59346,
+ running_times: 9180,
+ },
+ {
+ title: "Wing Commander",
+ year: 1999,
+ rating: 4.2,
+ votes: 15194,
+ running_times: 6000,
+ },
+ {
+ title: "Winnie the Pooh",
+ year: 2011,
+ rating: 7.2,
+ votes: 17196,
+ running_times: 3780,
+ },
+ {
+ title: "Winter's Bone",
+ year: 2010,
+ rating: 7.2,
+ votes: 119512,
+ running_times: 6000,
+ },
+ {
+ title: "Winter's Tale",
+ year: 2014,
+ rating: 6.2,
+ votes: 45570,
+ running_times: 7080,
+ },
+ {
+ title: "Wish I Was Here",
+ year: 2014,
+ rating: 6.7,
+ votes: 32549,
+ running_times: 6360,
+ },
+ {
+ title: "Wishmaster",
+ year: 1997,
+ rating: 5.8,
+ votes: 16578,
+ running_times: 5400,
+ },
+ {
+ title: "With Honors",
+ year: 1994,
+ rating: 6.7,
+ votes: 11663,
+ running_times: 6180,
+ },
+ {
+ title: "Withnail & I",
+ year: 1987,
+ rating: 7.8,
+ votes: 33730,
+ running_times: 6420,
+ },
+ {
+ title: "Without a Paddle",
+ year: 2004,
+ rating: 5.9,
+ votes: 39444,
+ running_times: 5700,
+ },
+ {
+ title: "Witness",
+ year: 1985,
+ rating: 7.4,
+ votes: 72313,
+ running_times: 6720,
+ },
+ {
+ title: "Witness for the Prosecution",
+ year: 1957,
+ rating: 8.4,
+ votes: 75714,
+ running_times: 6960,
+ },
+ { title: "Wolf", year: 1994, rating: 6.2, votes: 46491, running_times: 7500 },
+ {
+ title: "Wolf Creek",
+ year: 2005,
+ rating: 6.3,
+ votes: 59931,
+ running_times: 6240,
+ },
+ {
+ title: "Wolf Creek 2",
+ year: 2013,
+ rating: 6.1,
+ votes: 14313,
+ running_times: 6360,
+ },
+ {
+ title: "Woman in Gold",
+ year: 2015,
+ rating: 7.3,
+ votes: 43004,
+ running_times: 6540,
+ },
+ { title: "Womb", year: 2010, rating: 6.4, votes: 11453, running_times: 6660 },
+ {
+ title: "Wonder",
+ year: 2017,
+ rating: 8.1,
+ votes: 13471,
+ running_times: 6780,
+ },
+ {
+ title: "Wonder Boys",
+ year: 2000,
+ rating: 7.4,
+ votes: 56829,
+ running_times: 6420,
+ },
+ {
+ title: "Wonder Woman",
+ year: 2017,
+ rating: 7.6,
+ votes: 343600,
+ running_times: 8460,
+ },
+ {
+ title: "Wonderland",
+ year: 2003,
+ rating: 6.6,
+ votes: 19519,
+ running_times: 6240,
+ },
+ {
+ title: "Wong Fei Hung",
+ year: 1991,
+ rating: 7.4,
+ votes: 14953,
+ running_times: 8040,
+ },
+ {
+ title: "Woodstock",
+ year: 1970,
+ rating: 8.1,
+ votes: 13696,
+ running_times: 21360,
+ },
+ {
+ title: "Working Girl",
+ year: 1988,
+ rating: 6.7,
+ votes: 44715,
+ running_times: 6780,
+ },
+ {
+ title: "World Trade Center",
+ year: 2006,
+ rating: 6,
+ votes: 71119,
+ running_times: 7740,
+ },
+ {
+ title: "World War Z",
+ year: 2013,
+ rating: 7,
+ votes: 513324,
+ running_times: 7380,
+ },
+ {
+ title: "World's Greatest Dad",
+ year: 2009,
+ rating: 6.9,
+ votes: 33881,
+ running_times: 5940,
+ },
+ {
+ title: "Would You Rather",
+ year: 2012,
+ rating: 5.8,
+ votes: 28237,
+ running_times: 5580,
+ },
+ {
+ title: "Wrath of the Titans",
+ year: 2012,
+ rating: 5.8,
+ votes: 163085,
+ running_times: 5940,
+ },
+ {
+ title: "Wreck-It Ralph",
+ year: 2012,
+ rating: 7.7,
+ votes: 302045,
+ running_times: 6060,
+ },
+ {
+ title: "Wrecked",
+ year: 2010,
+ rating: 5.3,
+ votes: 13726,
+ running_times: 5460,
+ },
+ {
+ title: "Wristcutters: A Love Story",
+ year: 2006,
+ rating: 7.3,
+ votes: 48932,
+ running_times: 5280,
+ },
+ {
+ title: "Wrong Turn",
+ year: 2003,
+ rating: 6.1,
+ votes: 94754,
+ running_times: 5040,
+ },
+ {
+ title: "Wrong Turn 4: Bloody Beginnings",
+ year: 2011,
+ rating: 4.6,
+ votes: 18867,
+ running_times: 5640,
+ },
+ {
+ title: "Wrongfully Accused",
+ year: 1998,
+ rating: 6.1,
+ votes: 19976,
+ running_times: 5220,
+ },
+ {
+ title: "Wuthering Heights",
+ year: 1939,
+ rating: 7.7,
+ votes: 13761,
+ running_times: 6240,
+ },
+ {
+ title: "Wuthering Heights",
+ year: 1992,
+ rating: 6.9,
+ votes: 10432,
+ running_times: 6300,
+ },
+ {
+ title: "Wyatt Earp",
+ year: 1994,
+ rating: 6.7,
+ votes: 38522,
+ running_times: 12720,
+ },
+ {
+ title: "Wyrmwood",
+ year: 2014,
+ rating: 6.3,
+ votes: 13514,
+ running_times: 5880,
+ },
+ { title: "X+Y", year: 2014, rating: 7.2, votes: 23033, running_times: 6660 },
+ {
+ title: "X-Men",
+ year: 2000,
+ rating: 7.4,
+ votes: 498117,
+ running_times: 6240,
+ },
+ {
+ title: "X-Men Origins: Wolverine",
+ year: 2009,
+ rating: 6.7,
+ votes: 402237,
+ running_times: 7140,
+ },
+ {
+ title: "X-Men: Apocalypse",
+ year: 2016,
+ rating: 7,
+ votes: 304132,
+ running_times: 8640,
+ },
+ {
+ title: "X-Men: Days of Future Past",
+ year: 2014,
+ rating: 8,
+ votes: 572280,
+ running_times: 9060,
+ },
+ {
+ title: "X-Men: The Last Stand",
+ year: 2006,
+ rating: 6.7,
+ votes: 419674,
+ running_times: 6240,
+ },
+ { title: "X2", year: 2003, rating: 7.5, votes: 445905, running_times: 8040 },
+ {
+ title: "X: First Class",
+ year: 2011,
+ rating: 7.8,
+ votes: 566878,
+ running_times: 7860,
+ },
+ {
+ title: "Xi yan",
+ year: 1993,
+ rating: 7.7,
+ votes: 11724,
+ running_times: 6360,
+ },
+ {
+ title: "Yahsi Bati",
+ year: 2009,
+ rating: 7.3,
+ votes: 20851,
+ running_times: 6720,
+ },
+ {
+ title: "Yankee Doodle Dandy",
+ year: 1942,
+ rating: 7.8,
+ votes: 11975,
+ running_times: 7560,
+ },
+ {
+ title: "Yat goh ho yan",
+ year: 1997,
+ rating: 6.2,
+ votes: 21626,
+ running_times: 5820,
+ },
+ {
+ title: "Year One",
+ year: 2009,
+ rating: 4.9,
+ votes: 80852,
+ running_times: 6000,
+ },
+ {
+ title: "Year of the Dragon",
+ year: 1985,
+ rating: 6.9,
+ votes: 11575,
+ running_times: 8040,
+ },
+ {
+ title: "Yeh Jawaani Hai Deewani",
+ year: 2013,
+ rating: 7,
+ votes: 30273,
+ running_times: 10560,
+ },
+ {
+ title: "Yellow Submarine",
+ year: 1968,
+ rating: 7.4,
+ votes: 20412,
+ running_times: 5400,
+ },
+ {
+ title: "Yentl",
+ year: 1983,
+ rating: 6.6,
+ votes: 10319,
+ running_times: 7980,
+ },
+ {
+ title: "Yeopgijeogin geunyeo",
+ year: 2001,
+ rating: 8.1,
+ votes: 39868,
+ running_times: 8220,
+ },
+ {
+ title: "Yes Boss",
+ year: 1997,
+ rating: 6.9,
+ votes: 10757,
+ running_times: 9780,
+ },
+ {
+ title: "Yes Man",
+ year: 2008,
+ rating: 6.8,
+ votes: 291926,
+ running_times: 6240,
+ },
+ {
+ title: "Yi yi",
+ year: 2000,
+ rating: 8.1,
+ votes: 14903,
+ running_times: 10380,
+ },
+ {
+ title: "Ying hung boon sik",
+ year: 1986,
+ rating: 7.6,
+ votes: 17056,
+ running_times: 5700,
+ },
+ {
+ title: "Yip Man 2",
+ year: 2010,
+ rating: 7.6,
+ votes: 79871,
+ running_times: 6480,
+ },
+ {
+ title: "Yip Man 3",
+ year: 2015,
+ rating: 7.1,
+ votes: 32614,
+ running_times: 6300,
+ },
+ {
+ title: "Yogi Bear",
+ year: 2010,
+ rating: 4.6,
+ votes: 17693,
+ running_times: 4800,
+ },
+ {
+ title: "You Again",
+ year: 2010,
+ rating: 5.8,
+ votes: 43923,
+ running_times: 6300,
+ },
+ {
+ title: "You Can Count on Me",
+ year: 2000,
+ rating: 7.7,
+ votes: 24603,
+ running_times: 6660,
+ },
+ {
+ title: "You Can't Take It with You",
+ year: 1938,
+ rating: 8,
+ votes: 19430,
+ running_times: 7560,
+ },
+ {
+ title: "You Don't Mess with the Zohan",
+ year: 2008,
+ rating: 5.5,
+ votes: 167599,
+ running_times: 6780,
+ },
+ {
+ title: "You Got Served",
+ year: 2004,
+ rating: 3.5,
+ votes: 24231,
+ running_times: 5700,
+ },
+ {
+ title: "You Kill Me",
+ year: 2007,
+ rating: 6.5,
+ votes: 16698,
+ running_times: 5580,
+ },
+ {
+ title: "You Only Live Twice",
+ year: 1967,
+ rating: 6.9,
+ votes: 81773,
+ running_times: 7020,
+ },
+ {
+ title: "You Will Meet a Tall Dark Stranger",
+ year: 2010,
+ rating: 6.3,
+ votes: 39424,
+ running_times: 5880,
+ },
+ {
+ title: "You're Next",
+ year: 2011,
+ rating: 6.5,
+ votes: 71913,
+ running_times: 5700,
+ },
+ {
+ title: "You're Not You",
+ year: 2014,
+ rating: 7.4,
+ votes: 19583,
+ running_times: 6120,
+ },
+ {
+ title: "You've Got Mail",
+ year: 1998,
+ rating: 6.6,
+ votes: 165458,
+ running_times: 7140,
+ },
+ {
+ title: "You, Me and Dupree",
+ year: 2006,
+ rating: 5.6,
+ votes: 71919,
+ running_times: 6600,
+ },
+ {
+ title: "Young Adam",
+ year: 2003,
+ rating: 6.5,
+ votes: 12131,
+ running_times: 5880,
+ },
+ {
+ title: "Young Adult",
+ year: 2011,
+ rating: 6.3,
+ votes: 68568,
+ running_times: 5640,
+ },
+ {
+ title: "Young Frankenstein",
+ year: 1974,
+ rating: 8,
+ votes: 125087,
+ running_times: 6360,
+ },
+ {
+ title: "Young Guns",
+ year: 1988,
+ rating: 6.8,
+ votes: 46301,
+ running_times: 6420,
+ },
+ {
+ title: "Young Guns II",
+ year: 1990,
+ rating: 6.5,
+ votes: 26020,
+ running_times: 6240,
+ },
+ {
+ title: "Young People Fucking",
+ year: 2007,
+ rating: 6.3,
+ votes: 18254,
+ running_times: 5400,
+ },
+ {
+ title: "Young Sherlock Holmes",
+ year: 1985,
+ rating: 6.8,
+ votes: 16098,
+ running_times: 6540,
+ },
+ {
+ title: "Youngblood",
+ year: 1986,
+ rating: 6.1,
+ votes: 10495,
+ running_times: 6600,
+ },
+ {
+ title: "Your Highness",
+ year: 2011,
+ rating: 5.5,
+ votes: 89650,
+ running_times: 6120,
+ },
+ {
+ title: "Your Sister's Sister",
+ year: 2011,
+ rating: 6.7,
+ votes: 23443,
+ running_times: 5400,
+ },
+ {
+ title: "Yours, Mine & Ours",
+ year: 2005,
+ rating: 5.4,
+ votes: 23439,
+ running_times: 5280,
+ },
+ {
+ title: "Youth",
+ year: 2015,
+ rating: 7.3,
+ votes: 56877,
+ running_times: 7440,
+ },
+ {
+ title: "Youth Without Youth",
+ year: 2007,
+ rating: 6.3,
+ votes: 11953,
+ running_times: 7440,
+ },
+ {
+ title: "Youth in Revolt",
+ year: 2009,
+ rating: 6.5,
+ votes: 68119,
+ running_times: 5400,
+ },
+ { title: "Yume", year: 1990, rating: 7.8, votes: 19868, running_times: 7140 },
+ { title: "Z", year: 1969, rating: 8.2, votes: 19513, running_times: 7620 },
+ {
+ title: "Z for Zachariah",
+ year: 2015,
+ rating: 6,
+ votes: 22333,
+ running_times: 5880,
+ },
+ {
+ title: "Zabriskie Point",
+ year: 1970,
+ rating: 7.1,
+ votes: 12201,
+ running_times: 6780,
+ },
+ {
+ title: "Zack and Miri Make a Porno",
+ year: 2008,
+ rating: 6.6,
+ votes: 157803,
+ running_times: 6060,
+ },
+ {
+ title: "Zardoz",
+ year: 1974,
+ rating: 5.8,
+ votes: 16295,
+ running_times: 6300,
+ },
+ {
+ title: "Zathura: A Space Adventure",
+ year: 2005,
+ rating: 6.1,
+ votes: 75323,
+ running_times: 6060,
+ },
+ {
+ title: "Zeitgeist: Moving Forward",
+ year: 2011,
+ rating: 8.2,
+ votes: 16308,
+ running_times: 9660,
+ },
+ {
+ title: "Zelig",
+ year: 1983,
+ rating: 7.8,
+ votes: 34767,
+ running_times: 4740,
+ },
+ {
+ title: "Zero Dark Thirty",
+ year: 2012,
+ rating: 7.4,
+ votes: 233700,
+ running_times: 9420,
+ },
+ {
+ title: "Zero Effect",
+ year: 1998,
+ rating: 7,
+ votes: 12886,
+ running_times: 6960,
+ },
+ {
+ title: "Zindagi Na Milegi Dobara",
+ year: 2011,
+ rating: 8.1,
+ votes: 51369,
+ running_times: 9300,
+ },
+ {
+ title: "Zivot je cudo",
+ year: 2004,
+ rating: 7.7,
+ votes: 10794,
+ running_times: 9300,
+ },
+ {
+ title: "Zodiac",
+ year: 2007,
+ rating: 7.7,
+ votes: 349834,
+ running_times: 9720,
+ },
+ {
+ title: "Zombeavers",
+ year: 2014,
+ rating: 4.8,
+ votes: 13180,
+ running_times: 4620,
+ },
+ {
+ title: "Zombi 2",
+ year: 1979,
+ rating: 6.9,
+ votes: 21569,
+ running_times: 5640,
+ },
+ {
+ title: "Zombie Strippers",
+ year: 2008,
+ rating: 4.1,
+ votes: 16387,
+ running_times: 5640,
+ },
+ {
+ title: "Zombieland",
+ year: 2009,
+ rating: 7.7,
+ votes: 423925,
+ running_times: 5280,
+ },
+ {
+ title: "Zookeeper",
+ year: 2011,
+ rating: 5.2,
+ votes: 48679,
+ running_times: 6120,
+ },
+ {
+ title: "Zoolander",
+ year: 2001,
+ rating: 6.6,
+ votes: 217408,
+ running_times: 5400,
+ },
+ {
+ title: "Zoolander 2",
+ year: 2016,
+ rating: 4.7,
+ votes: 52589,
+ running_times: 6480,
+ },
+ { title: "Zoom", year: 2006, rating: 4.3, votes: 16260, running_times: 5580 },
+ {
+ title: "Zootopia",
+ year: 2016,
+ rating: 8,
+ votes: 326111,
+ running_times: 6480,
+ },
+ { title: "Zulu", year: 1964, rating: 7.8, votes: 31229, running_times: 8280 },
+ { title: "Zulu", year: 2013, rating: 6.7, votes: 15316, running_times: 6600 },
+ {
+ title: "Zwartboek",
+ year: 2006,
+ rating: 7.8,
+ votes: 64568,
+ running_times: 8700,
+ },
+ {
+ title: "eXistenZ",
+ year: 1999,
+ rating: 6.8,
+ votes: 82881,
+ running_times: 6900,
+ },
+ { title: "iBoy", year: 2017, rating: 6, votes: 12217, running_times: 5400 },
+ { title: "xXx", year: 2002, rating: 5.8, votes: 157358, running_times: 7920 },
+ {
+ title: "xXx: Return of Xander Cage",
+ year: 2017,
+ rating: 5.2,
+ votes: 63918,
+ running_times: 6420,
+ },
+ {
+ title: "xXx: State of the Union",
+ year: 2005,
+ rating: 4.4,
+ votes: 59449,
+ running_times: 6060,
+ },
+ {
+ title: "¡Three Amigos!",
+ year: 1986,
+ rating: 6.4,
+ votes: 58003,
+ running_times: 6240,
+ },
+ {
+ title: "À bout de souffle",
+ year: 1960,
+ rating: 7.9,
+ votes: 58379,
+ running_times: 5400,
+ },
+ {
+ title: "Æon Flux",
+ year: 2005,
+ rating: 5.5,
+ votes: 115131,
+ running_times: 5580,
+ },
+];
diff --git a/courses/frontend/advanced-javascript/week1/movies/movies.html b/courses/frontend/advanced-javascript/week1/movies/movies.html
new file mode 100644
index 000000000..38d768f96
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/movies/movies.html
@@ -0,0 +1,67 @@
+
+
+
+
+
+ Document
+
+
+
+
+ Movies Database
+ Welcome to the movies database!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Duplicated Word Titles
+
+
+
+
+
+
+
+ Count Tagged Movies
+
+
+
+
+
+
+
+
+
diff --git a/courses/frontend/advanced-javascript/week1/movies/movies.js b/courses/frontend/advanced-javascript/week1/movies/movies.js
new file mode 100644
index 000000000..725e9d7f6
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/movies/movies.js
@@ -0,0 +1,101 @@
+import { movies } from "./data.js";
+import * as utils from "./script.js";
+
+//short titles
+const shortTitlesContainer = document.getElementById("shortTitles");
+const shortMovies = utils.getShortMovies(movies);
+
+shortTitlesContainer.innerHTML = `
+
+ ${shortMovies.map(movie => `${movie.title} `).join("")}
+
+`;
+
+//long titles
+const longTitlesContainer = document.getElementById("longTitles");
+
+const longMovies = utils.getLongMovies(movies);
+
+longTitlesContainer.innerHTML = `
+
+ ${longMovies.map(title => `${title} `).join("")}
+
+`;
+// 1980s count
+const count1980sContainer = document.getElementById("count1980s");
+
+const moviesBetween1980And1989 = utils.getMoviesBetween1980And1989(movies);
+
+count1980sContainer.innerHTML = `
+ Number of movies from 1980-1989: ${moviesBetween1980And1989.length}
+`;
+
+// tagged movies
+
+const taggedMoviesContainer = document.getElementById("taggedMovies");
+
+const taggedMovies = utils.getTaggedMovies(movies);
+
+taggedMoviesContainer.innerHTML = `
+
+ ${taggedMovies.map(movie => `${movie.title} - ${movie.tag} `).join("")}
+
+`;
+// ratings above 6
+
+const ratingsAbove6Container = document.getElementById("ratingsAbove6");
+
+const moviesWithRatingsOver6 = utils.getMoviesRatingAbove6(movies);
+
+ratingsAbove6Container.innerHTML = `
+
+ ${moviesWithRatingsOver6
+ .map(movie => `${movie.title} - ${movie.rating} `)
+ .join("")}
+
+`;
+
+//keyword count
+
+const keywordCountContainer = document.getElementById("keywordCount");
+
+const moviesWithKeywords = utils.getMoviesWithKeywords(movies);
+
+keywordCountContainer.innerHTML = `
+ Total keyword matches: ${moviesWithKeywords}
+`;
+
+//duplicated movies
+const duplicatedWordTitlesContainer = document.getElementById("duplicatedWordTitles");
+
+const duplicatedMovies = utils.getDuplicatedMovies(movies);
+
+duplicatedWordTitlesContainer.innerHTML = `
+
+ ${duplicatedMovies.map(title => `${title} `).join("")}
+
+`;
+
+
+// average rating
+
+const averageRatingContainer = document.getElementById("averageRating");
+
+const averageRating = utils.getAverageRating(movies);
+
+averageRatingContainer.innerHTML = `
+ Average Rating: ${averageRating}
+`;
+
+// Count the total number of Good, Average and Bad movies
+
+const countTaggedMoviesContainer = document.getElementById("countTaggedMovies");
+
+const countTaggedMovies = utils.getTagCounts(movies);
+
+countTaggedMoviesContainer.innerHTML = `
+ Number of good movies: ${countTaggedMovies.goodMovies}
+ Number of average movies: ${countTaggedMovies.averageMovies}
+ Number of bad movies: ${countTaggedMovies.badMovies}
+`;
+
diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js
new file mode 100644
index 000000000..49f3332ac
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/movies/script.js
@@ -0,0 +1,121 @@
+// Create an array of movies containing the movies with a short title (you define what short means)
+
+function getShortMovies(movies) {
+ return movies.filter((movie) => {
+ return movie.title.trim().split(/\s+/).length === 2;
+ });
+}
+
+// Create an array of movie titles with long movie titles
+function getLongMovies(movies) {
+ return movies
+ .filter((movie) => {
+ return movie.title.trim().split(/\s+/).length > 7;
+ })
+ .map((movie) => movie.title);
+}
+
+// Count the number of movies made between 1980-1989 (including both the years)
+
+function getMoviesBetween1980And1989(movies) {
+ return movies.filter((movie) => {
+ return movie.year >= 1980 && movie.year <= 1989;
+ });
+}
+
+// Create a new array that has an extra key called tag. The tag is based on the rating: Good (>= 7), Average (>= 4 and < 7), Bad (< 4)
+function getTaggedMovies(movies) {
+ return movies.map((movie) => {
+ let tag;
+ if (movie.rating >= 7) {
+ tag = "Good";
+ } else if (movie.rating >= 4) {
+ tag = "Average";
+ } else {
+ tag = "Bad";
+ }
+ return { ...movie, tag };
+ });
+}
+
+// Using chaining, first filter the movies array to only contain the movies rated higher than 6. Now map the movies array to only the rating of the movies.
+function getMoviesRatingAbove6(movies) {
+ return movies.filter((movie) => movie.rating > 6);
+}
+
+// Count the total number of movies containing any of following keywords: Surfer, Alien or Benjamin. So if there were 3 movies that contained Surfer, 1 with Alien and 2 with Benjamin, you would return 6. Can you make sure the search is case insensitive?
+
+function getMoviesWithKeywords(movies) {
+ const keywords = ["surfer", "alien", "benjamin"];
+
+ return movies.reduce((count, movie) => {
+ const title = movie.title.toLowerCase();
+
+ keywords.forEach((keyword) => {
+ if (title.includes(keyword)) {
+ count += 1;
+ }
+ });
+
+ return count;
+ }, 0);
+}
+
+// Create an array of movies where a word in the title is duplicated. e.g. "Star Wars: The Clone Wars" the word Wars is duplicated. Here are some made-up examples of movies with duplicated words in the title: "The three men and the pistol", "Chase three - The final chase"
+
+function getDuplicatedMovies(movies) {
+ return movies
+ .filter((movie) => {
+ const splitTitles = movie.title
+ .toLowerCase()
+ .replace(/[^a-z0-9\s]/gi, "")
+ .split(/\s+/)
+ .filter(Boolean);
+
+ let findDuplicates = splitTitles.filter(
+ (title, index) => splitTitles.indexOf(title) !== index,
+ );
+ return findDuplicates.length > 0;
+ })
+ .map((movie) => movie.title);
+}
+
+// Calculate the average rating of all the movies using .reduce() Optional
+function getAverageRating(movies) {
+ const sumOfRating = movies.reduce((accumulator, movie) => {
+ return accumulator + movie.rating;
+ }, 0);
+ return (sumOfRating / movies.length).toFixed(2);
+}
+
+// Count the total number of Good, Average and Bad movies using .reduce(). A return could be e.g. {goodMovies: 33, averageMovies: 45, goodMovies: 123} Optional
+function getTagCounts(movies) {
+ const taggedMovies = getTaggedMovies(movies);
+
+ return taggedMovies.reduce(
+ (accumulator, taggedMovie) => {
+ if (taggedMovie.tag === "Good") {
+ accumulator.goodMovies += 1;
+ } else if (taggedMovie.tag === "Average") {
+ accumulator.averageMovies += 1;
+ } else {
+ accumulator.badMovies += 1;
+ }
+
+ return accumulator;
+ },
+ { goodMovies: 0, averageMovies: 0, badMovies: 0 },
+ );
+}
+
+export {
+ getShortMovies,
+ getLongMovies,
+ getMoviesBetween1980And1989,
+ getTaggedMovies,
+ getMoviesRatingAbove6,
+ getMoviesWithKeywords,
+ getDuplicatedMovies,
+ getAverageRating,
+ getTagCounts,
+};
diff --git a/courses/frontend/advanced-javascript/week1/movies/styles.css b/courses/frontend/advanced-javascript/week1/movies/styles.css
new file mode 100644
index 000000000..ff206a372
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/movies/styles.css
@@ -0,0 +1,42 @@
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: rgba(220, 220, 220, 0.407);
+}
+
+main {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 2rem 1rem;
+}
+section {
+ background-color: white;
+ padding: 1.2rem;
+ margin: 1.2rem;
+ border-radius: 0.5rem;
+ border: 2px solid rgb(222, 221, 219);
+ box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.033);
+}
+.section-content {
+ max-height: 200px;
+ overflow-y: scroll;
+ padding: 10px;
+ border-radius: 8px;
+ border: 1px solid #ddd;
+ background: #f9f9f9;
+}
+h1 {
+ margin-bottom: 0.5rem;
+ font-size: 2rem;
+}
+
+section p {
+ margin-top: 0;
+ font-size: 1.5rem;
+}
+h2 {
+ margin-top: 0;
+ font-size: 1.5rem;
+}
+
diff --git a/courses/frontend/advanced-javascript/week1/task1.html b/courses/frontend/advanced-javascript/week1/task1.html
new file mode 100644
index 000000000..985a71447
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/task1.html
@@ -0,0 +1,11 @@
+
+
+
+
+ Document
+
+
+ Hello!
+
+
+
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week1/task1.js b/courses/frontend/advanced-javascript/week1/task1.js
new file mode 100644
index 000000000..c3823d856
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week1/task1.js
@@ -0,0 +1,20 @@
+//Doubling of number
+
+// let numbers = [1, 2, 3, 4];
+// let newNumbers = [];
+
+// for (let i = 0; i < numbers.length; i++) {
+// if (numbers[i] % 2 !== 0) {
+// newNumbers[i] = numbers[i] * 2;
+// }
+// }
+// Rewrite the above program using map and filter; don't forget to use arrow functions.
+
+
+let numbers = [1, 2, 3, 4];
+
+const doubledNumbers = numbers
+ .filter((number) => number % 2 !== 0)
+ .map((x) => x * 2);
+
+console.log(doubledNumbers);
diff --git a/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html
new file mode 100644
index 000000000..0527d1601
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+ Document
+
+
+
+
+ JS Advanced 2
+
+ 1. Click counter
+
+ Button1
+ Button2
+ 0
+
+
+ 2. Delay clicker
+
+
+ Log in 3 seconds
+
+ 3. Page onload
+
+
+ 4. Mouse move
+
+ 0
+ 0
+
+
+ 5. Mouse position online tool
+
+
+
+
+
+
diff --git a/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js
new file mode 100644
index 000000000..5385fc224
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js
@@ -0,0 +1,171 @@
+// // function greeting(name, callback) {
+// // return callback(name);
+// // }
+
+// // function callback(name) {
+// // if (name === "Tom") {
+// // console.log(`Hi, ${name}!`)
+// // }else console.log(`Good morning, ${name}! `)
+// // }
+// // callback("Jack", callback)
+// // callback("Tom", callback)
+
+// function greeting(name, callback) {
+// return callback(name);
+// }
+
+// const formal = (name) => `Good morning, ${name}!`
+// const casual = (name) => `Hi, ${name}!`
+
+// function greeting(name, callback) {
+// return callback(name);
+// }
+// console.log(
+// greeting("Jack", formal)
+// );
+// console.log(
+// greeting("Tom", casual)
+// );
+
+
+
+// const array = [1, 2, 3, 4, 5];
+// const newArray = [];
+// const multiply = (num, factor) => {
+// newArray.push(num * factor);
+// };
+
+// const callbackFactory = function (factor) {
+// //
+// return multiply;
+// }
+
+
+// const callback = callbackFactory(2);
+
+// array.forEach(callback);
+// console.log(typeof callbackFactory);
+// console.log(typeof callbackFactory());
+// console.log(typeof multiply());
+// console.log(newArray);
+// console.log(array);
+
+//setTimeout(callback, 1000);
+const bar = () => console.log("First");
+const foo = () => setTimeout(() => console.log("Second"), 500);
+const baz = () => console.log("Third");
+
+bar();
+foo();
+baz();
+
+
+// synchronous vs asynchronous
+
+
+
+
+// const data = document.querySelector(".data");
+// const btn = document.querySelector(".btn");
+
+// data.innerText = "Loading...";
+
+// btn.addEventListener("click", () => {
+// data.innerText = "Loading...";
+// setTimeout(() => {
+// data.innerText = "Data loaded!";
+// }, 2000);
+// });
+// btn.addEventListener btn.addEventListener("click", () => {
+ // console.log("clicked");
+//});
+
+
+
+
+//Exercises
+//1. Click counter
+const button1 = document.querySelector("#btn-1");
+const button2 = document.querySelector("#btn-2");
+
+const counterDisplay = document.querySelector("#counter");
+
+let counter = 0;
+
+button1.addEventListener("click", function () {
+ counterDisplay.innerText = counter;
+ counter++;
+});
+
+button2.addEventListener("click", function () {
+ counterDisplay.innerText = counter;
+ counter++;
+});
+
+
+// #2 Delay clicker
+
+
+const btn = document.querySelector("#btn-load-3");
+const data = document.querySelector(".data");
+
+btn.addEventListener("click", () => {
+ setTimeout(() => {
+ data.innerText = "This text was delayed by 3 seconds"
+ }, 3000);
+});
+btn.addEventListener("click", () => {
+ console.log("clicked");
+});
+
+
+//#3. Page onload
+
+
+const domLoaded = () => {
+ console.log("DOM fully loaded and parsed");
+};
+
+document.addEventListener("DOMContentLoaded", domLoaded);
+
+
+//#4 Mouse position
+
+
+
+ function mousemove(e) {
+ let x = document.getElementById('x');
+ let y = document.getElementById('y');
+ x.innerHTML = e.clientX;
+ y.innerHTML = e.clientY;
+};
+
+
+document.onmousemove = mousemove;
+
+
+
+//#5. Mouse position online tool
+
+
+let totalX = 0;
+let totalY = 0;
+let moveCount = 0;
+
+const trackMouse = (e) => {
+ totalX += e.clientX;
+ totalY += e.clientY;
+ moveCount++;
+};
+
+document.addEventListener("mousemove", trackMouse);
+
+setTimeout(() => {
+ if (moveCount > 0) {
+ const avgX = Math.round(totalX / moveCount);
+ const avgY = Math.round(totalY / moveCount);
+
+ document.querySelector(".average-mouse-position").innerText =
+ `Average mouse position: x=${avgX}, y=${avgY}`;
+ }
+}, 30000);
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week2/Task2/task2.html b/courses/frontend/advanced-javascript/week2/Task2/task2.html
new file mode 100644
index 000000000..68b25e776
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task2/task2.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+ Document
+
+
+ Functions!
+
+ Task 1
+
+
+ Task 2
+
+
+ Task 3
+
+ Click
+
+ Task 4
+
+
+
+ Task 5
+ Log Location
+
+
+ Task 7
+
+ Run
+
+
+ Task 8
+
+
+ Task 9
+ Tell Funny Joke
+ Tell Bad Joke
+
+
+
+
diff --git a/courses/frontend/advanced-javascript/week2/Task2/task2.js b/courses/frontend/advanced-javascript/week2/Task2/task2.js
new file mode 100644
index 000000000..71cc3f640
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task2/task2.js
@@ -0,0 +1,150 @@
+//Task1. Display the text Called after 2.5 seconds
+// on the page 2.5 seconds after the script is loaded.
+
+const myTimeout = setTimeout(message, 2500, "task1-output");
+function message(outputId) {
+ document.getElementById(outputId).textContent = "Called after 2.5 seconds";
+}
+
+// Task2. Create a function that takes 2 parameters: delay and stringToLog.
+// Calling this function should display the stringToLog on the page after delay seconds.
+// Call the function you have created with some different arguments.
+
+function logAfterDelay(delay, stringToLog, outputId) {
+ setTimeout(() => {
+ const container = document.getElementById(outputId);
+ const newLine = document.createElement("p");
+ newLine.textContent = stringToLog;
+
+ container.appendChild(newLine);
+ }, delay * 1000);
+}
+logAfterDelay(3, "Called after 3 seconds", "task2-output");
+logAfterDelay(4, "Called after 4 seconds", "task2-output", "task2-output");
+
+// Task3. Create a button in html.
+// When clicking this button,
+// use the function you created in the previous task
+// to display the text Called after 5 seconds on the page
+// 5 seconds after the button is clicked.
+
+let clickCount = 0;
+const element = document.getElementById("btn-click");
+element.addEventListener("click", function () {
+ clickCount++;
+ if (clickCount === 1) {
+ logAfterDelay(5, "Called after 5 seconds", "task3-output");
+ }
+});
+
+// Task 4.Create two functions and assign them to two different variables.
+// One function displays Earth on the page,
+// the other displays Saturn.
+// Now create a new third function that has one parameter:
+// planetLogFunction.
+// The only thing the third function should do is call the provided parameter function.
+// Try calling the third function once with the Earth function and once with the Saturn function.
+let earthLogger = function () {
+ document.getElementById("task4-earth-output").textContent = "Earth";
+};
+
+let saturnLogger = function () {
+ document.getElementById("task4-saturn-output").textContent = "Saturn";
+};
+
+function planetLogFunction(planetFunction) {
+ planetFunction();
+}
+
+planetLogFunction(earthLogger);
+planetLogFunction(saturnLogger);
+
+// Task5.Create a button with the text "Log location". When this button is clicked, display the user's location (latitude, longitude) on the page using this browser API.
+
+const btnLocation = document.getElementById("btn-location");
+btnLocation.addEventListener("click", function () {
+ let location = document.getElementById("location-output");
+ if (navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(showPosition);
+ } else {
+ location.innerHTML = "Geolocation is not supported by this browser.";
+ }
+});
+function showPosition(position) {
+ document.getElementById("location-output").innerHTML =
+ "Latitude: " +
+ position.coords.latitude +
+ " Longitude: " +
+ position.coords.longitude;
+}
+
+// Task7. Create a function called runAfterDelay.
+// It has two parameters: delay and callback.
+// When called the function should wait delay seconds
+// and then call the provided callback function.
+// Add an input in the HTML for the delay (in seconds)
+// and a button; when the button is clicked,
+// read the delay from the input and call runAfterDelay with that delay
+// and a callback that displays something on the page.
+
+function runAfterDelay(delay, callback) {
+ setTimeout(() => {
+ callback();
+ }, delay * 1000);
+}
+
+document.getElementById("btn-run").addEventListener("click", function () {
+ const delay = document.getElementById("delay-input").value;
+
+ runAfterDelay(delay, function () {
+ document.getElementById("run-output").textContent =
+ "Done after " + delay + " seconds";
+ });
+});
+
+// Task8. Check if the user has double-clicked on the page.
+// A double click is two clicks within 0.5 seconds.
+// If a double click is detected, display the text "double click!" on the page.
+let lastClickedTime = 0;
+document.addEventListener("click", function (event) {
+ const currentTime = new Date().getTime();
+ if (currentTime - lastClickedTime < 500) {
+ document.getElementById("double-click-output").textContent =
+ "double click!";
+ }
+ lastClickedTime = currentTime;
+});
+
+// Task9. Create a function called jokeCreator that has three parameters:
+// shouldTellFunnyJoke (boolean),
+// logFunnyJoke (function),
+// and logBadJoke (function).
+// If shouldTellFunnyJoke is true
+// it should call logFunnyJoke,
+// which displays a funny joke on the page.
+// Otherwise it should call logBadJoke,
+// which displays a bad joke on the page.
+
+function jokeCreator(shouldTellFunnyJoke, logFunnyJoke, logBadJoke) {
+ if (shouldTellFunnyJoke) {
+ logFunnyJoke();
+ } else {
+ logBadJoke();
+ }
+}
+function logFunnyJoke() {
+ document.getElementById("joke-output").textContent =
+ "Why don’t programmers like nature? Because it has too many bugs.";
+}
+function logBadJoke() {
+ document.getElementById("joke-output").textContent =
+ "What do you call a fish wearing a bowtie? Sofishticated.";
+}
+
+document.getElementById("btn-funny").addEventListener("click", function () {
+ jokeCreator(true, logFunnyJoke, logBadJoke);
+});
+
+document.getElementById("btn-bad").addEventListener("click", function () {
+ jokeCreator(false, logFunnyJoke, logBadJoke);
+});
diff --git a/courses/frontend/advanced-javascript/week2/Task3/task3.html b/courses/frontend/advanced-javascript/week2/Task3/task3.html
new file mode 100644
index 000000000..7c2f89345
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task3/task3.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+ Document
+
+
+ Function as a variable
+
+
+
diff --git a/courses/frontend/advanced-javascript/week2/Task3/task3.js b/courses/frontend/advanced-javascript/week2/Task3/task3.js
new file mode 100644
index 000000000..fd8f9027e
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task3/task3.js
@@ -0,0 +1,40 @@
+// Create an array with 3 items.
+// All items should be functions.
+// Iterate through the array and call all the functions.
+let functions = [
+ function add(a, b) {
+ return a + b;
+ },
+ function multiply(a, b) {
+ return a * b;
+ },
+ function divide(a, b) {
+ return a / b;
+ },
+];
+
+for (let i = 0; i < functions.length; i++) {
+ console.log(functions[i](10, 5));
+}
+console.log(functions);
+
+console.log(functions[0](10, 5)); // Output: 15
+console.log(functions[1](10, 5)); // Output: 50
+console.log(functions[2](10, 5)); // Output: 2
+
+//Create a function as a const and try creating a function normally.
+// Call both functions.
+
+const sumFunction = function sum(a, b) {
+ return a + b;
+};
+console.log(sumFunction(10, 5)); // Output: 15
+
+// Create an object that has a key whose value is a function.
+// Try calling this function.
+let obj = {
+ multiplication: function multiply(a, b) {
+ return a * b;
+ },
+};
+console.log(obj.multiplication(10, 5)); // Output: 50
diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.css b/courses/frontend/advanced-javascript/week2/Task4/task4.css
new file mode 100644
index 000000000..70f5aebd7
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task4/task4.css
@@ -0,0 +1,216 @@
+* {
+ box-sizing: border-box;
+}
+
+html,
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+}
+body {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 1.6rem;
+ background: black;
+ color: white;
+ min-height: 100vh;
+}
+
+.game-container {
+ width: 100%;
+ max-width: 760px;
+ background: rgba(7, 12, 32, 0.88);
+ border: 1px solid rgba(255, 255, 255, 0.08);
+ border-radius: 1.6rem;
+ padding: 28px;
+ display: flex;
+ flex-direction: column;
+}
+
+.h1 {
+ font-size: 2.5rem;
+ margin: 0 0 1.6rem;
+ font-weight: 800;
+ line-height: 1.2;
+ text-align: center;
+}
+.title-gradient {
+ background: linear-gradient(90deg, #ffffff, #5ea7ff, #9b6bff, #ff69b4);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ color: transparent;
+}
+.title-white {
+ color: white;
+}
+
+.subtitle {
+ margin: 0 0 1.6rem;
+ color: white;
+ text-align: center;
+}
+
+.controls {
+ display: flex;
+ gap: 1.6rem;
+ justify-content: center;
+ flex-wrap: wrap;
+}
+
+input {
+ width: 240px;
+ padding: 1rem 1.6rem;
+ border-radius: 14px;
+ border: 1px solid rgba(255, 255, 255, 0.14);
+ background: rgba(255, 255, 255, 0.06);
+ color: white;
+ font-size: 1rem;
+}
+
+input::placeholder {
+ color: white;
+}
+
+input:focus {
+ border-color: #5ea7ff;
+ box-shadow: 0 0 0 3px rgba(94, 167, 255, 0.18);
+}
+
+button {
+ padding: 1rem 1.6rem;
+ border: none;
+ border-radius: 14px;
+ background: linear-gradient(90deg, #4da3ff, #9b6bff, #ff8c6b);
+ color: white;
+ font-size: 1rem;
+ font-weight: 700;
+ cursor: pointer;
+ box-shadow: 0 10px 24px rgba(88, 115, 255, 0.28);
+ transition:
+ transform 0.15s ease,
+ opacity 0.15s ease;
+}
+
+button:hover {
+ transform: translateY(-1px);
+ opacity: 0.95;
+}
+.timer-pill {
+ width: fit-content;
+ margin: 0 auto 1.6rem;
+ padding: 1rem 1.6rem;
+ border-radius: 999px;
+ color: white;
+ font-weight: 700;
+ font-size: 1rem;
+}
+
+.scoreboard {
+ display: flex;
+ gap: 1.6rem;
+ flex-wrap: wrap;
+}
+.player-box {
+ flex: 1;
+ min-width: 240px;
+ border-radius: 18px;
+ padding: 1.6rem 1.6rem;
+ text-align: center;
+ background: rgba(255, 255, 255, 0.03);
+}
+
+.player-box h2 {
+ margin: 0 0 1.6rem;
+ color: white;
+ font-size: 1.5rem;
+}
+
+.player-s {
+ border: 2px solid rgba(255, 72, 170, 0.6);
+ box-shadow: 0 0 24px rgba(255, 72, 170, 0.12);
+}
+
+.player-l {
+ border: 2px solid royalblue;
+ box-shadow: 0 0 24px rgba(64, 156, 255, 0.12);
+}
+.player-box p {
+ margin: 1.6rem 0 0;
+ color: white;
+ font-size: 1.1rem;
+}
+
+#score-s,
+#score-l {
+ display: inline-block;
+ font-size: 4rem;
+ font-weight: 800;
+ line-height: 1;
+}
+
+#score-s {
+ color: #ff5bb5;
+}
+
+#score-l {
+ color: royalblue;
+}
+
+.instruction {
+ margin: 1.6rem 0 0.8rem;
+ padding: 1rem 1.6rem;
+ border-radius: 14px;
+ background: #0b1027;
+ color: white;
+ text-align: center;
+}
+
+#result {
+ min-height: 30px;
+ margin: 1.6rem 0 0;
+ font-size: 1.15rem;
+ font-weight: 700;
+ color: white;
+ text-align: center;
+}
+
+.win-message {
+ position: fixed;
+ inset: 0;
+ background: #0b1027;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 9999;
+}
+
+.hidden {
+ display: none;
+}
+#win-content {
+ width: 90%;
+ max-width: 420px;
+ padding: 1.6rem 1.6rem;
+ border-radius: 22px;
+ text-align: center;
+ background: #0b1027;
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
+}
+
+#win-title {
+ margin-top: 0;
+ margin-bottom: 1.6rem;
+ color: white;
+}
+
+#win-subtitle {
+ margin-bottom: 1.6rem;
+ color: rgba(255, 255, 255, 0.8);
+}
+
+#play-again-btn {
+ min-width: 150px;
+}
diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.html b/courses/frontend/advanced-javascript/week2/Task4/task4.html
new file mode 100644
index 000000000..f351bc729
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task4/task4.html
@@ -0,0 +1,57 @@
+
+
+
+
+
+ Fastest clicker
+
+
+
+
+
+
+
+ The Fastest Presser
+ in this Realm
+
+
Two players. One keyboard. Press fast to win!
+
+
+
+ Start Game!
+
+
+
+ Time Left: 0
+
+
+
+
+
+
Player S
+
S count: 0
+
+
+
Player L
+
L count: 0
+
+
+
Press S or L as FAST as you can!
+
+
+
+
+
🎉 Game Over! 🎉
+
Congratulations to the winner!
+
Play Again
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.js b/courses/frontend/advanced-javascript/week2/Task4/task4.js
new file mode 100644
index 000000000..431889427
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week2/Task4/task4.js
@@ -0,0 +1,123 @@
+const timeInput = document.getElementById("time-input");
+const startButton = document.getElementById("start-btn");
+const countdownOutput = document.getElementById("countdown-output");
+const scoreS = document.getElementById("score-s");
+const scoreL = document.getElementById("score-l");
+const result = document.getElementById("result");
+
+const winMessage = document.getElementById("win-message");
+const winTitle = document.getElementById("win-title");
+const winSubtitle = document.getElementById("win-subtitle");
+const playAgainButton = document.getElementById("play-again-btn");
+
+let intervalId = null;
+let gameRunning = false;
+let countS = 0;
+let countL = 0;
+
+startButton.addEventListener("click", function () {
+ //stop the previous countdown if any
+ clearInterval(intervalId);
+ intervalId = null;
+ hideWinMessage();
+
+ //get value from input
+ let timeLeft = Number(timeInput.value);
+
+ //input check
+ if (timeLeft <= 0 || !timeLeft) {
+ countdownOutput.textContent = "Enter a valid number";
+ return;
+ }
+
+ countS = 0;
+ countL = 0;
+ scoreS.textContent = 0;
+ scoreL.textContent = 0;
+ result.textContent = "";
+ gameRunning = true;
+
+ //show the countdown
+ countdownOutput.textContent = timeLeft;
+
+ //start the countdown
+ intervalId = setInterval(function () {
+ timeLeft--;
+ countdownOutput.textContent = timeLeft;
+
+ if (timeLeft <= 0) {
+ clearInterval(intervalId);
+ intervalId = null;
+ gameRunning = false;
+ countdownOutput.textContent = "Time's up!";
+
+ let finalMessage = "";
+
+ if (countS > countL) {
+ result.textContent = "S wins 🎉";
+ finalMessage = `Player S wins with ${countS} clicks!`;
+ } else if (countL > countS) {
+ result.textContent = "L wins 🎉";
+ finalMessage = `Player L wins with ${countL} clicks!`;
+ } else {
+ result.textContent = "It's a draw 🤝";
+ finalMessage = `It's a draw! Both players got ${countS} clicks.`;
+ }
+ showWinMessage(finalMessage);
+ }
+ }, 1000);
+});
+
+
+document.addEventListener("keydown", function (event) {
+ if (!gameRunning) {
+ return;
+ }
+ if (event.key === "s" || event.key === "S") {
+ countS++;
+ scoreS.textContent = countS;
+ }
+ if (event.key === "l" || event.key === "L") {
+ countL++;
+ scoreL.textContent = countL;
+ }
+});
+
+
+// Show Win Message
+function showWinMessage(message) {
+ winTitle.textContent = "🎉 Game Over! 🎉";
+ winSubtitle.textContent = message;
+ winMessage.classList.remove("hidden");
+
+ confetti({
+ particleCount: 150,
+ spread: 120,
+ origin: { y: 0.6 }
+ });
+}
+
+
+function hideWinMessage() {
+ winMessage.classList.add("hidden");
+}
+
+function resetGame() {
+ clearInterval(intervalId);
+ intervalId = null;
+ gameRunning = false;
+
+ countS = 0;
+ countL = 0;
+
+ scoreS.textContent = "0";
+ scoreL.textContent = "0";
+ countdownOutput.textContent = "0";
+ result.textContent = "";
+}
+
+playAgainButton.addEventListener("click", function () {
+ hideWinMessage();
+ resetGame();
+ timeInput.value = "";
+});
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css
new file mode 100644
index 000000000..0069a226c
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css
@@ -0,0 +1,122 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ background:rgb(213, 207, 207);
+ font-family: Georgia, "Times New Roman", serif;
+ display: flex;
+ justify-content: center;
+ align-items: flex-start;
+ min-height: 100vh;
+ padding: 1rem;
+}
+
+.converter-container {
+ width: 100%;
+ max-width: 700px;
+ background: #f3f3f3;
+ border-radius: 1rem;
+ box-shadow: 0 4px 8px rgba(79, 208, 218, 0.2);
+ padding: 3rem;
+ text-align: center;
+}
+
+h1 {
+ font-family: Georgia, "Times New Roman", serif;
+ font-size: 2rem;
+ line-height: 1.1;
+ font-weight: bold;
+ color: #111;
+ margin-bottom: 0.75rem;
+ margin-top: 1rem;
+}
+
+.title-gradient {
+ color: #111;
+}
+
+hr {
+ border: none;
+ border-top: 2px solid #bdbdbd;
+ margin-bottom: 0.75rem;
+ margin-top: 1rem;
+}
+
+.input-container input {
+ width: 100%;
+ height: 3rem;
+ border: 1px solid #c6c6c6;
+ border-radius: 0.5rem;
+ padding: 0.375rem 0.5rem;
+ font-size: 1.25rem;
+ background: #efefef;
+ margin-bottom: 2rem;
+ margin-top: 1rem;
+}
+
+.currency-row {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 0.5rem;
+ margin-bottom: 0.875rem;
+}
+
+
+.currency-field {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ flex: 1;
+ font-family: Georgia, "Times New Roman", serif;
+ font-size: 1.25rem;
+}
+
+.currency-row select {
+ width: 100%;
+ height: 3rem;
+ border: 1px solid #bdbdbd;
+ border-radius: 0.5rem;
+ background: white;
+ font-size: 1.25rem;
+ padding: 0.375rem 0.5rem;
+}
+
+
+.rate-text {
+ font-size: 1.25rem;
+ color: #b59a8a;
+ margin-bottom: 0.75rem;
+}
+
+#convert-btn {
+ width: 100%;
+ height: 3rem;
+ border: none;
+ border-radius: 0.5rem;
+ background: #4fd0da;
+ color: #111;
+ font-size: 1.7rem;
+ font-family: Georgia, "Times New Roman", serif;
+ font-weight: bold;
+ cursor: pointer;
+ margin-bottom: 0.75rem;
+ margin-top: 1rem;
+}
+
+.output-container {
+ width: 100%;
+height: fit-content;
+ background: #bfeff2;
+ border-radius: 0.5rem;
+ padding: 1rem 0.5rem;
+ margin-bottom: 0.75rem;
+ margin-top: 1rem;
+}
+
+#result-text {
+ font-size: 1.25rem;
+ font-weight: bold;
+ color: #111;
+}
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html
new file mode 100644
index 000000000..069ab637d
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+ Currency Converter
+
+
+
+
+ Currency Converter
+
+
+
+
+
+
+
+
+
+
+
+ From
+
+ EUR
+
+
+
+
+ To
+
+ DKK
+
+
+
+
+
+
Convert
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js
new file mode 100644
index 000000000..c978e3693
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js
@@ -0,0 +1,49 @@
+//API part
+
+//Fetch exchange rates from the API and populate the dropdowns with currency codes
+const exchangeDataURL = "https://open.er-api.com/v6/latest/USD";
+
+const ratesResponse = await fetch(exchangeDataURL);
+const currencyRates = await ratesResponse.json();
+
+const currencyCodes = Object.keys(currencyRates.rates);
+
+//DOM elements
+
+// Populate the dropdowns with currency codes
+
+document.getElementById('dropdown-from-currency').innerHTML = currencyCodes
+ .map(code => `${code} `).join('');
+
+document.getElementById('dropdown-to-currency').innerHTML = currencyCodes
+ .map(code => `${code} `).join('');
+
+// Set default currencies
+document.getElementById('dropdown-from-currency').value = "EUR";
+document.getElementById('dropdown-to-currency').value = "DKK";
+
+// Get references to Inputs, currency selectors, button, and result display
+const inputAmount = document.getElementById('input-amount');
+const fromCurrencySelect = document.getElementById('dropdown-from-currency');
+const toCurrencySelect = document.getElementById('dropdown-to-currency');
+const convertBtn = document.getElementById('convert-btn');
+const outputAmount = document.getElementById('output-amount');
+
+// Connect the button
+convertBtn.addEventListener('click', convertCurrency);
+
+// Function to convert currency
+
+function convertCurrency() {
+ const inputAmountValue = Number(inputAmount.value);
+ const fromCurrency = fromCurrencySelect.value;
+ const toCurrency = toCurrencySelect.value;
+
+ if (inputAmountValue <= 0 || isNaN(inputAmountValue)) {
+ outputAmount.textContent = "Please enter a valid amount and select valid currencies.";
+ return;
+ }
+ const convertedAmount = (inputAmountValue / currencyRates.rates[fromCurrency]) * currencyRates.rates[toCurrency];
+
+ outputAmount.textContent = `${inputAmountValue} ${fromCurrency} = ${convertedAmount.toFixed(2)} ${toCurrency}`;
+}
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.css b/courses/frontend/advanced-javascript/week4/screenshotGenerator.css
new file mode 100644
index 000000000..0999ef850
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.css
@@ -0,0 +1,167 @@
+:root {
+ --bg-page: #fff;
+ --bg-app: rgb(213, 209, 209);
+ --bg-section: #eaf1f2;
+ --bg-input: #efefef;
+ --bg-preview: #fff;
+ --bg-button: #4167e7;
+
+ --text-main: #111;
+ --text-light: #fff;
+ --text-error: #b59a8a;
+
+ --border: #9cabca;
+ --border-input: #c6c6c6;
+
+ --shadow: 0 4px 8px rgba(200, 241, 244, 0.2);
+
+ --radius-sm: 0.5rem;
+ --radius-md: 1rem;
+
+ --space-sm: 0.5rem;
+ --space-md: 0.75rem;
+ --space-lg: 1rem;
+ --space-xl: 2rem;
+
+ --font-main: Georgia, "Times New Roman", serif;
+ --max-width: 700px;
+ --control-height: 3rem;
+ --preview-height: 220px;
+}
+
+body {
+ margin: 0;
+ padding: var(--space-xl);
+ background: var(--bg-page);
+ color: var(--text-main);
+ font-family: var(--font-main);
+}
+
+img {
+ display: block;
+ max-width: 100%;
+}
+
+button,
+input {
+ font: inherit;
+}
+
+h1,
+h2 {
+ margin: 0;
+}
+
+.app-container {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: var(--space-lg);
+ background: var(--bg-app);
+ border-radius: var(--radius-md);
+ box-shadow: var(--shadow);
+}
+
+.hero {
+ margin-bottom: var(--space-xl);
+ padding: var(--space-xl) var(--space-lg);
+ background: var(--bg-button);
+ border-radius: var(--radius-md);
+ text-align: center;
+}
+
+.app-title {
+ color: var(--text-light);
+ font-size: 2rem;
+ line-height: 1.1;
+}
+
+.content-section {
+ margin-bottom: var(--space-xl);
+ padding: var(--space-lg);
+ background: var(--bg-section);
+ border: 1px solid var(--border);
+ border-radius: var(--radius-md);
+}
+
+.input-container {
+ display: grid;
+ gap: var(--space-md);
+ margin-bottom: var(--space-lg);
+}
+
+#input-url,
+button {
+ min-height: var(--control-height);
+ border-radius: var(--radius-sm);
+}
+
+#input-url {
+ padding: var(--space-sm) var(--space-md);
+ border: 1px solid var(--border-input);
+ background: var(--bg-input);
+}
+
+button {
+ border: none;
+ background: var(--bg-button);
+ color: var(--text-light);
+ cursor: pointer;
+}
+
+button:disabled {
+ opacity: 0.6;
+ cursor: not-allowed;
+}
+
+.error-message {
+ min-height: 1.5rem;
+ margin: 0 0 var(--space-lg);
+ color: var(--text-error);
+}
+
+.output-screenshot h2,
+.content-section h2 {
+ margin-bottom: var(--space-md);
+}
+
+.preview-content {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ min-height: var(--preview-height);
+ margin-bottom: var(--space-md);
+ padding: var(--space-md);
+ border: 1px dashed var(--border);
+ border-radius: var(--radius-sm);
+ background: var(--bg-preview);
+ overflow: hidden;
+}
+
+.saved-screenshot-container {
+ display: grid;
+ gap: var(--space-md);
+}
+
+.visually-hidden {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0 0 0 0);
+ white-space: nowrap;
+ border: 0;
+}
+
+@media (min-width: 640px) {
+ .input-container {
+ grid-template-columns: 1fr auto;
+ }
+
+ #capture-screenshot-btn,
+ #save-screenshot-btn {
+ width: auto;
+ padding-inline: 1.25rem;
+ }
+}
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.html b/courses/frontend/advanced-javascript/week4/screenshotGenerator.html
new file mode 100644
index 000000000..5e81ed40c
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.html
@@ -0,0 +1,56 @@
+
+
+
+
+
+ Website Screenshot Generator
+
+
+
+
+
+
+
+ Website Screenshot Generator
+
+
+
+
+
+
+
+
+ Preview
+
+
+ Save Screenshot
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js
new file mode 100644
index 000000000..2198c9c18
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js
@@ -0,0 +1,233 @@
+import { RAPID_API_KEY, RAPID_API_HOST } from "./secret.js";
+
+//static on top of all
+//static do not use private variables
+
+//default parameters above constructor
+// graduate = fault;
+//new + this is done
+
+//ERROR HANDLING
+
+class AppError extends Error {
+ constructor(message, code = 500) {
+ super(message);
+ this.name = this.constructor.name;
+ this.code = code;
+ }
+
+ toUserMessage() {
+ return this.message;
+ }
+}
+
+class ValidationError extends AppError {
+ constructor(message, code = 400) {
+ super(message, code);
+ }
+}
+
+class SaveError extends AppError {
+ constructor(message, code = 400) {
+ super(message, code);
+ }
+}
+
+class ApiError extends AppError {
+ constructor(message, code = 500) {
+ super(message, code);
+ }
+}
+
+class NetworkError extends AppError {
+ constructor(message = "No internet connection. Please try again.", code = 0) {
+ super(message, code);
+ }
+}
+
+class UrlValidator {
+ static validate(url) {
+ let userUrl = url.trim();
+
+ // Validate that the input is not empty
+ if (!userUrl) {
+ throw new ValidationError("Please enter a website URL");
+ }
+
+ // Validate that the input starts with http:// or https://
+ if (!userUrl.startsWith("http://") && !userUrl.startsWith("https://")) {
+ userUrl = "https://" + userUrl;
+ }
+
+ try {
+ new URL(userUrl);
+ } catch {
+ throw new ValidationError("Please enter a valid URL");
+ }
+ return userUrl;
+ }
+}
+
+class SaveURL {
+ static validate(savedUrl, currentScreenshot) {
+ const trimmedUrl = savedUrl.trim();
+
+ // Validate that the input is not empty
+ if (!currentScreenshot) {
+ throw new SaveError(
+ "No screenshot to save. Please capture a screenshot first.",
+ 400,
+ );
+ }
+
+ if (!trimmedUrl) {
+ throw new SaveError("Please enter an URL to save the screenshot.", 400);
+ }
+
+ try {
+ new URL(trimmedUrl);
+ } catch {
+ throw new SaveError("Please enter a valid URL.", 400);
+ }
+
+ return trimmedUrl;
+ }
+}
+
+class ApiResponseHandler {
+ static async validate(response) {
+ if (!response.ok) {
+ const errorBody = await response.text();
+ console.error("API error:", errorBody);
+ throw new ApiError(
+ "Could not generate screenshot. Please try again.",
+ response.status,
+ );
+ }
+
+ return response;
+ }
+}
+
+// UI Logic
+
+const input = document.getElementById("input-url");
+const captureButton = document.getElementById("capture-screenshot-btn");
+const output = document.getElementById("output-screenshot");
+const error = document.getElementById("error-message");
+const saveButton = document.getElementById("save-screenshot-btn");
+
+// Store current screenshot
+let currentScreenshot = null;
+
+class Screenshot {
+ constructor(id, url, image, time) {
+ this.id = id;
+ this.url = url;
+ this.image = image;
+ this.time = time;
+ }
+
+ render() {
+ const container = document.getElementById("output-screenshot");
+
+ // clear previous preview (optional)
+ container.innerHTML = "";
+ const card = document.createElement("div");
+ card.className = "screenshot-card";
+
+ const img = document.createElement("img");
+ img.src = this.image;
+ img.alt = `Screenshot of ${this.url}`;
+
+ const urlText = document.createElement("p");
+ urlText.textContent = this.url;
+
+ const timeText = document.createElement("p");
+ timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`;
+
+ const visitButton = document.createElement("button");
+ visitButton.textContent = "Visit";
+ visitButton.addEventListener("click", () => {
+ this.visitSavedUrl();
+ });
+
+ const deleteButton = document.createElement("button");
+ deleteButton.textContent = "Delete";
+ deleteButton.addEventListener("click", () => {
+ this.delete();
+ card.remove();
+ });
+
+ card.appendChild(img);
+ card.appendChild(urlText);
+ card.appendChild(timeText);
+ card.appendChild(visitButton);
+ card.appendChild(deleteButton);
+
+ container.appendChild(card);
+ }
+
+ saveScreenshot() {}
+ deleteScreenshot() {}
+ visitSavedUrl() {
+ window.open(this.url, "_blank");
+ }
+}
+
+//Function to capture screenshot and display it
+
+captureButton.addEventListener("click", async () => {
+ error.textContent = "";
+
+ try {
+ const userUrl = UrlValidator.validate(input.value);
+ const apiUrl = `https://${RAPID_API_HOST}/v1/screenshots/image?url=${encodeURIComponent(userUrl)}`;
+
+ const response = await fetch(apiUrl, {
+ method: "GET",
+ headers: {
+ "X-RapidAPI-Key": RAPID_API_KEY,
+ "X-RapidAPI-Host": RAPID_API_HOST,
+ },
+ });
+
+ console.log("Status:", response.status);
+ console.log("Status text:", response.statusText);
+
+
+ await ApiResponseHandler.validate(response);
+
+ const screenshotBlob = await response.blob();
+ console.log("Blob:", screenshotBlob);
+
+ const imageUrl = URL.createObjectURL(screenshotBlob);
+ console.log("Image URL:", imageUrl);
+
+ currentScreenshot = new Screenshot(
+ null,
+ userUrl,
+ imageUrl,
+ new Date().toISOString(),
+ );
+ console.log("Current Screenshot:", currentScreenshot);
+
+
+
+ saveButton.disabled = false;
+
+ currentScreenshot.render();
+ } catch (err) {
+ if (err instanceof ValidationError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof ApiError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof TypeError) {
+ error.textContent = new NetworkError().toUserMessage();
+ } else {
+ error.textContent = "Something went wrong.";
+ console.error(err);
+ }
+ }
+});
+
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js
new file mode 100644
index 000000000..36d278b41
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js
@@ -0,0 +1,85 @@
+import { ApiError, ValidationError, NetworkError } from "./errorHandling.js";
+import { UrlValidator } from "./validators.js";
+import { Screenshot } from "./screenshot.js";
+import { RAPID_API_KEY, RAPID_API_HOST } from "./secret.js";
+
+class ApiResponseHandler {
+ static async validate(response) {
+ if (!response.ok) {
+ const errorBody = await response.text();
+ console.error("API error:", errorBody);
+ throw new ApiError(
+ "Could not generate screenshot. Please try again.",
+ response.status,
+ );
+ }
+
+ return response;
+ }
+}
+
+export async function captureScreenshot({
+ input,
+ error,
+ saveButton,
+ setCurrentScreenshot,
+}) {
+ error.textContent = "";
+
+ try {
+ const userUrl = UrlValidator.validate(input.value);
+ const apiUrl = `https://${RAPID_API_HOST}/v1/screenshots/image?url=${encodeURIComponent(userUrl)}`;
+
+ const response = await fetch(apiUrl, {
+ method: "GET",
+ headers: {
+ "X-RapidAPI-Key": RAPID_API_KEY,
+ "X-RapidAPI-Host": RAPID_API_HOST,
+ },
+ });
+
+ console.log("Status:", response.status);
+ console.log("Status text:", response.statusText);
+
+ await ApiResponseHandler.validate(response);
+
+ const screenshotBlob = await response.blob();
+ console.log("Blob:", screenshotBlob);
+
+ const imageUrl = await blobToDataUrl(screenshotBlob);
+ console.log("Image URL:", imageUrl);
+
+ const screenshot = new Screenshot(
+ null,
+ userUrl,
+ imageUrl,
+ new Date().toISOString(),
+ );
+ console.log("Current Screenshot:", screenshot);
+
+ setCurrentScreenshot(screenshot);
+ saveButton.disabled = false;
+
+ screenshot.renderPreview();
+ } catch (err) {
+ if (err instanceof ValidationError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof ApiError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof TypeError) {
+ error.textContent = new NetworkError().toUserMessage();
+ } else {
+ error.textContent = "Something went wrong.";
+ console.error(err);
+ }
+ }
+}
+
+function blobToDataUrl(blob) {
+ return new Promise((resolve, reject) => {
+ const reader = new FileReader();
+ reader.onloadend = () => resolve(reader.result);
+ reader.onerror = reject;
+ reader.readAsDataURL(blob);
+ });
+}
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js
new file mode 100644
index 000000000..9d361461e
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js
@@ -0,0 +1,69 @@
+//custom error classes
+export class AppError extends Error {
+ constructor(message, code = 500) {
+ super(message);
+ this.name = this.constructor.name;
+ this.statusCode = code;
+ }
+
+ toUserMessage() {
+ return "Something went wrong. Please try again later.";
+ }
+}
+
+export class ValidationError extends AppError {
+ constructor(message) {
+ super(message);
+ this.name = "ValidationError";
+ }
+ toUserMessage() {
+ return "Invalid input. Please check the URL and try again.";
+ }
+}
+
+export class SaveError extends AppError {
+ constructor(message, code = 500) {
+ super(message, code);
+ this.name = "SaveError";
+ }
+
+ toUserMessage() {
+ if (this.statusCode === 413) {
+ return "Could not save the screenshot. Please try again later.";
+ }
+
+ if (this.statusCode >= 500) {
+ return "Server error. Please try again later.";
+ }
+
+ if (this.statusCode >= 400) {
+ return "Unable to save screenshot. Please try again.";
+ }
+
+ return "Unable to save screenshot. Please try again.";
+ }
+}
+export class ApiError extends AppError {
+ constructor(message, code = 500) {
+ super(message, code);
+ this.name = "ApiError";
+ }
+ toUserMessage() {
+ if (this.statusCode >= 500) {
+ return "Server error. Please try again later.";
+ } else if (this.statusCode >= 400) {
+ return "Client error. Please check your input and try again.";
+ }
+ return this.message;
+ }
+}
+
+export class NetworkError extends AppError {
+ constructor(message) {
+ super(message);
+ this.name = "NetworkError";
+ }
+ toUserMessage() {
+ return "No network connection. Please check your connection and try again.";
+ }
+}
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js
new file mode 100644
index 000000000..d235b0e11
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js
@@ -0,0 +1,87 @@
+import { SaveError } from "./errorHandling.js";
+import { AppError } from "./errorHandling.js";
+import { NetworkError } from "./errorHandling.js";
+import { SaveValidator } from "./validators.js";
+import { Screenshot } from "./screenshot.js";
+
+export async function saveScreenshot({
+ currentScreenshot,
+ error,
+ crudCrudUrl,
+}) {
+ error.textContent = "";
+
+ try {
+ SaveValidator.validate(currentScreenshot?.url, currentScreenshot);
+
+ const response = await fetch(crudCrudUrl, {
+ headers: { "Content-Type": "application/json; charset=utf-8" },
+ method: "POST",
+ body: JSON.stringify({
+ url: currentScreenshot.url,
+ image: currentScreenshot.image,
+ time: currentScreenshot.time,
+ }),
+ });
+
+ if (!response.ok) {
+ throw new SaveError("Could not save screenshot.", response.status);
+ }
+ const savedData = await response.json();
+ const savedScreenshot = new Screenshot(
+ savedData._id,
+ savedData.url,
+ savedData.image,
+ savedData.time,
+ );
+ savedScreenshot.renderSavedCard(crudCrudUrl);
+ } catch (err) {
+ if (err instanceof AppError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof TypeError) {
+ error.textContent = new NetworkError(
+ "Network request failed.",
+ ).toUserMessage();
+ } else {
+ error.textContent = "Could not save screenshot.";
+ console.error(err);
+ }
+ }
+}
+
+
+export async function loadSavedScreenshots({ error, crudCrudUrl }) {
+ error.textContent = "";
+ try {
+ const response = await fetch(crudCrudUrl);
+
+ if (!response.ok) {
+ throw new SaveError("Could not load saved screenshots.", response.status);
+ }
+
+ const screenshots = await response.json();
+ const container = document.getElementById("saved-screenshot-container");
+ container.innerHTML = "";
+
+ screenshots.forEach((item) => {
+ const screenshot = new Screenshot(
+ item._id,
+ item.url,
+ item.image,
+ item.time,
+ );
+ screenshot.renderSavedCard(crudCrudUrl);
+ });
+ } catch (err) {
+ if (err instanceof AppError) {
+ error.textContent = err.toUserMessage();
+ } else if (err instanceof TypeError) {
+ error.textContent = new NetworkError(
+ "Network request failed.",
+ ).toUserMessage();
+ } else {
+ error.textContent = "Could not load saved screenshots.";
+ console.error(err);
+ }
+ }
+}
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js
new file mode 100644
index 000000000..eddd21634
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js
@@ -0,0 +1,100 @@
+export class Screenshot {
+ constructor(id, url, image, time) {
+ this.id = id;
+ this.url = url;
+ this.image = image;
+ this.time = time;
+ }
+
+ renderPreview() {
+ const container = document.getElementById("output-screenshot");
+
+ container.innerHTML = "";
+
+ const card = document.createElement("div");
+
+ const img = document.createElement("img");
+ img.src = this.image;
+ img.alt = `Screenshot of ${this.url}`;
+
+ const urlText = document.createElement("p");
+ urlText.textContent = this.url;
+
+ const timeText = document.createElement("p");
+ timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`;
+
+ card.append(img, urlText, timeText);
+ container.appendChild(card);
+ }
+
+ renderSavedCard(crudCrudUrl) {
+ const container = document.getElementById("saved-screenshot-container");
+ const card = document.createElement("article");
+ card.className = "saved-card";
+ const savedImageContainer = document.createElement("div");
+ savedImageContainer.className = "saved-card-image";
+
+ if (this.image) {
+ const img = document.createElement("img");
+ img.src = this.image;
+ img.alt = `Screenshot of ${this.url}`;
+ savedImageContainer.appendChild(img);
+ }
+ const content = document.createElement("div");
+ content.className = "saved-card-content";
+
+ const urlText = document.createElement("p");
+ urlText.className = "saved-card-url";
+ urlText.textContent = this.url;
+
+ const timeText = document.createElement("p");
+ timeText.className = "saved-card-time";
+ timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`;
+
+ const actions = document.createElement("div");
+ actions.className = "saved-card-actions";
+
+ const visitButton = document.createElement("button");
+ visitButton.type = "button";
+ visitButton.textContent = "Visit";
+ visitButton.className = "visit-button";
+
+ visitButton.addEventListener("click", () => {
+ this.visitSavedUrl();
+ });
+
+ const deleteButton = document.createElement("button");
+ deleteButton.type = "button";
+ deleteButton.textContent = "Delete";
+ deleteButton.className = "delete-button";
+ deleteButton.addEventListener("click", async () => {
+ await this.delete(crudCrudUrl, card);
+ });
+
+ actions.append(visitButton, deleteButton);
+ content.append(urlText, timeText, actions);
+
+ card.append(savedImageContainer, content);
+ container.appendChild(card);
+ }
+
+ visitSavedUrl() {
+ window.open(this.url, "_blank");
+ }
+
+ async delete(crudCrudUrl, cardElement) {
+ try {
+ const response = await fetch(`${crudCrudUrl}/${this.id}`, {
+ method: "DELETE",
+ });
+
+ if (!response.ok) {
+ throw new Error("Delete failed");
+ }
+
+ cardElement.remove();
+ } catch (error) {
+ console.error("Could not delete screenshot:", error);
+ }
+ }
+}
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png
new file mode 100644
index 000000000..22fa3a2f9
Binary files /dev/null and b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png differ
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot2.png b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot2.png
new file mode 100644
index 000000000..47d6208b0
Binary files /dev/null and b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot2.png differ
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html
new file mode 100644
index 000000000..755c46736
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+ Website Screenshot Generator
+
+
+
+
+
+
+
+ Website Screenshot Generator
+
+
+
+
+
+
+
+
+ Preview
+
+
+ Save Screenshot
+
+
+
+
+
+
+
+
+
+
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js
new file mode 100644
index 000000000..9f33a8f95
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js
@@ -0,0 +1,34 @@
+import { captureScreenshot } from "./captureScreenshot.js";
+import { saveScreenshot, loadSavedScreenshots } from "./saveScreenshot.js";
+import { CRUDCRUD_RESOURCE_URL } from "./secret.js";
+
+const input = document.getElementById("input-url");
+const captureButton = document.getElementById("capture-screenshot-btn");
+const error = document.getElementById("error-message");
+const saveButton = document.getElementById("save-screenshot-btn");
+
+let currentScreenshot = null;
+
+captureButton.addEventListener("click", async () => {
+ await captureScreenshot({
+ input,
+ error,
+ saveButton,
+ setCurrentScreenshot: (screenshot) => {
+ currentScreenshot = screenshot;
+ },
+ });
+});
+
+saveButton.addEventListener("click", async () => {
+ await saveScreenshot({
+ currentScreenshot,
+ error,
+ crudCrudUrl: CRUDCRUD_RESOURCE_URL,
+ });
+});
+
+loadSavedScreenshots({
+ error,
+ crudCrudUrl: CRUDCRUD_RESOURCE_URL,
+});
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js
new file mode 100644
index 000000000..f5051e377
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js
@@ -0,0 +1,7 @@
+export const RAPID_API_KEY =
+ "c15db10b25mshc6f72f9459393d6p137670jsnf9b17f4b05c6";
+
+export const RAPID_API_HOST =
+ "website-screenshot-capture-api-by-apirobots.p.rapidapi.com";
+export const CRUDCRUD_RESOURCE_URL =
+ "https://crudcrud.com/api/b13fc8abca104a79971d58ca79414970/screenshots";
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css b/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css
new file mode 100644
index 000000000..48035060b
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css
@@ -0,0 +1,232 @@
+:root {
+ --bg-page: #fff;
+ --bg-app: rgb(213, 209, 209);
+ --bg-input: #efefef;
+ --bg-preview: #fff;
+ --bg-button: #4167e7;
+
+ --text-main: #111;
+ --text-light: #fff;
+ --text-error: #b59a8a;
+
+ --border: #9cabca;
+ --border-input: #c6c6c6;
+
+ --shadow: 0 4px 8px rgba(200, 241, 244, 0.2);
+
+ --radius-sm: 0.5rem;
+ --radius-md: 1rem;
+
+ --space-sm: 0.5rem;
+ --space-md: 0.75rem;
+ --space-lg: 1rem;
+ --space-xl: 2rem;
+
+ --font-main: Georgia, "Times New Roman", serif;
+ --max-width: 40rem;
+ --control-height: 2rem;
+ --preview-height: rem;
+}
+
+body {
+ margin: 0;
+ padding: var(--space-xl);
+ background: var(--bg-page);
+ color: var(--text-main);
+ font-family: var(--font-main);
+}
+
+img {
+ display: block;
+ max-width: 100%;
+}
+
+button,
+input {
+ font: inherit;
+}
+
+h1,
+h2 {
+ margin: 0;
+ padding: var(--space-sm);
+}
+
+.app-container {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: var(--space-lg);
+ background: var(--bg-app);
+ border-radius: var(--radius-md);
+ box-shadow: var(--shadow);
+}
+
+.hero {
+ margin-bottom: var(--space-md);
+ padding: var(--space-xl) var(--space-lg);
+ background: var(--bg-button);
+ border-radius: var(--radius-md);
+ text-align: center;
+}
+
+.app-title {
+ color: var(--text-light);
+ font-size: 2rem;
+ line-height: 1.1;
+}
+
+.input-container {
+ display: grid;
+ gap: var(--space-md);
+ margin-bottom: var(--space-lg);
+}
+
+#input-url,
+button {
+ min-height: var(--control-height);
+ border-radius: var(--radius-sm);
+}
+
+#input-url {
+ padding: var(--space-sm) var(--space-md);
+ border: 1px solid var(--border-input);
+ background: var(--bg-input);
+}
+
+button {
+ border: none;
+ background: var(--bg-button);
+ color: var(--text-light);
+ cursor: pointer;
+ width: auto;
+}
+
+button:disabled {
+ opacity: 0.6;
+ cursor: not-allowed;
+}
+
+.error-message {
+ min-height: 1.5rem;
+ margin: 0 0 var(--space-sm);
+ color: var(--text-error);
+}
+
+.output-screenshot h2,
+.content-section h2 {
+ margin-bottom: var(--space-md);
+}
+
+.preview-content {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ min-height: var(--preview-height);
+ margin-bottom: var(--space-md);
+ padding: var(--space-md);
+ border: 1px dashed var(--border);
+ border-radius: var(--radius-sm);
+ background: var(--bg-preview);
+ overflow: hidden;
+}
+.preview-content img {
+ max-width: 100%;
+ max-height: 15rem;
+ object-fit: cover;
+ border-radius: 0.5rem;
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
+}
+
+.saved-screenshot-container {
+ display: grid;
+ gap: var(--space-md);
+ margin-top: 1rem;
+}
+
+.saved-card {
+ display: grid;
+ grid-template-columns: 180px 1fr;
+ gap: 1rem;
+ align-items: start;
+
+ padding: 1rem;
+ background: #f5f2f2;
+ border: 1px solid var(--border);
+ border-radius: 1rem;
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
+}
+
+.saved-card-image {
+ width: 12rem;
+}
+
+.saved-card-image img {
+ display: block;
+ width: 100%;
+ height: 9rem;
+ object-fit: cover;
+ border-radius: 0.75rem;
+ border: 1px solid var(--border-input);
+}
+
+.saved-card-content {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ min-height: 120px;
+ padding: var(--space-lg);
+}
+
+.saved-card-url,
+.saved-card-time {
+ margin: 0;
+}
+
+.saved-card-url {
+ font-size: 1.1rem;
+ font-weight: 600;
+ word-break: break-word;
+}
+
+.saved-card-time {
+ margin-top: 0.5rem;
+ color: #333;
+}
+
+.saved-card-actions {
+ display: flex;
+ gap: 1.5rem;
+ margin-top: 1rem;
+}
+
+.saved-card-actions button {
+ min-width: fit-content;
+}
+.visually-hidden {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0 0 0 0);
+ white-space: nowrap;
+ border: 0;
+}
+.delete-button {
+ background-color: #da5344;
+}
+.visit-button {
+ background-color: #1bba40;
+}
+@media (min-width: 640px) {
+ .input-container {
+ grid-template-columns: 1fr auto;
+ }
+
+ #capture-screenshot-btn,
+ #save-screenshot-btn {
+ width: auto;
+ padding-inline: 1.25rem;
+ }
+}
diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js
new file mode 100644
index 000000000..ef6a4580e
--- /dev/null
+++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js
@@ -0,0 +1,50 @@
+import { ValidationError, SaveError } from "./errorHandling.js";
+
+export class UrlValidator {
+ static validate(url) {
+ let userUrl = url.trim();
+
+ // Validate that the input is not empty
+ if (!userUrl) {
+ throw new ValidationError("Please enter a website URL");
+ }
+
+ // Validate that the input starts with http:// or https://
+ if (!userUrl.startsWith("http://") && !userUrl.startsWith("https://")) {
+ userUrl = "https://" + userUrl;
+ }
+
+ try {
+ new URL(userUrl);
+ } catch {
+ throw new ValidationError("Please enter a valid URL");
+ }
+ return userUrl;
+ }
+}
+
+export class SaveValidator {
+ static validate(savedUrl, currentScreenshot) {
+ const trimmedUrl = savedUrl?.trim() || "";
+
+ // Validate that the input is not empty
+ if (!currentScreenshot) {
+ throw new SaveError(
+ "No screenshot to save. Please capture a screenshot first.",
+ 400,
+ );
+ }
+
+ if (!trimmedUrl) {
+ throw new SaveError("Please enter a URL to save the screenshot.", 400);
+ }
+
+ try {
+ new URL(trimmedUrl);
+ } catch {
+ throw new SaveError("Please enter a valid URL.", 400);
+ }
+
+ return trimmedUrl;
+ }
+}
diff --git a/databse_assignment.sql b/databse_assignment.sql
new file mode 100644
index 000000000..a8faae387
--- /dev/null
+++ b/databse_assignment.sql
@@ -0,0 +1,64 @@
+-- How many tasks are in the task table?
+SELECT count (*)
+FROM task;
+
+-- How many tasks in the task table do not have a valid due date?
+SELECT COUNT(*) AS invalid_due_date
+FROM task
+WHERE due_date IS NULL
+ OR due_date = '';
+
+--Find all the tasks that are marked as done.
+SELECT *
+FROM task
+WHERE status_id = (
+ SELECT id
+ FROM status
+ WHERE name = 'Done');
+
+
+-- Find all the tasks that are not marked as done.
+SELECT *
+FROM task
+WHERE status_id <> (
+ SELECT id
+ FROM status
+ WHERE name = 'Done')
+ OR status_id IS NULL;
+
+-- Get all the tasks, sorted with the most recently created first.
+SELECT *
+FROM task
+ORDER BY created DESC;
+
+-- Get the single most recently created task.
+SELECT *
+FROM task
+ORDER BY created DESC
+LIMIT 1;
+
+-- Get the title and due date of all tasks where the title or description contains database.
+SELECT title, due_date
+FROM task
+WHERE title LIKE '%database%' OR description LIKE '%database%';
+
+-- Get the title and status (as text) of all tasks.
+SELECT title, s.name AS name
+FROM task t
+LEFT JOIN status s ON t.status_id = s.id;
+
+-- Get the name of each status, along with a count of how many tasks have that status.
+SELECT name,
+COUNT(status_id) AS Number
+FROM status s
+LEFT JOIN task t ON t.status_id = s.id
+GROUP BY t.status_id;
+
+
+-- Get the names of all statuses, sorted by the status with most tasks first.
+SELECT s.name,
+COUNT(t.status_id) AS Number
+FROM status s
+LEFT JOIN task t ON t.status_id = s.id
+GROUP BY t.status_id
+ORDER BY Number DESC;
\ No newline at end of file
diff --git a/file.txt b/file.txt
new file mode 100644
index 000000000..83f252c49
--- /dev/null
+++ b/file.txt
@@ -0,0 +1,2 @@
+LinkedIn: https://www.linkedin.com/in/mila-siamionava/
+Github: https://github.com/lucy-semenova
\ No newline at end of file
diff --git a/git/week1/apples-file.txt b/git/week1/apples-file.txt
new file mode 100644
index 000000000..73bc58777
--- /dev/null
+++ b/git/week1/apples-file.txt
@@ -0,0 +1,2 @@
+Apples are good for your health.
+An apple a day keeps doctors away.
diff --git a/git/week1/bananas-file.txt b/git/week1/bananas-file.txt
new file mode 100644
index 000000000..57c88571a
--- /dev/null
+++ b/git/week1/bananas-file.txt
@@ -0,0 +1 @@
+Bananas contain magnesium.
diff --git a/git/week1/countries.txt b/git/week1/countries.txt
new file mode 100644
index 000000000..e3e43d570
--- /dev/null
+++ b/git/week1/countries.txt
@@ -0,0 +1,3 @@
+Italy
+Germany
+Spain
diff --git a/git/week1/my-favourite-food.txt b/git/week1/my-favourite-food.txt
new file mode 100644
index 000000000..f828bf26d
--- /dev/null
+++ b/git/week1/my-favourite-food.txt
@@ -0,0 +1 @@
+Spaghetti Carbonara Recipe: Boil pasta, fry pancetta, mix eggs and cheese, combine.
diff --git a/git/week1/my-second-favourite-food.txt b/git/week1/my-second-favourite-food.txt
new file mode 100644
index 000000000..c188e97d5
--- /dev/null
+++ b/git/week1/my-second-favourite-food.txt
@@ -0,0 +1 @@
+Tacos Recipe: Cook meat, chop veggies, fill tortillas, add salsa.
diff --git a/git/week1/oranges-file.txt b/git/week1/oranges-file.txt
new file mode 100644
index 000000000..2dc613961
--- /dev/null
+++ b/git/week1/oranges-file.txt
@@ -0,0 +1 @@
+Oranges are rich in vitamin C.
\ No newline at end of file
diff --git a/git/week1/session-playground/branch-exercise b/git/week1/session-playground/branch-exercise
new file mode 160000
index 000000000..806eb3ec3
--- /dev/null
+++ b/git/week1/session-playground/branch-exercise
@@ -0,0 +1 @@
+Subproject commit 806eb3ec302a3d72efcecf51d228f1376c069ce7
diff --git a/git/week1/session-playground/my-assignment.txt b/git/week1/session-playground/my-assignment.txt
new file mode 100644
index 000000000..f6b0b5978
--- /dev/null
+++ b/git/week1/session-playground/my-assignment.txt
@@ -0,0 +1,6 @@
+Here are some basic command lines to control Git:
+pwd
+ls
+cd
+cd ..
+mkdir
\ No newline at end of file
diff --git a/js-week1-mila/Ez-Namey.js b/js-week1-mila/Ez-Namey.js
new file mode 100644
index 000000000..8d6061bc3
--- /dev/null
+++ b/js-week1-mila/Ez-Namey.js
@@ -0,0 +1,14 @@
+const firstWords = ["Awesome", "Agile", "Bright", "Advanced", "Fantastic", "Inspiring", "Modern", "Cutting-edge", "Confident", "Dynamic"];
+
+const secondWords = ["Labs", "Works", "Space", "Path", "Tech", "Mind", "Cloud", "Loop", "AI", "Solutions"];
+
+// Function to get random element from an array
+function getRandomElement(arr) {
+ const randomIndex = Math.floor(Math.random() * arr.length);
+ return arr[randomIndex];
+}
+
+const randomFirstWords= getRandomElement(firstWords);
+const randomSecondWords = getRandomElement(secondWords);
+
+console.log(`The startup name is ${randomFirstWords} ${randomSecondWords} and it contains ${randomFirstWords.length + randomSecondWords.length} characters.`);
\ No newline at end of file
diff --git a/js-week1-mila/Goodboy-Oldboy.js b/js-week1-mila/Goodboy-Oldboy.js
new file mode 100644
index 000000000..8ecb79777
--- /dev/null
+++ b/js-week1-mila/Goodboy-Oldboy.js
@@ -0,0 +1,15 @@
+const dogYearOfBirth = 2017;
+const dogYearFuture = 2027;
+
+const ageInHumanYears = dogYearFuture - dogYearOfBirth;
+const ageInDogYears = ageInHumanYears *7 ;
+
+
+const shouldShowResultInDogYears = true;
+
+if (shouldShowResultInDogYears) {
+ console.log("Your dog will be " + ageInDogYears + " dog years old in " + dogYearFuture + ".");
+} else {
+ console.log("Your dog will be " + ageInHumanYears + " human years old in " + dogYearFuture + ".");
+}
+
diff --git a/js-week1-mila/Housey pricey.js b/js-week1-mila/Housey pricey.js
new file mode 100644
index 000000000..2cf156d8d
--- /dev/null
+++ b/js-week1-mila/Housey pricey.js
@@ -0,0 +1,39 @@
+const houseOfPeterWidth = 8;
+const houseOfPeterDepth = 10;
+const houseOfPeterHeight = 10;
+const gardenOfPeterSize = 100;
+const houseOfPeterPrice = 2500000;
+
+const houseOfJuliaWidth = 5;
+const houseOfJuliaDepth = 11;
+const houseOfJuliaHeight = 8;
+const gardenOfJuliaSize = 70;
+const houseOfJuliaPrice = 1000000;
+
+
+const pricePerCubicMeterHouse = 2.5 * 1000;
+const pricePerSquareMeterGarden = 300;
+const houseOfPeterMarketPrice = houseOfPeterWidth * houseOfPeterDepth * houseOfPeterHeight * pricePerCubicMeterHouse + gardenOfPeterSize * pricePerSquareMeterGarden;
+const houseOfJuliaMarketPrice = houseOfJuliaWidth * houseOfJuliaDepth *houseOfJuliaHeight * pricePerCubicMeterHouse + gardenOfJuliaSize * pricePerSquareMeterGarden;
+
+//compare houseOfPeterPrice vs houseOfPeterPriceByFormula
+if (houseOfPeterPrice > houseOfPeterMarketPrice) {
+ console.log("Peter is paying more than market price!");
+}
+else if (houseOfPeterPrice == houseOfPeterMarketPrice) {
+ console.log("Peter is paying market price!");
+}
+else {
+ console.log("Peter is paying less than market price!");
+}
+
+////compare houseOfJuliaPrice vs houseOfJuliaPriceByFormula
+if (houseOfJuliaPrice > houseOfJuliaMarketPrice) {
+ console.log("Julia is paying more than market price!");
+}
+else if (houseOfJuliaPrice == houseOfJuliaMarketPrice) {
+ console.log("Julia is paying market price!");
+}
+else {
+ console.log("Julia is paying less than market price!");
+}
diff --git a/js-week1-mila/age-ify.js b/js-week1-mila/age-ify.js
new file mode 100644
index 000000000..0de35e87a
--- /dev/null
+++ b/js-week1-mila/age-ify.js
@@ -0,0 +1,5 @@
+const yearOfBirth = 1987;
+const yearFuture = 2027;
+
+const age = yearFuture - yearOfBirth;
+console.log("You will be " + age + " in " + yearFuture + ".")
\ No newline at end of file
diff --git a/js-week2-mila/Candy.js b/js-week2-mila/Candy.js
new file mode 100644
index 000000000..7cbb1f02a
--- /dev/null
+++ b/js-week2-mila/Candy.js
@@ -0,0 +1,44 @@
+//Candy helper optional
+let boughtCandy = [];
+
+function addCandy(candyType, weight) {
+ const candyPricePerGram = {
+ sweet: 0.5,
+ chocolate: 0.7,
+ toffee: 1.1,
+ chewing_gum: 0.03
+};
+
+if (!candyPricePerGram[candyType]) {
+ console.error("Unknown candy type");
+ return;
+ }
+
+ const price = candyPricePerGram[candyType] * weight;
+ boughtCandy.push(price);
+}
+
+
+addCandy("chocolate", 30);
+addCandy("sweet", 10);
+ alert(boughtCandy.length)
+
+
+let amountToSpend = Math.random() * 100;
+ alert(amountToSpend);
+
+function canBuyMoreCandy(amountToSpend) {
+ let totalSpent = 0
+
+ for (const candy of boughtCandy) {
+ totalSpent += candy;
+ }
+
+ alert(totalSpent);
+
+ if (totalSpent < amountToSpend) {
+ console.log("You can buy more, so please do!");
+ } console.log("Enough candy for you!")
+ }
+
+canBuyMoreCandy(amountToSpend);
\ No newline at end of file
diff --git a/js-week2-mila/Day-count.js b/js-week2-mila/Day-count.js
new file mode 100644
index 000000000..a1f995137
--- /dev/null
+++ b/js-week2-mila/Day-count.js
@@ -0,0 +1,11 @@
+// Event application
+const dayName = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"];
+
+
+function getEventDay(daysTillEvent) {
+ const today = new Date().getDay();
+
+ return dayName[(today+daysTillEvent)%7];
+}
+console.log(getEventDay(1));
+console.log(getEventDay(3));
\ No newline at end of file
diff --git a/js-week2-mila/Flight-booking.js b/js-week2-mila/Flight-booking.js
new file mode 100644
index 000000000..bfc64744a
--- /dev/null
+++ b/js-week2-mila/Flight-booking.js
@@ -0,0 +1,49 @@
+// Solution #1
+function getFullName(firstName, surname) {
+ return `${firstName} ${surname}`;
+}
+
+let firstName1 = prompt("What is the first name?");
+let surname1 = prompt("What is the surname?");
+let fullName1 = getFullName(firstName1, surname1);
+console.log(`Full name 1: ${fullName1}`);
+
+let firstName2 = prompt("What is the first name?");
+let surname2 = prompt("What is the surname?");
+let fullName2 = getFullName(firstName2, surname2);
+console.log(`Full name 2: ${fullName2}`);
+
+
+// Solution #2
+function getFullName(firstName, surname) {
+ return `${firstName} ${surname}`;
+}
+
+let fullName1 = getFullName("Anna", "Smith");
+let fullName2 = getFullName("Jeppe", "Thor");
+console.log(fullName1);
+console.log(fullName2);
+
+function useFormalFullName(firstName, surname, useFormalName = false, gender) {
+ if (!useFormalName) {
+ return `${firstName} ${surname}`;
+ }
+ if (gender == "male") {
+ return `Lord ${firstName} ${surname}`;
+ }
+
+ return `Lady ${firstName} ${surname}`;
+ }
+
+console.log(useFormalFullName("Anna", "Karr", true, "female"));
+console.log(useFormalFullName("Anna", "Karr", false, "female"));
+console.log(useFormalFullName("Bob", "Smith", true, "male"));
+console.log(useFormalFullName("Bob", "Smith", false, "male"));
+
+
+
+
+
+
+
+
diff --git a/js-week2-mila/Student.js b/js-week2-mila/Student.js
new file mode 100644
index 000000000..e9d5375d4
--- /dev/null
+++ b/js-week2-mila/Student.js
@@ -0,0 +1,44 @@
+
+// Student manager
+
+
+let newStudentName = prompt("Enter the name of a new student.");
+
+let class07Students = ["Ann", "Bob", "Sam", "Abby", "Brandon", "Carry"];
+const queenOfDenmark = "Queen";
+
+// addStudentToClass function
+
+function addStudentToClass(studentName) {
+ if (newStudentName == "Queen") {
+ class07Students.push(studentName);
+ return;
+ }
+ if (studentName === "") {
+ console.log("You cannot add an empty string to a class");
+ return;
+ }
+
+ if (class07Students.includes(studentName)) {
+ console.log(`${studentName} is already in the class`);
+ return;
+ }
+
+ if (class07Students.length < 6 ) {
+ class07Students.push(studentName);
+ }
+
+ console.log("You cannot add more students to class 07");
+
+}
+
+addStudentToClass(newStudentName);
+console.log(class07Students);
+
+
+function getNumberOfStudents() {
+ return class07Students.length;
+}
+
+console.log(getNumberOfStudents());
+
\ No newline at end of file
diff --git a/js-week2-mila/Weather-wear.js b/js-week2-mila/Weather-wear.js
new file mode 100644
index 000000000..73ed24d0d
--- /dev/null
+++ b/js-week2-mila/Weather-wear.js
@@ -0,0 +1,31 @@
+//Weather wear
+
+let temperature = prompt("What is the temperature in °C?");
+temperature = Number(temperature);
+
+
+function adviceClothesToWear(temperature) {
+
+ if (temperature == "") {
+ return "Please, enter the value of temperature in °C ";
+ }
+ if (isNaN(temperature)) {
+ return "Please, enter the temperature as number in °C ";
+ }
+ if (temperature < 0) {
+ return "It is cold outside, you should wear a hat, scarf, jacket, and boots.";
+ }
+ else if (temperature < 15) {
+ return "It is cool outside, you should wear a jacket and shoes.";
+ }
+ else if (temperature < 25) {
+ return "It is warm outside, you should wear a sweater and shoes.";
+ }
+
+ return "It is hot outside, you should wear a T-shirt and shorts.";
+
+}
+
+const clothesToWear = adviceClothesToWear(temperature);
+alert(clothesToWear);
+console.log(clothesToWear);
diff --git a/js-week4.js b/js-week4.js
new file mode 100644
index 000000000..41550c5fe
--- /dev/null
+++ b/js-week4.js
@@ -0,0 +1,119 @@
+const userName = "";
+
+const todoList = [];
+
+function getReply(command = "") {
+
+ if (command.toLowerCase().includes("hello my name is")) {
+ const userName = command.split(" ").pop();
+ return `Nice to meet you ${userName} `;
+ }
+
+ if (command.toLowerCase().includes("what is my name?")) {
+ if (userName != "") {
+ return (`Your name is ${userName}`)
+ } else {
+ return ("Please, introduce yourself")
+ };
+ }
+
+ if ((command.toLowerCase().includes("todo")) &&
+ command.toLowerCase().includes("add")) {
+ const task = (command.substring("add ".length, command.length - " to my todo".length));
+ todoList.push(task);
+ return `${task} added to your todo`;
+ }
+
+ if (command.toLowerCase().includes("what is on my todo")) {
+ return todoList;
+ }
+
+ if ((command.toLowerCase().includes("todo")) &&
+ (command.toLowerCase().includes("remove"))) {
+ const taskToRemove = command.substring("remove ".length, command.length - " from my todo".length);
+ if (todoList.includes(taskToRemove)) {
+ return "Removed " + todoList.splice(todoList.indexOf(taskToRemove), 1) + " from your todo";
+ } else {
+ return "There is no such activity in todo."+ (todoList.indexOf(taskToRemove));
+ }
+ }
+
+ if ((command.includes("+")) ||
+ (command.includes("-")) ||
+ (command.includes("*")) ||
+ (command.includes("/"))) {
+ const mathExpression = command.split(" ");
+
+ if (mathExpression.length !== 3) {
+ return "Invalid math expression";
+ }
+ const a = Number(mathExpression[0]);
+ const operator = mathExpression[1];
+ const b = Number(mathExpression[2]);
+
+ if (Number.isNaN(a) && Number.isNaN(b)) {
+ return "Invalid numbers in expression";
+ }
+ switch (operator) {
+ case "+":
+ return a + b;
+ break;
+
+ case "-":
+ return a - b;
+ break;
+
+ case "/":
+ if (b === 0) {
+ return "Division by zero is not allowed";
+ }
+ return a / b;
+ break;
+
+ case "*":
+ return a * b;
+ }
+ }
+
+ if (command.toLowerCase().includes("what day is it today")) {
+ //respond with the date in a human readable format. ;
+ const date = new Date();
+ return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear();
+ }
+
+ if (command.toLowerCase().includes("set a timer for")) {
+ const timeString = command.substring("set a timer for ".length, command.length - " minutes".length);
+ const time = Number(timeString);
+ return `Timer set for ${time} minutes`;
+ }
+
+ return ("Sorry, command is not recognized.");
+}
+
+console.log("What is my name?");
+console.log(getReply("What is my name?"));
+console.log("Hello my name is Benjamin");
+console.log(getReply("Hello my name is Benjamin"));
+console.log("What is my name?")
+console.log(getReply("What is my name?"));
+console.log("Add fishing to my todo");
+console.log(getReply("Add fishing to my todo"));
+console.log("Add singing in the shower to my todo");
+console.log(getReply("Add singing in the shower to my todo"));
+console.log("Add shopping to my todo");
+console.log(getReply("Add shopping to my todo"));
+console.log("What is on my todo?");
+console.log(getReply("What is on my todo?"));
+console.log("Remove fishing from my todo");
+console.log(getReply("Remove fishing from my todo"));
+console.log("Remove singing in the shower from my todo");
+console.log(getReply("Remove singing in the shower from my todo"));
+console.log("What is on my todo?");
+console.log(getReply("What is on my todo?"));
+console.log("What day is it today?");
+console.log(getReply("What day is it today?"));
+console.log("Set a timer for 5 minutes");
+console.log(getReply("Set a timer for 4 minutes"));
+console.log(getReply());
+console.log("3 + 3");
+console.log(getReply("3 + 3"));
\ No newline at end of file
diff --git a/recipe-app-design.jpg b/recipe-app-design.jpg
new file mode 100644
index 000000000..a3baa0be3
Binary files /dev/null and b/recipe-app-design.jpg differ
diff --git a/recipe-app-design.txt b/recipe-app-design.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/task1.js b/task1.js
new file mode 100644
index 000000000..b682486a4
--- /dev/null
+++ b/task1.js
@@ -0,0 +1,17 @@
+//#1 Item array removal
+
+const names = [
+ "Peter",
+ "Ahmad",
+ "Yana",
+ "kristina",
+ "Rasmus",
+ "Samuel",
+ "Katrine",
+ "Tala",
+];
+
+const nameToRemove = names.indexOf("Ahmad");
+names.splice(nameToRemove, 1);
+
+console.log(names);
\ No newline at end of file
diff --git a/task2.js b/task2.js
new file mode 100644
index 000000000..7e3eae6d0
--- /dev/null
+++ b/task2.js
@@ -0,0 +1,31 @@
+//#2 Calculate time to reach the destination in minutes
+
+const travelInformation = {
+ speed: 50,
+ destinationDistance: 432,
+};
+
+function calculateTravelTimeInMinutes(distance, speed) {
+ return (distance / speed) * 60;
+}
+
+console.log(
+ calculateTravelTimeInMinutes(
+ travelInformation.destinationDistance,
+ travelInformation.speed
+ )
+);
+
+const travelTimeInInMinutes = calculateTravelTimeInMinutes(
+ travelInformation.destinationDistance,
+ travelInformation.speed
+);
+
+//Converted minutes into hours and minutes
+
+function calculateTravelTimeInHoursAndMinutes(totalMinutes) {
+ const hours = Math.floor(totalMinutes / 60);
+ const minutes = Math.round(totalMinutes % 60);
+ return `${hours}hours ${minutes}minutes`;
+}
+console.log(calculateTravelTimeInHoursAndMinutes(travelTimeInInMinutes)); // 8 hours and 38 minutes
\ No newline at end of file
diff --git a/task3.js b/task3.js
new file mode 100644
index 000000000..3b204b99c
--- /dev/null
+++ b/task3.js
@@ -0,0 +1,58 @@
+//#3 Series duration of my life
+
+const seriesDurations = [
+ {
+ title: "Lost",
+ days: 3,
+ hours: 16,
+ minutes: 30,
+ },
+ {
+ title: "The Residence",
+ days: 0,
+ hours: 7,
+ minutes: 44,
+ },
+ {
+ title: "The The Queen's Gambit",
+ days: 0,
+ hours: 6,
+ minutes: 32,
+ },
+];
+
+//Calculate total series duration in minutes
+
+let totalSeriesDurationInMinutes = 0;
+
+for (const duration of seriesDurations) {
+ totalSeriesDurationInMinutes +=
+ duration.days * 24 * 60 + duration.hours * 60 + duration.minutes;
+}
+
+console.log(totalSeriesDurationInMinutes);
+
+// Convert Life span into minutes
+
+function convertLifeSpanYearsIntoMinutes(years) {
+ return years * 525600; //1 year = 525600 minutes
+}
+
+//Ask for age
+let lifeSpanInYears = prompt("How old are you?");
+lifeSpanInYears = Number(lifeSpanInYears);
+
+const lifeSpanInMinutes = convertLifeSpanYearsIntoMinutes(lifeSpanInYears);
+
+//Calculate series duration as a percentage of life span
+function seriesDurationsOutOfLifeSpan(seriesMinutes, lifeSpanMinutes) {
+ return (seriesMinutes / lifeSpanMinutes) * 100;
+}
+
+console.log(
+ "Series duration as percentage of life span:",
+ seriesDurationsOutOfLifeSpan(
+ totalSeriesDurationInMinutes,
+ lifeSpanInMinutes
+ ).toFixed(2) + "%"
+);
\ No newline at end of file
diff --git a/task4.js b/task4.js
new file mode 100644
index 000000000..19137af16
--- /dev/null
+++ b/task4.js
@@ -0,0 +1,72 @@
+//#4 Note taking app
+
+//Save a note
+
+let notes = [];
+
+function saveNote(content, id) {
+ notes.push({
+ content: content,
+ id: id,
+ });
+}
+
+saveNote("Pick up groceries", 1);
+saveNote("Do laundry", 2);
+
+console.log("Current notes:", notes);
+
+//Get a note by id
+
+function getNote(id) {
+ //Check if id is missing or not a number
+ if (id === undefined || typeof id !== "number") {
+ console.log("Error");
+ return;
+ }
+ //Loop to find the note with the id
+ for (let i = 0; i < notes.length; i++) {
+ if (notes[i].id === id) {
+ return notes[i]; // return the note object
+ }
+ }
+ //If the id is not found
+ return "Not found";
+}
+
+const firstNote = getNote(1);
+console.log(firstNote); // {content: 'Pick up groceries', id: 1}
+
+//Log out notes
+
+function logOutNotesFormatted() {
+ for (let note of notes) {
+ console.log(
+ `The note with id: ${note.id}, has the following note text:${note.content}`
+ );
+ }
+}
+
+logOutNotesFormatted();
+
+//Delete a note
+
+//Keep undeleted notes
+function deleteNote(id) {
+ let newNotes = [];
+ for (let i = 0; i < notes.length; i++) {
+ if (notes[i].id !== id) {
+ newNotes.push(notes[i]);
+ }
+ }
+ notes = newNotes;
+
+ renumberNotes();
+ renderNotes();
+}
+
+function renumberNotes() {
+ for (let i = 0; i < notes.length; i++) {
+ notes[i].id = i;
+ }
+}
diff --git a/task5.js b/task5.js
new file mode 100644
index 000000000..69cccb8a4
--- /dev/null
+++ b/task5.js
@@ -0,0 +1,73 @@
+//#5 Adding an activity
+
+let activities = [
+ {
+ date: "23/7-18",
+ activity: "Youtube",
+ duration: 30,
+ },
+ {
+ date: "24/7-18",
+ activity: "Instagram",
+ duration: 40,
+ },
+ {
+ date: "25/7-18",
+ activity: "Facebook",
+ duration: 50,
+ },
+];
+
+function addActivities(date, activity, duration) {
+ activities.push({
+ date: date,
+ activity: activity,
+ duration: duration,
+ });
+}
+
+addActivities("26/7-18", "Twitter", 10);
+console.log(activities);
+
+//Calculate total Activity Duration
+
+function getTotalDuration() {
+ let totalActivitiesDurationInMinutes = 0;
+
+ for (const activity of activities) {
+ totalActivitiesDurationInMinutes += activity.duration;
+ }
+ return totalActivitiesDurationInMinutes;
+}
+
+//Show my status
+
+function showStatus() {
+ const totalActivitiesDurationInMinutes = getTotalDuration();
+
+ if (totalActivitiesDurationInMinutes === 0) {
+ return "Add some activities before calling showStatus";
+ }
+
+ return `You have added ${activities.length} activities. They amount to ${totalActivitiesDurationInMinutes} min. of usage.`;
+}
+
+console.log(showStatus());
+
+//Usage limit
+
+let timeToUseSmartphone = Number(
+ prompt("How long can you use the smartphone?")
+);
+
+timeToUseSmartphone = Number(timeToUseSmartphone);
+
+function canUseMoreSmartphone(timeLimit) {
+ if (totalActivitiesDurationInMinutes < timeLimit) {
+ console.log("You can use the smartphone!");
+ } else {
+ console.log("You have reached your limit, no more smartphoning for you!");
+ }
+}
+
+canUseMoreSmartphone(timeToUseSmartphone);
diff --git a/trello.html b/trello.html
new file mode 100644
index 000000000..f3abbbaf7
--- /dev/null
+++ b/trello.html
@@ -0,0 +1 @@
+https://trello.com/invite/b/696e1d1fa4a4876d56c14c9d/ATTI028c0348bcdd01f04f6e917db76a3e3cB1AAEF82/trip-to-the-uk-in-august