diff --git a/.markdownlint.yaml b/.markdownlint.yaml index 647ea922..3e4dae52 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -1,8 +1,10 @@ --- $schema: https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json extends: markdownlint/style/prettier -MD046: - style: fenced +MD026: + punctuation: .,;:。,;:! MD033: allowed_elements: - nobr +MD046: + style: fenced diff --git a/legacy/javascript/JS.gif b/legacy/javascript/JS.gif new file mode 100644 index 00000000..11015827 Binary files /dev/null and b/legacy/javascript/JS.gif differ diff --git a/legacy/javascript/README.md b/legacy/javascript/README.md index 2e614fad..15309133 100644 --- a/legacy/javascript/README.md +++ b/legacy/javascript/README.md @@ -1,3 +1,34 @@ -# javascript +# HackYourJavaScript -TODO +> Please help us improve and share your feedback! If you find better tutorials or links, please share them by opening a [Pull Request](https://github.com/HackYourFuture-CPH/JavaScript/pulls). + +![animation of electronic things connected to each other](./JS.gif) + +## What is JavaScript? + +> JavaScript is a programming language that adds interactivity to your website (for example: games, responses when buttons are pressed or data entered in forms, dynamic styling, animation). + +Read this intro article on [JavaScript](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics) + +This JavaScript course is divided in three modules. Starting from the simple uses and understanding the basics to the more complex features of the language. + +## Module goals + +### [JS1 Module:](./javascript1) + +A basic program with multiple functions (reacting to user input) + +### [JS2 Module:](./javascript2) + +A tool capable of loading a JSON file and representing it in the DOM + +### [JS3 Module:](./javascript3) + +A web app with external data source using at least one API + +### Overall + +A good understanding of all the above mentioned topics. Want to check your Knowledge? +Go through the [JavaScript Fundamentals readme](./fundamentals) and research/ask for help [(Slack!)](https://hackyourfuture-cph.slack.com) with the concepts that are not entirely clear. + +Helpful resource: (here you can find tons of free JavaScript books online) diff --git a/legacy/javascript/fundamentals/README.md b/legacy/javascript/fundamentals/README.md new file mode 100644 index 00000000..bca11e39 --- /dev/null +++ b/legacy/javascript/fundamentals/README.md @@ -0,0 +1,268 @@ +# Understanding JavaScript fundamentals + +When talking about JavaScript, it is important that you use the correct terminology. This way, if you talk about code with others, they'll understand what you mean without any ambiguity. + +## Variables + +A "variable" is a place where you can store information, such as a string, or a number. + +### Variable declaration + +Variables are "declared" using the `var` keyword: + +```js +var x = 5; +``` + +Here, we say: "declare variable x and initialize it with the number 5". + +### Variable types + +All variables have a type. In our example above, the variable `x` is a `number`. JavaScript supports the following types: + +- `string`, e.g. "HackYourFuture" +- `number`, e.g. 5, or 10.6 +- `boolean`, e.g. `true` or `false` +- `array`\*, e.g. `[1, 2, 3]` or `['what', 'is', 'your', 'name']` +- `object`, e.g. `{name: 'John', age: 24}`, or the special object `null` +- `function`, e.g. `function () { return 4; }` +- `symbol` + +In addition, a variable may be `undefined`. This is also a special type. + +To get the type of a variable, use the following code: + +```js +var x = 5; +var typeOfX = typeof x; // -> "number" +``` + +Note that I've put an asterisk behind 'array'. That is because in JavaScript, array is a special kind of object: + +```js +var arr = [1, 2, 3]; +var typeOfArr = typeof arr; // -> "object" +``` + +However, in our communication, we will call these variables arrays. + +### Null & undefined + +The values `null` and `undefined` are very similar in JavaScript, but they behave a bit differently. The difference is that `null` always has type "object", and `undefined` always has type "undefined". + +Whenever you declare a variable, but you don't set a value, the variable will become `undefined`. JavaScript will never make a variable `null` unless you explicitly program it. + +```js +var x; +console.log(typeof x); // -> "undefined" +``` + +## Arrays + +Variables that are arrays contain a list of things, instead of just one thing. What's inside the array, we typically call "elements". So, the array `[1, 2, 3]` has three elements. The array `[]` has no elements and is therefore empty. The number of elements in an array is called its "length". + +When you want to access an element inside an array, you use an "index". This is the number that you put between brackets (`[]`). + +Given the following code: + +```js +var arr = ["john", "jane", "jack"]; +console.log(arr[0]); +``` + +The number `0` is the "index of the first element of array `arr`". Conversely, the element "at index 0 in array `arr` is `'john'`". + +Instead of a number, you can also use a variable to access elements in an array, _as long as this variable is a number_: + +```js +var arr = ["john", "jane", "jack"]; +var a = 1; +console.log(arr[a]); // -> jane +``` + +If the index you use is not an integer (a whole number), or if it's less than `0` or if it's greater than or equal to the array's length, you will get back `undefined`. + +## Objects + +Variables that are objects also contain a list of things, but instead of them being in some specific order, they can be assigned to words, called "keys". Instead of "elements" the things that are inside objects are called "properties". + +```js +var obj = { name: "John", age: 24 }; +``` + +This object has two properties: `name` and `age`. The "value" of the property `name` is the string `'John'`. The "value" of the property `age` is the number `24`. + +When accessing object properties, you can use the dot-notation: `obj.name` or the bracket-notation: `obj["name"]`. Note that the latter looks a lot like the way to access array elements. However, here what's inside the bracket (called "key" for objects, instead of "index") must be a string. + +```js +console.log(obj.name); // -> 'John' +console.log(obj["name"]); // -> 'John' +``` + +Just like with arrays, you can also use a variable to access properties, as long as these variables are strings. In this case you cannot use the dot-notation! + +```js +var ageKey = "age"; +console.log(obj[ageKey]); // -> 24 +``` + +Remember that there is a very big difference between `obj[name]` and `obj["name"]`. + +> Note: +> +> Thinking back of arrays, the length of an array can be retrieved by `arr.length`. So as mentioned before, arrays are just like other JavaScript objects. You could even write `arr['length']` to access the `length` property of the array. JavaScript will look: is what we put between brackets a number? Then it is an index and we'll look up the correct array element. If it's a string, it's a key and we will look up the corresponding property. + +## Functions + +A function is a reusable piece of code. Functions are _very_ important in JavaScript, to the extent that some people call JavaScript a "function-oriented" language. As mentioned above, variables can be of type function. In fact, _every function is a variable_. + +The following two pieces of code have the exact same result: + +```js +function sum(a, b) { + return a + b; +} +``` + +and + +```js +var sum = function (a, b) { + return a + b; +}; +``` + +> Note +> +> This is not entirely true, as in the second code, the function is "anonymous", i.e. it has no name. But in both cases, you can call the function like this: `sum(4, 5)`. + +### Parameters & arguments + +When writing `function sum(a, b)`, `a` and `b` are the "parameters" of the function. We say that this function has two parameters. (Sometimes, you'll see the word "arity": this function has "arity" 2, but that is something you don't have to use for now.) + +Now, when _calling_ function sum, e.g. `var s = sum(4, 5);`, we say that the numbers `4` and `5` are the "arguments" of the function. Arguments are "passed" to the function: "we pass `4` and `5` to the function `sum`". + +So remember the difference between the word "parameter" and "argument". Many people confuse them, and that's not a big problem, but understanding the difference is always nice: + +- A parameter is the name you want to give to the variable that is available inside of the function. +- An argument is the actual value you want to assign to the parameters when you call the function. + +A function that "has two parameters" is also said to "take/accept two arguments". But, sometimes you'll hear people say: "the function has two arguments" or "the function takes two parameters". While formally incorrect, you'll know what they mean. + +### Calling a function on something + +In JavaScript, you can call functions _on_ something. By this, we mean that you use the dot to call the function. For instance, when we say "call method `trim` on string `s`", we mean: + +```js +var s = " this is a string "; +s.trim(); // -> "this is a string" +``` + +> Note +> +> Technically, this means that the string `s` will become the `this` special variable inside of the function. + +However, there are functions that you don't call on anything: + +```js +function sum(a, b) { + return a + b; +} +sum(4, 5); // -> 9 +``` + +Here, you call the function `sum` on nothing. + +Most built-in functions in JavaScript, like math functions or logging functions, also use the dot: + +```js +Math.round(4.5); +console.log("hello"); +Array.from([1, 2, 3]); +``` + +Indeed, these functions are also called "on" `Math`, `console`, `Array`, and so on. However, in this case, their purpose is more to group them logically, so here it's not very important to use that terminology. We'd rather say: "call the function `Math.round` with `4.5` as an argument", i.e. we include it in the full name of the methods. + +It's more when you think about which functions you can call "on" your own variables (strings, arrays, numbers, etc): + +```js +myString.trim(); +myArray.slice(); +myNumber.toString(); +... +``` + +## Statements & expressions + +Most programming languages that you'll encounter in real life are called "imperative" programming languages. JavaScript is such an imperative programming language. Imperative is another word for command-like. That is, you give the computer a bunch of commands after each other. First do this, then do that, etc. + +These individual commands are called "statements" in imperative programming languages. You can compare them with sentences in the English language. They have a use by themselves, and do not need something else. "The man eats bread." is a full sentence, it conveys a meaning by itself. A sentence in English is always terminated by a period. + +Similarly, a statement in JavaScript should provide a command by itself. JavaScript-statements are (almost always) terminated by a semicolon. + +This is a complete statement: + +```js +var s = "HackYourFuture"; +``` + +It is a full command: declare a variable `s` and initialize it with `"HackYourFuture"`. JavaScript doesn't need any other information to know what we want. The statement is terminated with a semicolon. + +However, this is not a complete statement: + +```js +4 + 5; +``` + +This equals `9`, but what is JavaScript to do with it? It doesn't provide a command. You'd need to do something with it, e.g. `var x = 4 + 5;` or `callFunction(4 + 5)`. We call these parts of statements "expressions". Expressions are not terminated by semicolons. Expressions always "evaluate into a value". In our example, the expression `4 + 5` "evaluates into `9`". If expressions cannot be evaluated into a value, they are invalid. For instance, `4 +` is not a valid expression, it is incomplete, because we need something else after the plus sign. + +So, statements can _contain_ expressions. Can expressions contain statements? No, they cannot. However, they can themselves contain expressions. Think about `4 + 5`: it contains the expressions `4` and `5`, as these both evaluate into a value: the expression `4` evaluates into the number `4`, it is a very simple expression. Similarly, `true`, `null`, `undefined` are all expressions. + +### Examples of expressions + +Here are some examples of expressions. Remember: expressions evaluate into a value, but do not provide a command: + +- `sum(a, b)` +- `a` +- `a > 4 ? "yes" : "no"` +- `a + b` +- `a && b || c` +- `arr.length` +- `obj["name"]` +- `[1, 2, 3]` +- `arr[1]` +- `[1]` (this is an array with one element!) +- `function a() { return 4; }` + +The last one requires a bit of explanation. If you write: + +```js +function a() { + return 4; +} +``` + +by itself, this is a _statement_ (a function declaration statement). However, if you write it as part of a statement, such as: + +```js +var b = function a() { + return 4; +}; +``` + +now it is an expression. This is an exceptional situation where something can be a statement or an expression. + +### Examples of not-expressions + +The following are not expressions: + +- `var` -> this is a keyword, see below +- `var x;` -> this is a statement +- `+` -> this is only an operator +- `if (a > 4) { return "yes"; } else { return "no"; }` + +`if` is also a statement. However, it is quite a complex statement. It is also referred to as a "construct", just like `for`, `while`, `try`, etc. + +### Keywords + +Some words in JavaScript are special, e.g. `var`, `if`, `while`, `return`. These are called "keywords". You typically cannot use these words as names for your variables, functions. diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/.babelrc b/legacy/javascript/fundamentals/bug-challenge-es6/.babelrc new file mode 100644 index 00000000..d8add2df --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/.babelrc @@ -0,0 +1,4 @@ +{ + "presets": ["es2015", "stage-1"], + "compact": true +} diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/.gitignore b/legacy/javascript/fundamentals/bug-challenge-es6/.gitignore new file mode 100644 index 00000000..3c3629e6 --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/__tests__/bug-challenge-tests.js b/legacy/javascript/fundamentals/bug-challenge-es6/__tests__/bug-challenge-tests.js new file mode 100644 index 00000000..1f62ff07 --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/__tests__/bug-challenge-tests.js @@ -0,0 +1,176 @@ +import BugChallenge from "../bug-challenge"; +import "../jest-helpers"; + +describe("Bug challenge ES6", () => { + let challenge; + beforeEach(() => { + console.clear(); + challenge = new BugChallenge(); + }); + + describe("bug1", () => { + it("should list the names and ages of people", () => { + challenge.bug1(); + + expect(console.logs).toEqual([ + "Alice is 25", + "Bob is 27", + "Charlie is 40", + ]); + }); + }); + + describe("bug2", () => { + it("should list all items in the array in reverse order", () => { + challenge.bug2(); + + expect(console.logs).toEqual(["4", "3", "2", "1"]); + }); + }); + + describe("bug3", () => { + it("should output the total of the indices (0 + 1 + 2 = 3)", () => { + challenge.bug3(); + + expect(console.logs).toEqual(["3"]); + }); + }); + + describe("bug4", () => { + it("should list all movies and actors, except the top 3", () => { + challenge.bug4(); + + expect(console.logs).toEqual([ + "movie: Pulp Fiction", + "movie: Fight club", + "movie: Forrest Gump", + "movie: Inception", + "movie: Goodfellas", + "movie: The Matrix", + "movie: Interstellar", + "actor: Al Pacino", + "actor: Daniel Day-Lewis", + "actor: Duston Hoffman", + "actor: Tom Hanks", + "actor: Anthony Hopkins", + "actor: Paul Newman", + "actor: Denzel Washington", + ]); + }); + }); + + describe("bug5", () => { + it("should fetch with caching disabled", () => { + challenge.bug5(); + + expect(console.logs).toEqual([ + "fetch: GET http://www.example.com (useCaching=false)", + ]); + }); + }); + + describe("bug6", () => { + it("should run main.js", () => { + challenge.bug6(); + + expect(console.logs).toEqual(["run: script=main.js"]); + }); + }); + + describe("bug7", () => { + it("should first run with stopOnError=all and then with stopOnError=null", () => { + challenge.bug7(); + + expect(console.logs).toEqual([ + "run: stopOnError=all", + "run: stopOnError=null", + ]); + }); + }); + + describe("bug8", () => { + it("should lists numbers 1 through 6", () => { + challenge.bug8(); + jest.runAllTimers(); + + expect(console.logs).toEqual(["1", "2", "3", "4", "5"]); + }); + }); + + describe("bug9", () => { + it("should list only BMWs", () => { + challenge.bug9(); + + expect(console.logs).toEqual(["BMW i8", "BMW M3"]); + }); + }); + + describe("bug10", () => { + it("should print 'Help'", () => { + challenge.bug10(); + + expect(console.logs).toEqual(["Help"]); + }); + }); + + describe("bug11", () => { + it("should correctly add players Alice & Bob", () => { + challenge.bug11(); + + expect(console.logs).toEqual([ + "Player Alice has 0 points", + "Player Bob has 0 points", + ]); + }); + }); + + describe("bug12", () => { + it("should not change the value of the outer y", () => { + challenge.bug12(); + + expect(console.logs).toEqual(["Printing vector at (6, 7)", "y=5"]); + }); + }); + describe("bug13", () => { + it("should return that AI, Godfather and Inception are in the top10 movie list", () => { + challenge.bug13(); + jest.runAllTimers(); + + expect(console.logs).toEqual([ + "Independence Day is not in the top 10!", + "AI is in the top 10!", + "Godfather is in the top 10!", + "Inception is in the top 10!", + ]); + }); + }); + describe("bug14", () => { + it("should return that AI is best movie ever", () => { + challenge.bug14(); + jest.runAllTimers(); + + expect(console.logs).toEqual([ + "AI is best movie ever", + "Godfather is not best movie ever", + ]); + }); + }); + describe("bug15", () => { + it("should return Al Pacino as first actor after sorting alphabetically", () => { + challenge.bug15(); + jest.runAllTimers(); + + expect(console.logs).toEqual([ + "The first actor when sorted alphabetically is Al Pacino", + ]); + }); + }); + describe("bug16", () => { + it("should return that Al Pacino is ranked 4th among all actors", () => { + challenge.bug16(); + jest.runAllTimers(); + + expect(console.logs).toEqual(["Al Pacino is ranked 4"]); + }); + }); +}); diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/bug-challenge.js b/legacy/javascript/fundamentals/bug-challenge-es6/bug-challenge.js new file mode 100644 index 00000000..32d405db --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/bug-challenge.js @@ -0,0 +1,263 @@ +export default class BugChallenge { + //Do NOT change the top10Movies and top10Actors variables to fix your tests + //believe me: the problem is in bug() functions, not in these arrays ;) + top10Movies = [ + "AI", + "Shawshank Redemption", + "Godfather", + "Pulp Fiction", + "Fight club", + "Forrest Gump", + "Inception", + "Goodfellas", + "The Matrix", + "Interstellar", + ]; + top10Actors = [ + "Marlon Brando", + "Jack Nickolson", + "Robert De Niro", + "Al Pacino", + "Daniel Day-Lewis", + "Duston Hoffman", + "Tom Hanks", + "Anthony Hopkins", + "Paul Newman", + "Denzel Washington", + ]; + //------ + // Bugs + + bug1() { + const people = [ + { + name: "Alice", + age: 25, + }, + { + name: "Bob", + age: 27, + }, + { + name: "Charlie", + age: 40, + }, + ]; + + for (let person in people) { + console.log(`${person.name} is ${person.age}`); + } + } + + bug2() { + const array = [1, 2, 3, 4]; + + for (let i = 0; i < array.length; i++) { + console.log(array.pop()); + } + } + + bug3() { + const array = {}; + array[0] = "a"; + array[1] = "b"; + array[2] = "c"; + + let total = 0; + for (let key in obj) { + total += key; + } + + console.log(total); + } + + bug4() { + // We list all movies, except the top 3. + var index = 3; + for (index; index < this.top10Movies.length; index++) { + console.log(`movie: ${this.top10Movies[index]}`); + } + + // We also list all actors, except the top 3. + for (index; index < top10Actors.length; index++) { + console.log(`actor: ${this.top10Actors[index]}`); + } + } + + bug5() { + const defaultMethod = "GET"; + const defaultUseCaching = true; + + function fetch(options) { + const url = options.url; + const method = options.method || defaultMethod; + const useCaching = options.useCaching || defaultUseCaching; + + console.log(`fetch: ${method} ${url} (useCaching=${useCaching})`); + } + + fetch({ + url: "http://www.example.com", + useCaching: false, + }); + } + + bug6() { + function run(options) { + if (options.script == undefined) { + options.script = "main.js"; + } + + console.log(`run: script=${options.script}`); + } + + run(); + } + + bug7() { + function run(options = {}) { + if (options.stopOnError == undefined) { + options.stopOnError = "all"; + } + + console.log(`run: stopOnError=${options.stopOnError}`); + } + + run(); + run({ stopOnError: null }); + } + + bug8() { + for (var i = 0; i < 5; i++) { + setTimeout(function () { + console.log(i + 1); + }, 100 * i); + } + } + + bug9() { + const cars = [ + { + make: "Volvo", + type: "S90", + }, + { + make: "BMW", + type: "i8", + }, + { + make: "BMW", + type: "M3", + }, + { + make: "Audi", + type: "A6", + }, + ]; + + function findCars(make) { + return cars.filter((car) => (car.make = make)); + } + + for (let bmw of findCars("BMW")) { + console.log(`${bmw.make} ${bmw.type}`); + } + } + + bug10() { + const command = "printHelp"; + + switch (command) { + case "printMath": + console.log(`√9=${Math.sqrt(9)}`); + case "printHelp": + console.log("Help"); + case "quit": + console.log("Quitting"); + } + } + + bug11() { + class Game { + constructor() { + this.players = []; + } + + addPlayers(names) { + names.forEach(function (name) { + this.players.push({ name, points: 0 }); + }); + } + } + + const game = new Game(); + game.addPlayers(["Alice", "Bob"]); + + for (let player of game.players) { + console.log(`Player ${player.name} has ${player.points} points`); + } + } + + bug12() { + let y = 5; + + function printVector() { + let x = 6; + y = 7; + + console.log(`Printing vector at (${x}, ${y})`); + } + + printVector(); + console.log(`y=${y}`); + } + + bug13() { + var notInTop10 = (movieName) => { + return !this.top10Movies.indexOf(movieName); + }; + console.log( + "Independence Day is " + + (notInTop10("Independence Day") ? "not " : "") + + "in the top 10!", + ); + console.log("AI is " + (notInTop10("AI") ? "not " : "") + "in the top 10!"); + console.log( + "Godfather is " + + (notInTop10("Godfather") ? "not " : "") + + "in the top 10!", + ); + console.log( + "Inception is " + + (notInTop10("Inception") ? "not " : "") + + "in the top 10!", + ); + } + bug14() { + console.log( + "AI is " + (isInFirstPlace("AI") ? "" : "not ") + "best movie ever", + ); + console.log( + "Godfather is " + + (isInFirstPlace("Godfather") ? "" : "not ") + + "best movie ever", + ); + var isInFirstPlace = (movieName) => { + return this.top10Movies[0] === movieName; + }; + } + bug15() { + var getAlphabeticalFirst = function () { + return this.top10Actors.sort()[0]; + }; + + console.log( + `The first actor when sorted alphabetically is ${getAlphabeticalFirst()}`, + ); + } + bug16() { + const ranking = this.top10Actors.indexOf("Al Pacino"); + // var thirdRankedActor = this.top10Actors['2']; + console.log(`Al Pacino is ranked ${ranking + "1"}`); + } +} diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/jest-helpers.js b/legacy/javascript/fundamentals/bug-challenge-es6/jest-helpers.js new file mode 100644 index 00000000..d8900a00 --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/jest-helpers.js @@ -0,0 +1,10 @@ +jest.useFakeTimers(); + +console.logs = []; + +console.clear = function () { + console.logs = []; +}; +console.log = function (message) { + console.logs.push(message.toString()); +}; diff --git a/legacy/javascript/fundamentals/bug-challenge-es6/package.json b/legacy/javascript/fundamentals/bug-challenge-es6/package.json new file mode 100644 index 00000000..4368d879 --- /dev/null +++ b/legacy/javascript/fundamentals/bug-challenge-es6/package.json @@ -0,0 +1,20 @@ +{ + "name": "bug-challenge-es6", + "jest": { + "automock": false, + "testPathIgnorePatterns": [ + "/node_modules/" + ] + }, + "scripts": { + "test": "jest" + }, + "devDependencies": { + "babel-core": "^6.18.2", + "babel-jest": "^17.0.2", + "babel-preset-es2015": "^6.18.0", + "babel-preset-stage-1": "^6.16.0", + "jest": "^17.0.3", + "jest-cli": "^17.0.3" + } +} diff --git a/legacy/javascript/fundamentals/exercises.md b/legacy/javascript/fundamentals/exercises.md new file mode 100644 index 00000000..fbab7c4e --- /dev/null +++ b/legacy/javascript/fundamentals/exercises.md @@ -0,0 +1,215 @@ +# JavaScript fundamentals - exercises + +## Q1 + +Given the following code: + +```js +var s = "Hello"; +var x = s.toLowerCase(); +var l = s.length; +``` + +What are the types of the following? + +1. `s` +2. `x` +3. `s.toLowerCase()` +4. `s.toLowerCase` +5. `s.length` +6. `l` + +## Q2 + +In `var x = 5 + 6;`, what is `+`? + +1. Function +2. Operator +3. Number +4. Aggregator + +## Q3 + +In `var x = 5 + 6;`, what is `var`? + +1. Variable +2. Keyword +3. Operator +4. Constant + +## Q4 + +Given the following code: + +```js +var x = z[y]; +``` + +What is `y`? + +1. Index +2. Key +3. Index or key +4. Array + +## Q5 + +Given the following code: + +```js +var y = 1; +var x = [1, 2, 3]; +var z = x[y]; +``` + +What is `y`? + +1. Index +2. Key +3. Index or key +4. Array + +## Q6 + +Given the following code: + +```js +var joe = { + name: "Joe", + age: 24, +}; +var joesName = joe.name; +var joesAge = joe["age"]; +``` + +- What is `'age'` in the last line? + 1. Index + 2. Key + 3. Array + 4. Object +- What are `name` and `age` of the object `joe`? + 1. Index + 2. Key + 3. Object + 4. Property + +## Q7 + +Given the following code: + +```js +var y = "length"; +var x = [1, 2, 3]; +var z = x[y]; +``` + +What is `y`? + +1. Index +2. Key +3. Index or key +4. Array + +## Q8 + +What is the element for index `1` in array `x`? + +## Q9 + +Fill in: "The value of the (...) `length` of `x` is (...)" + +## Q10 + +What is the name of these functions? + +1. `function a() { return true; }` +2. `var a = function b() { return true; }` +3. `var c = function () { return true; }` + +## Q11 + +Write a function that has two parameters, called `first` and `second`. + +## Q12 + +Write a function call that passes three arguments. + +## Q13 + +Write code for the following: + +1. Declare a variable called `x` and initialize it with the string "Hello". +2. Declare a variable called `y` and initialize it with the property `length` of `x`. +3. Declare a variable called `z` and initialize it with the result of calling the method `toUpperCase` on `x` +4. Declare a function called `myFunction`. This function should take two arguments, and should call the second argument with the first argument as its argument. Then, declare a variable called `f` and initialize it with an empty anonymous function, and call `myFunction` with the arguments `10` and `f`. + +## Q14 + +Explain as precisely as possible (in English) what the following code does, line by line. + +(Tip: it should look like the items in the previous question!) + +```js +var s = "HackYourFuture"; +var i = s.indexOf("Your"); +function sum(a, b) { + return a + b; +} +var s = sum(4, 5); +var r = Math.sqrt(s); +``` + +## Q15 + +For each of these, indicate whether it is an expression or a statement: + +1. `l` +1. `l = 4;` +1. `l == 4` +1. `if (l == 4) { console.log("yes"); }` +1. `console.log("yes");` +1. `"yes"` +1. `console.log(l == 4 ? "yes" : "no")` +1. `function a() { return 4; }` +1. `var a = function () { return 4; }` + +## Q16 + +How can you tell whether something is a statement? + +## Q17 + +How can you tell whether something is an expression? + +## Q18 + +Given the following code: + +```js +var s = "Hello".toLowerCase(); +var l = s.length; + +function sum(a, b) { + return a + b; +} +var max = function (a, b) { + return a > b ? a : b; +}; + +var s1 = sum(4, 5); +var s2 = 4 + 5; + +if (s2 == s1) { + console.log("same"); +} else { + console.log("not same"); +} +``` + +List all 11 _statements_ in the code above. + +## Q19 + +Bonus question! + +List all 28 _expressions_ in the code from Q18. diff --git a/legacy/javascript/homework-projects/README.md b/legacy/javascript/homework-projects/README.md new file mode 100644 index 00000000..694424ec --- /dev/null +++ b/legacy/javascript/homework-projects/README.md @@ -0,0 +1,47 @@ +# Homework projects + +## WHAT + +During the JS2 and JS3 modules, you will be working on a project instead of the usual weekly homework assignments (which you can still do, as optional practice). Each week, you will be required to add new features to your project. By the end of JS3, you will have built an actual app using your newly gained knowledge and coding skills! + +![diagram](assets/project-flow.png) + +## WHY + +We're doing this for four main reasons: + +- You will gain experience and an understanding of what it's like to work on **one continuous project**, instead of switching contexts with each new homework assignment. +- You will apply what you learned every week and understand how each new method can be implemented into an actual product. +- You will build a solid project for your portfolio that you can showcase on your CV and in future tech interviews! +- You will gain experience presenting your project and code in a 'mini-tech interview' at the end of JS3. + +## PROJECT IDEAS + +[Currency Converter](projects/currency-converter/currency-converter.md) +[Memory Game](projects/memory-game/memory-game.md) +[Movie App](projects/movie-app/movie-app.md) +[Quiz App](projects/quiz-app/quiz-app.md) +[Recipe App](projects/recipe-app/recipe-app.md) + +> [!NOTE] +> New projects are welcome to be added by mentors. Just follow a similar structure to the existing ones, and submit it as a PR for review by staff and other mentors. + +## HOW + +The projects will either be worked on individually, in a pair or as a group. You may also be set up to peer review another's project. This is up to the staff and mentors running the module. + +First, you will pick a project idea from above. Each week, you will have specific tasks that you have to deliver. Those tasks are provided in your chosen project description. The tasks are designed to help you practice the main learning points throughout the JS2 and JS3 modules. + +You will work in your project repository for JS2 and JS3 (not the central homework repository!), and you will submit the weekly task in the usual way by creating a Pull Request. + +During JS2 and JS3, refer to the relevant [homework submission guide](guides/weekly-submission-guide.md). + +The main difference is that you will be on a different repository and that you will merge the PR after implementing the review-based improvements, while all the technical steps are the same as always. + +## DEPLOYMENT + +So you can demo your project easily both at the end of the project, but also to future employers, it is a requirement that you deploy the project. You can use the [HackYourFuture project template](https://github.com/HackYourFuture-CPH/hyf-project-template) as a starting point, or an otherwise agreed upon process by the staff and mentors. + +## CONCLUSION + +When you wrap up your project in JS3 week3, you will get a chance to present your project either as a video recording or on a demo day. If your team is hosting a demo day, then check out [this guide](guides/demo-day-presentation.md) for how to prepare for the presentation. diff --git a/legacy/javascript/homework-projects/assets/API-guide-1.png b/legacy/javascript/homework-projects/assets/API-guide-1.png new file mode 100644 index 00000000..958df4fc Binary files /dev/null and b/legacy/javascript/homework-projects/assets/API-guide-1.png differ diff --git a/legacy/javascript/homework-projects/assets/API-guide-2.png b/legacy/javascript/homework-projects/assets/API-guide-2.png new file mode 100644 index 00000000..ceadfbe7 Binary files /dev/null and b/legacy/javascript/homework-projects/assets/API-guide-2.png differ diff --git a/legacy/javascript/homework-projects/assets/API-guide-3.png b/legacy/javascript/homework-projects/assets/API-guide-3.png new file mode 100644 index 00000000..08937a17 Binary files /dev/null and b/legacy/javascript/homework-projects/assets/API-guide-3.png differ diff --git a/legacy/javascript/homework-projects/assets/API-guide-4.png b/legacy/javascript/homework-projects/assets/API-guide-4.png new file mode 100644 index 00000000..6176f249 Binary files /dev/null and b/legacy/javascript/homework-projects/assets/API-guide-4.png differ diff --git a/legacy/javascript/homework-projects/assets/memory-game-card-flip.gif b/legacy/javascript/homework-projects/assets/memory-game-card-flip.gif new file mode 100644 index 00000000..df22983d Binary files /dev/null and b/legacy/javascript/homework-projects/assets/memory-game-card-flip.gif differ diff --git a/legacy/javascript/homework-projects/assets/memory-game-grid.png b/legacy/javascript/homework-projects/assets/memory-game-grid.png new file mode 100644 index 00000000..236b0f3f Binary files /dev/null and b/legacy/javascript/homework-projects/assets/memory-game-grid.png differ diff --git a/legacy/javascript/homework-projects/assets/memory-game-pattern.png b/legacy/javascript/homework-projects/assets/memory-game-pattern.png new file mode 100644 index 00000000..de65a79c Binary files /dev/null and b/legacy/javascript/homework-projects/assets/memory-game-pattern.png differ diff --git a/legacy/javascript/homework-projects/assets/movie-app-star-rating.gif b/legacy/javascript/homework-projects/assets/movie-app-star-rating.gif new file mode 100644 index 00000000..09602c4a Binary files /dev/null and b/legacy/javascript/homework-projects/assets/movie-app-star-rating.gif differ diff --git a/legacy/javascript/homework-projects/assets/project-flow.png b/legacy/javascript/homework-projects/assets/project-flow.png new file mode 100644 index 00000000..9739dff2 Binary files /dev/null and b/legacy/javascript/homework-projects/assets/project-flow.png differ diff --git a/legacy/javascript/homework-projects/guides/demo-day-presentation.md b/legacy/javascript/homework-projects/guides/demo-day-presentation.md new file mode 100644 index 00000000..d27fbf4d --- /dev/null +++ b/legacy/javascript/homework-projects/guides/demo-day-presentation.md @@ -0,0 +1,33 @@ +# Demo Day Presentation + +Your team may choose to run a demo day to present your project and get feedback. If so, here's a brief to guide you through your 15-minute presentation. Each individual will have 40-minutes in total, broken down into 15-minutes for presenting and 25-minutes for discussions. Your presentation will be an opportunity to showcase your project, detail your weekly progress, and share your challenges and learnings. + +## Presentation Structure (15 minutes) + +### Introduction (2 minutes) + +Briefly introduce your chosen project. (Refer to the "projects" folder for details.) + +### Weekly Task Breakdown (10 minutes) + +For each week of the JS2 and JS3 modules, highlight: + +- Your understanding and implementation of their concepts. +- Specific challenges you faced and how you overcame them. +- Any particular successes or insights you gained. + +### Project Summary (3 minutes) + +Summarize what you learned from this project and how it ties together the concepts learned over JS2 and JS3. + +### Feedback and Discussion Session (25 minutes) + +After your presentation, there will be an open session for feedback and discussion. This is a valuable time to gain insights from your mentors and peers. + +Tips for a Successful Presentation: + +- Be Clear and Concise: Focus on the key points and challenges of your project while being mindful of time. +- Reflect on Your Learning Journey: Share how your understanding evolved over the weeks. +- Be Open to Feedback: This is a learning opportunity – embrace the insights and suggestions from mentors and peers. + +This is a suggested guideline for you to follow. We look forward to seeing your projects and hearing about your journey through the JS2 and JS3 modules in a way that works for you and your project. Good luck! diff --git a/legacy/javascript/homework-projects/guides/making-your-API-guide.md b/legacy/javascript/homework-projects/guides/making-your-API-guide.md new file mode 100644 index 00000000..c34b716f --- /dev/null +++ b/legacy/javascript/homework-projects/guides/making-your-API-guide.md @@ -0,0 +1,68 @@ +# Build your own API + +[GitHub Pages](https://pages.github.com/) is a good place to host a site for your portfolio or a project, but another excellent use for it is to host your own JSON API data! + +All you would need to do, in short, is create a GitHub Pages repository, put a JSON file in there, and your custom URL will have all of that data from the JSON file. See below for more detailed instructions and some screenshots to help you get around! + +## Instructions + +### Creating the repository + +The first thing you’ll need to do is create a GitHub Pages repository. + +Head on over to your GitHub account and create a repository called *`username`*.github.io, where *`username`* is your GitHub username. + +If you already have such a repository, just go on to the next step. + +![Create the repo](../assets/API-guide-1.png) + +❗Make sure that it matches your username or it won’t work! + +❗It seems like the repository can be private if you will just use it for the API, but has to be public if you also want to use it to [create a site](https://pages.github.com/). ([see here](https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site#:~:text=GitHub%20Pages%20is%20available%20in%20public%20repositories%20with%20GitHub%20Free%20and%20GitHub%20Free%20for%20organizations%2C%20and%20in%20public%20and%20private%20repositories%20with%20GitHub%20Pro%2C%20GitHub%20Team%2C%20GitHub%20Enterprise%20Cloud%2C%20and%20GitHub%20Enterprise%20Server.%20For%20more%20information%2C%20see%20%22GitHub%E2%80%99s%20plans.%22) for more information) + +### Adding the JSON file + +1. Once the repository has been made, head over to your terminal and clone that repository into a directory of your choosing. +2. Once the repository been cloned to your computer, open the project folder in VS Code. +3. Create a folder for your APIs or just create a file in the root of the repository. You might want to organize it into a folder (fx. “data”) if you plan to create more APIs in the future and/or if you plan to also host your site on Github Pages. In the case of your JS project, you would just copy and paste the array of objects that you have been using so far and perhaps add more objects to it, if needed. +4. Once you are ready with your JSON file, add, commit and push the changes to `main` so that you have the file on your repository. +5. Head over to the repo on GitHub and verify that your file is there and that all is good. + +![See the JSON file](../assets/API-guide-2.png) + +❗Be mindful about your data format. Note wether you should use an object or an array of objects and form your file accordingly. + +### Using the API + +Now comes the fun part! You can use the JSON file in a FETCH to get and use the data dynamically. + +Your URL for FETCH will be the raw content of the JSON file that you added. Head on to the `raw` version of your file: + +![Access the raw content](../assets/API-guide-3.png) + +Copy the URL and use it for fetching the data. + +![Copy the URl](../assets/API-guide-4.png) + +Now you have a publicly hosted API! To access this information, all you need to do is make an API call like you normally would (FETCH), parse that data (iterate through an array of objects), and then use the data in whatever way you need for your project! + +❗Note that in Vanilla JS (which is what you are learning now), you cannot access the fetched data outside of your fetch function. So you will most probably need to move your whole code from before into the function or call the necessary functions from within the FETCH function, something like this: + +```jsx +async function getData() { + const response = await fetch( + "https://raw.githubusercontent.com/shpomp/shpomp.github.io/main/test.json?token=<>", + ); + const myData = await response.json(); + + theFunctionThatUsesYourData(myData); +} + +const theFunctionThatUsesYourData = (data) => { + for (const item of data) { + // your code .... + } +}; + +// other code ... +``` diff --git a/legacy/javascript/homework-projects/guides/weekly-submission-guide.md b/legacy/javascript/homework-projects/guides/weekly-submission-guide.md new file mode 100644 index 00000000..15e9e0dd --- /dev/null +++ b/legacy/javascript/homework-projects/guides/weekly-submission-guide.md @@ -0,0 +1,67 @@ +# HOMEWORK SUBMISSION + +## TL;DR + +- [ ] start any coding session from `main`. +- [ ] periodically keep your local `main` up to date with changes in the remote `main` (for example, when you merge a PR on GitHub, your remote `main` gets the new code added, but your local `main` does not). +- [ ] periodically merge the up-to-date local `main` into your new homework branch. +- [ ] always checkout to a new homework branch from `main`. +- [ ] write meaningful commit messages. +- [ ] before pushing, double check that your branch name is correct. +- [ ] if the branch name is not correct, you can checkout to a new, correct branch from the current branch - you will carry all the commits with you. +- [ ] stay patient. Slack, Google and ChatGPT are your best friends now. +- [ ] make the changes as per PR review in the appropriate branch, push the changes to the appropriate branch and merge the PR. + +## Before you start the project + +- Create a public project repository in your GitHub account (choose the option to add README.md). +- Clone the repository locally and open it in VS code. + +## Before you start your homework + +1. You are probably opening your project repo on the last weeks branch - make sure that any changes you have there are either committed and pushed, or stashed, or discarded - whatever you prefer. The point is to be mindful that: + + - you are most probably starting on a branch you last worked with, that is how VS Code works, + - and there might be changes that you have not handled last time. + - if you are about to start a new homework, you need to go to `main` first. + +2. Checkout to `main` and pull the latest changes from it. If you skip this step, you will get in trouble sooner or later. + +3. Checkout to your new homework branch, following the branch naming convention of `module-week/yourname`. + See [allowed branch name prefixes](#allowed-branch-name-prefixes). + +❗ Always firstly checkout to the new homework branch from an updated `main`. Always. + +### Allowed branch name prefixes + +| | | | +| ----------------- | ----------------- | ----------------- | +| javascript2-week1 | javascript2-week2 | javascript2-week3 | +| javascript3-week1 | javascript3-week2 | javascript3-week3 | + +### Examples + +- ❌ javascript3/maria +- ❌ javascript2-week1-homework +- ❌ javascript3-week2 +- ✅ javascript3-week3/maria + +## Completing and submitting your homework + +1. Implement your homework. Be mindful of structuring and naming. Make sure you complete all the tasks listed for that week in your project description. + +2. Verify that your branch name is right. Commit and push your homework to the repository. If the branch name is not right, you can commit and checkout to a new, correct branch from the current branch - you will carry all the commits with you. Then you can push. + +3. Go to your project repository and create a Pull Request from your weekly homework branch to `main`. + +4. Post the link to the PR to your class channel and celebrate with your classmates! 🎉 💃🏽 🕺🏾 🥳 + +## After submitting your homework + +1. Follow the PR to see the review and interact with the reviewer as well as make the suggested changes. + +2. When you have made changes to the code since the homework submission and review, push the changes and merge the PR. + +3. Update your local `main` with the merged changes in the remote `main`. + +4. Take a moment to celebrate your progress and be proud of your learning! diff --git a/legacy/javascript/homework-projects/projects/currency-converter/currency-converter.md b/legacy/javascript/homework-projects/projects/currency-converter/currency-converter.md new file mode 100644 index 00000000..ff04e8cf --- /dev/null +++ b/legacy/javascript/homework-projects/projects/currency-converter/currency-converter.md @@ -0,0 +1,101 @@ +# CURRENCY CONVERTER + +![showering in money](https://media.giphy.com/media/LdOyjZ7io5Msw/giphy.gif) + +You started working in a new cool fintech startup, and your first task is to build a simple currency converter app. +It is expected that your app will have at least these features and functionality: + +- Insert a new currency rate +- List currencies and rates +- Search currencies +- Set a rate to be alerted when a currency reaches that rate +- The ‘most moving’ currency rate +- Timeout for the market open/close +- Call the currency API to receive the rates dynamically + +> [!NOTE] +> Take some time to research online for similar apps and how they look and work to gain inspiration. This is an important skill to practice as a developer because you won't always know (or be told) how to approach the design. + +## Weekly specs + +### `JS2 week1` - Browser environment, DOM manipulation, DOM event listeners + +- [ ] Create a form to insert a brand new currency rate from `a` to `b`. +- [ ] Create a form to covert an amount of money from `x` currency to `y` based on the rates provided. +- [ ] optional bonus: create a form to update existing currency conversion with a new rate. + +Your currency rate object format could be something like this: + +```js +{ + "timestamp": 1519296206, + "base": "EUR", + "date": "2021-03-17", + "rates": { + "USD": 1.23396, + [...] + } +} +``` + +The above would be how a brand new currency rate could look like (the first task). +Then, after an update (the bonus task) it could look something like this: + +```js +{ + "timestamp": 1519296206, + "base": "EUR", + "date": "2021-03-17", + "rates": { + "USD": 1.23396, + "GBP": 0.882047, + [...] + } +} +``` + +### `JS2 week2` - Array functions, Arrow function + +Start with creating an array of currency rate objects. Even a small one is perfectly enough, but go as big as you want! +Continue with the format of the object you used last week or improve it and refactor! + +- [ ] List: Traverse through your array of the currency rate objects, and display them in a grid of items containing all the relevant details. +- [ ] Implement a function to find a specific currency rate, searching by the currency `from` or `to`. + Basically, it is just a search function! With a twist, though, because you have both the `from` and the `to` fields. + As a user, I want to find a specific rate, but I am too lazy to scan through all the rates with my eyes, I want to be able to type in and search! + +### `JS2 week3` - Callback function, Asynchronicity, Scope + +- [ ] Implement a timeout to show an announcement when the market open or/and close. The market opens at 9AM and closes at 5PM local time. + +- [ ] optional bonus: + a. Implement a watcher to periodically check a specific currency conversion and alert the user when the value reaches a speicfic point. Let's say the user is interested in converting USD to Danish kroner but the rate today is very bad, 1 USD is 5 DKK. We wan to alert the user when 1 USD is 7 DKK so the user can convert with maximum gain + b. Watch currency updates and show a banner with the hotest currency exchange rate. I.e., currency conversion reaching the double value. + +### `JS3 week1` - Json, Apis, Fetch + +- [ ] Follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on. +- [ ] Refactor your code so that you use the currency rates dynamically from your API instead of the static array of objects. +- [ ] Implement functionality to search for a specific currency. +- [ ] Ensure all the functionality is working smoothly after refactoring. + +### `JS3 week2` - Promises, Async/Await + +- [ ] You used promise chaining last week - now rewrite the fetch in the "async await" approach. +- [ ] Testing. Implement a test to ensure that the application will work as expected after the refactoring. + +### `JS3 week3` - Classes, Revision and Presentation of projects + +- [ ] Rest, revise JS fundamentals, finish, and brush up your project, prepare to present and explain it. +- [ ] Make improvements to the style or functionality or add additional functionality. +- [ ] Prepare to showcase your project to external people, talk through your code and explain what you have implemented. + +## Project completion checklist ✅ + +- [ ] I can insert a new currency rate +- [ ] I can see a list of all currencies and rates +- [ ] I can use the coverter to convert a currency and see the result +- [ ] I can search currencies to find a specific one +- [ ] I can set a rate to be alerted when a currency reaches that rate +- [ ] I can see an indicator for the market open/close +- [ ] I am using the currency API to receive the rates dynamically diff --git a/legacy/javascript/homework-projects/projects/memory-game/card-backside.jpg b/legacy/javascript/homework-projects/projects/memory-game/card-backside.jpg new file mode 100644 index 00000000..3c61a6c6 Binary files /dev/null and b/legacy/javascript/homework-projects/projects/memory-game/card-backside.jpg differ diff --git a/legacy/javascript/homework-projects/projects/memory-game/card-picture.jpg b/legacy/javascript/homework-projects/projects/memory-game/card-picture.jpg new file mode 100644 index 00000000..a5fe247d Binary files /dev/null and b/legacy/javascript/homework-projects/projects/memory-game/card-picture.jpg differ diff --git a/legacy/javascript/homework-projects/projects/memory-game/memory-game.md b/legacy/javascript/homework-projects/projects/memory-game/memory-game.md new file mode 100644 index 00000000..8bd51357 --- /dev/null +++ b/legacy/javascript/homework-projects/projects/memory-game/memory-game.md @@ -0,0 +1,77 @@ +# MEMORY GAME + +![Agent J from "Men In Black": "Hey, don't even worry about it", while flashing the neuralyzer](https://media.giphy.com/media/374pcIBVEGb6g/giphy.gif) + +You joined an online game platform startup and your task is to build one of the small classic games. + +You will build a Memory Game, where a user needs to flip all the cards in a game in pairs until they find all the matching pairs. You aspire to make the game smooth and pleasant, so the user is compelled to spend more time playing it. + +> [!NOTE] +> Take some time to research online for similar apps and how they look and work to gain inspiration. This is an important skill to practice as a developer because you won't always know (or be told) how to approach the design. + +## Weekly specs + +### `JS2 week1` - Browser environment, DOM manipulation, DOM event listeners + +You are provided with a picture and a card backside pattern picture (or pick your own). + +- [ ] display a single card on the page using DOM manipulation. +- [ ] implement the functionality of flipping the card: on click, the card flips from showing the backside pattern to the picture and vice versa. Visual animation is optional and the exact look of it is up to you! + +![screenshot](../../assets/memory-game-card-flip.gif) + +### `JS2 week2` - Array functions, Arrow function + +Start with creating an array of picture objects. Even a small one is perfectly enough, but go as big as you want! A picture object should ideally have at least an id, a name and a picture url. +Continue with the format of the picture object you used last week or improve it and refactor! + +- [ ] generate a new array where each card object is added to it twice, but in a random order. Think about _doubling_ and _shuffling_ an array when you research how to complete this task. +- [ ] traverse through the new array of picture objects and display all the cards in a grid. +- [ ] include the functionality from the previous week so that each card will flip from the picture to the backside pattern and back when it is clicked. + +![screenshot](../../assets/memory-game-grid.png) + +### `JS2 week3` - Callback function, Asynchronicity, Scope + +- [ ] implement a counter for how many times in total you have flipped a card (one counter for all the cards). Note that you are not supposed to count clicks! The purpose is to count how many times you have _revealed_ the card picture - in other words, you are couunting player moves. +- [ ] implement a timer for how much time has passed since you first clicked on a card. +- [ ] adjust the functionality so that once 2 cards are flipped, they stay flipped for X seconds, after which they flip back down automatically. + +### `JS3 week1` - Json, Apis, Fetch + +- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on. +- [ ] refactor your code so that you ditch the static array of objects and instead fetch the cards data from your API. +- [ ] ensure all the functionality is working smoothly after refactoring. + +### `JS3 week2` - Promises, Async/Await + +- [ ] you used promise chaining last week - now rewrite the fetch in the "async await" approach. +- [ ] implement the functionality for it to work like and actual memory game: + +At least: + +- You can only flip 2 cards at a time. +- If the cards match, they are removed from the DOM. +- The game reloads once all cards are removed. + +At most: + +- Implement the tasks listed under "At least". +- Use the counter and timer that you implemented before and stop the game when a certain count or time is reached. The time or count can be hardcoded or user-submitted via an input. + +### `JS3 week3` - Classes, Revision and Presentation of projects + +- [ ] rest, revise JS fundamentals, finish, and brush up your project, prepare to present and explain it. +- [ ] make improvements to the style or functionality or add additional functionality. +- [ ] Prepare to showcase your project to external people, talk through your code and explain what you have implemented. + +## Project completion checklist ✅ + +- [ ] at first, I can see a square grid of cards "flipped down" - seeing their backside pattern; +- [ ] I can click on a card, which makes the card "flip" and reveal the picture/gif; +- [ ] I can only reaveal 2 cards at a time; +- [ ] the 2 revealed cards stay flipped for X seconds, after which they flip down again; +- [ ] if I reveal 2 matching cards, they are removed from the page; +- [ ] I can see a timer that starts once I flip the very first card in a new game; +- [ ] I can see a counter that counts how many times I have flipped a card; +- [ ] once all cards are removed, the game reloads. diff --git a/legacy/javascript/homework-projects/projects/movie-app/movie-app.md b/legacy/javascript/homework-projects/projects/movie-app/movie-app.md new file mode 100644 index 00000000..adc63176 --- /dev/null +++ b/legacy/javascript/homework-projects/projects/movie-app/movie-app.md @@ -0,0 +1,92 @@ +# MOVIE APP + +![Garfield, slouched in a chair and changing the TV channel](https://media.giphy.com/media/KZe02gpoAj4yVjxKQt/giphy.gif) + +You joined a startup that has the ambition to build the best new movie streaming platform! + +Your taks will be to build a simple prototype to showcase the look of the platform and some simple functionality. + +Your way to impress is to not only build a nice-looking main movie list page, but to also include some interesting features that the competitors do not have! + +> [!NOTE] +> Take some time to research online for similar apps and how they look and work to gain inspiration. This is an important skill to practice as a developer because you won't always know (or be told) how to approach the design. + +## Weekly specs + +### `JS2 week1` - Browser environment, DOM manipulation, DOM event listeners + +Use a movie object with details such as id, title, description, year, main actors, etc. + +It could be something like this: + +```js + { + id: 1, + title: 'Interstellar', + description: + 'The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.', + movie_year: 2014, + director: "Christopher Nolan", + actors: ["Matthew McConaughey", "Anne Hathaway", "Jessica Chastain", "Michael Caine", "Casey Affleck", "Mackenzie Foy", "John Lithgow", "Ellen Burstyn", "Matt Damon"], + poster_url: + 'https://www.themoviedb.org/t/p/w600_and_h900_bestv2/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg', + price: '120.00', + }, +``` + +Add whatever properties you think are relevant and that you want to display as the information on your future movie website! + +- [ ] design and implement the layout of the movie card via DOM manipulation. + +- [ ] via DOM manipulation, implement one of the two (or both!): + - submitting and displaying a comment about the movie. Implement an imput under the movie and a functionality to display the submitted comment; + - rating the movie in a star-rating format and displaying the submitted rating. + +![screenshot](../../assets/movie-app-star-rating.gif) + +### `JS2 week2` - Array functions, Arrow function + +Start with creating an array of movie objects. Even a small one is perfectly enough, but go as big as you want! +Continue with the format of the movie object you used last week or improve it and refactor! + +- [ ] traverse the movie array and display all the movies on the page in a grid via DOM manipulation. +- [ ] manipulate the movie array, implementing these functions: +- a function for searching for a provided keyword in the movie title; +- a function for sorting the movie array by one or a few selected properties. +- [ ] optional: as you might guess, you will later use these functions to implement searching and sorting functionality, so feel free to add any other array-manipulation functions of your choice! + +### `JS2 week3` - Callback function, Asynchronicity, Scope + +Here you will develop some features that will differentiate your movie platform from the competition! + +- [ ] implement a timer where you can set a time for how much time you give yourself to pick a movie to watch, the timer alerts or rings when then time is over. +- [ ] implement a timer to show how long you have spent on the page. + +### `JS3 week1` - Json, Apis, Fetch + +- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on. +- [ ] refactor your code so that you ditch the static array of objects and instead fetch the movies data from your API. +- [ ] ensure all the functionality is working smoothly after refactoring. + +### `JS3 week2` - Promises, Async/Await + +- [ ] you used promise chaining last week - now rewrite the fetch in the "async await" approach +- [ ] fit and apply one (or all) of your functions from JS2 week2 to manipulate the displayed movies: + +- a function to search a movie by title that a user submits via an input, displaying only the matching movies. +- a function to sort the movies by a property selected via a dropdown. +- a function to filter the movies by a specific constraint submitted by the user via an input (or hardcoded), only displaying the relevant movies. + +### `JS3 week3` - Classes, Promises advanced + +- [ ] rest, revise JS fundamentals, finish, and brush up your project, prepare to present and explain it. +- [ ] make improvements to the style or functionality or add additional functionality. + +## Project completion checklist ✅ + +- [ ] I can see a page with a list of movies displayed in a grid; +- [ ] I can see the most important details about a movie displayed in a nice and readable way; +- [ ] I can either submit a comment to a movie or a star rating or both; +- [ ] I can search for movies by titling, typing in a search keyword; +- [ ] I can sort the movies by at least one specific property; +- [ ] I can filter the movies by at least one user-submitted or hardcoded constraint (f.x. movies older than year X). diff --git a/legacy/javascript/homework-projects/projects/quiz-app/quiz-app.md b/legacy/javascript/homework-projects/projects/quiz-app/quiz-app.md new file mode 100644 index 00000000..5fb53069 --- /dev/null +++ b/legacy/javascript/homework-projects/projects/quiz-app/quiz-app.md @@ -0,0 +1,94 @@ +# QUIZ APP + +![Dexter from "Dexter's Laboratory" filling in some answers on a piece of paper](https://media.giphy.com/media/y1JYvLe9fFfpK/giphy.gif) + +The most popular quiz app has become very expensive... so there came a startup that aspires to build a new one that will be better, cheaper to use and more fun! +You join the startup as a developer and your task is to build a nice prototype of the product while the rest of the product team works to define what the final version will be. + +> [!NOTE] +> Take some time to research online for similar apps and how they look and work to gain inspiration. This is an important skill to practice as a developer because you won't always know (or be told) how to approach the design. + +## Weekly specs + +### `JS2 week1` - Browser environment, DOM manipulation, DOM event listeners + +- [ ] create a form to insert a quiz question. It should take a question and 4 options for answers. There should be a way to mark which answer is correct in the form, but you should only be able to select one correct answer. + +- [ ] implement one of the two (or both!): + +a. add a button that randomizes the order of the 4 option inputs once they have been filled in. + +b. color the input for the "correct" answer option in green and the "wrong" ones in red. Make sure it's still readable. + +- [ ] optional bonus: make sure the question is not longer than 140 characters. + +The format of the object of the quiz question, for example, could be something like this: + +```js +const quizQuestion = { + id: 1, + question: "What is the capital of Denmark?", + options: [ + { text: "Berlin", isCorrect: false }, + { text: "Copenhagen", isCorrect: true }, + { text: "Madrid", isCorrect: false }, + { text: "Rome", isCorrect: false }, + ], + explanation: "Copenhagen is the capital of Denmark.", +}; +``` + +### `JS2 week2` - Array functions, Arrow function + +Start with creating an array of quiz question objects. Even a small one is perfectly enough, but go as big as you want! +Continue with the format of the question object you used last week or improve it and refactor! + +- [ ] save the quiz question into an array when the form is submitted. + +- [ ] show a list of all quiz questions added to the array below the form. It should show the questions, the 4 options but not which one is correct. Add a button with the functionality to reveal which is the correct answer for each question. + +- [ ] build a function to filter the questions by searching the content of the question. + +### `JS2 week3` - Callback function, Asynchronicity, Scope + +- [ ] add inputs for 2 player names and a button to start a quiz. When the quiz starts, player names are displayed with their collected points (0 to begin with). + +- [ ] implement one of the two (or both!): + +a. next to each player's name, add two buttons [correct] and [wrong]. When the "correct" button for a player is pressed, they score 1 point, when the wrong button is pressed, the _other_ player scores one point. + +b. add number inputs for the player points and use the browser's arrow buttons on the input fields to increase/decrease the points. + +- [ ] optional bonus: play a sound and end the quiz game when one of the players has reached 10 points. + +### `JS3 week1` - Json, Apis, Fetch + +- [ ] follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on. + +- [ ] refactor your code so that you ditch the static array of objects and instead fetch the initial questions data from your API. + +- [ ] ensure all the functionality is working smoothly after refactoring. + +- [ ] add alphabetical sorting of the questions and random sorting of the questions and let the user choose. + +### `JS3 week2` - Promises, Async/Await + +- [ ] you used promise chaining last week - now rewrite the fetch in the "async await" approach. + +- [ ] add a search input to filter the questions by searching the content of the question - use the function that you have build before. When you click the search button, display only the questions where the search input is included in the question text. + +### `JS3 week3` - Classes, Revision and Presentation of projects + +- [ ] rest, revise JS fundamentals, finish, and brush up your project, prepare to present and explain it. +- [ ] make improvements to the style or functionality or add additional functionality. +- [ ] Prepare to showcase your project to external people, talk through your code and explain what you have implemented. + +## Project completion checklist ✅ + +- [ ] I can see a form to submit a question at the top of the page and a list of questions bellow it; +- [ ] when submitting a new question, I can see an indication where to submit the correct answer; +- [ ] the questions are displayed in a nice and readable way, and I can see a button to reveal the right answer for each question; +- [ ] I can sort the questions alphabetically; +- [ ] I can use search and get the questions wher my search keyword is included in the question text; +- [ ] there is a functionality to submit two player names; +- [ ] it is possible to interact with player scores. diff --git a/legacy/javascript/homework-projects/projects/recipe-app/recipe-app.md b/legacy/javascript/homework-projects/projects/recipe-app/recipe-app.md new file mode 100644 index 00000000..8b646be5 --- /dev/null +++ b/legacy/javascript/homework-projects/projects/recipe-app/recipe-app.md @@ -0,0 +1,85 @@ +# RECIPE APP + +![Spongebob Squarepants, doing some cooking](https://media.giphy.com/media/N23cG6apipMmQ/giphy.gif) + +You are a foood lover, a cooking enthusiast and you want to share your passion with the web. You aspire to build a cool recipe website as a hobby project and eventually earn a little bit on the side from it. + +> [!NOTE] +> Take some time to research online for similar apps and how they look and work to gain inspiration. This is an important skill to practice as a developer because you won't always know (or be told) how to approach the design. + +## Weekly specs + +### `JS2 week1` - Browser environment, DOM manipulation, DOM event listeners + +Create a recipe object that has at least the id, name, description, a list of ingredients and a picture url. +Or just use the below! + +```js +const recipeObject = { + id: 1, + title: "Gløgg", + picture_url: + "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Gl%C3%B6gg_kastrull.JPG/800px-Gl%C3%B6gg_kastrull.JPG", + ingredients: [ + { NAME: "Orange zest", AMOUNT: "0.5" }, + { NAME: "Water", AMOUNT: "200 ml" }, + { NAME: "Sugar", AMOUNT: "275 g" }, + { NAME: "Whole cloves", AMOUNT: "5" }, + { NAME: "Cinnamon sticks", AMOUNT: "2" }, + { NAME: "Spice", AMOUNT: undefined }, + { NAME: "Bottle of red wine", AMOUNT: "1" }, + { NAME: "Raisins", AMOUNT: "100 g" }, + { NAME: "Slipped Almonds", AMOUNT: "50 g" }, + ], + description: "Mix everything, heat it, and you are good to go!", +}; +``` + +- [ ] Display a single recipe on the page using DOM manipulation. +- [ ] Implement a form to add a new recipe with a minimum of 5 ingredients. +- [ ] Optional: implement functionality to add a new ingredient to a recipe. + +### `JS2 week2` - Array functions, Arrow function + +Start with creating an array of recipe objects. Even a small one is perfectly enough, but go as big as you want! +Continue with the format of the recipe object you used last week or improve it and refactor! + +- [ ] Traverse through the array of recipe objects and display all the recipe cards in a grid. +- [ ] Implement functions to manipulate the array: +- find a recipe by a provided search word to check in the recipe title. +- sort the recipe array by the amount of ingredients needed. + +### `JS2 week3` - Callback function, Asynchronicity, Scope + +- [ ] Implement a cooking timer where the time is user-picked via an input or hard-coded. The timer should alert and/or ring once the time is up. +- [ ] Implement a timer for how much time you have spent on the page. + +### `JS3 week1` - Json, Apis, Fetch + +- [ ] Follow the [API creation guide](/homework-projects/guides/making-your-API-guide.md) to make your own API that you will use from now on. +- [ ] Refactor your code so that you ditch the static array of objects and instead fetch the recipes data from your API. +- [ ] Implement functionality to search for an ingredient, fetch and display the relevant ingredient prices for a recipe +- [ ] Ensure all the functionality is working smoothly after refactoring. + +### `JS3 week2` - Promises, Async/Await + +- [ ] You used promise chaining last week - now rewrite the fetch in the "async await" approach. +- [ ] Use the fuunctions created in preivous week and build functionality to: +- [ ] Find a recipe by a provided search word to check in the recipe title. +- [ ] Sort the recipe array by the amount of ingredients needed. + +### `JS3 week3` - Classes, Revision and Presentation of projects + +- [ ] Rest, revise JS fundamentals, finish, and brush up your project, prepare to present and explain it. +- [ ] Make improvements to the style or functionality or add additional functionality. +- [ ] Prepare to showcase your project to external people, talk through your code and explain what you have implemented. + +## Project completion checklist ✅ + +- [ ] I can see a page with a list of recipes displayed in a grid; +- [ ] I can see the most important details about a recipe displayed in a nice and readable way; +- [ ] I can search for recipes by title, typing in a search keyword; +- [ ] I can sort the recipe array by the amount of ingredients needed; +- [ ] I can search for an ingredient, fetch and display the relevant ingredient prices for a recipe; +- [ ] I can use a cooking timer that alerts and/or rings once the time is up; +- [ ] I can see a timer for how much time I have spent on the page. diff --git a/legacy/javascript/javascript1/README.md b/legacy/javascript/javascript1/README.md new file mode 100644 index 00000000..41973cd4 --- /dev/null +++ b/legacy/javascript/javascript1/README.md @@ -0,0 +1,13 @@ +# JavaScript 1 + +Here you can find course content and homework for the JavaScript 1 module. + +| Week | Topic | Preparation | Homework | Lesson plan | +| ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------- | ----------------------------- | ----------------------------------- | +| 1. | Intro JavaScript (What is it, what can you use it for); Setup js either via browser or via node; [Variables: var, let, const](week1/readme.md#variables); Console.log; [Types](week1/readme.md#Types): [String](week1/readme.md#String), [number](week1/readme.md#Number), boolean, [null, undefined](week1/readme.md#Null--undefined), [array](week1/readme.md#Array); [Operators](week1/readme.md#comparison-operators) | [Preparation](week1/preparation.md) | [Homework](week1/homework.md) | [Lesson plan](week1/lesson-plan.md) | +| 2. | Conditions; [Functions](week2/readme.md#Functions); Global vs local scope; For loop | [Preparation](week2/preparation.md) | [Homework](week2/homework.md) | [Lesson plan](week2/lesson-plan.md) | +| 3. | Array's continued; [Objects](week3/readme.md#Objects); [Call stack](week3/readme.md#Call-stack) | [Preparation](week3/preparation.md) | [Homework](week3/homework.md) | [Lesson plan](week3/lesson-plan.md) | +| 4. | Recap of js basics; Solving problems | [Preparation](week4/preparation.md) | [Homework](week4/homework.md) | [Lesson plan](week4/lesson-plan.md) | + +> **Kind note:** +> The JavaScript modules are tough. Very tough! We expect you to **always** come prepared to the class on Sunday. diff --git a/legacy/javascript/javascript1/week1/README.md b/legacy/javascript/javascript1/week1/README.md new file mode 100644 index 00000000..ffdd46d6 --- /dev/null +++ b/legacy/javascript/javascript1/week1/README.md @@ -0,0 +1,231 @@ +# JavaScript 1, Week 1 + +## Learning goals + +- [ ] Intro JavaScript (What is it, what can you use it for) +- [ ] Setup js either via browser or via node +- [ ] Console.log +- [ ] [Variables: var, let, const](#variables) +- [ ] [Types](#types): [String](#string), [number](#number), boolean, [null, undefined](#null--undefined), [array](#array) +- [ ] [Operators](#comparison-operators): Comparision, addition, subtraction, multiplication, division, modulus, increment, decrement +- [ ] Errors: How to read and fix errors + +Focus on how to read documentation, google answers and google errors + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](homework.md) +- [Lesson plan](lesson-plan.md) + +## Variables + +A "variable" is a place where you can store information, such as a string, or a number. New variables in JavaScript are declared using one of three keywords: let, const, or var. + +> Think of variables names like **labels** on boxes, while the value of the variable are the **contents** of the box - you could change the contents of a box and leave the label intact, the contents of the boxes can have different types, the boxes should have good labels (a box of books being labeled pens would be very confusing), +> +> ![Variables are like boxes](./assets/box.png) +> Photo from [Khan Academy](http://cs-blog.khanacademy.org/2013/09/teaching-variables-analogies-and.html) + +### Variable declaration + +Variables are "declared" using the `var`, `let` or `const` keyword: + +```js +var x; +let foo; +const bar; +``` + +### let and const + +- read about [let](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let) +- read about [const](https://developer.mozilla.org/nl/docs/Web/JavaScript/Reference/Statements/const) +- [let vs const](http://wesbos.com/let-vs-const/) + +Here, we say: "declare variable x and initialize it with the integer (number) 5". + +```js +let foo; // declare variable `foo` +``` + +```js +let foo = 6; // declare and assign a variable at the same time +``` + +You can also assign a value to an existing variable: + +```js +foo = 4; // change variable `foo` +``` + +## Types + +All variables have a type. In our example above, the variable `x` is a `number`. JavaScript supports the following types: + +- `String`, e.g. "HackYourFuture" +- `Number`, e.g. 5 +- `Float`, e.g. 10.6 +- `Boolean`, e.g. `true` or `false` +- `Array`\*, e.g. `[1, 2, 3]` or `['what', 'is', 'your', 'name']` +- `Object`, e.g. `{name: 'John', age: 24}`, or the special object `null` +- `Function`, e.g. `function () { return 4; }` + +In addition, a variable may be `undefined`. This is also a special type. + +To get the type of a variable, use the following code: + +```js +let x = 5; +let typeOfX = typeof x; // -> 'number' +``` + +Note that I've put an asterisk behind 'array'. That is because in JavaScript, array is a special kind of object: + +```js +let arr = [1, 2, 3]; +let typeOfArr = typeof arr; // -> 'object' +``` + +However, in our communication, we will call these variables arrays. + +### Null & undefined + +The values `null` and `undefined` are very similar in JavaScript, but they behave a bit differently. The difference is that `null` always has type "object", and `undefined` always has type "undefined". + +Whenever you declare a variable, but you don't set a value, the variable will become `undefined`. JavaScript will never make a variable `null` unless you explicitly program it - it represents the intentional absence of any object value (read [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/null) for more context). + +```js +let x; +console.log(typeof x); // -> 'undefined' +``` + +### Typeof + +You can use `typeof` to get the type of a certain variable as you have seen in the above section 'Variable types'. As you can see in the following examples it returns the type of data that you have stored in your variable. + +## String + +In JavaScript you can store a series of characters inside a variable, you then call this a string. You can store all sorts of characters (text/numbers, spaces or phrases) in strings. By using the `''` you define that something is a string. You can also use `""` to create a string. Both are fine as long as you are consistent (just make a choice on which one you prefer and stick to it). + +```js +let foo = "42"; +typeof foo; //-> 'string' +``` + +### String indexes and string properties + +The index of a string always starts at 0. +Strings also have properties, for example `.length` you can use this to find the length of a string. + +So for example: + +```js +let baz = "Hello World"; +baz[0]; //-> "H" +baz.length; //-> 11 +``` + +### String methods + +More about [string methods](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String). + +## Number + +All numbers in JavaScript are considered numbers with or without decimal + +```js +let foo = 42; +typeof foo; //-> 'number' + +let bar = 3.3333; +typeof bar; //-> 'number' +``` + +## Array + +Variables that are arrays contain a list of things, instead of just one thing. What's inside the array, we typically call "elements". So, the array `[1, 2, 3]` has three elements. The array `[]` has no elements and is therefore empty. The number of elements in an array is called its "length". + +When you want to access an element inside an array, you use an "index". This is the number that you put between brackets (`[]`). + +Given the following code: + +```js +var arr = ["john", "jane", "jack"]; +console.log(arr[0]); +``` + +The number `0` is the "index of the first element of array `arr`". Conversely, the element "at index 0 in array `arr` is `'john'`". + +Instead of a number, you can also use a variable to access elements in an array, _as long as this variable is a number_: + +```js +let arr = ["john", "jane", "jack"]; +let a = 1; +console.log(arr[a]); // -> jane +``` + +If the index you use is not an integer (a whole number), or if it's less than `0` or if it's greater than or equal to the array's length, you will get back `undefined`. + +More about [arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array) + +### Comparison operators + +> Note the two different uses of the equals sign: +> A single equals sign (=) is used to assign a value to a variable. +> A triple equals sign (===) is used to compare two values (see Equality Operators). + +#### Equality operators + +- Equality `==` +- Inequality `!=` +- Identity / strict equality `===` +- Non-identity / strict inequality `!==` + +How does this work in practice? + +```js +1 == 1; // -> true +7 == "7"; // -> true +1 != 2; // -> true +5 === 5; // -> true +9 === "9"; // -> false +3 !== 3; // -> false +3 !== "3"; // -> true +``` + +> why does `7 == '7'` returns true and `9 === '9'` returns false? + +#### Relational operators + +- Greater than operator `>` +- Greater than or equal operator `>=` +- Less than operator `<` +- Less than or equal operator `<=` + +```js +4 > 3; // -> true +3 >= 3; // -> true +13 < 12; // -> false +3 <= 4; // -> true +``` + +More about [comparison operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators) + +### Arithmetic operators + +- Addition `+` +- Subtraction `-` +- Multiplication `*` +- Division `/` +- Remainder (sometimes called modulo) `%`. This returns the remainder left over after you've shared the left number out into a number of integer portions equal to the right number. + +```js +8 + 9; // -> 17, adds two numbers together. +20 - 12; // -> 8, subtracts the right number from the left. +3 * 4; // -> 12, multiplies two numbers together. +10 / 5; // -> 2, divides the left number by the right. +8 % 3; /// -> 2, as three goes into 8 twice, leaving 2 left over. +``` + +More about [Arithmetic_Operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#.25_.28Modulus.29) diff --git a/legacy/javascript/javascript1/week1/assets/ASmarterWaytoLearnJavaScript.pdf b/legacy/javascript/javascript1/week1/assets/ASmarterWaytoLearnJavaScript.pdf new file mode 100644 index 00000000..d5f3554f Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/ASmarterWaytoLearnJavaScript.pdf differ diff --git a/legacy/javascript/javascript1/week1/assets/box.png b/legacy/javascript/javascript1/week1/assets/box.png new file mode 100644 index 00000000..872c8022 Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/box.png differ diff --git a/legacy/javascript/javascript1/week1/assets/create-new-pull-request.png b/legacy/javascript/javascript1/week1/assets/create-new-pull-request.png new file mode 100644 index 00000000..8531ae73 Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/create-new-pull-request.png differ diff --git a/legacy/javascript/javascript1/week1/assets/merge-pull-request.png b/legacy/javascript/javascript1/week1/assets/merge-pull-request.png new file mode 100644 index 00000000..a94d07fc Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/merge-pull-request.png differ diff --git a/legacy/javascript/javascript1/week1/assets/open-a-pull-request.png b/legacy/javascript/javascript1/week1/assets/open-a-pull-request.png new file mode 100644 index 00000000..29cce5df Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/open-a-pull-request.png differ diff --git a/legacy/javascript/javascript1/week1/assets/pull-request-comment.png b/legacy/javascript/javascript1/week1/assets/pull-request-comment.png new file mode 100644 index 00000000..b94414d0 Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/pull-request-comment.png differ diff --git a/legacy/javascript/javascript1/week1/assets/pull-request-done.png b/legacy/javascript/javascript1/week1/assets/pull-request-done.png new file mode 100644 index 00000000..f00c34cb Binary files /dev/null and b/legacy/javascript/javascript1/week1/assets/pull-request-done.png differ diff --git a/legacy/javascript/javascript1/week1/homework.md b/legacy/javascript/javascript1/week1/homework.md new file mode 100644 index 00000000..e2417592 --- /dev/null +++ b/legacy/javascript/javascript1/week1/homework.md @@ -0,0 +1,191 @@ +# Homework + +![Hacking](https://media.giphy.com/media/eCqFYAVjjDksg/giphy.gif) + +## Step 1: Before you start with the homework + +1. Watch: [What is programming?](https://www.khanacademy.org/computing/computer-programming/programming/intro-to-programming/v/programming-intro). Just watch the 2 min video, you do not have to do the entire JavaScript course (It could be useful later on though). + +### Get git ready to work on homework + +Using the `your hyf-homework` repo. In the terminal run `git status` + +If there are changes that have not been committed, figure out what to do with those changes + +- Should they be committed to another branch? +- Should they be committed to `main`? +- Should they be discarded? + +When you have figured out what to do with the changes and fixed those. Write `git status` again. If it says `nothing to commit, working tree clean`. Then you are ready to create the branch for this weeks homework. + +#### Creating the branch + +Using the `your hyf-homework` repo write this command + +`git checkout main` - You are now on the `main` branch + +`git checkout -b javascript-javascript1-week1` + +This will create and checkout the branch so you are ready make commits to it + +[This video](https://www.youtube.com/watch?v=JcT4wmK1VcA) can help. On slack use the #git-support channel to ask questions about git + +## Why should I do this homework? + +> One must be able to crawl before understanding the true nature of Javascript - Albert Einstein + +This homework will get you started developing in javascript. What you learn the first 3 modules of javascript will be building blocks for creating great javascript web applications. + +If you struggle to do this weeks homework there are a couple of things to do: + +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=uhTRC33cpp0), [part 2](https://www.youtube.com/watch?v=mVgyjr9MV5U) +- Read up on javascript basics [here](readme.md#variables) + +## Step 2: Javascript warm up part one + +Lets get started with some warm up exercises: On freeCodeCamp.com do the [Basic JavaScript](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript) exercises up and until the **"Manipulate Arrays With push()"** exercise (there are some topics we did not cover but you can do it). + +Please add your freecodecamp username as answer for this exercise! + +You have finished the warmup exercises, well done! + +## Step 3: Smart-ease - We help where we can + +Enough warm up, lets get to the real problems! We will assume a real world business case where you (the developer) needs to help a business that is starting up (a startup) with solving some of their problems related to JavaScript! Here we go: + +--- + +Lets imagine that we have just started a cool new tech startup called **Smart-ease**. And lets imagine we even have this cool website url: `smart-ease.io` Now we are in business! + +At **Smart-ease** we focus on solving real world problems. We venture into the world to help people, and by helping people, we create a sustainable business. + +Cool now lets venture into the world and see which problems we can solve with some of these cool products that Smart-ease will develop with your help: + +![Adventure](https://media.giphy.com/media/oj2GhTqAIoNIk/giphy.gif) + +### Age-ify (A future age calculator) + +> You are talking to a friend who suddently looks at you and asks: "How old will you be in 2045?" Hmm you remember the year you were born and try to do some calculation: Born in 1987 + 3 that's 1990. 90 - 40 is 50 + 5 thats 58. I will be 58! Wow that was painful! Let's fix that by making some code that automatically does this! + +Create two variables called `yearOfBirth` and `yearFuture`. Assign these your birth year and a future year. +What type will these two variables be? Using `yearOfBirth` and `yearFuture` calculate the age and store that in a variable called `age`. + +Log out this string: "You will be 40 years old in 2027". With 40 being the result of the `age` variable and 2027 being the `yearFuture` variable. (Hint use string concatenation) + +### Goodboy-Oldboy (A dog age calculator) + +> The same friend (who by the way loves dogs) asks how old his dog will be in 2045. Hmm you think, lets make this into a product as well! +> Dogs age can either be measured in dog years or in human years, this we want to take into consideration! + +Like before lets create three variables but this time we call them `dogYearOfBirth`, `dogYearFuture` and `dogYear`. We add an extra variable called `shouldShowResultInDogYears`. If it is `true` we should show the result in dog years, if it is false we should show it in human years. What do we call this type of variable? Now dependent on `shouldShowResultInDogYears` log this string out: +"Your dog will be 10 human years old in 2027" +or +"Your dog will be 70 dog years old in 2027" + +### Housey pricey (A house price estimator) + +> Two of your friends are considering buying a house, but cannot figure out what the right price should be. Your friends know the width, the height and the depth of the house and the garden size. Lets help them figure out if they paid too much: + +We have made our own formula for calculating the price of a house. This formula is VERY simplified and not at all close to the real calculation which can get [quite complicated](https://www.kaggle.com/erick5/predicting-house-prices-with-machine-learning): + +```js +housePrice = volumeInMeters * 2.5 * 1000 + gardenSizeInM2 * 300; +``` + +Your friend Peter is considering a house that is 8m wide, 10m deep and 10m high. The garden size is 100m2. The house costs 2.500.000. +Your friend Julia is considering a house that is 5m wide, 11m deep and 8m high. The garden size is 70m2. This house costs 1.000.000. + +Figure out if Peter and Julia are paying too much or too little using Javascript and the formula specified above. + +### Ez Namey (Startup name generator) _Optional_ + +> At a meetup you overhear a conversation between two developers. It went something like this: "Man i wish picking a startup name was easier! You need to be creative, funny and interesting, its nearly impossible!" Another problem to solve, awesome! + +Lets help people who struggle finding a startup name by creating some code! + +Create two arrays called `firstWords`, `secondWords`. The arrays should have 10 elements containing strings of possible startup names. Some examples could be: "Easy", "Awesome", "Corporate". + +Create a variable called `startupName` that will contain the created startup name. + +Using a random index (you choose) of the arrays and concatenation of strings, create and log the new startup name and the number of characters in it. +An example could be: "The startup: "Easy Corporation" contains 16 characters" + +Hint: you can use this code to generate a random number from 0-9, if you dont want to specify the indexes yourself. + +```js +const randomNumber = Math.floor(Math.random() * 10); +``` + +--- + +4 projects from one startup, thats incredible! Lets hope one or more of these projects actually becomes popular! + +To be continued... + +## Step 4: Hand in Homework + +We are going to be handing in homework using something called a **pull request (now PR)**. The reason for that is that **most companies use PR's** when they work with code. So you might aswell get used to it! + +Watch [this video](https://www.youtube.com/watch?v=JcT4wmK1VcA) to go through the same process as is documented here + +**Okay, lets go!** + +--- + +Use the `hyf-homework` repo and find the folder on your computer that contains this repo + +--- + +Using the branch called `javascript-javascript1-week1` + +--- + +To add your files go to the folder `javascript/javascript1/week1`. Here you **add all the files relevant for the homework**. Remember to **seperate the code into meaningful commits**. You can now push the commits + +```shell +git add +git commit -m "Implemented task 1" +git push origin javascript-javascript1-week1 +``` + +--- + +Go into the `your hyf-homework` repo on click on the `Pull requests` tab and then click the `New pull request` button + +![Create new pull request](assets/create-new-pull-request.png) + +Where it says compare, choose the `javascript-javascript1-week1` branch. Just keep the PR title as it is (javascript-javascript1-week1). You can leave a comment if you want. Now click `Create pull request`. + +![Create new pull request](assets/open-a-pull-request.png) + +You have now handed in homework, but you are not quite done yet + +--- + +A mentor will look through your code and give you some feedback. + +![Pull request comment](assets/pull-request-comment.png) + +Based on the feedback, implement improvements to the homework. Then add, commit and push these improvements. + +```shell +git add +git commit -m "Implemented feedback" +git push origin javascript-javascript1-week1 +``` + +--- + +Now you can merge the changes. Congrats, you are completely done with the homework 🎉🎉🎉 + +![Merge the pull request](assets/merge-pull-request.png) + +Now it should look like this: + +![Pull request done](assets/pull-request-done.png) + +When merged you can **share the github link** to your classes slack channel if you are **proud of what you did** 💪 + +--- + +And that's it, you are done 🎉 diff --git a/legacy/javascript/javascript1/week1/lesson-plan.md b/legacy/javascript/javascript1/week1/lesson-plan.md new file mode 100644 index 00000000..db7d6594 --- /dev/null +++ b/legacy/javascript/javascript1/week1/lesson-plan.md @@ -0,0 +1,262 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Intro JavaScript + - What is it, what can you use it for +- Setup js either via browser or via node. + - Mentors decision. +- Console.log + - Depending on node or browser explain where the logs can be found. +- Variable declaration and assignment + - `var` + - `let` + - `const` - Always use `const` until it won't `let` you +- Variable types + - Typeof + - `String` + - Indexes - low priority + - `.length` - low priority + - `.toLowerCase` - low priority + - `Number` + - Show float and int is just a number in js + - `Array` + - Creation + - Indexing + - Items + - No map, filter, push etc! + - `Boolean` - Students investigate `boolean` and explain for fellow students + - [Code inspiration](#inspiration-variable-types) + - [Exercises](#exercise-variable-types) +- Comparison operators + - Equality operators + - Equality `==` + - Inequality `!=` + - Identity / strict equality `===` + - Non-identity / strict inequality `!==` + - Why does `7 == '7'` returns true and `9 === '9'` returns false? + - Relational operators + - Greater than operator `>` + - Greater than or equal operator `>=` + - Less than operator `<` + - Less than or equal operator `<=` + - [Code inspiration](#equality) +- Arithmetic operators + - Addition `+` - also for strings + - Subtraction `-` + - Multiplication `*` + - Division `/` + - Remainder (sometimes called modulo) `%` - Students investigate how modulo works + - [Code inspiration](#arithmetic-operators) + - [Exercise](#follow-up-exercises) +- Errors + - How to read and fix errors. Show some practical examples. + - [Exercise](#fix-the-errors) +- [Last exercise, pizza project](#pizza-project) + +Here is a Notion Zoey Zou made: + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript1/week1/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### Inspiration: Variable types + +```js +console.log("Hello world"); + +var x; +x = 22; + +x = 33; +var x = 22; + +const test = 1; +// Bad, we get an error! +test = 2; + +let letTest = 4; +console.log(letTest); +letTest = 20; +console.log(letTest); + +// types: +// Number +let numberConst = 2; +console.log(numberConst); +console.log(typeof numberConst); +// BAD BAD BAD NAMING!!!! +numberConst = "hello"; +console.log(typeof numberConst); + +// String +const stringConst = "Write some text"; +console.log(stringConst); + +// Boolean +const booleanConst = false; +console.log(booleanConst); +console.log(typeof booleanConst); + +// Array +const arrayConst = []; +const shoppingList = ["egg", "apples", "flour", 3, false]; +console.log(shoppingList); +const shoppingListType = typeof shoppingList; +console.log(typeof shoppingListType); + +console.log(shoppingList[1]); +console.log(typeof shoppingList[4]); + +const shoppingListApples = shoppingList[1]; +const lastItemShoppingList = shoppingList[4]; +console.log(lastItemShoppingList); +console.log(typeof lastItemShoppingList); + +// undefined +const undefinedExample = shoppingList[5]; + +let undefined1; +console.log(undefined1); +console.log(typeof undefined1); + +console.log(typeof "0"); +const stringConst2 = " asd"; +console.log(stringConst2); + +console.log(stringConst2[0]); +console.log(shoppingList.length); +console.log(stringConst2.length); +``` + +### Equality + +```js +console.log(1 == 1); +console.log(1 == 2); + +console.log(1 != 2); + +console.log("HELLO" == 2); + +console.log("1" == 1); +// both value and type should be true +console.log("1" !== 1); + +console.log(1 > 8); + +console.log(1 < 8); + +console.log(1 <= 1); + +console.log(1 === 1 && 3 === 4); +console.log((1 !== 1 || 3 === 4) && true); +``` + +### Arithmetic operators + +```js +console.log(1 + 2); + +console.log(1 - 2); + +console.log(10 / 5); + +console.log(10 * 5); +console.log(21 / 5); +console.log(21 % 5); + +console.log("hello " + 23); +console.log("hello " + "23"); +``` + +## Exercises + +## Exercise: Variable types + +With pen and paper write down what is logged out: + +```js +// Types +console.log(typeof 3); +console.log(typeof -33); +console.log(typeof "3"); +const threeConst = 3; +console.log(threeConst); +let threeLet = 3; +console.log(threeLet); +console.log(typeof 'console.log("console.log(console.log(""))")'); +console.log(typeof typeof 45); +const names = ["benjamin", "Christopher"]; +console.log(typeof names[0]); +console.log(typeof [3][0]); +console.log(typeof true); +``` + +### Follow up exercises + +1. Create a variable that is 24 times 55 +2. Create a const and set it to be equal to your name +3. With javascript `console.log` the first character in your name +4. Create an array with 3 strings, three numbers and three booleans +5. `console.log` the 4. element in the array made above +6. _Optional_ with javascript `console.log` the last character in your name. + +### Fix the errors + +Fix the errors in this script: + +```js +const name = "benjamin"; +name = "benjamin-better"; + +const pizzaPrice = 78; +const pizzaPriceDiscounted = pizzaprice - 10; + +const users = ["peter", "Johnny", "Børge"]; + +const lastUser = users[3]; +``` + +### Pizza project + +#### Part 1 + +1. Create a special new folder called "pizza-exercise" +2. Inside the folder create a new html file called "index.html" +3. Also inside the folder create a new JavaScript file called "pizza.js" +4. Remember to Include the pizza.js script in the html file +5. Write a log statement, so you know that your javascript code is running: + `console.log("I love pizza");` +6. Create a variable to store the name of your favourite pizza +7. Create a variable to store the price of the pizza +8. Now log at statement to the console that will show the pizza man the entire pizza order in a language he understands, eg. like this: + `New pizza order: . The price of the pizza is: ` + +#### Part 2 + +Now we will modify the program so that you can order multiple pizzas and also decide if the pizzas should be family size + +1. Create a new variable to store the amount of pizzas you would like to order + +2. Create a new variable to store whether or not you would to order a family size pizza. + +3. Now write a formula to calculate the total price of your pizza order, and save it in a variable called totalPrice (if the pizza is family size the prize of the pizza is doubled. + +4. Modify the log statement for the pizza man so it includes wether or not the pizza is family size, and now show the total price of the order + `New pizza order: . Total cost for the order is: ` + +5. Try to change the price of the pizza and if the pizza should be family size, and then check if the total price is calculated correctly. diff --git a/legacy/javascript/javascript1/week1/preparation.md b/legacy/javascript/javascript1/week1/preparation.md new file mode 100644 index 00000000..936382e1 --- /dev/null +++ b/legacy/javascript/javascript1/week1/preparation.md @@ -0,0 +1,17 @@ +# Preparation + +![Reading](https://media.giphy.com/media/l0MYtRl33WaN4HGBq/giphy.gif) + +- [ ] [Read this](https://exploringjs.com/es5/ch01.html) up to and including the _Strings_ chapter (it’s okay if you don’t understand all of it yet, we will cover these concepts in class as well. Do make sure to write or document the questions you have so we can discuss them in class) (15 min) + +- [ ] [JavaScript Introduction at MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Introduction) (10 min) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Javascript - data type](https://www.youtube.com/watch?v=tQByWsZeYrM) +- [Javascript - variables](https://www.youtube.com/watch?v=sfqt3ZotOhw) +- [Javascript - make variable names descriptive](https://www.youtube.com/watch?v=0bgIUXj5BF8) +- [Javascript - the subtle difference between let and var](https://www.youtube.com/watch?v=9yFx81K9b4k) +- [Javascript - operators and errors](https://www.youtube.com/watch?v=wVs6rzTReD8) diff --git a/legacy/javascript/javascript1/week2/README.md b/legacy/javascript/javascript1/week2/README.md new file mode 100644 index 00000000..95b6ac99 --- /dev/null +++ b/legacy/javascript/javascript1/week2/README.md @@ -0,0 +1,182 @@ +# JavaScript 1, Week 2 + +## Learning goals + +- [ ] Conditions: if, elseif, else. Negated. +- [ ] [Functions](#functions): [Calling](#calling-a-function-on-something), defining, [parameters, arguments](#parameters-and-arguments) +- [ ] Global vs local scope +- [ ] For loop + +Teaching note. Start off explaining functions with how to use a function fx explain why the Math.random function is smart, or Math.max. + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](homework.md) +- [Lesson plan](lesson-plan.md) + +### Recap Logical operators + +```js +0 = false +1 = true +``` + +#### AND `&&` + +| `&&` | 0 | 1 | +| ---- | --- | --- | +| 0 | 0 | 0 | +| 1 | 0 | 1 | + +#### OR `||` + +| `\|\|` | 0 | 1 | +| ------ | --- | --- | +| 0 | 0 | 1 | +| 1 | 1 | 1 | + +So you can say that false in combination with `&&` always returns false + +```js +true && false; //-> false +false && true; //-> false +false || true; //-> true +true || false; //-> true +``` + +### Typeof + +`typeof` always returns the data type in a string. + +So for example: + +```js +let bar = 42; +typeof bar; //-> 'number' +typeof typeof bar; //-> 'string' +``` + +So the data type of what `typeof` returns is always a string, bar on the other hand is still a number. + +## Functions + +A function is a reusable piece of code. It is used to hide away abstraction! Functions are _very_ important in JavaScript, to the extent that some people call JavaScript a "function-oriented" language. + +### Two sides of a function + +There are two sides to using function, using a function (calling a function) and creating a function. + +#### Function usage + +When you call a function some javascript code is run. Here's a simple example: + +```js +const randomNumber = Math.random(); +console.log(randomNumber); // logs out some number between 0 and 1 +``` + +Here `Math.random` is a function. To activate the function we call it using paranthesis `()`. When calling it we get a randomNumber! We now dont need to think about all the code it takes to create a random number in javascript, we simply call the function and get a random number. Code has been abstracted away for us! + +Some functions is called with arguments fx: + +```js +const maxNumber = Math.max(3, 5); // 3 and 5 are arguments +console.log(maxNumber); // logs out 5 +``` + +Arguments are used to control the code inside a function. + +#### Function creation + +When we create a function we use the function keyword: + +```js +let todoItem = "Buy Groceries"; +console.log(todoItem); + +// Create the function +function checkItem() { + todoItem = todoItem + " - done"; +} + +// use the function by calling it using () +// If we dont call the function that code will NEVER EVER IN A MILLION YEARS run! +checkItem(); +console.log(todoItem); +``` + +#### Parameters and arguments + +```js +// a and b are called parameters. This function has two parameters +function sum(a, b) { + return a + b; +} +``` + +```js +// 5 and 10 are called arguments now when called in a function +// Arguments are "passed" to the function: "we pass `4` and `5` to the function sum +const returnedSum = sum(5, 10); +console.log(returnedSum); // logs 15 +``` + +So remember the difference between the word "parameter" and "argument". Many people confuse them, and that's not a big problem, but understanding the difference is always nice: + +- A parameter is the name you want to give to the variable that is available inside of the function. +- An argument is the actual value you want to assign to the parameters when you call the function. + +Parameters acts as a placeholder for the arguments. The value of the parameter will get substituted with the value of the argument. + +```js +function multiply(a, b) { + // the value of a will be substituted with the value of 10! + // the value of b will be substituted with the value of 4! + console.log(a, b); // logs out 10 4 + return a * b; +} + +multiply(10 * 4); +``` + +##### Return value + +Sometimes we want to get a value back when calling a function. Fx in the sum example. We want to call the function and get the sum back! + +```js +function sum(a, b) { + return a + b; +} +const returnedSum = sum(5, 10); // the variable returnedSum captures the return value from calling the function! +console.log(returnedSum); // logs 15 + +// If we dont return, we cannot capture the returned value! +function sumNoReturn(a, b) { + a + b; // no return! +} +const returnedSum = sum(5, 10); +console.log(returnedSum); // logs undefined +``` + +If we dont return anything from the function, it will automatically return `undefined`. This is the functions way of saying that nothing was returned. + +### Calling a function on something + +In JavaScript, you can call functions _on_ something. By this, we mean that you use the dot to call the function. For instance, when we say "call method `trim` on string `s`", we mean: + +```js +let s = " this is a string "; +s.trim(); // -> "this is a string" +``` + +However, there are functions that you don't call on anything: + +```js +function sum(a, b) { + return a + b; +} +sum(4, 5); // -> 9 +``` + +Here, you call the function `sum` on nothing. diff --git a/legacy/javascript/javascript1/week2/homework.md b/legacy/javascript/javascript1/week2/homework.md new file mode 100644 index 00000000..76dce13e --- /dev/null +++ b/legacy/javascript/javascript1/week2/homework.md @@ -0,0 +1,228 @@ +# Homework + +## Get git ready to work on homework + +Using the `hyf-homework` repo. In the terminal run `git status` + +If there are changes that have not been committed, figure out what to do with those changes + +- Should they be committed to another branch? +- Should they be committed to `main`? +- Should they be discarded? + +When you have figured out what to do with the changes and fixed those. Write `git status` again. If it says `nothing to commit, working tree clean`. Then you are ready to create the branch for this weeks homework. + +### Creating the branch + +Using the `hyf-homework` repo write this command + +`git checkout main` - You are now on the `main` branch + +`git checkout -b javascript-javascript1-week2` + +This will create and checkout the branch so you are ready make commits to it + +[This video](https://www.youtube.com/watch?v=JcT4wmK1VcA) can help. On slack use the #git-support channel to ask questions about git + +## Why should I even do this homework? + +Functions and conditions are some of the basic building blocks of javascript. Functions ensure that we dont repeat ourselves when writing code. Conditions ensures that we can handle different cases when programming. + +If you struggle to do this weeks homework there are a couple of things to do: + +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=P9BQLgRm7zs), [part 2](https://www.youtube.com/watch?v=qFI5QnjN2GQ) +- Read up on javascript basics [here](readme.md#recap-logical-operators) + +## Javascript warmup + +Just like last homework, lets **warmup our brain**! + +Do these freecodecamp challenges. We know this seems like a lot, but the tasks are not so big, so hang in there! If you get stuck on one of the tasks, just go to the next and then return to the difficult task later on. + +- [ ] [Passing values to functions with arguments](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/passing-values-to-functions-with-arguments/) +- [ ] [Return a value from a function with return](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return/) +- [ ] [Assignment with a returned value](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/assignment-with-a-returned-value/) +- [ ] [Local scope and functions](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/local-scope-and-functions/) +- [ ] [Global vs local scope in functions](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/global-vs--local-scope-in-functions/) +- [ ] [Introducing else if statements](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/introducing-else-if-statements/) +- [ ] [Logical order in if else statements](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/logical-order-in-if-else-statements/) +- [ ] [Iterate with javascript for loops](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-for-loops/) +- [ ] [Iterate through an array with a for loop](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/iterate-through-an-array-with-a-for-loop/) + +Please add your freecodecamp username as answer for this exercise! + +## Step 3: Smart-ease - Goes Global! + +Following the massive success of Smart-ease's first couple of products things have been quite hectic at Smart-ease's shared office space. The phone is constantly ringing from journalists wanting to interview the genius behind the success and the greatest developers want to work for you. [Wired](https://www.wired.com) wrote an article with the headline "Smart-ease as good as Smarties" + +BUT people are asking: What will be the next product that truly defines Smart-ease as the startup of the century? + +### Flight booking fullname function + +Even for a startup as successful as Smart-ease there needs to be money in the bank. A customer from a flight booking website has asked for our help creating a specific part of their application: + +When a user books a flight they **write their firstname and surname**, but when the ticket is printed a **fullname should be displayed**. It is our responsibility to create that. + +Create a function called `getFullname` that returns a fullname. +It should have two parameters: `firstname` and `surname`. + +```js +getFullname("Benjamin", "Hughes"); // returns "Benjamin Hughes" +``` + +Now try to create two variables `fullname1` and `fullname2` these two variables should be assigned to calling the `getFullname` function. + +Log out the two fullname variables. + +#### Formal fullname + +On the flight website the user has the possibility to **check a checkbox** that **indicates** if the user wants to be **adressed formally**. Lets also change `getFullname` to include support for formal name. + +Create an extra parameter `useFormalName` that is a boolean. If it is true the function should add a `Lord` in front of the name. + +```js +getFullname("Benjamin", "Hughes", true); // returns "Lord Benjamin Hughes"` +getFullname("Benjamin", "Hughes", false); // returns "Benjamin Hughes" +``` + +What do we do if `useFormalName` is not given as an argument? + +Remember to consider someone calling the function with an empty string as firstname and lastname. + +Try out your code by pasting your `getFullname` function in the javascript part of this codepen: + +But what if the person is a woman? Describe how you would fix the `getFullname` so it also works for women + +### Event application + +Another customer has contacted us. He works for a secret company that rimes with foogle. The customer works on their calendar application. They need some functionality to help with writing what weekday an event is held. + +You specify how many days from today an event is being held. The function then figures out what weekday the event is being held. Here is an example: + +Today is Sunday and the event is in 5 days. Therefore the event will be held on a friday. + +```js +// With todays weekday a tuesday +console.log(getEventWeekday(9)); // Logs out "Thursday" + +// With todays weekday a Friday +console.log(getEventWeekday(2)); // Logs out "Sunday" +``` + +You should get the today's day from the system. + +Hint: use remainder operator, array indexes and investigate `new Date` in js. + +### Weather wear + +Create a function (that you have to name) that has temperature as parameter. Based on the temperature it should return a string with what the user should wear. You decide what the user should wear based on the temperature. + +An example is: + +```js +const clothesToWear = youCreateThisFunctionName(18); +console.log(clothesToWear); // Logs out: "shorts and a t-shirt" +``` + +![Wearing jackets](https://media.giphy.com/media/26u6dryuZH98z5KuY/giphy.gif) + +### Student manager + +A coding school have contacted us to make some functionality for managing their classes. We will create functionality for adding students to a class. + +For this exercise you need to figure out how `Array.push` works. Learn about the concept by researching about it. + +Copy the following code into your homework js file + +```js +const class07Students = []; +function addStudentToClass(studentName) { + // You write code here +} + +function getNumberOfStudents() { + // You write code here +} +``` + +#### addStudentToClass function + +The `addStudentToClass` should add the `studentName` to the `class07Students` array. + +But there are some other requirements: + +- There can be only 6 students in a class. If more students are tried to be added, log out the following: "Cannot add more students to class 07". +- The same person cannot be added to the class. If the same person is added to the class, log out the following: 'Student Benjamin is already in the class' where Benjamin is substituted for the `studentName`. +- We are very fond of our Queen in Denmark, so if the Queen is added to the class she should always get a space. Even if the class has been filled out. +- You cannot add an empty string to a class + +#### getNumberOfStudents function + +`getNumberOfStudents` should simply return the number of students in the class. + +#### Now lets try and use the functions! + +Try out all the cases: + +- Add some students to the class. +- Add more students than there is space for +- Add a student that is already in the class +- Add the Queen to a full class +- Call the `getNumberOfStudents` to log out the number of students. + +To see your code applied on a webapp, go here: and paste your javascript code. + +### Candy helper _optional_ + +> We are at the candystore. We have taken some shovels of the **caramel-strawberry-cola-lemon-gravy winegums**, a few of the **banana chocolate diesel-motors** and a handful of the **salmon-potato covered toffee encrusted pizzas**. But what is all this worth? And can you even afford it? + +Let's solve this problem with some functions. + +#### addCandy function + +Create a function called `addCandy`. It has two parameters: + +- `candyType` - specifies the candy type. Could be 'sweet, chocolate, toffee or chewing-gum' +- `weight` - specifies the weigth of the candy in grams + +The function should **add the price of the candy** to an array called `boughtCandyPrices` using [push](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push) + +Here is an example of the usage: + +```js +addCandy("sweet", 20); // Adds the price of 20 grams of sweets to the array boughtCandyPrices +``` + +Candy table prices + +| Candy type | Price per gram | +| ----------- | -------------- | +| Sweet | 0.5 | +| Chocolate | 0.7 | +| Toffee | 1.1 | +| Chewing-gum | 0.03 | + +#### Can i buy more? + +Now create a variable called `amountToSpend` and assign it to `Math.random() * 100`. You can read about `Math.random` [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random) + +Create a new function called `canBuyMoreCandy`. This function returns a boolean indicating if the user can buy more candy using the `boughtCandy` array. + +Try use the function by adding some pieces of candy and checking if you can buy more. If the user can buy more candy the `console.log` the following: "You can buy more, so please do!". If the user cant buy more `console.log` the following: "Enough candy for you!" + +Hint: Use a for loop to calculate the total price of the candy pieces. + +_Optional_ Use a [while loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/while) instead of a for loop. + +## Step 4: Hand in Homework + +Watch [this video](https://www.youtube.com/watch?v=JcT4wmK1VcA) for a more detailed go-through of how to hand in homework! + +- Use the branch called `javascript-javascript1-week2` +- Add all your changes to this branch in the `javascript-javascript1-week2` folder. +- Create a pull request using the `javascript-javascript1-week2` branch and give your PR the same name `javascript-javascript1-week2` +- Wait for mentor feedback +- Implement feedback, `add`, `commit` and `push` the changes +- Now you can merge the changes into `main` +- When merged you can **share the github link** to your classes slack channel if you are **proud of what you did** 💪 +- Now celebrate 🎉🎉🎉 diff --git a/legacy/javascript/javascript1/week2/lesson-plan.md b/legacy/javascript/javascript1/week2/lesson-plan.md new file mode 100644 index 00000000..bf18fe3f --- /dev/null +++ b/legacy/javascript/javascript1/week2/lesson-plan.md @@ -0,0 +1,322 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Conditions + - [Code inspiration](#if-sentences) + - [Exercises](#if-sentences-1) +- Functions () + - General description - A function is a reusable piece of code. + - Function usage + - Arguments + - Function creation + - Parameters - Acts as placeholders + - Parameters vs arguments + - Return value - Variable can capture return value. + - Calling a function on something `Math.random` - calling the function random on Math + - [Code inspiration](#functions) + - [Code inspiration 2](#if-and-function) + - [Exercise](#function) +- Global vs local scope + - Lexical scope - inner functions contain the scope of parent functions even if the parent function has returned. + - [Code inspiration](#scope) + - [Exercise](#exercise-scope) +- For loop + - Try start off with giving the students the [Exercise string logger](#for-loop-1) and not explain for loop. Let them figure it out through the exercise (problem based learning) + - [Code inspiration](#for-loop) + - [Exercise string logger](#for-loop-1) + - [Exercise send emails](#send-emails) + +The students really struggle with the **return** value. What it means, how it is captured. What happens when nothing is returned etc. Try really hammering in this concept with lots of simple examples and exercises! Fx if a function is called get something. That means that something is returned from that function. + +Zoey Zou made a nice Notion lesson plan here: + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript1/week2/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### If sentences + +```js +const age = 14; + +// if-else statement, `age > 18` is called an expression +// `age > 18` is called a boolean expression +if (age > 18) { + console.log("Allowed"); +} else { + console.log("Denied"); +} + +if (age < 18) console.log("You're not old enough"); + +// Boolean operators +// && is called AND +// || is called OR +// ! is called NOT + +// Chained if statement +if (age > 0 && age < 13) { + console.log("You are a child"); +} else if (age >= 13 && age < 20) { + console.log("You are a teenager"); +} else if (age <= 0) { + console.log("You are an infant"); +} else { + console.log("You are an adult"); +} + +if (age < 18 || age === 18) { + // same as saying `age <= 18` + console.log("You are almost there"); +} + +// New example +const userRole = "guest"; +const isAdmin = userRole === "admin"; +const isLoggedIn = userRole !== "guest"; + +if (isAdmin) { + console.log("You are in charge"); +} else if (isLoggedIn) { + console.log("Welcome user"); +} else { + console.log("Welcome guest"); +} +``` + +### Functions + +```js +// usage +const randomNumber = Math.random(); +console.log(randomNumber); // logs out some number between 0 and 1 + +const maxNumber = Math.max(3, 5); // 3 and 5 are arguments +console.log(maxNumber); // logs out 5 + +// Creation +let todoItem = "Buy Groceries"; +console.log(todoItem); + +// Create the function +function checkItem() { + todoItem = todoItem + " - done"; +} + +// use the function by calling it using () +// If we dont call the function that code will NEVER EVER IN A MILLION YEARS run! +checkItem(); +console.log(todoItem); + +// a and b are called parameters. This function has two parameters +function sum(a, b) { + return a + b; +} + +// 5 and 10 are called arguments now when called in a function +// Arguments are "passed" to the function: "we pass `4` and `5` to the function sum +const returnedSum = sum(5, 10); +console.log(returnedSum); // logs 15 + +function multiply(a, b) { + // the value of a will be substituted with the value of 10! + // the value of b will be substituted with the value of 4! + console.log(a, b); // logs out 10 4 + return a * b; +} + +multiply(10, 4); + +// Return value +function sum(a, b) { + return a + b; +} +const returnedSum = sum(5, 10); // the variable returnedSum captures the return value from calling the function! +console.log(returnedSum); // logs 15 + +// If we dont return, we cannot capture the returned value! +function sumNoReturn(a, b) { + a + b; // no return! +} +const returnedSum = sum(5, 10); +console.log(returnedSum); // logs undefined + +// Calling a method on something +let s = " this is a string "; +// calling a function (trim) on the string s +s.trim(); // -> "this is a string" +``` + +### If and function + +```js +function isAuthenticated(userRole) { + // userRole here is different from `var userRole` + const isAdmin = userRole === "admin"; + const isLoggedIn = userRole !== "guest"; + + if (isAdmin) { + return true; // if this is run, all other code after is ignored inside the function + } else if (isLoggedIn) { + return true; + } + + return false; +} + +console.log(userRole); +console.log(isAuthenticated(userRole)); +console.log(isAuthenticated("admin")); +``` + +### Scope + +```js +// Global scope +const globalScopeVariable = "globalScopeVariable"; +function outerFunction() { + // function scope A + console.log(globalScopeVariable); + const outerFunctionScope = "outerFunctionScope"; + + function innerFunction() { + // Function scope B + console.log(globalScopeVariable); + console.log(outerFunctionScope); + + const innerFunctionScope = "innerFunctionScope"; + } + + console.log(innerFunctionScope); + + innerFunction(); +} + +outerFunction(); + +if (true) { + const blockScope = "blockScope"; +} + +console.log(blockScope); +``` + +### For loop + +```js +function spam(number) { + let repeated = ""; // Define the simplest case + + // Think about the condition. How many times do we want to repeat + for (let i = 0; i < number; i++) { + repeated = repeated + "hue"; // What is our update rule + } + + return repeated; // Return in the end +} + +console.log(spam(1)); + +// Test cases. I always do "empty" (here zero), once, and then a bunch of times +console.log(spam(0) === ""); +console.log(spam(1) === "hue"); +console.log(spam(6) === "huehuehuehuehuehue"); +console.log(spam(14) === "huehuehuehuehuehuehuehuehuehuehuehuehuehue"); +``` + +## Exercises + +### `if` sentences + +Create an `if` sentence that will give a user a message based on his bank account balance. Use the `balance` variable and change that. + +- If a user has 0 or less balance log out 'Please deposit some money!' +- If a user has more than 0 and at most 1000 log out 'Your balance is looking okay' +- If a user has more than 1000 and at most 3000 log out 'Your balance is looking good' +- If a user has more than 3000 and at most 10000 log out 'Your balance is fantastic' +- If a user has more than 10000 log out 'Your balance is AMAZING!' + +```js +const balance = 1000; +``` + +### Function + +Create a function called `getCircleArea`. It should have the `radius` of the circle as parameter and return the circle area. What happens if we dont return anything in the function? + +Create a function called `celciusToFahreneit` it should have a parameter called `celcius`. It should return the temperature in fahrenheit. + +Try call the function and check with google if the function returns the right value. + +### Exercise: Scope + +With pen and paper write what is logged out. + +```js +const global = "global"; +function scopeTest() { + console.log(functionScope); + console.log(global); + const functionScope = "functionScope"; + + function tester() { + console.log(global); + + const testerVariable = "testerVariable"; + } + + tester(); + console.log(testerVariable); +} + +scopeTest(); +``` + +### `for` loop + +#### Simple `for` loop + +Create a for loop that logs out the numbers from 74 - 98 + +#### `for` loop in a function + +Create a function that has two parameters: `stringToLog` and `numberOfTimesToLog` + +When calling the function it should log out the `stringToLog` the amount of times specified in `numberOfTimesToLog`. Use a for loop. + +```js +logString("hello", 3); +// hello +// hello +// hello +``` + +### Send emails + +Imagine we work at a company. Peter from the HR department wants us to send out a couple of emails to some recepients. The only problem is that he sent us the email in a weird format: `benjamin@gmail.com|peter@gmail.com|hans@gmail.com|ahmad@gmail.com|sana@gmail.com|virgeen@gmail.com|mohammed@gmail.com` + +Use the `sendEmailTo` function to send an email to all the recepients that we got from Peter. + +_Hint_ use the `.split` method and look up `iterating an array js for loop` on google. + +```js +// This function emulates sending emails to receipients +function sendEmailTo(recepient) { + // But really it only logs out a string + console.log("email sent to " + recepient); +} +``` diff --git a/legacy/javascript/javascript1/week2/preparation.md b/legacy/javascript/javascript1/week2/preparation.md new file mode 100644 index 00000000..2cc91fcc --- /dev/null +++ b/legacy/javascript/javascript1/week2/preparation.md @@ -0,0 +1,16 @@ +# Preparation for the second lecture + +- [Functions](http://javascript.info/function-basics) (15 min) +- [Conditions](http://javascript.info/ifelse) (10 min) +- Read from [For loops](http://javascript.info/while-for#the-for-loop) to and with [for loops continue](http://javascript.info/while-for#continue) (10 min) + +![Cosy rain](https://media.giphy.com/media/k28n1OPefBEeQ/giphy.gif) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Javascript conditions](https://www.loom.com/share/6affdcf03b4f43ceac56424ff04975e5) +- [Javascript loops](https://www.loom.com/share/4663f4fa5c784fff9ab67f2b91166c9b) +- [Javascript function](https://www.loom.com/share/61fadf80906d481497e3b40273897d20) +- [Javascript scope](https://www.loom.com/share/b8874230724040598860e8f059d8e369) diff --git a/legacy/javascript/javascript1/week3/README.md b/legacy/javascript/javascript1/week3/README.md new file mode 100644 index 00000000..c1cad0cd --- /dev/null +++ b/legacy/javascript/javascript1/week3/README.md @@ -0,0 +1,77 @@ +# JavaScript 1, Week 3 + +## Learning goals + +- [ ] Arrays continued: pop, push, shift, unshift, length, indexOf. No map, filter or reduce +- [ ] [Objects](#objects): Access properties two ways, key value. Array of objects. Use real world examples (users, products, houselistings) +- [ ] [Call stack](#call-stack) + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](homework.md) +- [Lesson plan](lesson-plan.md) + +## Objects + +Variables that are objects also contain a list of things, but instead of them being in some specific order, they can be assigned to words, called "keys". Instead of "elements" the things that are inside objects are called "properties". + +```js +let obj = { name: "John", age: 24 }; +``` + +This object has two properties: `name` and `age`. The "value" of the property `name` is the string `'John'`. The "value" of the property `age` is the number `24`. + +When accessing object properties, you can use the dot-notation: `obj.name` or the bracket-notation: `obj["name"]`. Note that the latter looks a lot like the way to access array elements. However, here what's inside the bracket (called "key" for objects, instead of "index") must be a string. + +```js +console.log(obj.name); // -> 'John' +console.log(obj["name"]); // -> 'John' +``` + +Just like with arrays, you can also use a variable to access properties, as long as these variables are strings. In this case you cannot use the dot-notation! + +```js +var ageKey = "age"; +console.log(obj[ageKey]); // -> 24 +``` + +Remember that there is a very big difference between `obj[name]` and `obj["name"]`. + +> Note: +> +> Thinking back of arrays, the length of an array can be retrieved by `arr.length`. So as mentioned before, arrays are just like other JavaScript objects. You could even write `arr['length']` to access the `length` property of the array. JavaScript will look: is what we put between brackets a number? Then it is an index and we'll look up the correct array element. If it's a string, it's a key and we will look up the corresponding property. + +## Call stack + +When a function is called it is pushed to the call stack. +When a function is finished the function gets shifted from the call stack. + +Visualize here: + +```js +function pickUpKids() { + // pickUpKids function gets pushed to call stack WHEN CALLED! + console.log("Kids picked up"); + // pickUpKids function now gets shifted from the call stack! +} + +function buyCarrots() {} + +function buyVegetables() { + buyCarrots(); +} + +function getGroceries() { + // buyVegetables pushed to call stack + buyVegetables(); + // buyVegetables shifted from call stack +} + +function doWork() {} + +pickUpKids(); +// getGroceries pushed to call stack +getGroceries(); +doWork(); +``` diff --git a/legacy/javascript/javascript1/week3/homework.md b/legacy/javascript/javascript1/week3/homework.md new file mode 100644 index 00000000..676f5f1b --- /dev/null +++ b/legacy/javascript/javascript1/week3/homework.md @@ -0,0 +1,257 @@ +# Homework + +## Why should I even do this homework? + +Array's has lots of helper functions, that is used all the time when developing js applications. It is super helpful to be able to **manipulate an array** like **removing elements** or **adding elements** at specific indexes. Another helpful function of arrays is to know **where a specific item is** in the array. + +Objects can be used for **representing data** and it can **help structure your code**. An object can fx represent a user that has a firstname, surname, profile picture and a list of friends. It is constantly used in javascript and **essential to learning the language**. + +If you struggle to do this weeks homework there are a couple of things to do: + +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=idfGCqAItGI), [part 2](https://www.youtube.com/watch?v=cNRFY0RW5L8) +- Read up on objects and arrays [here](readme.md#objects) + +## Javascript warmup + +Its warmup time! + +![Warm up](https://media.giphy.com/media/Cfw4WE617UgUw/giphy.gif) + +### Item array removal + +Remove the item in `names` that is equal to `nameToRemove` + +Copy the code below to your homework + +```js +const names = [ + "Peter", + "Ahmad", + "Yana", + "kristina", + "Rasmus", + "Samuel", + "katrine", + "Tala", +]; +const nameToRemove = "Ahmad"; + +// Write some code here + +// Code done + +console.log(names); // ['Peter', 'Yana', 'kristina', 'Rasmus', 'Samuel', 'katrine', 'Tala'] +``` + +### When will we be there?? + +Write a function where you speficy your speed in `km/h` and how far you have to go in `km`. The function has to return the time it will take to arrive at your destination. The time should be formatted like this: `3 hours and 34 minutes`. + +_Hint:_ For formatting your best friend is Google! + +```js +const travelInformation = { + speed: 50, + destinationDistance: 432, +}; + +const travelTime = notThisFunctionName(travelInformation); +console.log(travelTime); // 8 hours and 38 minutes +``` + +### Series duration of my life + +```js +const seriesDurations = [ + { + title: "Game of thrones", + days: 3, + hours: 1, + minutes: 0, + }, + { + title: "Sopranos", + days: 3, + hours: 14, + minutes: 0, + }, + { + title: "The Wire", + days: 2, + hours: 12, + minutes: 0, + }, +]; +``` + +How much time of my life have i been watching series on tv? Lets find out! Calculate **how much time a tv series** have taken as a **percentage of an average lifespan** of 80 years. + +Firstly change the `seriesDurations` array found above to include your favorite series. Find the duration of a series here: + +Create a function that logs out the following text using the `seriesDurations` array: + +```text +Game of thrones took 0.01% of my life +Sopranos took 0.012% of my life +The Wire took 0.007% of my life + +In total that is 0.2% of my life +``` + +Here is an example: + +```js +const seriesDurations = [ + { + title: "Game of thrones", + days: 3, + hours: 1, + minutes: 0, + }, +]; + +function logOutSeriesText() { + // write code here +} + +logOutSeriesText(); // logs out the text found above +``` + +## Smart-ease - Back to the basics! + +Smart-ease is going back to the basics. As always Smart-ease starts by helping people fix their problems. So lets venture out into the real world and see what we find: + +### NOnoN0nOYes (Note taking app) + +> You are sitting at a meeting. A person is presenting some interesting thought that you want to write down. You check your bag, but realise that you forgot to bring your notepad. Hmm you check the internet for an online solution. But you need to signup for them all, too bad... Maybe this could be a worthwhile problem so solve. Lets create a simple and easy to use notepad 📝 + +#### Save a note + +The first thing we will create is the functionality to **save a note**: +Create a variable called `notes` and assign it to an empty array. +Create a function called `saveNote`. The `saveNote` has two parameters: + +- `content` parameter is a string. +- `id` is a number. + +The `saveNote` function should push an object to the `notes` array with the keys `content` and `id`. Here is an example + +```js +const notes = []; + +function saveNote(content, id) { + // write some code here +} + +saveNote("Pick up groceries", 1); +saveNote("Do laundry", 2); + +console.log(notes); // [{content: 'Pick up groceries', id: 1}, {content: 'Do laundry', id: 2}] +``` + +#### Get a note + +**Now a user can save a note**, but what if a user wants to **see a specific note**, but only remembers the id? Lets create that functionality for him: +Create a function called `getNote`. The function has one parameter called `id`. When calling this function with an id it should return the relevant note object that corresponds to the id. If no id is specified or if the id is not a number, log out an error string. +Hint: Use a for loop. + +```js +function getNote(id) { + // your code here +} + +const firstNote = getNote(1); +console.log(firstNote); // {content: 'Pick up groceries', id: 1} +``` + +#### Log out notes + +Now a user can both save and get a note. What if the user just wants to **read all his notes?** Lets also create that functionality: +Create a function `logOutNotesFormatted`. When calling the function it should log this string out for every note: +"The note with id: 1, has the following note text: "some example note"." + +```js +function logOutNotesFormatted() { + // your code here +} + +logOutNotesFormatted(); // should log out the text below + +// The note with id: 1, has the following note text: Pick up groceries +// The note with id: 2, has the following note text: Do laundry +``` + +#### Unique feature + +Suddenly you get this great idea for making the note app even better! + +Come up with a unique feature **you think would make this app better.** Write down the idea and see if you can implement it. If not dont worry :) If it is too hard to implement try and ask in the slack channel :) + +Try an **interactive version 💻 of your code** [here](https://codepen.io/dalsHughes/pen/poJGejX). Remember to insert your code in the top of the codepen :) + +### CactusIO-interactive (Smart phone usage app) _optional_ + +> After a long day you come home to relax. The first thing you do is find your phone and start watching some youtube. Then check facebook, and then reading some news. Suddently a hour has passed. What happened to all that time you think to yourself. Maybe we can create some program to help with this problem! What if we could help users manage their smart phone usage? + +Its going to work like this: A user can add smartphone activities. Then he can see a status on how his smartphone usage is going. + +#### Adding an activity + +Lets create the first part of the functionality that is **adding activities.** + +Create a variable called `activities` that stores all activities of the day. What type of variable would you think would make sense? +Create a function called `addActivity`. It should have three parameters: `date`, `activity` and `duration`. The `date` should be a string, the `activity` a string and the `duration` a number. To save the activity push an object that contains the date, the activity and the duration to the activities variable. + +Now a user can add an activity by writing: + +```js +addActivity("23/7-18", "Youtube", 30); + +/* +activities should now look like this +[{ + date: '23/7-18', + activity: 'Youtube', + duration: 30, +}] +*/ +``` + +Just adding activities wont help the user very much, we need to **add some functionality** to show the user how **his smart phone usage is going.** + +#### Show my status + +Create a function called `showStatus`. This function should use the activities variable and return a string saying the following: +"You have added 3 activities. They amount to 78 min. of usage" + +```js +showStatus(activities); // will log out this "You have added 3 activities. They amount to 78 min. of usage" +``` + +Now what happens if we call `showStatus` and `activities` is empty? We need to take that into consideration: If `activities` is empty log out a string that says: "Add some activities before calling showStatus" + +#### Usage limit + +A user asks us if it is possible to **set a limit for his smartphone usage.** "Off course it is" we promptly reply! +We need to store that limit somewhere, but where and what type should this be? +So how should it work? When `showStatus` is called and the users usage is above the limit he set. Log out the following string: "You have reached your limit, no more smartphoning for you!" + +Try and add some activities and call `showStatus` + +#### Extra feature + +Come up with one feature you think would be helpful for this program. + +Optional + +- Lets improve the `addActivity`, so that we dont need to specify the date, but the function automatically figures out what the date is. Check out this link: +- Improve the `showStatus` function by only showing the number of actitivies for that specific day. +- Create a function for calculating the activity a user has spent the most time on. + +## Bonus homework + +The bonus homework for this week (for those of you want an extra challenge) do the following: + +- +- +- diff --git a/legacy/javascript/javascript1/week3/lesson-plan.md b/legacy/javascript/javascript1/week3/lesson-plan.md new file mode 100644 index 00000000..48574893 --- /dev/null +++ b/legacy/javascript/javascript1/week3/lesson-plan.md @@ -0,0 +1,225 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Objects + - Access properties two ways: .keyname and [keyname] + - Key - value + - Array of objects + - Let the students explain iterating an array of objects + - Use real world examples (users, products, houselistings) + - [Code inspiration](#inspiration-objects) +- Arrays continued + - `Pop`, `push`, `shift`, `unshift` + - Let students investigate `shift` and `unshift` + - The longest of the word pairs unshift, push makes the array longer! + - `includes` - Let the students investigate this + - Looping through an array + - No `forEach`, `map`, `filter` or `reduce` + - [Code inspiration](#inspiration-arrays) +- [Codewar exercises](#codewar-exercises) +- Call stack + - Used for figuring code flow in js! Where does my function go when it is done here. + - + - [Code inspiration](#inspiration-call-stack) + - [Exercise](#exercise-call-stack) + +Zoey Zou has created a nice lesson plan here: + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript1/week3/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### Inspiration: Objects + +```js +const user = { + name: "Emil", + age: 25, + role: "Teacher", + classes: ["Javascript 1", "Javascript 2"], + hobbies: { + favourite: "computers", + sports: "running to class", + }, +}; + +console.log(user); + +// Add new property +user.lastname = "Bay"; + +console.log(user); + +delete user.lastname; + +console.log(user); + +console.log(user.hobbies.favourite); +console.log({ favourite: "computers", sports: "running to class" }.favourite); + +function graduatedClass(student, className) { + if (student.classes.includes(className)) return "Error"; + + student.classes.push(className); +} + +console.log(user); +graduatedClass(user, "HTML"); +console.log(user); +graduatedClass(user, "HTML"); + +const newUser = { + name: "", + age: "", +}; + +var students = []; +function addStudent(student) { + if (student.name == null && typeof student.name === "string") return "Error"; + if (student.age == null) return "Error"; + + students.push(student); +} + +addStudent({ name: "Rahim" }); +console.log(students); + +// ways to access properties + +user.name; +user["name"]; + +const prop = "name"; +user[prop]; + +user["name"] = "Maria"; +user[0] = "Hello world"; + +console.log(user); +``` + +### Inspiration: Arrays + +```js +// one way to have multiple data about a student is with an array +// for each piece of data +const studentNames = ["Fowad", "Emil", "Zoey"]; + +const studentAges = [32, 25, 28]; + +console.log(studentNames); +console.log(studentAges); + +// Another, more ergonomic way is with objects +const students = [ + { name: "Fowad", age: 32 }, + { name: "Emil", age: 25, teacher: true }, + { name: "Zoey", age: 28 }, +]; + +console.log(students); +// We can access properties with `.` +console.log(students[0].name); + +for (let i = 0; i < students.length; i++) { + const currentStudent = students[i]; + console.log(typeof currentStudent); + console.log(currentStudent.name); +} + +students.push({ name: "Ahmad", age: 27 }); + +// One object that we have seen before +const Math = { + random: function () { + return 42; + }, + round: function (x) {}, +}; +``` + +### Inspiration: Call stack + +```js +function a() { + // add to call stack + b(); + + return "a"; + // remove from call stack +} + +function b() { + //throw 'hello'; + return "b"; +} + +a(); +``` + +## Exercises + +## Exercise: Call stack + +Draw the call stack array at every draw point + +```js +function bookPlaneTickets() { + // draw + console.log("Plane tickets booked"); + requestVacationDays(); + // draw +} + +function bookHotel() { + console.log("Hotel booked"); + // draw + planItinerary(); + // draw +} + +function requestVacationDays() { + // draw + console.log("Vacation days requested"); + // draw +} + +function planItinerary() { + console.log("Itinerary done"); + // draw +} + +function planTrip() { + bookPlaneTickets(); + // draw + bookHotel(); + // draw + console.log("Trip planned"); +} +// draw +planTrip(); +// draw +``` + +### Codewar exercises + +- [CodeWars - Add property to every object](https://www.codewars.com/kata/add-property-to-every-object-in-array/train/javascript) +- [CodeWars - Color Association](https://www.codewars.com/kata/colour-association/train/javascript) +- [CodeWars - Unfinished loop](https://www.codewars.com/kata/unfinished-loop-bug-fixing-number-1/train/javascript) +- [CodeWars - Is this my tail](https://www.codewars.com/kata/is-this-my-tail/train/javascript) +- [CodeWars - Longest word](https://www.codewars.com/kata/squash-the-bugs/train/javascript) +- [CodeWars - Who's Online](https://www.codewars.com/kata/whos-online/train/javascript) diff --git a/legacy/javascript/javascript1/week3/preparation.md b/legacy/javascript/javascript1/week3/preparation.md new file mode 100644 index 00000000..fe659f19 --- /dev/null +++ b/legacy/javascript/javascript1/week3/preparation.md @@ -0,0 +1,12 @@ +# Preparation + +- [Array](http://javascript.info/array) up until and with [internals](http://javascript.info/array#internals) (10 min) +- [Objects](http://javascript.info/object) (15 min) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Javascript callstack](https://www.loom.com/share/d09d10ea84da45e2bddd9ffa05396ed3) +- [Javascript objects](https://www.loom.com/share/312a9ec3e2ed42beb6017f4a4167bd46) +- [Javascript array](https://www.loom.com/share/06cdd6a4a3834cb696db8dd941ea6550) diff --git a/legacy/javascript/javascript1/week4/README.md b/legacy/javascript/javascript1/week4/README.md new file mode 100644 index 00000000..7f98ae87 --- /dev/null +++ b/legacy/javascript/javascript1/week4/README.md @@ -0,0 +1,20 @@ +# JavaScript 1, Week 4 + +## Learning goals + +- [ ] Recap of js basics + - [ ] Variables + - [ ] Types + - [ ] Conditionals + - [ ] Functions + - [ ] For loop + - [ ] scope + - [ ] Arrays + - [ ] Objects +- [ ] Solving problems + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](homework.md) +- [Lesson plan](lesson-plan.md) diff --git a/legacy/javascript/javascript1/week4/assets/credit-card-formatter.gif b/legacy/javascript/javascript1/week4/assets/credit-card-formatter.gif new file mode 100644 index 00000000..9a481ce1 Binary files /dev/null and b/legacy/javascript/javascript1/week4/assets/credit-card-formatter.gif differ diff --git a/legacy/javascript/javascript1/week4/homework.md b/legacy/javascript/javascript1/week4/homework.md new file mode 100644 index 00000000..3cba2c4c --- /dev/null +++ b/legacy/javascript/javascript1/week4/homework.md @@ -0,0 +1,64 @@ +# Homework + +## Why should I even do this homework? + +Understanding the basics of Javascript is SUPER important. Therefore this homework focuses on repeating the basics to really have a solid understanding of this. + +If you struggle to do this weeks homework there are a couple of things to do: + +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=Mo54btMPN7Q), [part 2](https://www.youtube.com/watch?v=mSUAoual5sE), [part 3](https://www.youtube.com/watch?v=uq3NnTtXqsU) +- Go through the last 3 weeks readme files. [Week 1](../week1/readme.md#variables), [week 2](../week2/readme.md#recap-logical-operators), [week 3](../week3/readme.md#objects) + +## Finishing class exercises + +Finish the exercises from the class! + +## Codewars + +Complete these Katas in codewars: + +- [7kyu Vowel Count](https://www.codewars.com/kata/54ff3102c1bad923760001f3) +- [7kyu Digit\*Digit](https://www.codewars.com/kata/546e2562b03326a88e000020) +- [7kyu Highest and Lowest](https://www.codewars.com/kata/554b4ac871d6813a03000035) + +Post a link to your codewars profile when you sumbmit the homework! + +## Voice assistant + +You will be building a voice assistant 🤖! Is that even possible in javascript, YES! EVERYTHING is possible in javascript 💪 (nearly) + +Create a function called `getReply(command)`. The function should return a response that corresponds to the command! + +These are the commands you should be able to give the voice assistant: + +- `Hello my name is Benjamin` - Should save the name benjamin. and respond with "nice to meet you Benjamin". What if someone writes this twice? +- `What is my name` - should respond with the name of the person. What if the name has not yet been mentioned? +- `Add fishing to my todo` - Should respond with "fishing added to your todo". Should add fishing to a list of todos +- `Add singing in the shower to my todo` - Should add singing in the shower to a list of todos +- `Remove fishing from my todo` - Should respond with "Removed fishing from your todo" +- `What is on my todo?` - should respond with the todos. Fx you have 2 todos - fishing and singing in the shower +- `What day is it today?` - Should respond with the date in a human readable format. E.g. if today is 30/8/2019 then it should respond with 30. of August 2019 +- Should be able to do simple math. fx `what is 3 + 3` should respond with 6. Or `what is 4 * 12` should respond with 48 +- `Set a timer for 4 minutes` - Should respond with "Timer set for 4 minutes". When 4 minutes is up: "Timer done". How do we set a timer in js? Google is your friend here! +- Add one or more command to your voice assistant + +Here is an example of usage: + +```js +console.log(getReply("Hello my name is Benjamin")); // "Nice to meet you benjamin" +console.log(getReply("What is my name?")); // "Your name is Benjamin" +console.log(getReply("Add fishing to my todo")); // "fishing added to your todo" +``` + +When you are done, add your `getReply` function and global variables to this CodeSandbox and try the voice command out with both commands and speech! + +---> <## Homework checklist + +Go over your homework one last time: + +- [ ] Does every file run without errors and with the correct results? +- [ ] Have you used `const` and `let` and avoided `var`? +- [ ] Do the variable, function and argument names you created follow the [Naming Conventions](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/naming_conventions.md)? +- [ ] Is your code well-formatted (see [Code Formatting](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/code_formatting.md))? + +Please, fill out the [survey](https://forms.gle/QKTWFbUTkzgdcKiMA) about the module to give feedback to the staff, teachers and homework helpers. diff --git a/legacy/javascript/javascript1/week4/lesson-plan.md b/legacy/javascript/javascript1/week4/lesson-plan.md new file mode 100644 index 00000000..c725edb5 --- /dev/null +++ b/legacy/javascript/javascript1/week4/lesson-plan.md @@ -0,0 +1,241 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Recap of js basics + - Variables + - Types + - Conditionals + - Functions + - For loop + - scope + - Arrays + - Objects + - Ask the students what they need to get repeated. Or figure it out by doing some code example. +- Solving problems + - +- [Code inspiration](#fibonacci-sequence) +- [Exercises](#exercises) + +This class is about getting the basics hammered down. We have had a lot of students who think the js module is too difficult. That is why this class is here, too ease the steepness of the js learning curve. + +Focus on + +- Recapping what the students struggle with +- Letting the students learn a framework for solving problems +- Lots and lost of exercises 💪 + +## Typical misconceptions + +- Difference between return and console.log +- What console.log does and what it is made for + +## Code inspiration + +### Fibonacci Sequence + +Given a specific number in the fibonacci sequence return the fibonachi number. + +```js +// 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 + +fib(5); // 3 +fib(10); // 34 +``` + +Try not to just solve the problem, but explain what you are doing and thinking! + +Try using this as a framework for solving the problem: + +## Exercises + +### Fizz buzz + +This is a classic programming task. + +Create a function that prints the numbers from 1 to 100. But for multiples of three print `Fizz` instead of the number and for the multiples of five print `Buzz`. For numbers which are multiples of both three and five print `FizzBuzz`. + +When that works. Make the two number for multiples into parameters. So it can be called like this: + +`fizzBuzz(4, 12);` + +### Build a sentiment analyzer + +A sentiment analyzer is some functionality that figures out how positive/negative a sentence is. + +Fx the sentence `I am mega super awesome happy" Should have a high score +The sentence "I hate doing boring stuff" should have a low score. + +Create a function that takes a string as a parameter. calling the function will return an object with `score`, `positiveWords` and `negativeWords`. You decide how the score should be implemented and what words are negative and positive. + +Here is an example of using the function: + +```js +const sentimentScoreObject = getSentimentScore("I am mega super awesome happy"); + +console.log(sentimentScoreObject); +/* +{ + score: 3, + positiveWords: ['happy', 'awesome', 'super'], + negativeWords: [], +} +*/ +``` + +### Credit card number formatter + +This is a very real world example of a problem i got at my previous work. I was tasked to implement one of the smart credit card input fields, where the credit card numbers are seperated with a space. Fx inputting 123456789 would show 1234 5678 9. + +![Credit card formatter](assets/credit-card-formatter.gif) + +Create a function that takes a number as parameter. The function should return the following object: + +```js +const formattedCreditCardObject = formatCreditCardNumber(123456789); +console.log(formattedCreditCardObject); +/* +{ + original: 123456789, + formatted: "1234 5678 9", +} +*/ +``` + +Thins to consider: + +- What should happen if the function is called with an argument that is not a number? + +### Character frequencies + +Write a function that counts the frequency of characters in a string: + +```js +console.log(getCharacterFrequencies("happy")); +/* +{ + characters: [ + { + character: 'a', + count: 1 + }, + { + character: 'h', + count: 1 + }, + { + character: 'p', + count: 2 + }, + { + character: 'y', + count: 1 + } + ], length: 5 +} +*/ +``` + +### Palindromic substring + +Write a function that finds the longest palindromic substring of a given string. + +### Credit card info + +Similar to the format credit card number, now we need to identify the credit card type. + +```js +console.log(getCardInfo(4781321334789876)); // 'visa' +``` + +How can we find out what rules there are for credit cards? Programmers best friend is always available :) + +### Tic Tac Toe + +Draw a tic tac toe game. + +Write a function called `getRenderedGame(position)` that takes `position` as parameter. `position` is a two dimensional array that shows the position of a game. + +Here is an example: + +With the following two dimensional array + +```js +const position = [ + ["x", "o", " "], + [" ", "o", " "], + [" ", "o", "x"], +]; + +const renderedGame = getRenderedGame(position); +console.log(renderedGame); + +/* + ******* + *x*o* * + * *o* * + * *o*x* + ******* + */ +``` + +Create a new function called `getGameinfo(position)`. Calling the function should return an object with `winner` key, `loser` key, `hasEnded` and `nextPlayer`. + +EXAMPLES!!!! + +```js +const position = [ + ["x", "o", " "], + [" ", "o", " "], + [" ", "o", "x"], +]; + +const gameInfo = getGameinfo(position); +console.log(gameInfo); + +/* +{ + winner: 'o', + loser: 'x', + hasEnded: true +} +*/ +``` + +```js +const position = [ + ["x", "o", " "], + [" ", " ", " "], + [" ", "o", "x"], +]; + +const gameInfo = getGameinfo(position); +console.log(gameInfo); + +/* +{ + winner: undefined, + loser: undefined, + hasEnded: false +} +*/ +``` + +Try and make the game playable! _optional_ + +### Conway's game of life _optional_ + + + +And finally, feel free to fill out the form to help us improve the module and the exercises. The [survey](https://forms.gle/irckYkBdvSb6Tdz57) here is addressed to the teacher and teacher assistant, while this [survey](https://forms.gle/ttdDLcSJ88ksz6xe7) is for homework helpers. diff --git a/legacy/javascript/javascript1/week4/preparation.md b/legacy/javascript/javascript1/week4/preparation.md new file mode 100644 index 00000000..ea08b1b4 --- /dev/null +++ b/legacy/javascript/javascript1/week4/preparation.md @@ -0,0 +1,9 @@ +# Preparation + +Go through the learning goals of week 1, week 2 and week 3 of javascript. Make sure you understand the concepts! + +- [Week 1 learning goals](../week1/readme.md) +- [Week 2 learning goals](../week2/readme.md) +- [Week 3 learning goals](../week3/readme.md) + +_Please go through the material and come to class prepared!_ diff --git a/legacy/javascript/javascript2/README.md b/legacy/javascript/javascript2/README.md new file mode 100644 index 00000000..ae293401 --- /dev/null +++ b/legacy/javascript/javascript2/README.md @@ -0,0 +1,9 @@ +# JavaScript 2 + +Here you can find course content and homework for the JavaScript 2 module. + +| Week | Topic | Preparation | Homework | Lesson plan | +| ---- | ----------------------------------------------------------------- | ----------------------------------- | ---------------------------------------- | ----------------------------------- | +| 1. | Browser environment; DOM manipulation; DOM event listeners | [Preparation](week1/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week1/lesson-plan.md) | +| 2. | Array functions; [Arrow function](week2/readme.md#arrow-function) | [Preparation](week2/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week2/lesson-plan.md) | +| 3. | Callback function; Asyncronicity; Scope | [Preparation](week3/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week3/lesson-plan.md) | diff --git a/legacy/javascript/javascript2/week1/README.md b/legacy/javascript/javascript2/week1/README.md new file mode 100644 index 00000000..0fe88bc5 --- /dev/null +++ b/legacy/javascript/javascript2/week1/README.md @@ -0,0 +1,167 @@ +# JavaScript 2, Week 1 + +## Learning goals + +Browser environment + +- [ ] HTML vs CSS vs JS +- [ ] Client vs server +- [ ] Where is the script tag being loaded + +DOM + +- [ ] What is it and what do developers use the DOM for? +- [ ] DOM manipulation + - [ ] Get elements + - [ ] Insert elements + - [ ] Element manipulation (style, innerHTML, text) + - [ ] Window object + - [ ] Document object + +Event listeners + +- [ ] Document onload +- [ ] Click, submit, change, input - Focus on usage + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) + +## HTML interaction + +Interacting with the HTML DOM is done through the document object in the browser. With the document object we can get html elements and change them. + +For the next js part we use this html. + +```html + + +

Javascript week 3

+
+
+ + + +``` + +```js +// use the querySelector to select elements just like in css +const testIdElement = document.querySelector("#test-id"); +console.log(testIdElement); // logs the html element with id "test-id" + +// Change the inner html of the test-id element +testIdElement.innerHTML = "test"; +// Change the background-color of the test-id element. Inline css changes is done via the style attribute on the element +testIdElement.style.backgroundColor = "blue"; + +// It is also possible to create html elements +// Create a div element +const div = document.createElement("div"); +// Change its inner html +div.innerHTML = "We created this div!!!"; + +// Lest append it to the div with the class queue +const queueDiv = document.querySelector(".queue"); +queueDiv.appendChild(div); +``` + +## Code Commenting + +First the straightforward part: how do we place comments in our code? + +### HTML + +[W3Schools](https://www.w3schools.com/html/html_comments.asp) +Comments + +```html + + + +``` + +### CSS + +[MDN on CSS comments](https://developer.mozilla.org/en-US/docs/Web/CSS/Comments) + +```css +/* Comment */ + +/* +A comment +which stretches +over several +lines +*/ +``` + +### JavaScript + +Single line comments + +```js +// Change heading: +document.getElementById("myH").innerHTML = "My First Page"; +``` + +Single line comments at end of the line: + +```js +const x = 5; // Declare x, give it the value of 5 +``` + +Writing js documentation: [JSDoc](http://usejsdoc.org/) + +### When to comment? + +Now for the hard part: when to comment? When you work for different companies, you will see different styles. Embrace something you like, and then learn to let go. Google on "when to comment code?" and you'll find a big bunch of different opinions. + +The general concept is, however, that it is there to help make the code more easy to understand. Note, however, that comments can also make code more difficult to understand when not applied properly. + +## Events + +Events in JavaScript are things like: +A timer has just finished, a user clicked a button, our page has loaded, +someone types into an input element or we have just gotten some data from a server. +When these events happen, we usually want to add some functionality. +Fx when a user clicks the like button (event), we want to increment the like counter and color the like button blue. +Or when someone clicks "Close cookies" (event) we want to remove the cookie div. + +Lets first try to create some js that waits for 2 seconds and the console.logs out "2 seconds has elapsed!" + +In JavaScript we use the word eventlistener to listen + +```javascript +setTimeout(function () { + console.log("2 seconds has elapsed!"); +}, 2000); + +// Cool, now lets make a function as a variable: +const fourSecondLog = function () { + console.log("4 seconds has elapsed!"); +}; + +setTimeout(fourSecondLog, 4000); +``` + +Now lets try and log out "button clicked!" when a button is clicked. + +To check if a button gets clicked we use a what is called an eventlistener. + +Imagine a person listening to the click of a button and everytime he hears a click he yells out "CLICKED". + +```javascript +const buttonElement = document.querySelector("button"); +buttonElement.addEventListener("click", function () { + console.log("Button clicked!"); +}); + +const buttonClicked = function () { + console.log("Button clicked as a variable!"); +}; +// Cool man! Lets try and add that function as a variable. +buttonElement.addEventListener("click", buttonClicked); +``` diff --git a/legacy/javascript/javascript2/week1/assets/carGenerator.js b/legacy/javascript/javascript2/week1/assets/carGenerator.js new file mode 100644 index 00000000..d2c613ef --- /dev/null +++ b/legacy/javascript/javascript2/week1/assets/carGenerator.js @@ -0,0 +1,42 @@ +/** + * Get random integer between two numbers, found here: https://stackoverflow.com/a/7228322 + * @param {integer} min - The min number + * @param {integer} max - The max number + * @returns {Number} Random number between min and max + */ +function randomIntFromInterval(min, max) { + return Math.floor(Math.random() * (max - min + 1) + min); +} + +/** + * Get an array with car objects with random color and speed + * @param {integer} numberOfCars - The number of cars + * @returns {array} Array containing the car objects + */ +function generateCars(numberOfCars) { + const cars = []; + + const carMakes = ["Honda", "BMW", "Fiat", "Skoda", "Volvo"]; + const carColors = [ + "lightgrey", + "lightcyan", + "lightyellow", + "lightgreen", + "lightcoral", + "lightpink", + ]; + + for (let i = 0; i < numberOfCars; i++) { + const car = {}; + const randomMakeIndex = randomIntFromInterval(0, carMakes.length - 1); + const randomColorIndex = randomIntFromInterval(0, carColors.length - 1); + + car.make = carMakes[randomMakeIndex]; + car.color = carColors[randomColorIndex]; + car.speed = randomIntFromInterval(0, 100); + + cars.push(car); + } + + return cars; +} diff --git a/legacy/javascript/javascript2/week1/assets/jsonformatter.PNG b/legacy/javascript/javascript2/week1/assets/jsonformatter.PNG new file mode 100644 index 00000000..28ae35c7 Binary files /dev/null and b/legacy/javascript/javascript2/week1/assets/jsonformatter.PNG differ diff --git a/legacy/javascript/javascript2/week1/lesson-plan.md b/legacy/javascript/javascript2/week1/lesson-plan.md new file mode 100644 index 00000000..33019c0c --- /dev/null +++ b/legacy/javascript/javascript2/week1/lesson-plan.md @@ -0,0 +1,160 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Browser environment + + - HTML vs CSS vs JS + - Client vs server + - Where is the script tag being loaded + - Code debugging + +- DOM + + - What is it and what do developers use the DOM for? + - DOM manipulation + - Get elements + - Create elements + - Insert elements - let students investigate `appendChild`, `insertBefore` + - Element manipulation (`style`, `innerHTML`, `text`) + - Document object + - [Code inspiration simple](#dom) + - [Code inspiration change logo](#change-logo) + - Exercises: [Favorite dishes](#favorite-dishes), [podcasts](#podcast), [image inserter](#image-inserter) + +- Event listeners - Focus on usage, no explanation of callback + - Click, mouseover, etc. Explain one and let students investigate another, like mouseover or mousemove + - Input Change, input + - Event parameter + - [Code inspiration](#eventlistener) + - [Exercise simple](#simple-eventlistener) + - [Exercise dark mode light mode](#light-mode-dark-mode) + +Really try in this class to do short teaching and lots of exercises! + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript2/week1/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### DOM + +```js +const eventElement = document.querySelector(".events"); +eventElement.innerHTML = "Soccer training Wednesday"; +eventElement.style.backgroundColor = "blue"; +console.log(eventElement); + +const div = document.createElement("div"); +div.innerHTML = "new div"; + +const body = document.querySelector("body"); +body.appendChild(div); +``` + +### Change logo + +```js +function changeLogo() { + let logo = document.getElementById("logo"); + logo.src = + "https://assets.fontsinuse.com/static/use-media-items/15/14246/full-2048x768/56fc6e1d/Yahoo_Logo.png?resolution=0"; + + let newTitle = document.createElement("h1"); + newTitle.innerHTML = "My new title"; //

My new title

+ + document.body.appendChild(newTitle); +} + +changeLogo(); +``` + +### Eventlistener + +```js +// change the event type +document.querySelector("button").addEventListener("click", function (event) { + // what does the event do? + console.log(event); + body.style.backgroundColor = "red"; +}); +``` + +## Exercises + +### Favorite dishes + +Create an array of strings with your favorite dishes. + +With js select a `ul` in the DOM. You add the `ul` to the html file. + +Now loop through each element of the favorite dishes array, you create an `li` element and set the text to the favorite dish. + +Then append the `li` element to the `ul` element. + +### Podcast + +```js +const podcasts = [ + { + name: "The mystery om of Johan Klausen Varbourg", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "Tips about dogs with small legs", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "You, me, we and us", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "Breakfast news - Dinner edition", + }, +]; +``` + +1. Create a `ul` +2. Loop through the podcasts +3. For every podast: + 1. Creat an `li` + 2. Create an `h1` element + 3. Change the innerHTML of the `h1` to equal the name of the current podcast + 4. Append the `h1` to the `li` + 5. Now add an image to the `li` with the `src` set to the `imageUrl`. But only if the `imageUrl` key exists on the object! +4. Append the `li` to the `ul` + +### Image inserter + +Create a function that has two parameters: `imageUrl` and `elementToAppendImageTo`. The function should create an img tag and set the `src` attribute of the img to the `imageUrl` parameter. The function should then append the `img` to the `elementToAppendImageTo` - html element. + +```js +// Should append a img tag to the body with the picture from 'https://picsum.photos/536/354' +notThisFunctionName( + "https://picsum.photos/536/354", + document.querySelector("body"), +); +``` + +### Simple eventlistener + +When clicking a button, change the text on the button to say "Button clicked" + +### Light mode dark mode + +Clicking a button should toggle the background color of the body and the text color in the page. +If the background is white and the text is black, then clicking the button will make the background dark and the text white and vice versa + +_Optional_ also make the text on the button change. diff --git a/legacy/javascript/javascript2/week1/optional-homework.md b/legacy/javascript/javascript2/week1/optional-homework.md new file mode 100644 index 00000000..5ecff9ad --- /dev/null +++ b/legacy/javascript/javascript2/week1/optional-homework.md @@ -0,0 +1,114 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +## So why this homework? + +**Interacting with the DOM is a crucial part** of building a website. If we cannot interact with the DOM then the javascript we write cannot change what we see in the browser. **Connecting javascript to the browser opens up a new world of possibilities** where only the imagination is the limiting factor. + +## Overview of homework + +## 1. Problem solving cardio + +Lets exercise our problem solving abilities! + +![mind exercise](https://media.giphy.com/media/l41m04gr7tRet7Uas/giphy.gif) + +### 1.1. codewars! + +Complete these Katas: + +- [8kyu Remove First and Last Character](https://www.codewars.com/kata/56bc28ad5bdaeb48760009b0) +- [8kyu Counting sheep...](https://www.codewars.com/kata/54edbc7200b811e956000556) +- [7kyu String ends with?](https://www.codewars.com/kata/51f2d1cafc9c0f745c00037d) +- [7kyu Odd or Even?](https://www.codewars.com/kata/5949481f86420f59480000e7) + +### 1.2. Find and count the Danish letters + +Find the individual number and the total number of Danish letters in a string. + +```js +const danishString = "Jeg har en blå bil"; +notThisFunctionName(danishString); // returns {total: 1, å: 1} + +const danishString2 = "Blå grød med røde bær"; +notThisFunctionName(danishString2); // returns {total: 4, æ: 1, ø: 2, å: 1} +``` + +## 2. Spirit animal name generator + +Let's create a page where **a user writes his name** in an input element. The user then clicks a button. The user will now **receive a spirit animal name**, fx Benjamin - The fullmoon wolf. + +### 2.1. Markup time! + +Create an input element, a button and a tag to display the spirit animal into. + +### 2.2. Setting up the events + +When the user clicks the button, get the name the user wrote in the input field. + +### 2.3. Spirit animal part + +Now we can get the users name, next step is to **add the spirit animal string** and display that the users name, a dash and then the spirit animal. Fx Name: Peter: Peter - The crying butterfly +For creating the spirit animal create an array with 10 string representing spirit animals. Now get a random item in the array that will represent the spirit animal. + +### 2.4. New spirit animal + +Now a user tells us that he wants a new spirit animal. No problem we say. Let's create functionality where a user can press a button and then get a new spirit animal. + +### 2.5. No input + +What if the user clicks the generate new spirit animal and there is no text in the input? + +### 2.6. Event types - _Optional and a little tricky_ + +Give the user the possibility to select **when the spirit animal should be created**. Should it be when the user clicks the button or when the user hovers the input field or when text is written in the input field? + +How can we give a user multiple options to select from in html? Maybe time for google! + +An example is: A user select that she only wants to generate a spirit animal when the input is hovered. That means that if the user writes her name in the input and clicks the button nothing happens. BUT when she hovers the input, NOW a new spirit animal is generated. + +![Spiritanimal](https://media.giphy.com/media/IMSq59ySKydYQ/giphy.gif) + +## 3. hyfBay - get the okay'est products here + +We have been **hired for a company** to do a SPA - Single Page App for them. It is a website where a user can search for products. The products can also be **filtered and sorted** based on what products the user wants to see. + +We are going to be building this website step by step, so have patience :) + +### 3.1. Lets get started! + +In the [homework/hyf-bay folder](homework/hyf-bay) there is a project template you should continue working on. So copy all the files into your `hyf-homework/javascript/javascript2/week1` folder. + +The `index.html` is very basic. It simply loads two javascript files and include some css. The two javascript files are `hyfBayHelpers.js` and the `main.js`. `hyfBayHelpers.js` contains a function (`getAvailableProducts`) that we can use to get an array of products. In the `main.js` we will be writing all our code! + +### 3.2. Requirements + +- Using the `getAvailableProducts` array we will render an html list of products +- The list should contain `title`, `price` and `rating` +- The list of products should be generated through calling a function called `renderProducts(products)` + +#### Example + +```js +const products = getAvailableProducts(); + +function renderProducts(products) { + // your code here +} + +renderProducts(products); // This should create the ul and the li's with the individual products details +``` + +So after calling the `renderProducts` function, the output should be like the output you can see here: + +#### So how can I do that? + +Here is a possible way to render the products + +1. In the html create a `ul` that will contain all the products. Select that `ul` using `document.querySelector` +2. For each `product` in the `products` array: + 1. [create an `li`](https://developer.mozilla.org/en-US/docs/Web/API/Document/createElement) + 2. Set the innerHTML of that `li` to the contain the title, price and rating + 3. [Append the `li`](https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild) to the `ul` diff --git a/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/hyfBayHelpers.js b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/hyfBayHelpers.js new file mode 100644 index 00000000..fd04c7b8 --- /dev/null +++ b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/hyfBayHelpers.js @@ -0,0 +1,72 @@ +/* DONT MODIFY ANY OF THIS CODE!!!*/ + +window.getAvailableProducts = function () { + function getRandomInt(min, max) { + min = Math.ceil(min); + max = Math.floor(max); + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + function getRandomItem(availableProductNames) { + return availableProductNames[ + getRandomInt(0, availableProductNames.length - 1) + ]; + } + + function getRandomProductname() { + const preWords = [ + "Used", + "Fantastic", + '"Used"', + "Broken", + "Beautiful", + "Wet", + "Green", + "Sloppy", + "Dirty", + ]; + const productNames = [ + "Carrot", + "Drone", + "Giftcard", + "Puppy", + "Car", + "Shirt", + "Milk", + "Chalk", + "Fish fingers", + "Socks", + "Chocolate", + "Toothbrush", + "Computer", + "Nokia", + "Cologne", + ]; + + let chosenProductName = getRandomItem(productNames); + const shouldHavePreWord = getRandomInt(0, 10) > 6; + + if (shouldHavePreWord) { + const preWord = preWords[getRandomInt(0, preWords.length - 1)]; + chosenProductName = `${preWord} ${chosenProductName}`; + } + + return chosenProductName; + } + + const numberOfAvailableProducts = getRandomInt(0, 30); + const availableProducts = Array.apply( + null, + Array(numberOfAvailableProducts), + ).map(() => { + const name = getRandomProductname(); + return { + id: `${name}${getRandomInt(0, 100000)}`, + name, + price: getRandomInt(0, 10000), + rating: getRandomInt(1, 10), + }; + }); + + return availableProducts; +}; diff --git a/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/index.html b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/index.html new file mode 100644 index 00000000..07f60fe4 --- /dev/null +++ b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/index.html @@ -0,0 +1,14 @@ + + HyfBay + + + + + +
+ + + diff --git a/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.css b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.css new file mode 100644 index 00000000..9f6b12f1 --- /dev/null +++ b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.css @@ -0,0 +1,20 @@ +body { + font-family: "Open Sans", sans-serif; + background-color: #f9fbfd; +} + +* { + box-sizing: border-box; +} + +body, +h1, +h2 { + margin: 0; +} + +ul { + list-style-type: none; + margin: 0; + padding: 0; +} diff --git a/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.js b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.js new file mode 100644 index 00000000..e584d34c --- /dev/null +++ b/legacy/javascript/javascript2/week1/optional-homework/hyf-bay/main.js @@ -0,0 +1,4 @@ +console.log("Script loaded"); + +const products = getAvailableProducts(); +console.log(products); diff --git a/legacy/javascript/javascript2/week1/preparation.md b/legacy/javascript/javascript2/week1/preparation.md new file mode 100644 index 00000000..0634cdec --- /dev/null +++ b/legacy/javascript/javascript2/week1/preparation.md @@ -0,0 +1,14 @@ +# Preparation + +- [Basic DOM manipulations (img src, innerHTML)](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/DOM_manipulation.md) (5 min) +- [Code Degugging Using the Browser](http://javascript.info/debugging-chrome) (5 min) +- [Code commenting](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/code_commenting.md) (2 min) +- [Attaching an event](https://www.w3schools.com/jsref/met_element_addeventlistener.asp) (5 min) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Executing Javascript in the browser environment](https://youtu.be/k8PEyCe3vK0) +- [Interacting with the DOM using Javascript](https://youtu.be/YvHQIaKtOl8) +- [DOM event listeners using Javascript](https://youtu.be/DwzApTvTngI) diff --git a/legacy/javascript/javascript2/week2/README.md b/legacy/javascript/javascript2/week2/README.md new file mode 100644 index 00000000..2a4ee734 --- /dev/null +++ b/legacy/javascript/javascript2/week2/README.md @@ -0,0 +1,168 @@ +# JavaScript 2, Week 2 + +## Learning goals + +- [ ] Array functions + - [ ] ForEach + - [ ] [Map](#map) + - [ ] [Filter](#filter) +- [ ] [Arrow function](#arrow-functions) + + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) + +## Array methods map, filter and sort + +### Map + +The map function works on arrays. It maps (think transform) the elements of an array. Or from MDN: "The map() method creates a new array with the results of calling a provided function on every element in the calling array." + +```js +// lets first create an array of three cars + +const cars = [ + { + make: "Volvo", + speed: 45, + color: "lightYellow", + }, + { + make: "BMW", + speed: 87, + color: "lightBlue", + }, + { + make: "Fiat", + speed: 78, + color: "lightCyan", + }, +]; + +// lets use the same cars array + +// Lets transfrom it from an array of car objects to an array of car colors +const carColors = cars.map(function (car) { + return car.color; +}); + +console.log(carColors); // ['lightYellow', 'lightBlue', 'lightCyan'] + +const carSpeeds = cars.map(function (car) { + return car.speed; +}); + +console.log(carSpeeds); // [45, 87, 78] +``` + +### Filter + +The filter function works on arrays and it filters out elements in our array. +It takes a function as input. This function is called on every element in the array. Just like forEach. If this function we create returns true the element is saved in the, if we return false the element is filtered out. + +```js +// Lets get only cars with a speed larger than 60 +const fastCars = cars.filter(function (car) { + // This function is called for every car in the cars array + if (car.speed > 60) { + // save the car + return true; + } else if (car.speed <= 60) { + // filter out the cars that are slower than 60 + return false; + } +}); + +console.log(fastCars); // logs the BMW and the Fiat +``` + +### Sort + +The sort function works on arrays. It sorts the elements of the array. +To see details see here: + +```js +// lets use the same cars array + +// Lets sort the cars after speed ascending +const sortedCars = cars.sort(function (a, b) { + return a.speed - b.speed; +}); + +console.log(sortedCars); // it will return an array with the BMW object first, then the fiat and then the volvo +``` + +### Arrow functions + +Functions can be written as arrow functions, it looks like this: + +```js +// This function +function getTimesTen(a) { + return a * 10; +} + +// Can be written like this: +const getTimesTenArrowFunction = (a) => { + return a * 10; +}; + +// If there is only one parameter, we can remove the paranthesis: +const getTimesTenArrowFunction = (a) => { + return a * 10; +}; + +// If the function is returning a single line of code, you can shorten it even further: +const getTimesTenArrowFunction = (a) => a * 10; +``` + +Here is how you **convert a function into an arrow function:** + +1. Remove the keyword function +2. Add an arrow after the parameter +3. If there is only one parameter, we can remove the paranthesis around the parameter +4. If the function is returning a single line of code, we can remove the return keyword and the curly braces. + +### Chaining + +We can chain array methods after each other. + +So if we wanted an array of fast cars brands we could do this: + +```js +// Broken down +const fastCars = cars.filter((car) => car.speed > 60); + +const fastCarBrands = fastCars.map((car) => car.brand); + +// But we can do those two operations in one go +const fastCarBrands = cars + .filter((car) => car.speed > 60) + .map((car) => car.brand); +``` + +```js +const fastCars = cars.filter((car) => car.speed > 60); + +// fastCars is an array! Arrays we can call .map on, so why not do it in one go!? +``` + +Calling the `filter` function, returns an array (in our case an array of objects, that represent fast cars). We know that we can call `.map` on an array, doing that we get the chaining of methods. + +The principal behind is exactly the same as in this example: + +```js +const doesBenjaminEndWithN = "BENJAMIN".toLowerCase().endsWith("n"); + +// We can also write that as: +doesBenjaminEndWithNFormatted = "BENJAMIN" + .toLowerCase() // <-- toLowerCase returns a string! + .endsWith("n"); // <-- That we can call .endsWith on! +``` + +We are chaining methods on the return of the previous function's return value! diff --git a/legacy/javascript/javascript2/week2/lesson-plan.md b/legacy/javascript/javascript2/week2/lesson-plan.md new file mode 100644 index 00000000..f18e391f --- /dev/null +++ b/legacy/javascript/javascript2/week2/lesson-plan.md @@ -0,0 +1,387 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +## Lesson materials + +These are some examples of previously created materials by mentors that you can use yourself, or for inspiration. + +- [Notion Page Handout](https://dandy-birth-1b2.notion.site/HYF-Aarhus-JS-2-Week-2-cd0c1163d0264215824dc17580c97825?pvs=4) (by [Thomas](https://github.com/te-online)) + +Remember to add the code you wrote in the class to the relevant class's work folder on a branch. If the branch has not been created just create and push it :) If you don't have access, write to someone from the core team. You can see an example below! + +To find examples of what teachers have taught before, go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved, please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Array functions - code with traditional function expression, no arrow keys yet! + - Try write your own `forEach`, `map` and `filter` with the students. Shows very precisely how it works! + - ForEach - Executes function for each item in the array, NO RETURN! + - [Code inspiration](#foreach) + - [Foreach homemade](#foreach-homemade) + - [Exercises](#foreach-1) + - Map - Changes/transforms the items in the array + - [Code inspiration](#map) + - [Foreach homemade](#map-homemade) + - [Exercises](#map-1) + - Filter - Changes the number of items in the array. Let the students investigate `filter` + - [Code inspiration](#filter) + - [Foreach homemade](#filter-homemade) - Get help from students to write this + - [Exercises](#filter-1) + - [Other example](#other-example) +- Arrow function + - [Code inspiration](#arrow-function) + - [Exercises](#arrow-functions) + + + +[Listing project](#listing-project) + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript2/week2/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### Mentors + +```js +const mentors = [ + { + name: "Abed Sujan", + subjects: ["JS", "HTML", "CSS", "NODEJS"], + yearOfExperience: 4, + }, + { + name: "Ahmed Magdy", + subjects: ["JS", "Database", "CSS"], + yearOfExperience: 1, + }, + { + name: "Alicia Gonzales", + subjects: ["DB", "HTML", "NODEJS"], + yearOfExperience: 8, + }, + { + name: "allan Thraen", + subjects: ["REACT", "HTML", "CSS"], + yearOfExperience: 3, + }, + { + name: "Anders Ravn", + subjects: ["JS", "HTML", "NODEJS"], + yearOfExperience: 2, + }, + { + name: "Daniel Fernandes", + subjects: ["Database", "HTML", "CSS"], + yearOfExperience: 9, + }, +]; + +console.log(mentors); +``` + +### ForEach + +```js +mentors.forEach(function (mentor) { + console.log(mentor); + console.log(mentor.name); + + mentor.subjects.forEach(function (subject) { + console.log(subject); + }); +}); +``` + +### ForEach homemade + +```js +function forEachHomemade(array, functionToExecute) { + for (let i = 0; i < array.length; i++) { + const currentItem = array[i]; + functionToExecute(currentItem, i); + } +} +``` + +### Map + +```js +// We are mapping/transforming the mentors array. Same size, different items. +const mentorNames = mentors.map(function (mentor) { + return mentor.name; +}); + +const mentorNamesFormatted = mentors.map(function (mentor) { + return "Mentors name is: " + mentor.name; +}); + +const mentorSummary = mentors.map(function (mentor) { + return `Mentors name is: ${mentor.name}. He has ${mentor.yearsOfExperience} years of experience`; +}); +``` + +### Map homemade + +```js +function mapHomemade(array, functionToExecute) { + const mappedArray = []; + for (let i = 0; i < array.length; i++) { + const currentItem = array[i]; + const newItem = functionToExecute(currentItem, i); + // This is where the magic happens!!! + mappedArray.push(newItem); + } + + return mappedArray; +} +``` + +### Filter + +```js +// We are mapping/transforming the mentors array. Same size, different items. +const experiencedMentors = mentors.filter(function (mentor) { + if (mentor.yearsOfExperience > 7) { + return true; + } else { + return false; + } + + // can also be written as + // reuturn mentor.yearsOfExperience > 7 + // Explain why! +}); + +// Get help from students to write this +const mentorsThatStartWithA = mentors.filter(function (mentor) { + return mentor.name[0] == "A"; // Missing Allan, why?? lowercase +}); +``` + +### Filter homemade + +```js +function FilterHomemade(array, functionToExecute) { + const filteredArray = []; + for (let i = 0; i < array.length; i++) { + const currentItem = array[i]; + const shouldKeepItemInNewArray = functionToExecute(currentItem, i); + // This is where the magic happens!!! + if (shouldKeepItemInNewArray) { + filteredArray.push(currentItem); + } + } + + return filteredArray; +} +``` + +### Arrow function + +```js +function circleArea(radius) { + return radius * 2 * Math.pi; +} + +// Remove the function keyword add in arrow +const circleArea1 = (radius) => { + return radius * 2 * Math.pi; +}; + +// If there is only one parameter, we can remove the paranthesis +const circleArea2 = (radius) => { + return radius * 2 * Math.pi; +}; + +// If there is only one line in the function we can remove the curly braces and the return statement +// radius * 2 * Math.pi is AUTOMATICALLY being returned +const circleArea3 = (radius) => radius * 2 * Math.pi; +``` + +### Other example + +```js +function filterMentorList(courseID) { + const resultHtml = document.getElementById("result"); + + let listHtml = ""; + listHtml += "
Fowad
"; + listHtml += "
Susane
"; + listHtml += "
Sara
"; + resultHtml.innerHTML = listHtml; + + console.log("courseID", courseID); +} + +let modifiedMentors = mentors.map(function (mentor) { + mentor.name = + mentor["name"].length > 10 ? "Mr " + mentor.name : "Ms " + mentor.name; + + mentor.age = mentor["name"].length; + // if(mentor["name"].length >10) + // mentor.name = "Mr " + mentor.name; + // else + // mentor.name = "Ms " + mentor.name; + + return mentor; +}); + +function filterMentorList(courseID) { + const resultHtml = document.getElementById("result"); + let listHtml = ""; + + let filteresListByCourseId = mentors.filter(function (mentor) { + const sub = mentor.subject; + return sub.indexOf(courseID) >= 0; + }); + + filteresListByCourseId.forEach(function (mentor) { + listHtml += `
${mentor.name} - ${mentor.age}
`; + }); + + resultHtml.innerHTML = listHtml; +} + +function filterMentorListUsingFor(courseID) { + const resultHtml = document.getElementById("result"); + let listHtml = ""; + for (let i = 0; i < mentors.length; i++) { + listHtml += `
${mentors[i].name}
`; + } + resultHtml.innerHTML = listHtml; + console.log("courseID", courseID); +} +``` + +## Exercises + +Use this function to generate random listings + +```js +/** + * Get random integer between two numbers, found here: https://stackoverflow.com/a/7228322 + * @param {integer} min - The min number + * @param {integer} max - The max number + * @returns {Number} Random number between min and max + */ +function randomIntFromInterval(min, max) { + return Math.floor(Math.random() * (max - min + 1) + min); +} + +/** + * Get an array with listing objects with random color and speed + * @param {integer} numberOfListings - The number of listings + * @returns {array} Array containing the listing objects + */ +function generateListings(numberOfListings) { + const listings = []; + + const listingType = ["House", "Apartment", "Shed", "Dorm", "Farm"]; + const listingFacilities = [ + "Parkering", + "Elevator", + "Altan", + "Have", + "Husdyr", + ]; + + for (let i = 0; i < numberOfListings; i++) { + const listing = {}; + const randomTypeIndex = randomIntFromInterval(0, listingType.length - 1); + const numberOfFacilities = randomIntFromInterval( + 1, + listingFacilities.length - 1, + ); + const facilities = []; + for (let i = 0; i < numberOfFacilities; i++) { + const randomIndexFacilities = randomIntFromInterval( + 0, + listingFacilities.length - 1, + ); + const randomFacility = listingFacilities[randomIndexFacilities]; + + if (!facilities.includes(randomFacility)) { + facilities.push(randomFacility); + } + } + + listing.type = listingType[randomTypeIndex]; + listing.facilities = facilities; + listing.price = randomIntFromInterval(1, 10000); + listing.hasGarden = Boolean(randomIntFromInterval(0, 1)); + listing.size = randomIntFromInterval(12, 1000); + listing.img = `https://loremflickr.com/200/200/${listing.type}`; + + listings.push(listing); + } + + return listings; +} + +generateListings(20); +``` + +### `forEach` + +- Create 37 listings and log out every listings size + +### `map` + +- Create an array that contains all the 37 listing prices. + +### `filter` + +Using the 37 listings from the previous tasks + +- Create an array of cheap listings. You define what cheap means. Each item in this array should be of type object +- Create an array of expensive listings prices. Each item in this array should be of type number +- Create an array of listings that have parking. Each item in this array should be of type object + +### Arrow functions + +Rewrite the code above (`forEach`, `map` and `filter`) to arrow functions. + +### Listing project + +Imagine we have a website like where a user can search for different parameters. Fx What type the listing should be, the price, size, location etc etc. + +#### Filter listings + +If a user fx click on a button indicating that the user only wants listings that are of the type farm. Lets try and imagine how we would use a function to create this functionality: + +```js +const listings = generateListings(20); + +const filter = { + type: "farm", +}; + +const farmListings = filterListings(listings, filter); +``` + +Okay, so the `filterListings` function takes a filter which is an `object`. Say the user wants farm listings that cost more than 1.500.000. + +```js +const filter2 = { + type: "farm", + minPrize: 1500000, +}; + +const cheapFarmListings = filterListings(listings, filter2); +``` + +Your job is to create the `filterListings` function. The function should support these filters: type, facilities, price , hasGarden and size. Use arrow functions! + +#### Render listings + +Now create a function called `renderListings`. It should have one parameter: `listings`. When called the function should render the listings in an html list. How it should be rendered is up to you, but you could take inspiration from diff --git a/legacy/javascript/javascript2/week2/optional-homework.md b/legacy/javascript/javascript2/week2/optional-homework.md new file mode 100644 index 00000000..b30f0528 --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework.md @@ -0,0 +1,133 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +## Why should I even do this homework? + +Working with arrays is an essential part of being a javascript developer. A lot of the time js developers have an array of some objects. That could be **users, products, posts, jobs** etc. Working with these arrays, js developers so often need to filter the arrays, change the structure of the array, sort them or loop through them. + +On top of that combining these array function with each other will show the functional side to javascript in a nice way. + +The warmup exercises will be a bit abstract. But the in the **hyfBay exercise** the task will be a lot closer to a **real world task**. + +## Appreciate how far you have come + +Javascript is getting difficult now and we are aware of that! Take some time to appreciate how far you have come that last 6 weeks. Instead of comparing yourself to others, compare yourself to where you were a some time ago. If you are seeing progress then you are doing it right 💪 + +## Overview of homework + +1. **[Warmup array exercises:](#1-warmup-array-exercises)** Warmup exercise that includes + + - Doubling the number + - ⭐ Working with movies + +2. 🌟 **[hyfBay](#2-hyfbay---get-the-okayest-products-here---continued):** It's a single-page app where users can search for products. + +## 1. Warmup array exercises + +If you struggle to do this weeks homework there are a couple of things to do: + +- Try watch this video: +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=AJt_O0EFDC8), [part 2](https://www.youtube.com/watch?v=4tj7CvD7ka8), [part 3](https://www.youtube.com/watch?v=CO40FG6pK2k) [part 4](https://www.youtube.com/watch?v=eA2tCs0AaaM) +- Read up on array functions [here](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript2/week2/readme.md#array-methods-map-filter-and-sort) + +### 1.1. Doubling of number + +Say you would like to write a program that **doubles the odd numbers** in an array and **throws away the even number**. + +Your solution could be something like this: + +```js +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; + } +} + +console.log("The doubled numbers are", newNumbers); // [2, 6] +``` + +Rewrite the above program using `map` and `filter` don't forget to use arrow functions. + +### 1.2. codewars! + +Complete these Katas: + +- [8 kyu To square(root) or not to square(root)](https://www.codewars.com/kata/57f6ad55cca6e045d2000627) +- [8 kyu Removing Elements](https://www.codewars.com/kata/5769b3802ae6f8e4890009d2) + +### 1.3. Working with movies + +![cinema](https://media.giphy.com/media/l6mBchxYZc7Sw/giphy.gif) + +Copy the movies array in the [movies](homework/movies.js) file. Use this array to do the following tasks: + +1. Create an array of movies containing the **movies with a short title** (you define what short means) +2. Create an array of movie titles with **long movie titles** +3. Count the **number of movies** made between 1980-1989 (including both the years) +4. 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) +5. **Using [chaining](readme.md#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. +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? +7. Create an array of movies where a **word in the title is duplicated**. Fx "Star **Wars**: The Clone **Wars**" the word **Wars** is duplicated. Here are some madeup examples of movies with duplicated words in the title: "**The** three men and **the** pistol", "**Chase** three - The final **chase**" +8. Calculate the **average rating** of all the movies using [reduce](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce). _Optional_ +9. **Count the total number** of Good, Average and Bad movies using [reduce](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce). A return could fx be `{goodMovies: 33, averageMovies: 45, goodMovies: 123}` _Optional_ + +## 2. hyfBay - get the okay'est products here - continued + +**Continue work on your homework regarding the Hyfbay** from previous week. Please copy the files from last week into this weeks `hyf-homework` folder and continue working there. If you have not made last weeks homework the solution for it is included in [this weeks homework folder](homework/hyf-bay) in the `main.js` file. + +### 2.1. Filter products + +A very normal usecase for a product site is that a **user wants to search for some product** or find products that are cheaper than a set price. Lets implement that functionality for a user! + +BUT first lets figure out what happens on a conceptual level, when a user filters some products: + +1. Some kind of **event happens**, fx a user searches for a product, we need to listen for that event +2. When that event happens we need to **filter the products** the user wants +3. Then we should **render those products** + +Lets get a little closer to javacript: + +1. `.addEventListener` on an element +2. `.filter` on the products array +3. `renderProducts` with the filtered array + +### 2.2 Searching for products + +A user needs to search for products. That means that we need to add an input element to the html. + +When the user writes something in the search input field. The products should be updated to only include the products that match the name. + +So what event should we listen for in the `addEventListener` method? And what element should we listen on? + +Use the overview shown above and the `renderProducts` function. + +![Searching for a product](optional-homework/hyf-bay-searching.gif) + +### 2.3. Filter products based on max price + +Lets help a user to find cheap products! When the **user writes a maximum price** the products should be filtered to match that maximum price + +_Hint: Break this task into smaller tasks!_ + +![Searching for a product](optional-homework/hyf-bay-price.gif) + +### 2.4. Make the website look nicer! + +The website looks awful now, **but** luckily you have had css and html and know exactly what it takes to make this website shine! + +Improve it how you see fit. Maybe add a footer, header, logo, title, styling, responsivity. Whatever you feel like would improve the site! + +### 2.5. Create some extra feature + +No matter how small or how big. Create some feature that would be **cool/helpful/quirky/funny**. + +### 2.6 Sort the products - _optional_ + +This task is more open ended! So you need to come up with fx how the user should interact with the functionality. + +Give the user the possibility to sort the products. That could fx be on price, name, rating or all of the above! diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-price.gif b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-price.gif new file mode 100644 index 00000000..177f5299 Binary files /dev/null and b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-price.gif differ diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-searching.gif b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-searching.gif new file mode 100644 index 00000000..03bb772f Binary files /dev/null and b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay-searching.gif differ diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/hyfBayHelpers.js b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/hyfBayHelpers.js new file mode 100644 index 00000000..faca5476 --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/hyfBayHelpers.js @@ -0,0 +1,98 @@ +/* DONT MODIFY ANY OF THIS CODE!!!*/ + +window.availableCountries = [ + "Denmark", + "Sweden", + "Norway", + "Germany", + "Iceland", + "England", +]; + +window.getAvailableProducts = function () { + function getRandomInt(min, max) { + min = Math.ceil(min); + max = Math.floor(max); + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + function getRandomItem(availableProductNames) { + return availableProductNames[ + getRandomInt(0, availableProductNames.length - 1) + ]; + } + + function getRandomProductname() { + const preWords = [ + "Used", + "Fantastic", + '"Used"', + "Broken", + "Beautiful", + "Wet", + "Green", + "Sloppy", + "Dirty", + ]; + const productNames = [ + "Carrot", + "Drone", + "Giftcard", + "Puppy", + "Car", + "Shirt", + "Milk", + "Chalk", + "Fish fingers", + "Socks", + "Chocolate", + "Toothbrush", + "Computer", + "Nokia", + "Cologne", + ]; + + let chosenProductName = getRandomItem(productNames); + const shouldHavePreWord = getRandomInt(0, 10) > 6; + + if (shouldHavePreWord) { + const preWord = preWords[getRandomInt(0, preWords.length - 1)]; + chosenProductName = `${preWord} ${chosenProductName}`; + } + + return chosenProductName; + } + + /* DONT MODIFY ANY OF THIS CODE!!!*/ + function getRandomCountries() { + const numberOfCountries = getRandomInt(1, 3); + + const randomCountries = []; + while (randomCountries.length < numberOfCountries) { + const randomIndex = getRandomInt(0, window.availableCountries.length - 1); + const randomCountry = window.availableCountries[randomIndex]; + if (!randomCountries.includes(randomCountry)) { + randomCountries.push(randomCountry); + } + } + + return randomCountries; + } + + const numberOfAvailableProducts = getRandomInt(0, 30); + const availableProducts = Array.apply( + null, + Array(numberOfAvailableProducts), + ).map(() => { + const name = getRandomProductname(); + return { + id: `${name}${getRandomInt(0, 100000)}`, + name, + price: getRandomInt(0, 10000), + rating: getRandomInt(1, 10), + shipsTo: getRandomCountries(), + }; + }); + + return availableProducts; +}; diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/index.html b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/index.html new file mode 100644 index 00000000..a0e33056 --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/index.html @@ -0,0 +1,62 @@ + + HyfBay + + + + + +
+
+
+

HyfBay

+

- Buy the okay'est products

+
+
+
+ +
+ + +
+
+
+ + +
+
+ + +
+
+
+
+
    +
    +
    +

    Your shopping cart

    +
    +

    Total price:

    +
    +
      +
      +
      + + + diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.css b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.css new file mode 100644 index 00000000..973a43ea --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.css @@ -0,0 +1,128 @@ +body { + font-family: "Open Sans", sans-serif; + background-color: #f9fbfd; +} + +* { + box-sizing: border-box; +} + +body, +h1, +h2 { + margin: 0; +} + +ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +header { + background-color: white; + box-shadow: 0 1px 2px rgba(190, 190, 190, 0.5); +} + +header .wrapper { + width: 800px; + margin: 0 auto; + height: 80px; + background: #ffffff; + position: relative; +} + +header .wrapper h1, +header .wrapper h2 { + position: absolute; + top: 50%; + transform: translateY(-50%); +} + +header .wrapper h2 { + left: 125px; +} + +/*#FF813F*/ + +section.table-view-control, +section.products, +section.cart { + max-width: 800px; + margin: 0 auto; +} + +section.table-view-control, +section.products { + margin: 24px auto 12px; + background-color: white; + box-shadow: 0 1px 2px rgba(190, 190, 190, 0.5); + border-radius: 8px; +} + +section.table-view-control { + padding: 12px; +} + +section.table-view-control > div, +section.table-view-control .filters > div { + margin-bottom: 24px; +} + +section.products > ul { + padding: 0; +} + +section.products > ul > li > ul { + display: flex; + justify-content: space-between; + align-items: center; + padding: 12px 12px 12px 12px; +} + +section.products > ul > li > ul > li:first-child { + width: 200px; +} + +section.products > ul > li:nth-child(odd) { + background-color: #f0f0f0; +} + +section.products li div, +section.products li button { + margin-right: 12px; + width: 100px; +} + +section.products li .name { + width: 200px; +} + +section.cart { + position: fixed; + bottom: 12px; + right: 12px; + width: 300px; + height: 200px; + background-color: white; + overflow-y: auto; + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); + padding: 12px; + border-radius: 8px; +} + +section.cart ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +section.cart ul > li { + display: flex; + justify-content: space-between; + padding: 6px; +} + +section.cart ul > li:nth-child(odd) { + background-color: #f0f0f0; +} diff --git a/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.js b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.js new file mode 100644 index 00000000..13639f0b --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework/hyf-bay/main.js @@ -0,0 +1,28 @@ +console.log("Script loaded"); + +const products = getAvailableProducts(); +const productsUl = document.querySelector("section.products ul"); +console.log(productsUl); + +function renderProducts(products) { + products.forEach((product) => { + const li = document.createElement("li"); + + let shipsToHTML = ""; + product.shipsTo.forEach( + (country) => (shipsToHTML += `
    • ${country}
    • `), + ); + + li.innerHTML = ` +
        +
      • ${product.name}
      • +
      • ${product.price}
      • +
      • ${product.rating}
      • +
          ${shipsToHTML}
        +
      + `; + productsUl.appendChild(li); + }); +} + +renderProducts(products); diff --git a/legacy/javascript/javascript2/week2/optional-homework/movies.js b/legacy/javascript/javascript2/week2/optional-homework/movies.js new file mode 100644 index 00000000..92190d6c --- /dev/null +++ b/legacy/javascript/javascript2/week2/optional-homework/movies.js @@ -0,0 +1,44585 @@ +const movies = [ + { title: "'71", year: 2014, rating: 7.2, votes: 41702, running_times: 5940 }, + { + title: "'A' gai wak", + year: 1983, + rating: 7.4, + votes: 11942, + running_times: 6300, + }, + { + 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/legacy/javascript/javascript2/week2/preparation.md b/legacy/javascript/javascript2/week2/preparation.md new file mode 100644 index 00000000..3d133e70 --- /dev/null +++ b/legacy/javascript/javascript2/week2/preparation.md @@ -0,0 +1,14 @@ +# Preparation + +Some nice resources about map, filter + +- :dizzy: [Fun fun functional](https://www.youtube.com/playlist?list=PL0zVEGEvSaeEd9hlmCXrk5yUyqUag-n84) :dizzy: Check the first 3-4 videos. (25 min) +- 10 JavaScript array methods you should know (10 min) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Javascript advanced array methods part 1](https://youtu.be/wBKv2EX2hw8) +- [JavaScript advanced array methods part 2](https://youtu.be/w4FNF8FLjQU) +- [Javascript arrow functions](https://youtu.be/DFyfbJk4sZw) diff --git a/legacy/javascript/javascript2/week3/README.md b/legacy/javascript/javascript2/week3/README.md new file mode 100644 index 00000000..2ff2a066 --- /dev/null +++ b/legacy/javascript/javascript2/week3/README.md @@ -0,0 +1,93 @@ +# JavaScript 2, Week 3 + +## Learning goals + +Functions advanced + +- [ ] Function as a variable + - [ ] Calling a function with a function +- [ ] Callback function and asynchronicity + - [ ] setTimeout, addEventListener +- [ ] Anonymous function vs named function + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) + +## Callbacks + +A callback is simply a function passed to another function that gets executed (run) after a potentially long running operation has completed. + +Now let's learn about callbacks! +Well, actually, you have already made callbacks! +When you give a function to an event listener or a timer, or when fetching data you are using a callback function. + +Let's create a callback function that is executed when someone writes in a input element + +```javascript +const callback = function () { + console.log("Someone is writing!!"); +}; + +document.querySelector("input").addEventListener("input", callback); +``` + +- JavaScript callback functions tutorial: + +## Async vs sync + +In this article you can find a really good analogy and description of the differences between async (asynchronous) and sync (synchronous) + +Here is the analogy in a quick writeup: + +There is a a man called mr. X. You can call him with any problem and he will answer your right away. He picks up the phone and answers RIGHT away. This is like synchronous js code. It runs right away, no waiting. + +Now mr. X gets lots of calls. Therefore he hires a person to take his calls. This guy passes on a message to mr x once he is completely free. So now when you call mr. X you leave his assistant a message and then wait for his assistant to call back. Once Mr x is done with all his other calls his assistant calls you back with mr x's answer. This is like asynchronous js code. We now have to wait for our answer. You ask for some task to get done with a callback function, fx log "hello" after one second. Once one second has elapsed javascript runs your callback function. + +### Synchronous + +This code runs from top to bottom, one line at a time. When it is done with a task it just starts with the next one right away. + +```js +console.log("Before"); + +for (let i = 0; i < 10; i++) { + console.log(i); +} + +console.log("After"); +``` + +### Asynchronous + +This code is NOT run from top to bottom. It will first log "First log", then it will setup a timer for 5 seconds (but not wait for anything), and then it will log "Second log". And then, after 5000 ms (5 seconds), it will call the callback function that will log "In timeout". + +```js +console.log("First log"); + +setTimeout(function () { + console.log("In timeout"); +}, 5000); + +console.log("Second log"); +``` + +### Asynchronous code in javascript + +So how does javascript handle asynchronous code? Here is an example with setTimeout: + +First setTimeout is added to the call stack. The call stack hands it over to the browser with the callback function given in the setTimeout function. The browser handles the timing of the setTimeout via Web APIs and then it is popped from the call stack. + +When the timer is expired it sends the callback of our setTimeout function to the eventloop. The eventloop then works like this: if the call stack is empty it will take the first thing in the event loop and add it to the call stack. When it is added to the call stack it is javascript call stack business as usual. Call the function and pop it from the call stack. + +This is perfectly visualised here: + +### So why do we have async code in js? + +While javascript is performing a task (has functions on its call stack) it cannot do anything else. That means that a user cannot click a button, write anything in an input element, close a modal, etc. + +Imagine requesting data if JavaScript was not async: While the we are fetching our data, the user can do nothing. It could take everything from less that a second to minutes. This is a problem! + +The solution to this is async code. When we request some data from a server, the waiting for the response happens in the same way as the waiting for the timeout from our example. Therefore javascript does not have anything on its call stack which means that the user can interact with the UI like clicking buttons, opening and closing modals, etc. while waiting for a request. Yay :) diff --git a/legacy/javascript/javascript2/week3/assets/button-delay.gif b/legacy/javascript/javascript2/week3/assets/button-delay.gif new file mode 100644 index 00000000..073f2f4d Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/button-delay.gif differ diff --git a/legacy/javascript/javascript2/week3/assets/carbon.png b/legacy/javascript/javascript2/week3/assets/carbon.png new file mode 100644 index 00000000..6baafce9 Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/carbon.png differ diff --git a/legacy/javascript/javascript2/week3/assets/carbon.svg b/legacy/javascript/javascript2/week3/assets/carbon.svg new file mode 100644 index 00000000..ec546438 --- /dev/null +++ b/legacy/javascript/javascript2/week3/assets/carbon.svg @@ -0,0 +1,22 @@ +
      \ No newline at end of file diff --git a/legacy/javascript/javascript2/week3/assets/function-graphic.jpg b/legacy/javascript/javascript2/week3/assets/function-graphic.jpg new file mode 100644 index 00000000..63d89fc3 Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/function-graphic.jpg differ diff --git a/legacy/javascript/javascript2/week3/assets/log-location.gif b/legacy/javascript/javascript2/week3/assets/log-location.gif new file mode 100644 index 00000000..9fd98bc6 Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/log-location.gif differ diff --git a/legacy/javascript/javascript2/week3/assets/planet-log.png b/legacy/javascript/javascript2/week3/assets/planet-log.png new file mode 100644 index 00000000..df5cf3f3 Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/planet-log.png differ diff --git a/legacy/javascript/javascript2/week3/assets/planet-log.svg b/legacy/javascript/javascript2/week3/assets/planet-log.svg new file mode 100644 index 00000000..f80b6c54 --- /dev/null +++ b/legacy/javascript/javascript2/week3/assets/planet-log.svg @@ -0,0 +1,32 @@ +
      \ No newline at end of file diff --git a/legacy/javascript/javascript2/week3/assets/run-after-delay.png b/legacy/javascript/javascript2/week3/assets/run-after-delay.png new file mode 100644 index 00000000..3e107e2c Binary files /dev/null and b/legacy/javascript/javascript2/week3/assets/run-after-delay.png differ diff --git a/legacy/javascript/javascript2/week3/assets/run-after-delay.svg b/legacy/javascript/javascript2/week3/assets/run-after-delay.svg new file mode 100644 index 00000000..17f75908 --- /dev/null +++ b/legacy/javascript/javascript2/week3/assets/run-after-delay.svg @@ -0,0 +1,22 @@ +
      \ No newline at end of file diff --git a/legacy/javascript/javascript2/week3/lesson-plan.md b/legacy/javascript/javascript2/week3/lesson-plan.md new file mode 100644 index 00000000..ca3858df --- /dev/null +++ b/legacy/javascript/javascript2/week3/lesson-plan.md @@ -0,0 +1,186 @@ +# Lesson plan + +## Lesson materials + +These are some examples of previously created materials by mentors that you can use yourself, or for inspiration. + +- [Notion Page Handout](https://dandy-birth-1b2.notion.site/HYF-Aarhus-JS-2-Week-3-6bce73b3a0bf47a3ad32ed12ee4d0519?pvs=4) (by [Thomas](https://github.com/te-online)) + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +- Function as a variable - function can be called inside another function, like we saw with the homemade `forEach` + - [Code inspiration](#calling-a-function-within-a-function) +- Callback function and asyncronicity - shows a practical example of function that gets called by another function (fx `setTimeout` or `addEventListener`) + - [Code inspiration](#callback-functions) +- Anonomyous function vs named function + - [Code inspiration](#anonymous-vs-named-function) +- [Exercise 1](#click-counter), [exercises 2](#delay-clicker), [exercise 3](#page-onload), [exercises 4](#mouse-position) +- Scope - Only if the students needs this! Ask to their abilities! + +The students should after the class **feel comfortable with callback functions** and the fact that a **function works just like a variable** that can be passed around. Also asynchronicity is important, when is a function called and where does it stop. + +Also hammer in the point of the difference between: + +```js +document.querySelector("button").addEventListner("click", logOuttext); +document.querySelector("button").addEventListner("click", logOuttext()); +``` + +Good example of practical example of callbacks: + +At this point good coding practices is starting to get very important! Check our [coding best practices](https://github.com/HackYourFuture-CPH/curriculum/blob/main/review/review-checklist.md#javascript) and use these both when live coding but also in reviews. + +This is super good at explaining function logic +![Function graphic](assest/../assets/function-graphic.jpg) + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript2/week3/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### Calling a function within a function + +```js +// Here we create a funtion that as a parameter takes a function!! Super weird right!? +// Functions works just like any other type in js. +function functionRunner(functionToRun) { + console.log(typeof functionToRun); + // Here we are calling the function that is provided as an argument when calling functionRunner + functionToRun(); +} + +functionRunner(function () { + console.log("hello"); +}); + +// We dont see anything, why?? +functionRunner(Math.random); + +// Lets rewrite functionRunner to log out the return of a function +function functionRunnerImproved(functionToRun) { + console.log(typeof functionToRun); + // Here we are calling the function that is provided as an argument when calling functionRunner + const capturedReturnValue = functionToRun(); + console.log(capturedReturnValue); +} + +functionRunnerImproved(Math.random); +``` + +### Callback functions + +```js +/* +Events +Events in javascript are thing like: +A timer has just finished, a user clicked a button, our page has loaded, +someone types into an input element or we have just gotten some data from a server. +When these events happen, we usually want to add some functionality. +Fx when a user clicks the like button (event), we want to increment the like counter and color the like button blue. +Or when someone clicks "Close cookies" (event) we want to remove the cookie div. +Lets first try to create some js that waits for 2 seconds and the console.logs out "2 seconds has elapsed!" +In javascript we use the word eventlistener to listen +*/ + +// Tried to find actual webkit implementation, but failed. To show that the setTimeout implementation is just calling the provided function after a given time +setTimeout(function () { + console.log("2 seconds has elapsed!"); +}, 2000); + +// Cool, now lets make a function as a variable: +const fourSecondLog = function () { + console.log("4 seconds has elapsed!"); +}; + +setTimeout(fourSecondLog, 4000); + +// Now lets try and log out "button clicked!" when a button is clicked. +// To check if a button gets clicked we use a what is called an eventlistener. +// Imagine a person listening to the click of a button and everytime he hears a click he yells out "CLICKED". +const buttonElement = document.querySelector("button"); +buttonElement.addEventListener("click", function () { + console.log("Button clicked!"); +}); + +const buttonClicked = function () { + console.log("Button clicked as a variable!"); +}; +// Cool man! Lets try and add that function as a variable. +buttonElement.addEventListener("click", buttonClicked); + +//Callbacks +// Now lets learn about callbacks! +// Well actually you have already made callbacks! +// When you give a function to an event listener or a timer or when fetching data you are using a callback function + +// Lets create a callback function when someone writes in a input element +const callback = function () { + console.log("Someone is writing!!"); +}; + +document.querySelector("input").addEventListener("input", callback); +``` + +### Anonymous vs named function + +```js +// Named function +function myFunction() { + console.log("myFunction"); +} + +// Anonymous function, assigned to a variable +const myFunctionAsVar = function () { + console.log("myFunctionAsVar"); +}; + +document.body.addEventListener("click", myFunctionAsVar); +document.body.addEventListener("click", myFunction); +``` + +## Exercises + +These could be more real world examples. Any ideas? Make a PR :) + +### Click counter + +Create an `index.html` file with two buttons: + +- When the button first is clicked it should first log out 0. The next time it is clicked it should log out 1, etc. +- Clicking the second button should also count up and logout the same variable. + +### Delay clicker + +Create a button in html with the text "Log in 3 seconds" + +- When the button is clicked it should wait 3 seconds and then log the text "This text was delayed by 3 seconds". + +### Page onload + +First create a callback function as a variable that logs this out: "DOM fully loaded and parsed" +This callback function should be called when the DOM is fully loaded. +To find what this function is called go to google! What should we search for??? + +### Mouse position + +Create a handler, that prints the x,y coordinate of the mouse event. + +#### Mouse position online tool + +Say we want to create an online tool where businesses can see where their users' mouse is most of the time. Businesses can now figure out if they have designed their website correctly. + +Lets create some js that will get the average `x` and `y` position of a user after 30 seconds. + +Before starting with this exercise, create a plan for how you will implement this! Maybe together with your mentor. + +Thank you for teaching Javascript 2. To make sure we keep improving, we are seeking your feedback on the module. For homework helpers, please click [here](https://forms.gle/pQQGWPAebVmbSDq49) to give us feedback. For teachers, your survey is available [here](https://forms.gle/ATsPi9zdFkd8tvHh7). diff --git a/legacy/javascript/javascript2/week3/optional-homework.md b/legacy/javascript/javascript2/week3/optional-homework.md new file mode 100644 index 00000000..d93d1ebc --- /dev/null +++ b/legacy/javascript/javascript2/week3/optional-homework.md @@ -0,0 +1,109 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +## So why this homework? + +Working with functions in javascript is such an essential part of working with javascript. + +We want you to realise that **functions are just variables** in javascript. It is exactly the same as string or a number. This homework forces you into using functions in weird ways that forces you to think differently about functions. + +## 1. Warmup + +### 1.1 codewars! + +- [7 kyu Product Array (Array Series #5)](https://www.codewars.com/kata/5a905c2157c562994900009d/javascript) + +### 1.2 functions! + +If you struggle to do this weeks homework there are a couple of things to do: + +- Try watch this video: +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=57bGm2wa2JM), [part 2](https://www.youtube.com/watch?v=Rpvuz2ywiQM), [part 3](https://www.youtube.com/watch?v=bjvplXwTsyo) [part 4](https://www.youtube.com/watch?v=YE_off9euAc) +- Read up on functions, callback async and synchronous functions [here](readme.md#callbacks) + +The warmup is a **little abstract**, it will get more concrete later on! + +1. Log out the text `Called after 2.5 seconds` 2.5 seconds after the script is loaded. + +2. Create a function that takes 2 parameters: `delay` and `stringToLog`. Calling this function should log out the `stringToLog` after `delay` seconds. Call the function you have created with some different arguments. + ![second task](assets/carbon.png) + +3. Create a button in html. When clicking this button, use the function you created in the previous task to log out the text: `Called after 5 seconds` 5 seconds after the button is clicked. + +![second task](assets/button-delay.gif) + +4. Create two functions and assign them to two different variables. One function logs out `Earth`, the other function logs out `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 call the third function once with the `Earth` function and once with the `Saturn` function. + +![second task](assets/planet-log.png) + +5. Create a button with the text called "Log location". When this button is clicked the location (latitude, longitude) of the user should be logged out using this [browser api](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API) + +![second task](assets/log-location.gif) + +6. _Optional_ Now show that location on a map using fx the [Google maps api](https://developers.google.com/maps/documentation/javascript/tutorial) + +7. 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. Try and call this function with different delays and different callback functions + +![second task](assets/run-after-delay.png) + +8. Check if we have double clicked on the page. A double click is defined by two clicks within 0.5 seconds. If a double click has been detected, log out the text: "double click!" + +9. Create a function called `jokeCreator` that has three parameters: `shouldTellFunnyJoke` - boolean, `logFunnyJoke` - function and `logBadJoke` - function. If you set `shouldTellFunnyJoke` to `true` it should call the `logFunnyJoke` function that should log out a funny joke. And vice versa. + +## 2. Function as a variable + +Create funtions that are used in these different ways: + +- Create an array with 3 items. All items should be functions. Iterate through the array and call all the functions. +- Create a function as a const and try creating a function normally. Call both functions. Read up on this if you are interested: +- Create an object that has a key whose value is a function. Try calling this function. + +Yes i know that was a little tough, now on to the fun part 🎉 + +![phew](https://media.giphy.com/media/EDt1m8p5hqXG8/giphy.gif) + +## 3. The fastest presser in this realm + +Lets create a fun simple game :) + +Here is the setup of the game: **Two users compete** about who can **press a key the most times** within a set time! + +A user specifies how long time the game should be, and presses **"start game!"**. When the button is pressed it is about pressing either `l` or `s` on the keyboard. The user that has the highest number of keypresses after the time is up, wins 🎉 + +Here is a gif of how the site should work: + +![homework folder](./optional-homework/fastest-clicker.gif) + +You can implement it exactly like you want to, but here is my recommended order: + +1. **Create an input and a button in html**. When the button is clicked, get the value of the input. This value will be the amount of time the game should run. +2. **Set a timeout for the time specified by the user.** After that time has run out just log out a simple string. +3. **Create an event listener** so you can call a function **when any key is pressed**. Now grap the actual key that was pressed. Fx was it a `j` or an `i`. We are interested in `s` and `l`. Here google is your friend! +4. **Keep a counter** for how many times `l` and `s` was pressed. +5. **Now put it all together!** After the timeout is done figure out which of the counters is largest. Give some kind of feedback to the users indicating who won. + +### 2.1 Extra features + +1. **Start a new game** functionality. Create some functionality so that the users can restart a game. +2. Try and give the site some **styling so it looks nice** :) +3. **Custom feature**. Add something unique to the game! If you dont know how to implement it, just describe what it should do! +4. **Countdown to end of game** - _optional_. Have a countdown that simply counts down until the game is done. + +Here are some general things to consider: + +- What if a user starts pressing a key before the game is started, what should happen? +- What if the game is a draw? Are both winners? None winners? Maybe indicate to the user that is was a draw. +- What if no time was specified for the game? +- What if there were no key presses before the game ends? + +### 3.3 Confetti + +If you wanna give the game some confetti like in the gif, check out [this library](https://www.npmjs.com/package/confetti-js) + +Use the library in your page by adding this line before you load your main.js: + +```html + +``` diff --git a/legacy/javascript/javascript2/week3/optional-homework/fastest-clicker.gif b/legacy/javascript/javascript2/week3/optional-homework/fastest-clicker.gif new file mode 100644 index 00000000..72226655 Binary files /dev/null and b/legacy/javascript/javascript2/week3/optional-homework/fastest-clicker.gif differ diff --git a/legacy/javascript/javascript2/week3/preparation.md b/legacy/javascript/javascript2/week3/preparation.md new file mode 100644 index 00000000..0f7ffd31 --- /dev/null +++ b/legacy/javascript/javascript2/week3/preparation.md @@ -0,0 +1,11 @@ +# Preparation + +- Callback functions: (15 min) +- Read about Asynchronous vs. Synchronous programming: (10 min) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Javascript callbacks](https://youtu.be/hjgunSqSPaA) +- [Working with asynchronous code in Javascript](https://youtu.be/RTrua6CRNEM) diff --git a/legacy/javascript/javascript3/README.md b/legacy/javascript/javascript3/README.md new file mode 100644 index 00000000..ccc771e1 --- /dev/null +++ b/legacy/javascript/javascript3/README.md @@ -0,0 +1,9 @@ +# JavaScript 3 + +Here you can find course content and homework for the JavaScript 3 module. + +| Week | Topic | Preparation | Homework | Lesson plan | +| ---- | ---------------------------- | ----------------------------------- | ---------------------------------------- | ----------------------------------- | +| 7. | JSON; APIs; `fetch` | [Preparation](week1/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week1/lesson-plan.md) | +| 8. | Promises; `async`/`await` | [Preparation](week2/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week2/lesson-plan.md) | +| 9. | Classes; Promises (advanced) | [Preparation](week3/preparation.md) | [Homework](/homework-projects/readme.md) | [Lesson plan](week3/lesson-plan.md) | diff --git a/legacy/javascript/javascript3/week1/README.md b/legacy/javascript/javascript3/week1/README.md new file mode 100644 index 00000000..e6a12f6b --- /dev/null +++ b/legacy/javascript/javascript3/week1/README.md @@ -0,0 +1,13 @@ +# JavaScript 3, Week 1 + +## Learning Goals + +- [ ] Json +- [ ] Apis +- [ ] Fetch (No promise explanation! Focus on usage) + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) diff --git a/legacy/javascript/javascript3/week1/assets/giphy-search.gif b/legacy/javascript/javascript3/week1/assets/giphy-search.gif new file mode 100644 index 00000000..e61311cd Binary files /dev/null and b/legacy/javascript/javascript3/week1/assets/giphy-search.gif differ diff --git a/legacy/javascript/javascript3/week1/lesson-plan.md b/legacy/javascript/javascript3/week1/lesson-plan.md new file mode 100644 index 00000000..bb0a440d --- /dev/null +++ b/legacy/javascript/javascript3/week1/lesson-plan.md @@ -0,0 +1,180 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +## Lesson materials + +These are some examples of previously created materials by mentors that you can use yourself, or for inspiration. + +- [Notion Page Handout](https://dandy-birth-1b2.notion.site/HYF-Aarhus-JS-3-Week-1-c6fd6d7243454ac0b519c17829bf8761?pvs=4) (by [Thomas](https://github.com/te-online)) + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +- Json + - Start of with letting the students investigate what JSON is. Pick a group and let them explain to class what JSON is. + - Types (string, number, object, array, boolean, null) + - Validation + - Rules: JSON names require double quotes, no trailing commas + - `.parse` and `.stringify` - Let students investigate what these functions do + - Difference between js object and json file + - [Code inspiration](#json) + - [Exercise](#meal-ordering-website) +- Apis + - The focus should be on consuming api's with `get` method. + - Give an example of an api (preferably one with an accesstoken, showing that part aswell) + - Explain conceptually what an api is (interface that hides abstraction). Explain how paths and query parameters work. Do not show how an api is implemented. We show that in the node class. Good analogy [here](https://www.reddit.com/r/webdev/comments/en04ct/i_created_a_word_suggestions_api_to_use_on_a/fdtmj60/) + - [Code inspiration](#apis) +- Fetch (No promise explanation! Focus on usage) + - Focus on usage let the students copy the fetch script and use it from there. Next week promises will be explained! + - [Code inspiration](#fetch) + - [Exercise 1](#astronauts-in-space), [exercise 2](#dog-fan-website) + +At this point good coding practices is starting to get very important! Check our [coding best practices](https://github.com/HackYourFuture-CPH/curriculum/blob/main/review/review-checklist.md#javascript) and use these both when live coding but also in reviews. + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript3/week1/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### JSON + +```js +/* +JSON +JSON stands for JavaScript Object Notation +JSON is a lightweight format for storing and transporting data +JSON is often used when data is sent from a server to a web page +Typical example of json: +https://jsonplaceholder.typicode.com/users +For validating your JSON +https://jsonlint.com/ +The most important rules: +JSON names require double quotes. +No trailing commas +In JSON, values must be one of the following data types: +a string +a number +an object (JSON object) +an array +a boolean +null +*/ + +// A string formatted like a JSON file +const jsonExample = '{"name": "Benjamin", "age": 23}'; +// This is just a string! +console.log(jsonExample); +// Cannot access a the key name of a string +console.log(jsonExample.name); + +// Now we parse (convert) the string (that we know is valid JSON) into a workable javascript object +const parsedJavascriptObject = JSON.parse(jsonExample); +// yeah we now have a js object +console.log(parsedJavascriptObject); +// where we can access the name key +console.log(parsedJavascriptObject.name); + +// We can also go the other way! Here we have an object +const javascriptObject = { + name: "TwentyThree", + age: 23, +}; +console.log(javascriptObject); + +// Now we convert the object back into a string +console.log(JSON.stringify(javascriptObject)); + +// JSON does not have to be an object, it can also be an array +console.log(JSON.parse("[1,2,3]")); + +// create json using JSON.stringify +``` + +### Apis + +API - Application Programming Interface +What is an interface? + +Programmers can use an api to access complex functionality in a simple way. +Electricity socket. You just plug your appliance into the wall and it works. +We dont have to worry about the wiring or anything. The complex functionality has been abstracted away. +Web API's are like that, but just for getting data from a server. + +There are some funny apis to play with: + +- +- + +This incredibly unique service generates true random numbers by measuring quantum fluctuations of a vacuum in real-time! + + + +### Fetch + +```js +fetch("https://yesno.wtf/api/") + .then((response) => response.json()) + .then((yesOrNoData) => { + console.log(yesOrNoData); + // HERE IS WHERE YOU WRITE YOUR CODE!!!!!!!! + }); +``` + +## Exercises + +## Meal ordering website + +Imagine your are running a meal ordering website. +Orders come in from the web and we need to store them in a json file. +Create a json file with two orders that contain at least these things: + +- Order name +- Order id +- Price +- List of drinks +- Order extras (fx cheese, lettuce etc.) + +Think about what what type the data should be saved as! + +## Astronauts in space + +Use [this api](http://api.open-notify.org/astros.json) to fetch how many astronauts are currently in spaces. + +Add the following text to the DOM, using the data about astronauts: + +```text +There are NUMBER_OF_ASTRONAUTS astronauts in space, they are: +ASTRONAUT_NAME1 +ASTRONAUT_NAME2 +ASTRONAUT_NAME3 +ASTRONAUT_NAME4 +ASTRONAUT_NAME5 +``` + +An example with 2 astronauts could be: + +```text +There are 2 astronauts in space, they are: +Benjamin Hughes +Jørgen Pedersen +``` + +## Dog fan website + +Let's create a site for dog lovers using this API: + +1. Get a random dog image and display it in the browser +2. Get a new image every 2 sec. +3. Get the list of all breeds from +4. Display a random image of a breed from the list +5. Display the name of the breed under the image diff --git a/legacy/javascript/javascript3/week1/optional-homework.md b/legacy/javascript/javascript3/week1/optional-homework.md new file mode 100644 index 00000000..a25f1b22 --- /dev/null +++ b/legacy/javascript/javascript3/week1/optional-homework.md @@ -0,0 +1,100 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +## Why should I even do this homework? + +Working with json and api's is the way modern **javascript application's communicate with servers**. That can be either getting some data but also updating or creating new data. + +It is how autocomplete can receive suggestions for a search query and how infinite scroll can keep loading new posts. + +If you struggle to do this weeks homework there are a couple of things to do: + +- Try watch these two videos: , +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=0piVFh9S0Kc), [part 2](https://www.youtube.com/watch?v=DjdFsV1X9-o), [part 3](https://www.youtube.com/watch?v=5uN00cZzUKM), [part 4](https://www.youtube.com/watch?v=GB1N8XxFP7I) +- Read up on [fetch](https://javascript.info/fetch), [JSON](https://javascript.info/json). The articles are a little tricky + +## Create your own json file + +Create your own json file with something that **interests you**. Maybe that could be computers, pets, music etc. + +Remember to validate the json using a tool like fx this: + +## Find a cool api + +Find a cool api and **explain how it works** and what kind of **json data** the api responds with. Is it an array, an object, a string. How is the data structure. Is it fx an array of objects or how is it structured. + +There are a few examples of apis here: + + +## Weather app + +Lets create a **weather app** that based on a **users location** can find the relevant weather for that user. + +### Sign up for api key + +Go to and **sign up for an api key**. This key we will use for getting access to the weather api. + +### First call to the weather api + +We are going to be using the current weather api: + +To get some data from the api go to , where `YOUR_APP_ID` is substituted with the key you signed up for in the first step. + +If you go to the [above url](https://api.openweathermap.org/data/2.5/weather?q=copenhagen&appid=YOUR_APP_ID) and see some weather json data then congrats 🎉. + +If not, try and **read the error 💻** and see if you can figure out what went wrong. Or ask in the slack group :) + +### Fetch weather data from a city + +Create a javascript file and an html file and import the javascript file in the html file. + +**Fetch weather json data** from the api using a city a user has specified: Add an **input element** and **a button** to the html. When the button is clicked, get the text from the input (which should be a city name) and fetch the relevant weather data from that city. + +Remember to show some **loading text**. What if a user **writes nothing in the input?** + +### Display the data + +This data should be showed in your app: + +- The chosen city +- Temperature +- Icon for the weather type +- Wind speed +- How clowdy it is +- When sunrise and sunset is +- _Optional_ a map showing where the city is located + +You decide how the data should be displayed. You could maybe be inspired by googling for "weather app ui". + +### Your feature here + +Now its your time to **come up with a feature**. No matter how big or small. + +### Use my current position _optional_ + +Investigate the [geo location api](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API). Add a button to your page, clicking this button will **get the users current position**. Use that position to fetch weather data from that position. + +Hint: We have to change the weather api url, so we are not using city but position. Look into the documentation! + +### Save my location _optional_ + +Imagine if a user did not have to either write a city or click the get my position button, but could just save the location. Lets do that! + +When a user has gotten a location through either the input element or the geo location api, save that location using [localstorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage). Localstorage is a **way to save data** even when you close the browser. + +Now when loading the page and there is a city in the localstorage, use that to get the current weather. + +![Man holding an umbrella against driving rain](https://media.giphy.com/media/3ohzdJlyD2InWwbJle/giphy.gif) + +## Giphy api + +Create a site where a **user can search for any word**. When searching a word the application will **find a gif** using the **searched word** using the giphy api: +Here is how it is going to work: The user can write some text indicating the gif he is looking for, click a button and then a gif will be found (using the searched word) and the gif will be displayed to the user. + +Add an input element, where the user can specify how many gif results the user wants. + +Try break this problem into **smaller problems** and write down how you are going to solve the problem **BEFORE you start coding.** + +![giphy search](assets/giphy-search.gif) diff --git a/legacy/javascript/javascript3/week1/preparation.md b/legacy/javascript/javascript3/week1/preparation.md new file mode 100644 index 00000000..141ba377 --- /dev/null +++ b/legacy/javascript/javascript3/week1/preparation.md @@ -0,0 +1,19 @@ +# Preparation + +- [JSON](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON) (5 min) + +- Read about APIs! The resources keep changing, but the core concepts are everlasting, so we think it is best if you search `"what are APIs"` and watch/listen/read around until you get a good basic idea! 👀 👂🏽 🧐 + Tip: try searching `"API waiter example"` - it is a good classic analogy explaining how APIs work! + +- A recap of higher order functions & arrays: [video](https://www.youtube.com/watch?v=rRgD1yVwIvE&t=1s&ab_channel=TraversyMedia) (~35 mins) + +- JSON Crash Course: [video](https://www.youtube.com/watch?v=wI1CWzNtE-M&t=1311s&ab_channel=TraversyMedia) (~25 mins) + +![Studying](https://media.giphy.com/media/l0HlAgJTVaAPHEGdy/giphy.gif) + +_Please go through the material and come to class prepared!_ + +## Flipped classroom videos + +- [Working with JSON using Javascript](https://youtu.be/ghMR-k5pKjg) +- [Fetching data from API using fetch - Javascript](https://youtu.be/pL_zEzunBKU) diff --git a/legacy/javascript/javascript3/week2/README.md b/legacy/javascript/javascript3/week2/README.md new file mode 100644 index 00000000..6ba6f17a --- /dev/null +++ b/legacy/javascript/javascript3/week2/README.md @@ -0,0 +1,44 @@ +# Learning Goals + +- [ ] Async/await +- [ ] Promises + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) + +## Promise chaining + +Just like we can chain array functions like this: + +```js +const fastCarBrands = cars + .filter((car) => car.speed > 60) + .map((car) => car.brand); +``` + +We can chain promise function aswell, and it works exactly like with chaining array methods or chaining anything in js. We use the return of calling the previous function: + +```js +doesBenjaminEndWithN = "BENJAMIN" + .toLowerCase() // <-- toLowerCase returns a string! + .endsWith("n"); // <-- That string we can call .endsWith on! +``` + +When we deal with promises the chaining part comes because calling the `.then` function [returns a promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then)! + +We know that when we have a promise, we can call `.then` on that promise + +```js +fetch("http://api.open-notify.org/astros.json") + .then(function (response) { + // <-- .then returns a promise! + // The returned promise (from calling .then) resolves when response.json() resolves! + return response.json(); + }) + .then(function (astronautData) { + // because the previous .then function returns a promise, we can call .then on that! + }); +``` diff --git a/legacy/javascript/javascript3/week2/assets/all-at-once.gif b/legacy/javascript/javascript3/week2/assets/all-at-once.gif new file mode 100644 index 00000000..307bf361 Binary files /dev/null and b/legacy/javascript/javascript3/week2/assets/all-at-once.gif differ diff --git a/legacy/javascript/javascript3/week2/assets/one-by-one.gif b/legacy/javascript/javascript3/week2/assets/one-by-one.gif new file mode 100644 index 00000000..42860a2c Binary files /dev/null and b/legacy/javascript/javascript3/week2/assets/one-by-one.gif differ diff --git a/legacy/javascript/javascript3/week2/exercise.html b/legacy/javascript/javascript3/week2/exercise.html new file mode 100644 index 00000000..85efc587 --- /dev/null +++ b/legacy/javascript/javascript3/week2/exercise.html @@ -0,0 +1,15 @@ + + diff --git a/legacy/javascript/javascript3/week2/lesson-plan.md b/legacy/javascript/javascript3/week2/lesson-plan.md new file mode 100644 index 00000000..397fae8e --- /dev/null +++ b/legacy/javascript/javascript3/week2/lesson-plan.md @@ -0,0 +1,294 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +## Lesson materials + +These are some examples of previously created materials by mentors that you can use yourself, or for inspiration. + +- [Notion Page Handout](https://dandy-birth-1b2.notion.site/HYF-Aarhus-JS-3-Week-2-0287dd1293df4a0a92171e62ce12f5c8?pvs=4) (by [Thomas](https://github.com/te-online)) + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +Promises is notoriously difficult to teach! I teach **consumption and creation of promises totally separate!** And show them that its just like with functions. There is a creation part and a comsumption part. + +First when they fully understand one part of promises, i move on! Don't overcomplicate things. Only mention the resolve function to begin with. When they get that, say that there also is a reject function. **Take as many babysteps as is possible!** Dont mention that resolve and reject can take an argument to begin with, first later explain that. + +This class is a little poor on real world examples. Make a PR if you have any good ideas! + +- Async/await - simple introduction focused on usage + - Quickly recap asynchronicity + - Ask the students what it means that some code is asynchronous + - Practical example of async/await + - [Exercises 1](#exercise-1) +- Promise + - Why do we use promises? + - So important to explain this, the students always ask this! + - + - Consumption + - [Code inspiration](#promise-comsumption) + - Example, call some function that returns a promise (like fetch) + - [Exercises 2](#exercise-2) + - Creation + - [Code inspiration](#promise-creation---a-recipe-for-creating-your-own-promise) + - [Exercises 3](#exercise-3) and then [Exercises 4](#exercise-4) + - Async await + - [Exercises 5](#exercise-5) + - `Promise.all` - Let students investigate + - Optional - Chaining. Calling `.then` returns a promise. Only get to here when they understand async/await and promise consumption and creation. + - ?Code inspiration? + - Reason for promise: + - [Exercises 5](#exercise-5) and [Exercises 6](#exercise-6) + +At this point good coding practices is starting to get very important! Check our [coding best practices](https://github.com/HackYourFuture-CPH/curriculum/blob/main/review/review-checklist.md#javascript) and use these both when live coding but also in reviews. + +## Flipped classroom videos + +[Flipped classroom videos](https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript3/week2/preparation.md#flipped-classroom-videos) + +## Code inspiration + +### Async/await - simple usage + +```js +// Warm up exercise. The students has to say everything they can about a variable, ONLY from the variable name. Fx the type, what it returns, what object we could expect etc. +// cars, car, title, getTitle, addTitle, isTitle, hasTitle, hasItem, users, year, yearIndex, user, review. +``` + +```js +// DONT EXPLAIN WHAT ASYNC OR AWAIT DOES YET! Explain on a higher level: +// You have to write async before a function for await to work. No details for now +// await waits until we have fetched the data from the api. Or said in another way await waits until fetch has resolved with the data from the api + +// write async before a function for await to work. What does it mean that something is asynchronous? +async function getAstronauts() { + // await waits until we have data from fetch before it runs the next line. No need for callbacks 🤯 + console.log("Before we fetch data"); + const astronautsResponse = await fetch( + "http://api.open-notify.org/astros.json", + ); + console.log( + "This is logged out after some time, even though the code looks synchronous! 🤯", + ); + const astronauts = await astronautsResponse.json(); + console.log("This is logged out after some time! 🤯"); + console.log(astronauts); + return astronauts; +} + +getAstronauts(); +``` + +### Promise comsumption + +So how did the async/await example above actually work? Lets get into promises! + +If you have a promise, you can call two functions on that promise. '.then' and '.catch'. When are these functions called? What does it mean that a promise is resolved or rejected? + +The students should be able to answer these questions: +// Question 1: What does it mean that a promise is resolved? Which method on a promise get called? +// Question 2: What does it mean that a promise is rejected? Which method on a promise get called? +// How would you explain your mom what resolved and rejected means? + +```js +fetch("http://api.open-notify.org/astros.json") + .then((astronautsResponse) => astronautsResponse.json()) + .then((astronauts) => { + console.log(astronauts); + }) + .catch((error) => console.log(error)); + +// https://codesandbox.io/s/scrollto-promise-example-0gjp6 +// If not working try chrome +scrollTo("section.features") + .then(() => console.log("scrolling done")) + .catch((error) => console.log(error)); + +// HAMMER in this point: +// When you have a promise you can call two functions on that promise (.then and .catch). '.then' is called when the promise is resolved. '.catch' is called when the promise is rejected. +``` + +### Promise creation - A recipe for creating your own promise + +When you create a new promise you give it a function that has two functions as parameters (resolve and reject). Resolve is called when everything in a promise goes well. Reject is called when something goes wrong. + +```js +// Start as simple as possible, no reject, just resolve! +const oneSecondTimeoutPromise = new Promise((resolve) => { + setTimeout(() => { + resolve(); + }, 1000); +}); + +// You can pass data in the resolve +const oneSecondTimeoutPromise = new Promise((resolve) => { + setTimeout(() => { + resolve("1 second has passed"); + }, 1000); +}); + +oneSecondTimeoutPromise.then((timeoutData) => { + console.log(timeoutData); // '1 second has passed' +}); + +const orderPizzaPromise = new Promise((resolve, reject) => { + const pizzaMakingTime = 10000; + const didPizzaBakingSucceed = true; + const pizza = "Macaroni pizza"; + setTimeout(() => { + if (didPizzaBakingSucceed) { + resolve(pizza); + } else { + reject("The pizza was a mess"); + } + }, pizzaMakingTime); +}); + +orderPizzaPromise + .then((pizza) => { + console.log(`Lets eat the ${pizza}`); + }) + .catch((error) => { + console.log(`Lets eat the nothing`); + }); + +// HAMMER in this point: +// When you create a new promise you give it a function that has two functions as parameters (resolve and reject). Resolve is called when everything in a promise goes well. Reject is called when something goes wrong. + +// Compare function creation and consumption to promise creation and consumption +// function creation +function test() {} + +// function usage +console.log(test()); +``` + +### Back to async/await + +So writing `async` in front of a function makes it return a promise! The keyword `await` makes JavaScript wait until that promise resolved and returns its result. + +```js +async function getAstronauts() { + try { + const astronautsResponse = await fetch( + "http://api.open-notify.org/astros.json", + ); + const astronauts = await astronautsResponse.json(); + return astronauts; + } catch (err) { + throw "Fetchin the astronauts went wrong"; + } +} + +const astronauts = getAstronauts(); +``` + +### Function that returns a promise + +```js +// This example could definitely be more real world! Any ideas, make a pull request! +const promise = new Promise((resolve) => { + setTimeout(() => { + const tea = { + color: "green", + taste: "Bitter", + }; + + resolve(tea); + }, 3000); +}); + +const isThereMoreTea = false; + +// This example could definitely be more real world! Any ideas, make a pull request! +function makeTea() { + console.log("Start making tea"); + + return new Promise((resolve, reject) => { + setTimeout(() => { + const tea = { + color: "green", + taste: "Bitter", + }; + + if (isThereMoreTea) { + resolve(tea); + } else { + reject("We dont have more TEA!!"); + } + }, 3000); + }); +} + +console.log(makeTea()); + +makeTea() + .then((returnedTeaObject) => { + console.log(returnedTeaObject); + }) + .catch((error) => { + console.log(error); + }); +``` + +## Exercises + +## Exercise 1 + +Using async await + +1. `fetch` yes or no from this api: `https://yesno.wtf/api`. log out the answer + +## Exercise 2 + +Using promises + +1. `fetch` yes or no from this api: `https://yesno.wtf/api`. log out the answer +2. Try fetching a url that rejects fx `https://knajskdskj.jasdk`. Log out the error message + +## Exercise 3 + +1. Create a promise that resolves after 4 seconds. Use this promise to log out the text 'hello' after 4 seconds. +2. Now make the promise fail by rejecting it with an error message instead of resolving it, and log the error message to the console. + +## Exercise 4 + +Create a function that returns a promise, that you can use like this: + +```js +// YesNoFail4Seconds should wait 4 seconds before it does one of the following 3 things: +// resolves with a yes +// resolves with a no +// or rejects +// Look into Math.random() +YesNoFail4Seconds() + .then((data) => { + console.log(`The answer is ${data}`); + }) + .catch((error) => { + console.log(error); + }); +``` + +The above example show how to consume the promise using promises. Now try consume the `YesNoFail4Seconds` using async/await + +## Exercise 5 + +Using async await + +1. Fetch the astronauts +2. After the astronauts has been fetched, fetch movies using [this api](https://gist.githubusercontent.com/pankaj28843/08f397fcea7c760a99206bcb0ae8d0a4/raw/02d8bc9ec9a73e463b13c44df77a87255def5ab9/movies.json) +3. Log out the movies + +## Exercise 6 + +Get the astronauts and the movies at the same time. Log out the movies and the battery status when both promises has been resolved. diff --git a/legacy/javascript/javascript3/week2/optional-homework.md b/legacy/javascript/javascript3/week2/optional-homework.md new file mode 100644 index 00000000..da7cd5e4 --- /dev/null +++ b/legacy/javascript/javascript3/week2/optional-homework.md @@ -0,0 +1,28 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +## Why should I even do this homework? + +Promises creates a **pleasant way of working with asynchronous code**. It will make your asynchronous code nearly look synchronous. It is possible to compose promises further developing the function part of javascript. + +Since promises is becoming standard in javascript, new browser api's use promises for interacting with them. `getUserMedia` for accessing webcam, `Navigator.getBattery()` for getting battery level, `Bluetooth.requestDevice()`, `serviceWorker` or `USB.requestDevice()` + +If you struggle to do this weeks homework there are a couple of things to do: + +- Try watch these two videos: , +- Watch the class recording. If it for some reason is missing. Then watch these: [part 1](https://www.youtube.com/watch?v=SDr1FCqqjAs), [part 2](https://www.youtube.com/watch?v=V82nhqIYWP0), [part 3](https://www.youtube.com/watch?v=iQgYX5tB7gs) [part 4](https://www.youtube.com/watch?v=RYdLBdHZMCU) [part 5](https://www.youtube.com/watch?v=A41NxevmHwI) +- Read up on [promises](https://javascript.info/promise-basics), [async await](https://javascript.info/async-await) + +### Currency calculator + +The homework for this week is to build a currency calculator using this API: + +## Technical specifications + +1. Make a request to the API and store the Exchange rates as well as a list of currencies for the dropdowns. +2. User can enter an amount +3. User can choose a currency to convert from(default should be EUR) +4. User can choose a currency to convert to(Default should be DKK) +5. Whenever amount, currency from or currency to changes we show what the amount translates to in the to currency diff --git a/legacy/javascript/javascript3/week2/optional-homework/promise-visual/index.html b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/index.html new file mode 100644 index 00000000..babb7afb --- /dev/null +++ b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/index.html @@ -0,0 +1,26 @@ + + HyfBay + + + + +
      +
        +
      • +
      • +
      • +
      + +
        +
      • Red target
      • +
      • Blue target
      • +
      • Green target
      • +
      + 👍 +
      + + + diff --git a/legacy/javascript/javascript3/week2/optional-homework/promise-visual/main.css b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/main.css new file mode 100644 index 00000000..0b542efe --- /dev/null +++ b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/main.css @@ -0,0 +1,114 @@ +body { + font-family: "Open Sans", sans-serif; + background-color: #f9fbfd; +} + +* { + box-sizing: border-box; +} + +body, +h1, +h2 { + margin: 0; + overflow: hidden; +} + +ul { + list-style-type: none; + margin: 0; + padding: 0; +} +ul.marks li { + width: 100px; + height: 100px; + position: absolute; + transition: transform 2s; + border-radius: 100%; +} +ul.marks li:nth-child(1) { + background-color: red; +} +ul.marks li:nth-child(2) { + background-color: blue; +} +ul.marks li:nth-child(3) { + background-color: green; +} +ul.targets li { + border-radius: 100%; + width: 100px; + height: 100px; + border: solid 1px; + position: absolute; + transition: box-shadow 0.3s; + text-align: center; + line-height: 100px; +} +ul.targets li.fulfilled { + box-shadow: green 0px 0px 25px; +} +ul.targets li:nth-child(1) { + top: 300px; + left: 20px; +} +ul.targets li:nth-child(2) { + top: 300px; + left: 400px; +} +ul.targets li:nth-child(3) { + top: 20px; + left: 400px; +} +span { + display: none; +} + +@keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + transform: translate(-50%, -50%) scale3d(0.3, 0.3, 0.3); + } + + 20% { + transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1.1); + } + + 40% { + transform: translate(-50%, -50%) scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + transform: translate(-50%, -50%) scale3d(1.03, 1.03, 1.03); + } + + 80% { + transform: translate(-50%, -50%) scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + transform: translate(-50%, -50%) scale3d(1, 1, 1); + } +} + +span.shown { + display: block; + animation-duration: 0.75s; + animation-name: bounceIn; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 5rem; +} diff --git a/legacy/javascript/javascript3/week2/optional-homework/promise-visual/main.js b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/main.js new file mode 100644 index 00000000..e69de29b diff --git a/legacy/javascript/javascript3/week2/optional-homework/promise-visual/move-element.js b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/move-element.js new file mode 100644 index 00000000..1ce9e89e --- /dev/null +++ b/legacy/javascript/javascript3/week2/optional-homework/promise-visual/move-element.js @@ -0,0 +1,68 @@ +// Creating new scope +{ + const redBox = document.querySelector("ul.marks li:nth-child(1)"); + const blueBox = document.querySelector("ul.marks li:nth-child(2)"); + const greenBox = document.querySelector("ul.marks li:nth-child(3)"); + const boxes = [redBox, blueBox, greenBox]; + + const span = document.querySelector("span"); + + function getRandomInt(min, max) { + min = Math.ceil(min); + max = Math.floor(max); + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + function randomizeStartPosition() { + boxes.forEach((box) => { + const x = getRandomInt(-20, 20); + const y = getRandomInt(-20, 20); + + box.style.left = x; + box.style.top = y; + }); + } + + randomizeStartPosition(); + + const targets = document.querySelectorAll("ul.targets li"); + // continously check if circles has been added to the right targets + setInterval(() => { + setTargetFulfilled(redBox, targets[0], { x: 20, y: 300 }); + setTargetFulfilled(blueBox, targets[1], { x: 400, y: 300 }); + setTargetFulfilled(greenBox, targets[2], { x: 400, y: 20 }); + + const allTargetsFulfilled = [...targets].every((target) => + target.classList.contains("fulfilled"), + ); + if (allTargetsFulfilled) { + setTimeout(() => span.classList.add("shown"), 300); + } + }, 10); + + function setTargetFulfilled(box, targetBox, fulfilledPosition) { + const renderedClientBox = box.getBoundingClientRect(); + + if ( + renderedClientBox.left === fulfilledPosition.x && + renderedClientBox.top === fulfilledPosition.y + ) { + targetBox.classList.add("fulfilled"); + } + } + + /** + * @param {DOMelement} boxToMove - A DOM element of the box to move + * @param {Position} newPosition - An object specifying how much to move the box in the x and y directions. + * @return {Promise} + */ + + function moveElement(boxToMove, newPosition) { + return new Promise((resolve) => { + boxToMove.style.transform = `translate(${newPosition.x}px, ${newPosition.y}px)`; + boxToMove.addEventListener("transitionend", resolve); + }); + } + + window.moveElement = moveElement; +} diff --git a/legacy/javascript/javascript3/week2/preparation.md b/legacy/javascript/javascript3/week2/preparation.md new file mode 100644 index 00000000..83d0dc82 --- /dev/null +++ b/legacy/javascript/javascript3/week2/preparation.md @@ -0,0 +1,23 @@ +# Preparation + +## Promises + +- [A cartoon explaining promises](https://fullstackjournal.wordpress.com/2018/07/06/the-promise-js-explained-i-burger-party/) (10 min) +- [A nice article about promises from David Walsh](https://davidwalsh.name/promises) (15 min) +- Async JavaScript [tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9jx2TTZk3IGWKSbtugYdrlu) (11 videos, about 1 hour in total) +- Async [crash course](https://www.youtube.com/watch?v=PoRJizFvM7s&t=1088s&ab_channel=TraversyMedia) (~25 mins) +- Everything you want to know about [JavaScript scope](https://toddmotto.com/everything-you-wanted-to-know-about-javascript-scope/) (20 min) + +### Extra + +- (15 min) +- An article explaining promises +- An article explaining promises step by step :: + ![You can do it!](https://media.giphy.com/media/yoJC2K6rCzwNY2EngA/giphy.gif) + +## Flipped classroom videos + +- [Promises practical examples using Javascript](https://youtu.be/o_m4clbtzeI) +- [Creating a promise using Javascript](https://youtu.be/qapwmq5UA6Y) +- [Consuming/using promises using Javascript](https://youtu.be/G4YSi6VA2gw) +- [Working with async/await using Javascript](https://youtu.be/6Hq6AywZ7FY) diff --git a/legacy/javascript/javascript3/week3/README.md b/legacy/javascript/javascript3/week3/README.md new file mode 100644 index 00000000..54483a16 --- /dev/null +++ b/legacy/javascript/javascript3/week3/README.md @@ -0,0 +1,15 @@ +# Learning goals + +- [ ] Classes + +## Relevant links + +- [Preparation](preparation.md) +- [Homework](/homework-projects/readme.md) +- [Lesson plan](lesson-plan.md) + +## So what now? + +Your next class will be database, starting your descend into the backend. + +For the frontend you have learned javascript, but not so much about the modern development workflow. We will be learning this when you get to node, react and final project. But if you are interested you can read more about it here: diff --git a/legacy/javascript/javascript3/week3/lesson-plan.md b/legacy/javascript/javascript3/week3/lesson-plan.md new file mode 100644 index 00000000..b4b71ac0 --- /dev/null +++ b/legacy/javascript/javascript3/week3/lesson-plan.md @@ -0,0 +1,240 @@ +# Lesson plan + +- Focus on having lots of in class exercises. +- DONT teach everything, let the students investigate topics on their own aswell! +- Focus on how to read documentation, google answers and google errors!! +- Teach towards the students being able to solve the homework + +## Lesson materials + +These are some examples of previously created materials by mentors that you can use yourself, or for inspiration. + +- [Notion Page Handout](https://dandy-birth-1b2.notion.site/HYF-Aarhus-JS-3-Week-3-09fd374036c440ebb6a0a9cc355b248c?pvs=4) (by [Thomas](https://github.com/te-online)) + +Remember to add the code you wrote in the class to the relevant class branch's class work folder. If the branch has not been created just create and push it :) If you dont have access, write to one from the core team. You can see an example below! + +To find examples of what teachers have taught before go to the class branches in the classwork folder, Fx [class 07](https://github.com/HackYourFuture-CPH/JavaScript/tree/class07/JavaScript1/Week1/classwork) + +If you find anything that could be improved then please create a pull request! We welcome changes, so please get involved if you have any ideas!!! + +--- + +Start VERY simple. Just a class that has few fields, no methods. Explain the diff from object to class. Explain instance etc. When they get that move on to class methods. **Only teach extends if they really are on top of things** otherwise just get them comfortable with classes :) if you can repeat a bit of promise, maybe when working with class that would be great. + +- Classes + - Constructor + - [Code inspiration](#constructor) + - [Exercise](#1-create-a-user-class) + - Instance + - [Code inspiration](#instance) + - [Exercise](#2-create-an-instance-of-the-class) + - Methods + - [Code inspiration](#methods) + - [Exercise](#3-create-a-class-method) + - `this` + - Refers to the instance of the class. Do go into too much detail and edge cases. Avoid mentioning `bind`, `apply`, etc unless you find it super important, the students will just forget it anyway! + - [Exercise](#3-creating-a-cv-class) + - Extend (Only if time!) + +At this point good coding practices is starting to get very important! Check our [coding best practices](https://github.com/HackYourFuture-CPH/curriculum/blob/main/review/review-checklist.md#javascript) and use these both when live coding but also in reviews. + +## Code inspiration + +### Constructor + +```js +class Comment { + constructor(username, content, time) { + this.username = username; + this.content = content; + this.time = time; + } +} +``` + +### Instance + +```js +const comment1 = new Comment("test", "post", new Date()); +``` + +### Methods + +```js +class Comment { + constructor(username, content, time) { + this.username = username; + this.content = content; + this.time = time; + } + + // Get help from students to write this method! + getTimeSincePost() { + return new Date().getTime() - this.time.getTime(); + } + + // Get help from students to write this method! + hasSwearWord() { + const swearWords = ["crap", "damn"]; + const postWords = this.content.split(" "); + const hasSwearWord = swearWords.find((swearWord) => + postWords.includes(swearWord), + ); + + return Boolean(hasSwearWord); + } +} + +const comment1 = new Comment("test", "post", new Date()); + +console.log(comment1.hasSwearWord()); +comment1.content = "shit crap"; +console.log(comment1.hasSwearWord()); +setTimeout(() => { + console.log(comment1.getTimeSincePost()); +}, 1000); + +// data +// username, content, time + +// functionality +// getTimeSincePost, hasSwearWord +``` + +### Class post + +```js +class Post { + // setup + constructor(username, content, postTime, likes, comments, shares) { + this.username = username; + this.content = content; + this.postTime = postTime; + this.likes = likes; + this.comments = comments; + this.shares = shares; + } + + addLike(username, time) { + const like = { + username: username, + time: time, + }; + + this.likes.push(like); + } + + addComment(username, content, time) { + this.comments.push(new Comment(username, content, time)); + } + + doShare() {} + + save() {} + + logThis() { + console.log(this.username); + } +} + +const post1 = new Post("benna100", "asd", "10/02/1019", [], [], []); +const post2 = new Post("habsdhjd", "asdajhdb", "10/02/1019", [], [], []); + +post1.addLike("bennaasdasd", "14:07"); +console.log(post1.likes); + +post1.addComment("ugg", "Great post", "14:16"); +console.log(post1.comments); + +post1.logThis(); +post2.logThis(); +``` + +## Exercises + +### 1. Create a user class + +The class should have 2 properties: firstName and lastName. Hint: Use `this` and `constructor`. + +### 2. Create an instance of the class + +Use the `new` keyword and assign the instance in a variable. + +- Try to log out the instance of the `User` to the console. +- Try to log out the users `firstName` + +### 3. Create a class method + +The method should be called `getFullName`, and should return the combined first name and last name of the user. Use string concatenation or template literals. Remember to use the `this` keyword to access the attributes on the class instance. + +Call the `getFullName` method and log the result to the console. + +### 3. Creating a CV class + +The CV that we will be making uses three classes: `Job`, `Education` and +`CV`. The `CV` class we have made for you (with some missing functionality). The `Job` and `Education` classes you need to create. + +#### Part 1 + +Create the classes `Job` and `Education`. + +- `Job` has five properties: `id`, `title`, `description`, `startDate` and `endDate` (the dates can be strings or actual `Date` objects). +- `Education` has six properties: `id`, `title`, `school`, `address`, `startDate` and `endDate`. + +```js +class Job { + ///... +} + +class Education { + ///... +} +``` + +#### Part 2 + +Now add the functionality for the methods in the `CV` class. + +_Remember_: jobs and educations are just arrays of class instances. So use your array manipulation knowledge for the add and remove methods. + +```js +class CV { + constructor(email) { + this.jobs = []; + this.educations = []; + //this.email = ? + } + + addJob(job) { + // add functionality here + } + + removeJob(job) { + // add functionality here + } + + addEducation(education) { + // add functionality here + } + + removeEducation(education) { + // add functionality here + } +} +``` + +#### Part 3 + +1. Create a new `CV` instance using the `new` keyword, and save it in a variable called `myCV`. + +2. Apply the methods you have created on the `myCV` object. Create a few `Job` and `Education` objects and add them to your CV. + +3. Remove a job and an education from `myCV`. + +4. Log `myCV` to the console, again, and check that the objects were removed correctly. + +#### Part 4 + +Add a method to the `CV` class called `renderCV()`. This method should render out the CV using HTML. Use `document.getElementById("")` and `document.createElement("")`, as well as `element.appendChild()` to build your HTML using JavaScript. + +Thank you very much for teaching Javascript 3, we hope you enjoyed it ! Now it is your time to give feedback about the module. For homework helpers, please click [here](https://forms.gle/4ZA1cnFg7nEjtjYR6) to give us feedback. For teachers, your survey is available [here](https://forms.gle/9nDL7KzZ6p6i6mTL8). diff --git a/legacy/javascript/javascript3/week3/optional-homework.md b/legacy/javascript/javascript3/week3/optional-homework.md new file mode 100644 index 00000000..eeae3432 --- /dev/null +++ b/legacy/javascript/javascript3/week3/optional-homework.md @@ -0,0 +1,32 @@ +# Optional Homework + +> [!WARNING] +> These are optional homework exercises that you can complete on top of your [homework project](/homework-projects/readme.md), if you wish. There is no requirement for these to be reviewed, but feel free to ask a mentor if you wish for some feedback. + +For this weeks homework we will create a web applications that generates a screenshot of a website based on a url. We will combine two API's one to generate the screenshot and one to allow the user to save the screenshot. + +API to generate screenshot: + +API to save screenshot: + +Technical spesifications. + +1. User can enter a URL for a website and it will send back a screenshot of the website using the website-screenshot API +2. User can hit a button to save the screenshot. It will then save the screenshot and the URL as a resource on crudcrud +3. User can get a list of all screenshots he has saved +4. User can delete a screenshot he has saved + +Extra + +1. Create another resource called users which takes in an email and password. Create one user. +2. Get back a list of users +3. First show a login form +4. If the email and password matches the one user we created we show the applications else we show an error message. + +Extra Extra + +1. Create another user +2. When saving a screenshot also save the user email(or another unique identifer) +3. Make sure we are only showing screenshots that the user that is logged in has uploaded + +Keep in mind the API key for the website-screenshot and the uuid for crudcrud should be in a secret.js file which is not comitted to git diff --git a/legacy/javascript/javascript3/week3/optional-homework/github-repos.html b/legacy/javascript/javascript3/week3/optional-homework/github-repos.html new file mode 100644 index 00000000..2763d6d6 --- /dev/null +++ b/legacy/javascript/javascript3/week3/optional-homework/github-repos.html @@ -0,0 +1,21 @@ +
        +
      • + Benna100's repositories +
          +
        • easy-sourdough: https://github.com/benna100/easy-sourdough
        • +
        • hyf-xmas: https://github.com/benna100/hyf-xmas
        • +
        • 53-milliarder: https://github.com/benna100/53-milliarder
        • +
        +
      • +
      • + testyMcTestface's repositories +
          +
        • test-tester: https://github.com/testyMcTestface/test-tester
        • +
        • test-dont-like: https://github.com/testyMcTestface/test-dont-like
        • +
        • + test-repo-ONLY-for-testing: + https://github.com/testyMcTestface/test-repo-ONLY-for-testing +
        • +
        +
      • +
      diff --git a/legacy/javascript/javascript3/week3/preparation.md b/legacy/javascript/javascript3/week3/preparation.md new file mode 100644 index 00000000..68893f17 --- /dev/null +++ b/legacy/javascript/javascript3/week3/preparation.md @@ -0,0 +1,15 @@ +# Preparation + +- Fetch API introduction: [video](https://www.youtube.com/watch?v=Oive66jrwBs&ab_channel=TraversyMedia) (30 mins) +- Callbacks, Promises, Async Await | JavaScript Fetch API Explained: [video](https://www.youtube.com/watch?v=VmQ6dHvnKIM&ab_channel=DaveGray) (1 hour) + +## Extra + +- Classes: (15 min) +- More advanced about classes (10 min) + +## Flipped classroom videos + +- [Intro to Classes](https://youtu.be/tciZZi2ZxrM) +- [Constructor & Methods](https://youtu.be/ZRCfNLtyO6Q) +- ["this"](https://youtu.be/LrQYgjIfxAU) diff --git a/legacy/nodejs/week1/README.md b/legacy/nodejs/week1/README.md index acc03bf5..1c37ae78 100644 --- a/legacy/nodejs/week1/README.md +++ b/legacy/nodejs/week1/README.md @@ -4,6 +4,6 @@ In the first week of the module we will focus on a general introduction starting ## Planning -| Week | Topic | Preparation | Homework | Lesson plan | -| ---- | ----------------------------------------------- | ------------------------------- | -------------------------------- | ------------------------------- | -| 1. | HTTP; Introduction to node js; Simple webserver | [Preparation](./preparation.md) | [Homework](./homework/README.md) | [Lesson plan](./lesson-plan.md) | +| Week | Topic | Preparation | Homework | Lesson plan | +| ---- | ----------------------------------------------- | ------------------------------------ | ------------------------------------- | ------------------------------------ | +| 1. | HTTP; Introduction to node js; Simple webserver | [Preparation](/week1/preparation.md) | [Homework](/week1/homework/README.md) | [Lesson plan](/week1/lesson-plan.md) | diff --git a/legacy/nodejs/week1/exercises/03-user-routes.md b/legacy/nodejs/week1/exercises/03-user-routes.md index 67346f5f..992ca293 100644 --- a/legacy/nodejs/week1/exercises/03-user-routes.md +++ b/legacy/nodejs/week1/exercises/03-user-routes.md @@ -48,8 +48,6 @@ Create a `users` table with the following fields: - `/gmail-users` should respond with users with an @gmail.com email - `/2022-users` should respond with users created in 2022 ---- - ## More routes - `/user-count` should respond with the number of users