{ "cells": [ { "cell_type": "code", "execution_count": 44, "id": "fb59da4f", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np" ] }, { "cell_type": "code", "execution_count": 45, "id": "179cef88", "metadata": {}, "outputs": [], "source": [ "movies = pd.read_csv('tmdb_5000_movies.csv')\n", "credits = pd.read_csv('tmdb_5000_credits.csv')" ] }, { "cell_type": "code", "execution_count": 46, "id": "09abf78f", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
budgetgenreshomepageidkeywordsoriginal_languageoriginal_titleoverviewpopularityproduction_companiesproduction_countriesrelease_daterevenueruntimespoken_languagesstatustaglinetitlevote_averagevote_count
90650000000[{\"id\": 35, \"name\": \"Comedy\"}]NaN109443[{\"id\": 917, \"name\": \"journalism\"}, {\"id\": 413...enAnchorman 2: The Legend ContinuesWith the 70s behind him, San Diego's top rated...38.125008[{\"name\": \"Paramount Pictures\", \"id\": 4}, {\"na...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2013-12-18173649015119.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedIt's kind of a big dealAnchorman 2: The Legend Continues6.0923
\n", "
" ], "text/plain": [ " budget genres homepage id \\\n", "906 50000000 [{\"id\": 35, \"name\": \"Comedy\"}] NaN 109443 \n", "\n", " keywords original_language \\\n", "906 [{\"id\": 917, \"name\": \"journalism\"}, {\"id\": 413... en \n", "\n", " original_title \\\n", "906 Anchorman 2: The Legend Continues \n", "\n", " overview popularity \\\n", "906 With the 70s behind him, San Diego's top rated... 38.125008 \n", "\n", " production_companies \\\n", "906 [{\"name\": \"Paramount Pictures\", \"id\": 4}, {\"na... \n", "\n", " production_countries release_date \\\n", "906 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2013-12-18 \n", "\n", " revenue runtime spoken_languages status \\\n", "906 173649015 119.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", "\n", " tagline title vote_average \\\n", "906 It's kind of a big deal Anchorman 2: The Legend Continues 6.0 \n", "\n", " vote_count \n", "906 923 " ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample()" ] }, { "cell_type": "code", "execution_count": 47, "id": "061e4107", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
movie_idtitlecastcrew
10642636The Specialist[{\"cast_id\": 8, \"character\": \"Ray Quick\", \"cre...[{\"credit_id\": \"52fe4361c3a36847f804fd57\", \"de...
\n", "
" ], "text/plain": [ " movie_id title \\\n", "1064 2636 The Specialist \n", "\n", " cast \\\n", "1064 [{\"cast_id\": 8, \"character\": \"Ray Quick\", \"cre... \n", "\n", " crew \n", "1064 [{\"credit_id\": \"52fe4361c3a36847f804fd57\", \"de... " ] }, "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ "credits.sample()" ] }, { "cell_type": "code", "execution_count": 48, "id": "874a3165", "metadata": {}, "outputs": [], "source": [ "movies = movies.merge(credits,on='title')" ] }, { "cell_type": "code", "execution_count": 49, "id": "09c53501", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
budgetgenreshomepageidkeywordsoriginal_languageoriginal_titleoverviewpopularityproduction_companies...runtimespoken_languagesstatustaglinetitlevote_averagevote_countmovie_idcastcrew
146235000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam...NaN9702[{\"id\": 2400, \"name\": \"juvenile prison\"}, {\"id...enBound by HonorBased on the true life experiences of poet Jim...9.122828[{\"name\": \"Hollywood Pictures\", \"id\": 915}]...180.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedAn epic story of three brothers. Bound by bloo...Bound by Honor7.71159702[{\"cast_id\": 1, \"character\": \"Miklo\", \"credit_...[{\"credit_id\": \"52fe451ec3a36847f80bd943\", \"de...
\n", "

1 rows × 23 columns

\n", "
" ], "text/plain": [ " budget genres homepage \\\n", "1462 35000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... NaN \n", "\n", " id keywords \\\n", "1462 9702 [{\"id\": 2400, \"name\": \"juvenile prison\"}, {\"id... \n", "\n", " original_language original_title \\\n", "1462 en Bound by Honor \n", "\n", " overview popularity \\\n", "1462 Based on the true life experiences of poet Jim... 9.122828 \n", "\n", " production_companies ... runtime \\\n", "1462 [{\"name\": \"Hollywood Pictures\", \"id\": 915}] ... 180.0 \n", "\n", " spoken_languages status \\\n", "1462 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", "\n", " tagline title \\\n", "1462 An epic story of three brothers. Bound by bloo... Bound by Honor \n", "\n", " vote_average vote_count movie_id \\\n", "1462 7.7 115 9702 \n", "\n", " cast \\\n", "1462 [{\"cast_id\": 1, \"character\": \"Miklo\", \"credit_... \n", "\n", " crew \n", "1462 [{\"credit_id\": \"52fe451ec3a36847f80bd943\", \"de... \n", "\n", "[1 rows x 23 columns]" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample()" ] }, { "cell_type": "code", "execution_count": 50, "id": "fb4d88f4", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(4809, 23)" ] }, "execution_count": 50, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.shape" ] }, { "cell_type": "code", "execution_count": 51, "id": "f8a85ce1", "metadata": {}, "outputs": [], "source": [ "#Required columns\n", "# genres\n", "# keywords\n", "# title\n", "# overview\n", "# movie_id\n", "# cast\n", "# crew\n", "\n", "movies = movies[['title','movie_id','overview','genres','keywords','cast','crew']]" ] }, { "cell_type": "code", "execution_count": 52, "id": "d6647d06", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
4235The Ballad of Jack and Rose17113Jack Slavin is an environmentalist with a hear...[{\"id\": 18, \"name\": \"Drama\"}][{\"id\": 293, \"name\": \"female nudity\"}, {\"id\": ...[{\"cast_id\": 1, \"character\": \"Jack Slavin\", \"c...[{\"credit_id\": \"52fe47069251416c7508b6c1\", \"de...
4228Spellbound4174When Dr. Anthony Edwardes arrives at a Vermont...[{\"id\": 18, \"name\": \"Drama\"}, {\"id\": 9648, \"na...[{\"id\": 1453, \"name\": \"amnesia\"}, {\"id\": 4924,...[{\"cast_id\": 7, \"character\": \"Dr. Constance Pe...[{\"credit_id\": \"52fe43b0c3a36847f8067e55\", \"de...
\n", "
" ], "text/plain": [ " title movie_id \\\n", "4235 The Ballad of Jack and Rose 17113 \n", "4228 Spellbound 4174 \n", "\n", " overview \\\n", "4235 Jack Slavin is an environmentalist with a hear... \n", "4228 When Dr. Anthony Edwardes arrives at a Vermont... \n", "\n", " genres \\\n", "4235 [{\"id\": 18, \"name\": \"Drama\"}] \n", "4228 [{\"id\": 18, \"name\": \"Drama\"}, {\"id\": 9648, \"na... \n", "\n", " keywords \\\n", "4235 [{\"id\": 293, \"name\": \"female nudity\"}, {\"id\": ... \n", "4228 [{\"id\": 1453, \"name\": \"amnesia\"}, {\"id\": 4924,... \n", "\n", " cast \\\n", "4235 [{\"cast_id\": 1, \"character\": \"Jack Slavin\", \"c... \n", "4228 [{\"cast_id\": 7, \"character\": \"Dr. Constance Pe... \n", "\n", " crew \n", "4235 [{\"credit_id\": \"52fe47069251416c7508b6c1\", \"de... \n", "4228 [{\"credit_id\": \"52fe43b0c3a36847f8067e55\", \"de... " ] }, "execution_count": 52, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample(2)" ] }, { "cell_type": "code", "execution_count": 53, "id": "c01c7f83", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "title 0\n", "movie_id 0\n", "overview 3\n", "genres 0\n", "keywords 0\n", "cast 0\n", "crew 0\n", "dtype: int64" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.isnull().sum()" ] }, { "cell_type": "code", "execution_count": 54, "id": "01483acb", "metadata": {}, "outputs": [], "source": [ "movies.dropna(inplace=True)" ] }, { "cell_type": "code", "execution_count": 55, "id": "6ff28e26", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "title 0\n", "movie_id 0\n", "overview 0\n", "genres 0\n", "keywords 0\n", "cast 0\n", "crew 0\n", "dtype: int64" ] }, "execution_count": 55, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.isnull().sum()" ] }, { "cell_type": "code", "execution_count": 56, "id": "6086111a", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.duplicated().sum()" ] }, { "cell_type": "code", "execution_count": 57, "id": "38ecf0d4", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
1783Paul Blart: Mall Cop14560Mild-mannered Paul Blart (Kevin James) has alw...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...[{\"id\": 41180, \"name\": \"security guard\"}, {\"id...[{\"cast_id\": 1, \"character\": \"Paul Blart\", \"cr...[{\"credit_id\": \"58dd4d1c92514111f7000e9f\", \"de...
548Snake Eyes8688All bets are off when corrupt homicide cop Ric...[{\"id\": 80, \"name\": \"Crime\"}, {\"id\": 9648, \"na...[{\"id\": 585, \"name\": \"casino\"}, {\"id\": 2339, \"...[{\"cast_id\": 1, \"character\": \"Rick Santoro\", \"...[{\"credit_id\": \"52fe44b4c3a36847f80a5533\", \"de...
\n", "
" ], "text/plain": [ " title movie_id \\\n", "1783 Paul Blart: Mall Cop 14560 \n", "548 Snake Eyes 8688 \n", "\n", " overview \\\n", "1783 Mild-mannered Paul Blart (Kevin James) has alw... \n", "548 All bets are off when corrupt homicide cop Ric... \n", "\n", " genres \\\n", "1783 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", "548 [{\"id\": 80, \"name\": \"Crime\"}, {\"id\": 9648, \"na... \n", "\n", " keywords \\\n", "1783 [{\"id\": 41180, \"name\": \"security guard\"}, {\"id... \n", "548 [{\"id\": 585, \"name\": \"casino\"}, {\"id\": 2339, \"... \n", "\n", " cast \\\n", "1783 [{\"cast_id\": 1, \"character\": \"Paul Blart\", \"cr... \n", "548 [{\"cast_id\": 1, \"character\": \"Rick Santoro\", \"... \n", "\n", " crew \n", "1783 [{\"credit_id\": \"58dd4d1c92514111f7000e9f\", \"de... \n", "548 [{\"credit_id\": \"52fe44b4c3a36847f80a5533\", \"de... " ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample(2)" ] }, { "cell_type": "code", "execution_count": 58, "id": "7ac48ec3", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"name\": \"Fantasy\"}, {\"id\": 878, \"name\": \"Science Fiction\"}]'" ] }, "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.iloc[0].genres" ] }, { "cell_type": "code", "execution_count": 59, "id": "cedb7373", "metadata": {}, "outputs": [], "source": [ "def converter(obj):\n", " L = []\n", " for i in ast.literal_eval(obj):\n", " L.append(i['name'])\n", " return L" ] }, { "cell_type": "code", "execution_count": 60, "id": "0fc1a59f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'id': 28, 'name': 'Action'},\n", " {'id': 12, 'name': 'Adventure'},\n", " {'id': 14, 'name': 'Fantasy'},\n", " {'id': 878, 'name': 'Science Fiction'}]" ] }, "execution_count": 60, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import ast\n", "ast.literal_eval(movies['genres'][0])" ] }, { "cell_type": "code", "execution_count": 61, "id": "221d53cf", "metadata": {}, "outputs": [], "source": [ "movies['genres'] = movies['genres'].apply(converter)" ] }, { "cell_type": "code", "execution_count": 62, "id": "34e0db18", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
382Seabiscuit4464True story of the undersized Depression-era ra...[Drama, History][{\"id\": 643, \"name\": \"horse race\"}, {\"id\": 235...[{\"cast_id\": 2, \"character\": \"Charles Howard\",...[{\"credit_id\": \"566839ed9251417401002f45\", \"de...
3189The Ice Pirates10179The time is the distant future, where by far t...[Action, Science Fiction, Comedy][{\"id\": 526, \"name\": \"rebel\"}, {\"id\": 3386, \"n...[{\"cast_id\": 1, \"character\": \"Jason\", \"credit_...[{\"credit_id\": \"52fe433c9251416c75008a77\", \"de...
\n", "
" ], "text/plain": [ " title movie_id \\\n", "382 Seabiscuit 4464 \n", "3189 The Ice Pirates 10179 \n", "\n", " overview \\\n", "382 True story of the undersized Depression-era ra... \n", "3189 The time is the distant future, where by far t... \n", "\n", " genres \\\n", "382 [Drama, History] \n", "3189 [Action, Science Fiction, Comedy] \n", "\n", " keywords \\\n", "382 [{\"id\": 643, \"name\": \"horse race\"}, {\"id\": 235... \n", "3189 [{\"id\": 526, \"name\": \"rebel\"}, {\"id\": 3386, \"n... \n", "\n", " cast \\\n", "382 [{\"cast_id\": 2, \"character\": \"Charles Howard\",... \n", "3189 [{\"cast_id\": 1, \"character\": \"Jason\", \"credit_... \n", "\n", " crew \n", "382 [{\"credit_id\": \"566839ed9251417401002f45\", \"de... \n", "3189 [{\"credit_id\": \"52fe433c9251416c75008a77\", \"de... " ] }, "execution_count": 62, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample(2)" ] }, { "cell_type": "code", "execution_count": 63, "id": "50c90a98", "metadata": {}, "outputs": [], "source": [ "movies['keywords'] = movies['keywords'].apply(converter)" ] }, { "cell_type": "code", "execution_count": 64, "id": "fccc29dd", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
461Lost in Space2157The prospects for continuing life on Earth in ...[Adventure, Family, Science Fiction][time travel, sabotage, deep space explorer][{\"cast_id\": 26, \"character\": \"Dr. Zachary Smi...[{\"credit_id\": \"52fe433bc3a36847f80448b9\", \"de...
3884Rosemary's Baby805A young couple moves into an infamous New York...[Horror, Drama, Mystery][anti-christ, contemporary setting, laundry, o...[{\"cast_id\": 15, \"character\": \"Rosemary Woodho...[{\"credit_id\": \"52fe4279c3a36847f802156d\", \"de...
\n", "
" ], "text/plain": [ " title movie_id \\\n", "461 Lost in Space 2157 \n", "3884 Rosemary's Baby 805 \n", "\n", " overview \\\n", "461 The prospects for continuing life on Earth in ... \n", "3884 A young couple moves into an infamous New York... \n", "\n", " genres \\\n", "461 [Adventure, Family, Science Fiction] \n", "3884 [Horror, Drama, Mystery] \n", "\n", " keywords \\\n", "461 [time travel, sabotage, deep space explorer] \n", "3884 [anti-christ, contemporary setting, laundry, o... \n", "\n", " cast \\\n", "461 [{\"cast_id\": 26, \"character\": \"Dr. Zachary Smi... \n", "3884 [{\"cast_id\": 15, \"character\": \"Rosemary Woodho... \n", "\n", " crew \n", "461 [{\"credit_id\": \"52fe433bc3a36847f80448b9\", \"de... \n", "3884 [{\"credit_id\": \"52fe4279c3a36847f802156d\", \"de... " ] }, "execution_count": 64, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies.sample(2)" ] }, { "cell_type": "code", "execution_count": 65, "id": "e99f8397", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'[{\"cast_id\": 242, \"character\": \"Jake Sully\", \"credit_id\": \"5602a8a7c3a3685532001c9a\", \"gender\": 2, \"id\": 65731, \"name\": \"Sam Worthington\", \"order\": 0}, {\"cast_id\": 3, \"character\": \"Neytiri\", \"credit_id\": \"52fe48009251416c750ac9cb\", \"gender\": 1, \"id\": 8691, \"name\": \"Zoe Saldana\", \"order\": 1}, {\"cast_id\": 25, \"character\": \"Dr. Grace Augustine\", \"credit_id\": \"52fe48009251416c750aca39\", \"gender\": 1, \"id\": 10205, \"name\": \"Sigourney Weaver\", \"order\": 2}, {\"cast_id\": 4, \"character\": \"Col. Quaritch\", \"credit_id\": \"52fe48009251416c750ac9cf\", \"gender\": 2, \"id\": 32747, \"name\": \"Stephen Lang\", \"order\": 3}, {\"cast_id\": 5, \"character\": \"Trudy Chacon\", \"credit_id\": \"52fe48009251416c750ac9d3\", \"gender\": 1, \"id\": 17647, \"name\": \"Michelle Rodriguez\", \"order\": 4}, {\"cast_id\": 8, \"character\": \"Selfridge\", \"credit_id\": \"52fe48009251416c750ac9e1\", \"gender\": 2, \"id\": 1771, \"name\": \"Giovanni Ribisi\", \"order\": 5}, {\"cast_id\": 7, \"character\": \"Norm Spellman\", \"credit_id\": \"52fe48009251416c750ac9dd\", \"gender\": 2, \"id\": 59231, \"name\": \"Joel David Moore\", \"order\": 6}, {\"cast_id\": 9, \"character\": \"Moat\", \"credit_id\": \"52fe48009251416c750ac9e5\", \"gender\": 1, \"id\": 30485, \"name\": \"CCH Pounder\", \"order\": 7}, {\"cast_id\": 11, \"character\": \"Eytukan\", \"credit_id\": \"52fe48009251416c750ac9ed\", \"gender\": 2, \"id\": 15853, \"name\": \"Wes Studi\", \"order\": 8}, {\"cast_id\": 10, \"character\": \"Tsu\\'Tey\", \"credit_id\": \"52fe48009251416c750ac9e9\", \"gender\": 2, \"id\": 10964, \"name\": \"Laz Alonso\", \"order\": 9}, {\"cast_id\": 12, \"character\": \"Dr. Max Patel\", \"credit_id\": \"52fe48009251416c750ac9f1\", \"gender\": 2, \"id\": 95697, \"name\": \"Dileep Rao\", \"order\": 10}, {\"cast_id\": 13, \"character\": \"Lyle Wainfleet\", \"credit_id\": \"52fe48009251416c750ac9f5\", \"gender\": 2, \"id\": 98215, \"name\": \"Matt Gerald\", \"order\": 11}, {\"cast_id\": 32, \"character\": \"Private Fike\", \"credit_id\": \"52fe48009251416c750aca5b\", \"gender\": 2, \"id\": 154153, \"name\": \"Sean Anthony Moran\", \"order\": 12}, {\"cast_id\": 33, \"character\": \"Cryo Vault Med Tech\", \"credit_id\": \"52fe48009251416c750aca5f\", \"gender\": 2, \"id\": 397312, \"name\": \"Jason Whyte\", \"order\": 13}, {\"cast_id\": 34, \"character\": \"Venture Star Crew Chief\", \"credit_id\": \"52fe48009251416c750aca63\", \"gender\": 2, \"id\": 42317, \"name\": \"Scott Lawrence\", \"order\": 14}, {\"cast_id\": 35, \"character\": \"Lock Up Trooper\", \"credit_id\": \"52fe48009251416c750aca67\", \"gender\": 2, \"id\": 986734, \"name\": \"Kelly Kilgour\", \"order\": 15}, {\"cast_id\": 36, \"character\": \"Shuttle Pilot\", \"credit_id\": \"52fe48009251416c750aca6b\", \"gender\": 0, \"id\": 1207227, \"name\": \"James Patrick Pitt\", \"order\": 16}, {\"cast_id\": 37, \"character\": \"Shuttle Co-Pilot\", \"credit_id\": \"52fe48009251416c750aca6f\", \"gender\": 0, \"id\": 1180936, \"name\": \"Sean Patrick Murphy\", \"order\": 17}, {\"cast_id\": 38, \"character\": \"Shuttle Crew Chief\", \"credit_id\": \"52fe48009251416c750aca73\", \"gender\": 2, \"id\": 1019578, \"name\": \"Peter Dillon\", \"order\": 18}, {\"cast_id\": 39, \"character\": \"Tractor Operator / Troupe\", \"credit_id\": \"52fe48009251416c750aca77\", \"gender\": 0, \"id\": 91443, \"name\": \"Kevin Dorman\", \"order\": 19}, {\"cast_id\": 40, \"character\": \"Dragon Gunship Pilot\", \"credit_id\": \"52fe48009251416c750aca7b\", \"gender\": 2, \"id\": 173391, \"name\": \"Kelson Henderson\", \"order\": 20}, {\"cast_id\": 41, \"character\": \"Dragon Gunship Gunner\", \"credit_id\": \"52fe48009251416c750aca7f\", \"gender\": 0, \"id\": 1207236, \"name\": \"David Van Horn\", \"order\": 21}, {\"cast_id\": 42, \"character\": \"Dragon Gunship Navigator\", \"credit_id\": \"52fe48009251416c750aca83\", \"gender\": 0, \"id\": 215913, \"name\": \"Jacob Tomuri\", \"order\": 22}, {\"cast_id\": 43, \"character\": \"Suit #1\", \"credit_id\": \"52fe48009251416c750aca87\", \"gender\": 0, \"id\": 143206, \"name\": \"Michael Blain-Rozgay\", \"order\": 23}, {\"cast_id\": 44, \"character\": \"Suit #2\", \"credit_id\": \"52fe48009251416c750aca8b\", \"gender\": 2, \"id\": 169676, \"name\": \"Jon Curry\", \"order\": 24}, {\"cast_id\": 46, \"character\": \"Ambient Room Tech\", \"credit_id\": \"52fe48009251416c750aca8f\", \"gender\": 0, \"id\": 1048610, \"name\": \"Luke Hawker\", \"order\": 25}, {\"cast_id\": 47, \"character\": \"Ambient Room Tech / Troupe\", \"credit_id\": \"52fe48009251416c750aca93\", \"gender\": 0, \"id\": 42288, \"name\": \"Woody Schultz\", \"order\": 26}, {\"cast_id\": 48, \"character\": \"Horse Clan Leader\", \"credit_id\": \"52fe48009251416c750aca97\", \"gender\": 2, \"id\": 68278, \"name\": \"Peter Mensah\", \"order\": 27}, {\"cast_id\": 49, \"character\": \"Link Room Tech\", \"credit_id\": \"52fe48009251416c750aca9b\", \"gender\": 0, \"id\": 1207247, \"name\": \"Sonia Yee\", \"order\": 28}, {\"cast_id\": 50, \"character\": \"Basketball Avatar / Troupe\", \"credit_id\": \"52fe48009251416c750aca9f\", \"gender\": 1, \"id\": 1207248, \"name\": \"Jahnel Curfman\", \"order\": 29}, {\"cast_id\": 51, \"character\": \"Basketball Avatar\", \"credit_id\": \"52fe48009251416c750acaa3\", \"gender\": 0, \"id\": 89714, \"name\": \"Ilram Choi\", \"order\": 30}, {\"cast_id\": 52, \"character\": \"Na\\'vi Child\", \"credit_id\": \"52fe48009251416c750acaa7\", \"gender\": 0, \"id\": 1207249, \"name\": \"Kyla Warren\", \"order\": 31}, {\"cast_id\": 53, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acaab\", \"gender\": 0, \"id\": 1207250, \"name\": \"Lisa Roumain\", \"order\": 32}, {\"cast_id\": 54, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acaaf\", \"gender\": 1, \"id\": 83105, \"name\": \"Debra Wilson\", \"order\": 33}, {\"cast_id\": 57, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acabb\", \"gender\": 0, \"id\": 1207253, \"name\": \"Chris Mala\", \"order\": 34}, {\"cast_id\": 55, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acab3\", \"gender\": 0, \"id\": 1207251, \"name\": \"Taylor Kibby\", \"order\": 35}, {\"cast_id\": 56, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acab7\", \"gender\": 0, \"id\": 1207252, \"name\": \"Jodie Landau\", \"order\": 36}, {\"cast_id\": 58, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acabf\", \"gender\": 0, \"id\": 1207254, \"name\": \"Julie Lamm\", \"order\": 37}, {\"cast_id\": 59, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acac3\", \"gender\": 0, \"id\": 1207257, \"name\": \"Cullen B. Madden\", \"order\": 38}, {\"cast_id\": 60, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acac7\", \"gender\": 0, \"id\": 1207259, \"name\": \"Joseph Brady Madden\", \"order\": 39}, {\"cast_id\": 61, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acacb\", \"gender\": 0, \"id\": 1207262, \"name\": \"Frankie Torres\", \"order\": 40}, {\"cast_id\": 62, \"character\": \"Troupe\", \"credit_id\": \"52fe48009251416c750acacf\", \"gender\": 1, \"id\": 1158600, \"name\": \"Austin Wilson\", \"order\": 41}, {\"cast_id\": 63, \"character\": \"Troupe\", \"credit_id\": \"52fe48019251416c750acad3\", \"gender\": 1, \"id\": 983705, \"name\": \"Sara Wilson\", \"order\": 42}, {\"cast_id\": 64, \"character\": \"Troupe\", \"credit_id\": \"52fe48019251416c750acad7\", \"gender\": 0, \"id\": 1207263, \"name\": \"Tamica Washington-Miller\", \"order\": 43}, {\"cast_id\": 65, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acadb\", \"gender\": 1, \"id\": 1145098, \"name\": \"Lucy Briant\", \"order\": 44}, {\"cast_id\": 66, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acadf\", \"gender\": 2, \"id\": 33305, \"name\": \"Nathan Meister\", \"order\": 45}, {\"cast_id\": 67, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acae3\", \"gender\": 0, \"id\": 1207264, \"name\": \"Gerry Blair\", \"order\": 46}, {\"cast_id\": 68, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acae7\", \"gender\": 2, \"id\": 33311, \"name\": \"Matthew Chamberlain\", \"order\": 47}, {\"cast_id\": 69, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acaeb\", \"gender\": 0, \"id\": 1207265, \"name\": \"Paul Yates\", \"order\": 48}, {\"cast_id\": 70, \"character\": \"Op Center Duty Officer\", \"credit_id\": \"52fe48019251416c750acaef\", \"gender\": 0, \"id\": 1207266, \"name\": \"Wray Wilson\", \"order\": 49}, {\"cast_id\": 71, \"character\": \"Op Center Staff\", \"credit_id\": \"52fe48019251416c750acaf3\", \"gender\": 2, \"id\": 54492, \"name\": \"James Gaylyn\", \"order\": 50}, {\"cast_id\": 72, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acaf7\", \"gender\": 0, \"id\": 1207267, \"name\": \"Melvin Leno Clark III\", \"order\": 51}, {\"cast_id\": 73, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acafb\", \"gender\": 0, \"id\": 1207268, \"name\": \"Carvon Futrell\", \"order\": 52}, {\"cast_id\": 74, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acaff\", \"gender\": 0, \"id\": 1207269, \"name\": \"Brandon Jelkes\", \"order\": 53}, {\"cast_id\": 75, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb03\", \"gender\": 0, \"id\": 1207270, \"name\": \"Micah Moch\", \"order\": 54}, {\"cast_id\": 76, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb07\", \"gender\": 0, \"id\": 1207271, \"name\": \"Hanniyah Muhammad\", \"order\": 55}, {\"cast_id\": 77, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb0b\", \"gender\": 0, \"id\": 1207272, \"name\": \"Christopher Nolen\", \"order\": 56}, {\"cast_id\": 78, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb0f\", \"gender\": 0, \"id\": 1207273, \"name\": \"Christa Oliver\", \"order\": 57}, {\"cast_id\": 79, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb13\", \"gender\": 0, \"id\": 1207274, \"name\": \"April Marie Thomas\", \"order\": 58}, {\"cast_id\": 80, \"character\": \"Dancer\", \"credit_id\": \"52fe48019251416c750acb17\", \"gender\": 0, \"id\": 1207275, \"name\": \"Bravita A. Threatt\", \"order\": 59}, {\"cast_id\": 81, \"character\": \"Mining Chief (uncredited)\", \"credit_id\": \"52fe48019251416c750acb1b\", \"gender\": 0, \"id\": 1207276, \"name\": \"Colin Bleasdale\", \"order\": 60}, {\"cast_id\": 82, \"character\": \"Veteran Miner (uncredited)\", \"credit_id\": \"52fe48019251416c750acb1f\", \"gender\": 0, \"id\": 107969, \"name\": \"Mike Bodnar\", \"order\": 61}, {\"cast_id\": 83, \"character\": \"Richard (uncredited)\", \"credit_id\": \"52fe48019251416c750acb23\", \"gender\": 0, \"id\": 1207278, \"name\": \"Matt Clayton\", \"order\": 62}, {\"cast_id\": 84, \"character\": \"Nav\\'i (uncredited)\", \"credit_id\": \"52fe48019251416c750acb27\", \"gender\": 1, \"id\": 147898, \"name\": \"Nicole Dionne\", \"order\": 63}, {\"cast_id\": 85, \"character\": \"Trooper (uncredited)\", \"credit_id\": \"52fe48019251416c750acb2b\", \"gender\": 0, \"id\": 1207280, \"name\": \"Jamie Harrison\", \"order\": 64}, {\"cast_id\": 86, \"character\": \"Trooper (uncredited)\", \"credit_id\": \"52fe48019251416c750acb2f\", \"gender\": 0, \"id\": 1207281, \"name\": \"Allan Henry\", \"order\": 65}, {\"cast_id\": 87, \"character\": \"Ground Technician (uncredited)\", \"credit_id\": \"52fe48019251416c750acb33\", \"gender\": 2, \"id\": 1207282, \"name\": \"Anthony Ingruber\", \"order\": 66}, {\"cast_id\": 88, \"character\": \"Flight Crew Mechanic (uncredited)\", \"credit_id\": \"52fe48019251416c750acb37\", \"gender\": 0, \"id\": 1207283, \"name\": \"Ashley Jeffery\", \"order\": 67}, {\"cast_id\": 14, \"character\": \"Samson Pilot\", \"credit_id\": \"52fe48009251416c750ac9f9\", \"gender\": 0, \"id\": 98216, \"name\": \"Dean Knowsley\", \"order\": 68}, {\"cast_id\": 89, \"character\": \"Trooper (uncredited)\", \"credit_id\": \"52fe48019251416c750acb3b\", \"gender\": 0, \"id\": 1201399, \"name\": \"Joseph Mika-Hunt\", \"order\": 69}, {\"cast_id\": 90, \"character\": \"Banshee (uncredited)\", \"credit_id\": \"52fe48019251416c750acb3f\", \"gender\": 0, \"id\": 236696, \"name\": \"Terry Notary\", \"order\": 70}, {\"cast_id\": 91, \"character\": \"Soldier (uncredited)\", \"credit_id\": \"52fe48019251416c750acb43\", \"gender\": 0, \"id\": 1207287, \"name\": \"Kai Pantano\", \"order\": 71}, {\"cast_id\": 92, \"character\": \"Blast Technician (uncredited)\", \"credit_id\": \"52fe48019251416c750acb47\", \"gender\": 0, \"id\": 1207288, \"name\": \"Logan Pithyou\", \"order\": 72}, {\"cast_id\": 93, \"character\": \"Vindum Raah (uncredited)\", \"credit_id\": \"52fe48019251416c750acb4b\", \"gender\": 0, \"id\": 1207289, \"name\": \"Stuart Pollock\", \"order\": 73}, {\"cast_id\": 94, \"character\": \"Hero (uncredited)\", \"credit_id\": \"52fe48019251416c750acb4f\", \"gender\": 0, \"id\": 584868, \"name\": \"Raja\", \"order\": 74}, {\"cast_id\": 95, \"character\": \"Ops Centreworker (uncredited)\", \"credit_id\": \"52fe48019251416c750acb53\", \"gender\": 0, \"id\": 1207290, \"name\": \"Gareth Ruck\", \"order\": 75}, {\"cast_id\": 96, \"character\": \"Engineer (uncredited)\", \"credit_id\": \"52fe48019251416c750acb57\", \"gender\": 0, \"id\": 1062463, \"name\": \"Rhian Sheehan\", \"order\": 76}, {\"cast_id\": 97, \"character\": \"Col. Quaritch\\'s Mech Suit (uncredited)\", \"credit_id\": \"52fe48019251416c750acb5b\", \"gender\": 0, \"id\": 60656, \"name\": \"T. J. Storm\", \"order\": 77}, {\"cast_id\": 98, \"character\": \"Female Marine (uncredited)\", \"credit_id\": \"52fe48019251416c750acb5f\", \"gender\": 0, \"id\": 1207291, \"name\": \"Jodie Taylor\", \"order\": 78}, {\"cast_id\": 99, \"character\": \"Ikran Clan Leader (uncredited)\", \"credit_id\": \"52fe48019251416c750acb63\", \"gender\": 1, \"id\": 1186027, \"name\": \"Alicia Vela-Bailey\", \"order\": 79}, {\"cast_id\": 100, \"character\": \"Geologist (uncredited)\", \"credit_id\": \"52fe48019251416c750acb67\", \"gender\": 0, \"id\": 1207292, \"name\": \"Richard Whiteside\", \"order\": 80}, {\"cast_id\": 101, \"character\": \"Na\\'vi (uncredited)\", \"credit_id\": \"52fe48019251416c750acb6b\", \"gender\": 0, \"id\": 103259, \"name\": \"Nikie Zambo\", \"order\": 81}, {\"cast_id\": 102, \"character\": \"Ambient Room Tech / Troupe\", \"credit_id\": \"52fe48019251416c750acb6f\", \"gender\": 1, \"id\": 42286, \"name\": \"Julene Renee\", \"order\": 82}]'" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies['cast'][0]" ] }, { "cell_type": "code", "execution_count": 66, "id": "0902e742", "metadata": {}, "outputs": [], "source": [ "def converter_cast(obj):\n", " L = []\n", " counter = 0\n", " for i in ast.literal_eval(obj):\n", " if counter != 3:\n", " L.append(i['name'])\n", " counter+=1\n", " else:\n", " break\n", " return L" ] }, { "cell_type": "code", "execution_count": 67, "id": "625251f7", "metadata": {}, "outputs": [], "source": [ "movies['cast'] = movies['cast'].apply(converter_cast)" ] }, { "cell_type": "code", "execution_count": 68, "id": "533000b8", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
0Avatar19995In the 22nd century, a paraplegic Marine is di...[Action, Adventure, Fantasy, Science Fiction][culture clash, future, space war, space colon...[Sam Worthington, Zoe Saldana, Sigourney Weaver][{\"credit_id\": \"52fe48009251416c750aca23\", \"de...
1Pirates of the Caribbean: At World's End285Captain Barbossa, long believed to be dead, ha...[Adventure, Fantasy, Action][ocean, drug abuse, exotic island, east india ...[Johnny Depp, Orlando Bloom, Keira Knightley][{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de...
2Spectre206647A cryptic message from Bond’s past sends him o...[Action, Adventure, Crime][spy, based on novel, secret agent, sequel, mi...[Daniel Craig, Christoph Waltz, Léa Seydoux][{\"credit_id\": \"54805967c3a36829b5002c41\", \"de...
3The Dark Knight Rises49026Following the death of District Attorney Harve...[Action, Crime, Drama, Thriller][dc comics, crime fighter, terrorist, secret i...[Christian Bale, Michael Caine, Gary Oldman][{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de...
4John Carter49529John Carter is a war-weary, former military ca...[Action, Adventure, Science Fiction][based on novel, mars, medallion, space travel...[Taylor Kitsch, Lynn Collins, Samantha Morton][{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de...
........................
4804El Mariachi9367El Mariachi just wants to play his guitar and ...[Action, Crime, Thriller][united states–mexico barrier, legs, arms, pap...[Carlos Gallardo, Jaime de Hoyos, Peter Marqua...[{\"credit_id\": \"52fe44eec3a36847f80b280b\", \"de...
4805Newlyweds72766A newlywed couple's honeymoon is upended by th...[Comedy, Romance][][Edward Burns, Kerry Bishé, Marsha Dietlein][{\"credit_id\": \"52fe487dc3a368484e0fb013\", \"de...
4806Signed, Sealed, Delivered231617\"Signed, Sealed, Delivered\" introduces a dedic...[Comedy, Drama, Romance, TV Movie][date, love at first sight, narration, investi...[Eric Mabius, Kristin Booth, Crystal Lowe][{\"credit_id\": \"52fe4df3c3a36847f8275ecf\", \"de...
4807Shanghai Calling126186When ambitious New York attorney Sam is sent t...[][][Daniel Henney, Eliza Coupe, Bill Paxton][{\"credit_id\": \"52fe4ad9c3a368484e16a36b\", \"de...
4808My Date with Drew25975Ever since the second grade when he first saw ...[Documentary][obsession, camcorder, crush, dream girl][Drew Barrymore, Brian Herzlinger, Corey Feldman][{\"credit_id\": \"58ce021b9251415a390165d9\", \"de...
\n", "

4806 rows × 7 columns

\n", "
" ], "text/plain": [ " title movie_id \\\n", "0 Avatar 19995 \n", "1 Pirates of the Caribbean: At World's End 285 \n", "2 Spectre 206647 \n", "3 The Dark Knight Rises 49026 \n", "4 John Carter 49529 \n", "... ... ... \n", "4804 El Mariachi 9367 \n", "4805 Newlyweds 72766 \n", "4806 Signed, Sealed, Delivered 231617 \n", "4807 Shanghai Calling 126186 \n", "4808 My Date with Drew 25975 \n", "\n", " overview \\\n", "0 In the 22nd century, a paraplegic Marine is di... \n", "1 Captain Barbossa, long believed to be dead, ha... \n", "2 A cryptic message from Bond’s past sends him o... \n", "3 Following the death of District Attorney Harve... \n", "4 John Carter is a war-weary, former military ca... \n", "... ... \n", "4804 El Mariachi just wants to play his guitar and ... \n", "4805 A newlywed couple's honeymoon is upended by th... \n", "4806 \"Signed, Sealed, Delivered\" introduces a dedic... \n", "4807 When ambitious New York attorney Sam is sent t... \n", "4808 Ever since the second grade when he first saw ... \n", "\n", " genres \\\n", "0 [Action, Adventure, Fantasy, Science Fiction] \n", "1 [Adventure, Fantasy, Action] \n", "2 [Action, Adventure, Crime] \n", "3 [Action, Crime, Drama, Thriller] \n", "4 [Action, Adventure, Science Fiction] \n", "... ... \n", "4804 [Action, Crime, Thriller] \n", "4805 [Comedy, Romance] \n", "4806 [Comedy, Drama, Romance, TV Movie] \n", "4807 [] \n", "4808 [Documentary] \n", "\n", " keywords \\\n", "0 [culture clash, future, space war, space colon... \n", "1 [ocean, drug abuse, exotic island, east india ... \n", "2 [spy, based on novel, secret agent, sequel, mi... \n", "3 [dc comics, crime fighter, terrorist, secret i... \n", "4 [based on novel, mars, medallion, space travel... \n", "... ... \n", "4804 [united states–mexico barrier, legs, arms, pap... \n", "4805 [] \n", "4806 [date, love at first sight, narration, investi... \n", "4807 [] \n", "4808 [obsession, camcorder, crush, dream girl] \n", "\n", " cast \\\n", "0 [Sam Worthington, Zoe Saldana, Sigourney Weaver] \n", "1 [Johnny Depp, Orlando Bloom, Keira Knightley] \n", "2 [Daniel Craig, Christoph Waltz, Léa Seydoux] \n", "3 [Christian Bale, Michael Caine, Gary Oldman] \n", "4 [Taylor Kitsch, Lynn Collins, Samantha Morton] \n", "... ... \n", "4804 [Carlos Gallardo, Jaime de Hoyos, Peter Marqua... \n", "4805 [Edward Burns, Kerry Bishé, Marsha Dietlein] \n", "4806 [Eric Mabius, Kristin Booth, Crystal Lowe] \n", "4807 [Daniel Henney, Eliza Coupe, Bill Paxton] \n", "4808 [Drew Barrymore, Brian Herzlinger, Corey Feldman] \n", "\n", " crew \n", "0 [{\"credit_id\": \"52fe48009251416c750aca23\", \"de... \n", "1 [{\"credit_id\": \"52fe4232c3a36847f800b579\", \"de... \n", "2 [{\"credit_id\": \"54805967c3a36829b5002c41\", \"de... \n", "3 [{\"credit_id\": \"52fe4781c3a36847f81398c3\", \"de... \n", "4 [{\"credit_id\": \"52fe479ac3a36847f813eaa3\", \"de... \n", "... ... \n", "4804 [{\"credit_id\": \"52fe44eec3a36847f80b280b\", \"de... \n", "4805 [{\"credit_id\": \"52fe487dc3a368484e0fb013\", \"de... \n", "4806 [{\"credit_id\": \"52fe4df3c3a36847f8275ecf\", \"de... \n", "4807 [{\"credit_id\": \"52fe4ad9c3a368484e16a36b\", \"de... \n", "4808 [{\"credit_id\": \"58ce021b9251415a390165d9\", \"de... \n", "\n", "[4806 rows x 7 columns]" ] }, "execution_count": 68, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies" ] }, { "cell_type": "code", "execution_count": null, "id": "bce91b01", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 69, "id": "5a570a46", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'[{\"credit_id\": \"52fe48009251416c750aca23\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1721, \"job\": \"Editor\", \"name\": \"Stephen E. Rivkin\"}, {\"credit_id\": \"539c47ecc3a36810e3001f87\", \"department\": \"Art\", \"gender\": 2, \"id\": 496, \"job\": \"Production Design\", \"name\": \"Rick Carter\"}, {\"credit_id\": \"54491c89c3a3680fb4001cf7\", \"department\": \"Sound\", \"gender\": 0, \"id\": 900, \"job\": \"Sound Designer\", \"name\": \"Christopher Boyes\"}, {\"credit_id\": \"54491cb70e0a267480001bd0\", \"department\": \"Sound\", \"gender\": 0, \"id\": 900, \"job\": \"Supervising Sound Editor\", \"name\": \"Christopher Boyes\"}, {\"credit_id\": \"539c4a4cc3a36810c9002101\", \"department\": \"Production\", \"gender\": 1, \"id\": 1262, \"job\": \"Casting\", \"name\": \"Mali Finn\"}, {\"credit_id\": \"5544ee3b925141499f0008fc\", \"department\": \"Sound\", \"gender\": 2, \"id\": 1729, \"job\": \"Original Music Composer\", \"name\": \"James Horner\"}, {\"credit_id\": \"52fe48009251416c750ac9c3\", \"department\": \"Directing\", \"gender\": 2, \"id\": 2710, \"job\": \"Director\", \"name\": \"James Cameron\"}, {\"credit_id\": \"52fe48009251416c750ac9d9\", \"department\": \"Writing\", \"gender\": 2, \"id\": 2710, \"job\": \"Writer\", \"name\": \"James Cameron\"}, {\"credit_id\": \"52fe48009251416c750aca17\", \"department\": \"Editing\", \"gender\": 2, \"id\": 2710, \"job\": \"Editor\", \"name\": \"James Cameron\"}, {\"credit_id\": \"52fe48009251416c750aca29\", \"department\": \"Production\", \"gender\": 2, \"id\": 2710, \"job\": \"Producer\", \"name\": \"James Cameron\"}, {\"credit_id\": \"52fe48009251416c750aca3f\", \"department\": \"Writing\", \"gender\": 2, \"id\": 2710, \"job\": \"Screenplay\", \"name\": \"James Cameron\"}, {\"credit_id\": \"539c4987c3a36810ba0021a4\", \"department\": \"Art\", \"gender\": 2, \"id\": 7236, \"job\": \"Art Direction\", \"name\": \"Andrew Menzies\"}, {\"credit_id\": \"549598c3c3a3686ae9004383\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 6690, \"job\": \"Visual Effects Producer\", \"name\": \"Jill Brooks\"}, {\"credit_id\": \"52fe48009251416c750aca4b\", \"department\": \"Production\", \"gender\": 1, \"id\": 6347, \"job\": \"Casting\", \"name\": \"Margery Simkin\"}, {\"credit_id\": \"570b6f419251417da70032fe\", \"department\": \"Art\", \"gender\": 2, \"id\": 6878, \"job\": \"Supervising Art Director\", \"name\": \"Kevin Ishioka\"}, {\"credit_id\": \"5495a0fac3a3686ae9004468\", \"department\": \"Sound\", \"gender\": 0, \"id\": 6883, \"job\": \"Music Editor\", \"name\": \"Dick Bernstein\"}, {\"credit_id\": \"54959706c3a3686af3003e81\", \"department\": \"Sound\", \"gender\": 0, \"id\": 8159, \"job\": \"Sound Effects Editor\", \"name\": \"Shannon Mills\"}, {\"credit_id\": \"54491d58c3a3680fb1001ccb\", \"department\": \"Sound\", \"gender\": 0, \"id\": 8160, \"job\": \"Foley\", \"name\": \"Dennie Thorpe\"}, {\"credit_id\": \"54491d6cc3a3680fa5001b2c\", \"department\": \"Sound\", \"gender\": 0, \"id\": 8163, \"job\": \"Foley\", \"name\": \"Jana Vance\"}, {\"credit_id\": \"52fe48009251416c750aca57\", \"department\": \"Costume & Make-Up\", \"gender\": 1, \"id\": 8527, \"job\": \"Costume Design\", \"name\": \"Deborah Lynn Scott\"}, {\"credit_id\": \"52fe48009251416c750aca2f\", \"department\": \"Production\", \"gender\": 2, \"id\": 8529, \"job\": \"Producer\", \"name\": \"Jon Landau\"}, {\"credit_id\": \"539c4937c3a36810ba002194\", \"department\": \"Art\", \"gender\": 0, \"id\": 9618, \"job\": \"Art Direction\", \"name\": \"Sean Haworth\"}, {\"credit_id\": \"539c49b6c3a36810c10020e6\", \"department\": \"Art\", \"gender\": 1, \"id\": 12653, \"job\": \"Set Decoration\", \"name\": \"Kim Sinclair\"}, {\"credit_id\": \"570b6f2f9251413a0e00020d\", \"department\": \"Art\", \"gender\": 1, \"id\": 12653, \"job\": \"Supervising Art Director\", \"name\": \"Kim Sinclair\"}, {\"credit_id\": \"54491a6c0e0a26748c001b19\", \"department\": \"Art\", \"gender\": 2, \"id\": 14350, \"job\": \"Set Designer\", \"name\": \"Richard F. Mays\"}, {\"credit_id\": \"56928cf4c3a3684cff0025c4\", \"department\": \"Production\", \"gender\": 1, \"id\": 20294, \"job\": \"Executive Producer\", \"name\": \"Laeta Kalogridis\"}, {\"credit_id\": \"52fe48009251416c750aca51\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 17675, \"job\": \"Costume Design\", \"name\": \"Mayes C. Rubeo\"}, {\"credit_id\": \"52fe48009251416c750aca11\", \"department\": \"Camera\", \"gender\": 2, \"id\": 18265, \"job\": \"Director of Photography\", \"name\": \"Mauro Fiore\"}, {\"credit_id\": \"5449194d0e0a26748f001b39\", \"department\": \"Art\", \"gender\": 0, \"id\": 42281, \"job\": \"Set Designer\", \"name\": \"Scott Herbertson\"}, {\"credit_id\": \"52fe48009251416c750aca05\", \"department\": \"Crew\", \"gender\": 0, \"id\": 42288, \"job\": \"Stunts\", \"name\": \"Woody Schultz\"}, {\"credit_id\": \"5592aefb92514152de0010f5\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 29067, \"job\": \"Makeup Artist\", \"name\": \"Linda DeVetta\"}, {\"credit_id\": \"5592afa492514152de00112c\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 29067, \"job\": \"Hairstylist\", \"name\": \"Linda DeVetta\"}, {\"credit_id\": \"54959ed592514130fc002e5d\", \"department\": \"Camera\", \"gender\": 2, \"id\": 33302, \"job\": \"Camera Operator\", \"name\": \"Richard Bluck\"}, {\"credit_id\": \"539c4891c3a36810ba002147\", \"department\": \"Art\", \"gender\": 2, \"id\": 33303, \"job\": \"Art Direction\", \"name\": \"Simon Bright\"}, {\"credit_id\": \"54959c069251417a81001f3a\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 113145, \"job\": \"Visual Effects Supervisor\", \"name\": \"Richard Martin\"}, {\"credit_id\": \"54959a0dc3a3680ff5002c8d\", \"department\": \"Crew\", \"gender\": 2, \"id\": 58188, \"job\": \"Visual Effects Editor\", \"name\": \"Steve R. Moore\"}, {\"credit_id\": \"52fe48009251416c750aca1d\", \"department\": \"Editing\", \"gender\": 2, \"id\": 58871, \"job\": \"Editor\", \"name\": \"John Refoua\"}, {\"credit_id\": \"54491a4dc3a3680fc30018ca\", \"department\": \"Art\", \"gender\": 0, \"id\": 92359, \"job\": \"Set Designer\", \"name\": \"Karl J. Martin\"}, {\"credit_id\": \"52fe48009251416c750aca35\", \"department\": \"Camera\", \"gender\": 1, \"id\": 72201, \"job\": \"Director of Photography\", \"name\": \"Chiling Lin\"}, {\"credit_id\": \"52fe48009251416c750ac9ff\", \"department\": \"Crew\", \"gender\": 0, \"id\": 89714, \"job\": \"Stunts\", \"name\": \"Ilram Choi\"}, {\"credit_id\": \"54959c529251416e2b004394\", \"department\": \"Visual Effects\", \"gender\": 2, \"id\": 93214, \"job\": \"Visual Effects Supervisor\", \"name\": \"Steven Quale\"}, {\"credit_id\": \"54491edf0e0a267489001c37\", \"department\": \"Crew\", \"gender\": 1, \"id\": 122607, \"job\": \"Dialect Coach\", \"name\": \"Carla Meyer\"}, {\"credit_id\": \"539c485bc3a368653d001a3a\", \"department\": \"Art\", \"gender\": 2, \"id\": 132585, \"job\": \"Art Direction\", \"name\": \"Nick Bassett\"}, {\"credit_id\": \"539c4903c3a368653d001a74\", \"department\": \"Art\", \"gender\": 0, \"id\": 132596, \"job\": \"Art Direction\", \"name\": \"Jill Cormack\"}, {\"credit_id\": \"539c4967c3a368653d001a94\", \"department\": \"Art\", \"gender\": 0, \"id\": 132604, \"job\": \"Art Direction\", \"name\": \"Andy McLaren\"}, {\"credit_id\": \"52fe48009251416c750aca45\", \"department\": \"Crew\", \"gender\": 0, \"id\": 236696, \"job\": \"Motion Capture Artist\", \"name\": \"Terry Notary\"}, {\"credit_id\": \"54959e02c3a3680fc60027d2\", \"department\": \"Crew\", \"gender\": 2, \"id\": 956198, \"job\": \"Stunt Coordinator\", \"name\": \"Garrett Warren\"}, {\"credit_id\": \"54959ca3c3a3686ae300438c\", \"department\": \"Visual Effects\", \"gender\": 2, \"id\": 957874, \"job\": \"Visual Effects Supervisor\", \"name\": \"Jonathan Rothbart\"}, {\"credit_id\": \"570b6f519251412c74001b2f\", \"department\": \"Art\", \"gender\": 0, \"id\": 957889, \"job\": \"Supervising Art Director\", \"name\": \"Stefan Dechant\"}, {\"credit_id\": \"570b6f62c3a3680b77007460\", \"department\": \"Art\", \"gender\": 2, \"id\": 959555, \"job\": \"Supervising Art Director\", \"name\": \"Todd Cherniawsky\"}, {\"credit_id\": \"539c4a3ac3a36810da0021cc\", \"department\": \"Production\", \"gender\": 0, \"id\": 1016177, \"job\": \"Casting\", \"name\": \"Miranda Rivers\"}, {\"credit_id\": \"539c482cc3a36810c1002062\", \"department\": \"Art\", \"gender\": 0, \"id\": 1032536, \"job\": \"Production Design\", \"name\": \"Robert Stromberg\"}, {\"credit_id\": \"539c4b65c3a36810c9002125\", \"department\": \"Costume & Make-Up\", \"gender\": 2, \"id\": 1071680, \"job\": \"Costume Design\", \"name\": \"John Harding\"}, {\"credit_id\": \"54959e6692514130fc002e4e\", \"department\": \"Camera\", \"gender\": 0, \"id\": 1177364, \"job\": \"Steadicam Operator\", \"name\": \"Roberto De Angelis\"}, {\"credit_id\": \"539c49f1c3a368653d001aac\", \"department\": \"Costume & Make-Up\", \"gender\": 2, \"id\": 1202850, \"job\": \"Makeup Department Head\", \"name\": \"Mike Smithson\"}, {\"credit_id\": \"5495999ec3a3686ae100460c\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1204668, \"job\": \"Visual Effects Producer\", \"name\": \"Alain Lalanne\"}, {\"credit_id\": \"54959cdfc3a3681153002729\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1206410, \"job\": \"Visual Effects Supervisor\", \"name\": \"Lucas Salton\"}, {\"credit_id\": \"549596239251417a81001eae\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1234266, \"job\": \"Post Production Supervisor\", \"name\": \"Janace Tashjian\"}, {\"credit_id\": \"54959c859251416e1e003efe\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1271932, \"job\": \"Visual Effects Supervisor\", \"name\": \"Stephen Rosenbaum\"}, {\"credit_id\": \"5592af28c3a368775a00105f\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1310064, \"job\": \"Makeup Artist\", \"name\": \"Frankie Karena\"}, {\"credit_id\": \"539c4adfc3a36810e300203b\", \"department\": \"Costume & Make-Up\", \"gender\": 1, \"id\": 1319844, \"job\": \"Costume Supervisor\", \"name\": \"Lisa Lovaas\"}, {\"credit_id\": \"54959b579251416e2b004371\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1327028, \"job\": \"Visual Effects Supervisor\", \"name\": \"Jonathan Fawkner\"}, {\"credit_id\": \"539c48a7c3a36810b5001fa7\", \"department\": \"Art\", \"gender\": 0, \"id\": 1330561, \"job\": \"Art Direction\", \"name\": \"Robert Bavin\"}, {\"credit_id\": \"539c4a71c3a36810da0021e0\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1330567, \"job\": \"Costume Supervisor\", \"name\": \"Anthony Almaraz\"}, {\"credit_id\": \"539c4a8ac3a36810ba0021e4\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1330570, \"job\": \"Costume Supervisor\", \"name\": \"Carolyn M. Fenton\"}, {\"credit_id\": \"539c4ab6c3a36810da0021f0\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1330574, \"job\": \"Costume Supervisor\", \"name\": \"Beth Koenigsberg\"}, {\"credit_id\": \"54491ab70e0a267480001ba2\", \"department\": \"Art\", \"gender\": 0, \"id\": 1336191, \"job\": \"Set Designer\", \"name\": \"Sam Page\"}, {\"credit_id\": \"544919d9c3a3680fc30018bd\", \"department\": \"Art\", \"gender\": 0, \"id\": 1339441, \"job\": \"Set Designer\", \"name\": \"Tex Kadonaga\"}, {\"credit_id\": \"54491cf50e0a267483001b0c\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1352422, \"job\": \"Dialogue Editor\", \"name\": \"Kim Foscato\"}, {\"credit_id\": \"544919f40e0a26748c001b09\", \"department\": \"Art\", \"gender\": 0, \"id\": 1352962, \"job\": \"Set Designer\", \"name\": \"Tammy S. Lee\"}, {\"credit_id\": \"5495a115c3a3680ff5002d71\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1357070, \"job\": \"Transportation Coordinator\", \"name\": \"Denny Caira\"}, {\"credit_id\": \"5495a12f92514130fc002e94\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1357071, \"job\": \"Transportation Coordinator\", \"name\": \"James Waitkus\"}, {\"credit_id\": \"5495976fc3a36811530026b0\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1360103, \"job\": \"Supervising Sound Editor\", \"name\": \"Addison Teague\"}, {\"credit_id\": \"54491837c3a3680fb1001c5a\", \"department\": \"Art\", \"gender\": 2, \"id\": 1376887, \"job\": \"Set Designer\", \"name\": \"C. Scott Baker\"}, {\"credit_id\": \"54491878c3a3680fb4001c9d\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376888, \"job\": \"Set Designer\", \"name\": \"Luke Caska\"}, {\"credit_id\": \"544918dac3a3680fa5001ae0\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376889, \"job\": \"Set Designer\", \"name\": \"David Chow\"}, {\"credit_id\": \"544919110e0a267486001b68\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376890, \"job\": \"Set Designer\", \"name\": \"Jonathan Dyer\"}, {\"credit_id\": \"54491967c3a3680faa001b5e\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376891, \"job\": \"Set Designer\", \"name\": \"Joseph Hiura\"}, {\"credit_id\": \"54491997c3a3680fb1001c8a\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376892, \"job\": \"Art Department Coordinator\", \"name\": \"Rebecca Jellie\"}, {\"credit_id\": \"544919ba0e0a26748f001b42\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376893, \"job\": \"Set Designer\", \"name\": \"Robert Andrew Johnson\"}, {\"credit_id\": \"54491b1dc3a3680faa001b8c\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376895, \"job\": \"Assistant Art Director\", \"name\": \"Mike Stassi\"}, {\"credit_id\": \"54491b79c3a3680fbb001826\", \"department\": \"Art\", \"gender\": 0, \"id\": 1376897, \"job\": \"Construction Coordinator\", \"name\": \"John Villarino\"}, {\"credit_id\": \"54491baec3a3680fb4001ce6\", \"department\": \"Art\", \"gender\": 2, \"id\": 1376898, \"job\": \"Assistant Art Director\", \"name\": \"Jeffrey Wisniewski\"}, {\"credit_id\": \"54491d2fc3a3680fb4001d07\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1376899, \"job\": \"Dialogue Editor\", \"name\": \"Cheryl Nardi\"}, {\"credit_id\": \"54491d86c3a3680fa5001b2f\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1376901, \"job\": \"Dialogue Editor\", \"name\": \"Marshall Winn\"}, {\"credit_id\": \"54491d9dc3a3680faa001bb0\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1376902, \"job\": \"Supervising Sound Editor\", \"name\": \"Gwendolyn Yates Whittle\"}, {\"credit_id\": \"54491dc10e0a267486001bce\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1376903, \"job\": \"Sound Re-Recording Mixer\", \"name\": \"William Stein\"}, {\"credit_id\": \"54491f500e0a26747c001c07\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1376909, \"job\": \"Choreographer\", \"name\": \"Lula Washington\"}, {\"credit_id\": \"549599239251412c4e002a2e\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1391692, \"job\": \"Visual Effects Producer\", \"name\": \"Chris Del Conte\"}, {\"credit_id\": \"54959d54c3a36831b8001d9a\", \"department\": \"Visual Effects\", \"gender\": 2, \"id\": 1391695, \"job\": \"Visual Effects Supervisor\", \"name\": \"R. Christopher White\"}, {\"credit_id\": \"54959bdf9251412c4e002a66\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1394070, \"job\": \"Visual Effects Supervisor\", \"name\": \"Dan Lemmon\"}, {\"credit_id\": \"5495971d92514132ed002922\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1394129, \"job\": \"Sound Effects Editor\", \"name\": \"Tim Nielsen\"}, {\"credit_id\": \"5592b25792514152cc0011aa\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1394286, \"job\": \"CG Supervisor\", \"name\": \"Michael Mulholland\"}, {\"credit_id\": \"54959a329251416e2b004355\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1394750, \"job\": \"Visual Effects Editor\", \"name\": \"Thomas Nittmann\"}, {\"credit_id\": \"54959d6dc3a3686ae9004401\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1394755, \"job\": \"Visual Effects Supervisor\", \"name\": \"Edson Williams\"}, {\"credit_id\": \"5495a08fc3a3686ae300441c\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1394953, \"job\": \"Digital Intermediate\", \"name\": \"Christine Carr\"}, {\"credit_id\": \"55402d659251413d6d000249\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1395269, \"job\": \"Visual Effects Supervisor\", \"name\": \"John Bruno\"}, {\"credit_id\": \"54959e7b9251416e1e003f3e\", \"department\": \"Camera\", \"gender\": 0, \"id\": 1398970, \"job\": \"Steadicam Operator\", \"name\": \"David Emmerichs\"}, {\"credit_id\": \"54959734c3a3686ae10045e0\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1400906, \"job\": \"Sound Effects Editor\", \"name\": \"Christopher Scarabosio\"}, {\"credit_id\": \"549595dd92514130fc002d79\", \"department\": \"Production\", \"gender\": 0, \"id\": 1401784, \"job\": \"Production Supervisor\", \"name\": \"Jennifer Teves\"}, {\"credit_id\": \"549596009251413af70028cc\", \"department\": \"Production\", \"gender\": 0, \"id\": 1401785, \"job\": \"Production Manager\", \"name\": \"Brigitte Yorke\"}, {\"credit_id\": \"549596e892514130fc002d99\", \"department\": \"Sound\", \"gender\": 0, \"id\": 1401786, \"job\": \"Sound Effects Editor\", \"name\": \"Ken Fischer\"}, {\"credit_id\": \"549598229251412c4e002a1c\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401787, \"job\": \"Special Effects Coordinator\", \"name\": \"Iain Hutton\"}, {\"credit_id\": \"549598349251416e2b00432b\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401788, \"job\": \"Special Effects Coordinator\", \"name\": \"Steve Ingram\"}, {\"credit_id\": \"54959905c3a3686ae3004324\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401789, \"job\": \"Visual Effects Producer\", \"name\": \"Joyce Cox\"}, {\"credit_id\": \"5495994b92514132ed002951\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401790, \"job\": \"Visual Effects Producer\", \"name\": \"Jenny Foster\"}, {\"credit_id\": \"549599cbc3a3686ae1004613\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401791, \"job\": \"Visual Effects Editor\", \"name\": \"Christopher Marino\"}, {\"credit_id\": \"549599f2c3a3686ae100461e\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401792, \"job\": \"Visual Effects Editor\", \"name\": \"Jim Milton\"}, {\"credit_id\": \"54959a51c3a3686af3003eb5\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401793, \"job\": \"Visual Effects Producer\", \"name\": \"Cyndi Ochs\"}, {\"credit_id\": \"54959a7cc3a36811530026f4\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401794, \"job\": \"Visual Effects Editor\", \"name\": \"Lucas Putnam\"}, {\"credit_id\": \"54959b91c3a3680ff5002cb4\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401795, \"job\": \"Visual Effects Supervisor\", \"name\": \"Anthony \\'Max\\' Ivins\"}, {\"credit_id\": \"54959bb69251412c4e002a5f\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401796, \"job\": \"Visual Effects Supervisor\", \"name\": \"John Knoll\"}, {\"credit_id\": \"54959cbbc3a3686ae3004391\", \"department\": \"Visual Effects\", \"gender\": 2, \"id\": 1401799, \"job\": \"Visual Effects Supervisor\", \"name\": \"Eric Saindon\"}, {\"credit_id\": \"54959d06c3a3686ae90043f6\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401800, \"job\": \"Visual Effects Supervisor\", \"name\": \"Wayne Stables\"}, {\"credit_id\": \"54959d259251416e1e003f11\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401801, \"job\": \"Visual Effects Supervisor\", \"name\": \"David Stinnett\"}, {\"credit_id\": \"54959db49251413af7002975\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401803, \"job\": \"Visual Effects Supervisor\", \"name\": \"Guy Williams\"}, {\"credit_id\": \"54959de4c3a3681153002750\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1401804, \"job\": \"Stunt Coordinator\", \"name\": \"Stuart Thorp\"}, {\"credit_id\": \"54959ef2c3a3680fc60027f2\", \"department\": \"Lighting\", \"gender\": 0, \"id\": 1401805, \"job\": \"Best Boy Electric\", \"name\": \"Giles Coburn\"}, {\"credit_id\": \"54959f07c3a3680fc60027f9\", \"department\": \"Camera\", \"gender\": 2, \"id\": 1401806, \"job\": \"Still Photographer\", \"name\": \"Mark Fellman\"}, {\"credit_id\": \"54959f47c3a3681153002774\", \"department\": \"Lighting\", \"gender\": 0, \"id\": 1401807, \"job\": \"Lighting Technician\", \"name\": \"Scott Sprague\"}, {\"credit_id\": \"54959f8cc3a36831b8001df2\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401808, \"job\": \"Animation Director\", \"name\": \"Jeremy Hollobon\"}, {\"credit_id\": \"54959fa0c3a36831b8001dfb\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401809, \"job\": \"Animation Director\", \"name\": \"Orlando Meunier\"}, {\"credit_id\": \"54959fb6c3a3686af3003f54\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1401810, \"job\": \"Animation Director\", \"name\": \"Taisuke Tanimura\"}, {\"credit_id\": \"54959fd2c3a36831b8001e02\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1401812, \"job\": \"Set Costumer\", \"name\": \"Lilia Mishel Acevedo\"}, {\"credit_id\": \"54959ff9c3a3686ae300440c\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1401814, \"job\": \"Set Costumer\", \"name\": \"Alejandro M. Hernandez\"}, {\"credit_id\": \"5495a0ddc3a3686ae10046fe\", \"department\": \"Editing\", \"gender\": 0, \"id\": 1401815, \"job\": \"Digital Intermediate\", \"name\": \"Marvin Hall\"}, {\"credit_id\": \"5495a1f7c3a3686ae3004443\", \"department\": \"Production\", \"gender\": 0, \"id\": 1401816, \"job\": \"Publicist\", \"name\": \"Judy Alley\"}, {\"credit_id\": \"5592b29fc3a36869d100002f\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1418381, \"job\": \"CG Supervisor\", \"name\": \"Mike Perry\"}, {\"credit_id\": \"5592b23a9251415df8001081\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1426854, \"job\": \"CG Supervisor\", \"name\": \"Andrew Morley\"}, {\"credit_id\": \"55491e1192514104c40002d8\", \"department\": \"Art\", \"gender\": 0, \"id\": 1438901, \"job\": \"Conceptual Design\", \"name\": \"Seth Engstrom\"}, {\"credit_id\": \"5525d5809251417276002b06\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1447362, \"job\": \"Visual Effects Art Director\", \"name\": \"Eric Oliver\"}, {\"credit_id\": \"554427ca925141586500312a\", \"department\": \"Visual Effects\", \"gender\": 0, \"id\": 1447503, \"job\": \"Modeling\", \"name\": \"Matsune Suzuki\"}, {\"credit_id\": \"551906889251415aab001c88\", \"department\": \"Art\", \"gender\": 0, \"id\": 1447524, \"job\": \"Art Department Manager\", \"name\": \"Paul Tobin\"}, {\"credit_id\": \"5592af8492514152cc0010de\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1452643, \"job\": \"Hairstylist\", \"name\": \"Roxane Griffin\"}, {\"credit_id\": \"553d3c109251415852001318\", \"department\": \"Lighting\", \"gender\": 0, \"id\": 1453938, \"job\": \"Lighting Artist\", \"name\": \"Arun Ram-Mohan\"}, {\"credit_id\": \"5592af4692514152d5001355\", \"department\": \"Costume & Make-Up\", \"gender\": 0, \"id\": 1457305, \"job\": \"Makeup Artist\", \"name\": \"Georgia Lockhart-Adams\"}, {\"credit_id\": \"5592b2eac3a36877470012a5\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1466035, \"job\": \"CG Supervisor\", \"name\": \"Thrain Shadbolt\"}, {\"credit_id\": \"5592b032c3a36877450015f1\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483220, \"job\": \"CG Supervisor\", \"name\": \"Brad Alexander\"}, {\"credit_id\": \"5592b05592514152d80012f6\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483221, \"job\": \"CG Supervisor\", \"name\": \"Shadi Almassizadeh\"}, {\"credit_id\": \"5592b090c3a36877570010b5\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483222, \"job\": \"CG Supervisor\", \"name\": \"Simon Clutterbuck\"}, {\"credit_id\": \"5592b0dbc3a368774b00112c\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483223, \"job\": \"CG Supervisor\", \"name\": \"Graeme Demmocks\"}, {\"credit_id\": \"5592b0fe92514152db0010c1\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483224, \"job\": \"CG Supervisor\", \"name\": \"Adrian Fernandes\"}, {\"credit_id\": \"5592b11f9251415df8001059\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483225, \"job\": \"CG Supervisor\", \"name\": \"Mitch Gates\"}, {\"credit_id\": \"5592b15dc3a3687745001645\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483226, \"job\": \"CG Supervisor\", \"name\": \"Jerry Kung\"}, {\"credit_id\": \"5592b18e925141645a0004ae\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483227, \"job\": \"CG Supervisor\", \"name\": \"Andy Lomas\"}, {\"credit_id\": \"5592b1bfc3a368775d0010e7\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483228, \"job\": \"CG Supervisor\", \"name\": \"Sebastian Marino\"}, {\"credit_id\": \"5592b2049251415df8001078\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483229, \"job\": \"CG Supervisor\", \"name\": \"Matthias Menz\"}, {\"credit_id\": \"5592b27b92514152d800136a\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483230, \"job\": \"CG Supervisor\", \"name\": \"Sergei Nevshupov\"}, {\"credit_id\": \"5592b2c3c3a36869e800003c\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483231, \"job\": \"CG Supervisor\", \"name\": \"Philippe Rebours\"}, {\"credit_id\": \"5592b317c3a36877470012af\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483232, \"job\": \"CG Supervisor\", \"name\": \"Michael Takarangi\"}, {\"credit_id\": \"5592b345c3a36877470012bb\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483233, \"job\": \"CG Supervisor\", \"name\": \"David Weitzberg\"}, {\"credit_id\": \"5592b37cc3a368775100113b\", \"department\": \"Crew\", \"gender\": 0, \"id\": 1483234, \"job\": \"CG Supervisor\", \"name\": \"Ben White\"}, {\"credit_id\": \"573c8e2f9251413f5d000094\", \"department\": \"Crew\", \"gender\": 1, \"id\": 1621932, \"job\": \"Stunts\", \"name\": \"Min Windle\"}]'" ] }, "execution_count": 69, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies['crew'][0]" ] }, { "cell_type": "code", "execution_count": 70, "id": "59d71a14", "metadata": {}, "outputs": [], "source": [ "def converter_crew(obj):\n", " L = []\n", " for i in ast.literal_eval(obj):\n", " if i['job'] == 'Director':\n", " L.append(i['name'])\n", " break\n", " return L" ] }, { "cell_type": "code", "execution_count": 71, "id": "89d33d14", "metadata": {}, "outputs": [], "source": [ "movies['crew'] = movies['crew'].apply(converter_crew)" ] }, { "cell_type": "code", "execution_count": 72, "id": "49b0cb3e", "metadata": {}, "outputs": [], "source": [ "movies['overview'] = movies['overview'].apply(lambda x : x.split() )" ] }, { "cell_type": "code", "execution_count": 73, "id": "526ee44d", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrew
0Avatar19995[In, the, 22nd, century,, a, paraplegic, Marin...[Action, Adventure, Fantasy, Science Fiction][culture clash, future, space war, space colon...[Sam Worthington, Zoe Saldana, Sigourney Weaver][James Cameron]
1Pirates of the Caribbean: At World's End285[Captain, Barbossa,, long, believed, to, be, d...[Adventure, Fantasy, Action][ocean, drug abuse, exotic island, east india ...[Johnny Depp, Orlando Bloom, Keira Knightley][Gore Verbinski]
2Spectre206647[A, cryptic, message, from, Bond’s, past, send...[Action, Adventure, Crime][spy, based on novel, secret agent, sequel, mi...[Daniel Craig, Christoph Waltz, Léa Seydoux][Sam Mendes]
3The Dark Knight Rises49026[Following, the, death, of, District, Attorney...[Action, Crime, Drama, Thriller][dc comics, crime fighter, terrorist, secret i...[Christian Bale, Michael Caine, Gary Oldman][Christopher Nolan]
4John Carter49529[John, Carter, is, a, war-weary,, former, mili...[Action, Adventure, Science Fiction][based on novel, mars, medallion, space travel...[Taylor Kitsch, Lynn Collins, Samantha Morton][Andrew Stanton]
........................
4804El Mariachi9367[El, Mariachi, just, wants, to, play, his, gui...[Action, Crime, Thriller][united states–mexico barrier, legs, arms, pap...[Carlos Gallardo, Jaime de Hoyos, Peter Marqua...[Robert Rodriguez]
4805Newlyweds72766[A, newlywed, couple's, honeymoon, is, upended...[Comedy, Romance][][Edward Burns, Kerry Bishé, Marsha Dietlein][Edward Burns]
4806Signed, Sealed, Delivered231617[\"Signed,, Sealed,, Delivered\", introduces, a,...[Comedy, Drama, Romance, TV Movie][date, love at first sight, narration, investi...[Eric Mabius, Kristin Booth, Crystal Lowe][Scott Smith]
4807Shanghai Calling126186[When, ambitious, New, York, attorney, Sam, is...[][][Daniel Henney, Eliza Coupe, Bill Paxton][Daniel Hsia]
4808My Date with Drew25975[Ever, since, the, second, grade, when, he, fi...[Documentary][obsession, camcorder, crush, dream girl][Drew Barrymore, Brian Herzlinger, Corey Feldman][Brian Herzlinger]
\n", "

4806 rows × 7 columns

\n", "
" ], "text/plain": [ " title movie_id \\\n", "0 Avatar 19995 \n", "1 Pirates of the Caribbean: At World's End 285 \n", "2 Spectre 206647 \n", "3 The Dark Knight Rises 49026 \n", "4 John Carter 49529 \n", "... ... ... \n", "4804 El Mariachi 9367 \n", "4805 Newlyweds 72766 \n", "4806 Signed, Sealed, Delivered 231617 \n", "4807 Shanghai Calling 126186 \n", "4808 My Date with Drew 25975 \n", "\n", " overview \\\n", "0 [In, the, 22nd, century,, a, paraplegic, Marin... \n", "1 [Captain, Barbossa,, long, believed, to, be, d... \n", "2 [A, cryptic, message, from, Bond’s, past, send... \n", "3 [Following, the, death, of, District, Attorney... \n", "4 [John, Carter, is, a, war-weary,, former, mili... \n", "... ... \n", "4804 [El, Mariachi, just, wants, to, play, his, gui... \n", "4805 [A, newlywed, couple's, honeymoon, is, upended... \n", "4806 [\"Signed,, Sealed,, Delivered\", introduces, a,... \n", "4807 [When, ambitious, New, York, attorney, Sam, is... \n", "4808 [Ever, since, the, second, grade, when, he, fi... \n", "\n", " genres \\\n", "0 [Action, Adventure, Fantasy, Science Fiction] \n", "1 [Adventure, Fantasy, Action] \n", "2 [Action, Adventure, Crime] \n", "3 [Action, Crime, Drama, Thriller] \n", "4 [Action, Adventure, Science Fiction] \n", "... ... \n", "4804 [Action, Crime, Thriller] \n", "4805 [Comedy, Romance] \n", "4806 [Comedy, Drama, Romance, TV Movie] \n", "4807 [] \n", "4808 [Documentary] \n", "\n", " keywords \\\n", "0 [culture clash, future, space war, space colon... \n", "1 [ocean, drug abuse, exotic island, east india ... \n", "2 [spy, based on novel, secret agent, sequel, mi... \n", "3 [dc comics, crime fighter, terrorist, secret i... \n", "4 [based on novel, mars, medallion, space travel... \n", "... ... \n", "4804 [united states–mexico barrier, legs, arms, pap... \n", "4805 [] \n", "4806 [date, love at first sight, narration, investi... \n", "4807 [] \n", "4808 [obsession, camcorder, crush, dream girl] \n", "\n", " cast crew \n", "0 [Sam Worthington, Zoe Saldana, Sigourney Weaver] [James Cameron] \n", "1 [Johnny Depp, Orlando Bloom, Keira Knightley] [Gore Verbinski] \n", "2 [Daniel Craig, Christoph Waltz, Léa Seydoux] [Sam Mendes] \n", "3 [Christian Bale, Michael Caine, Gary Oldman] [Christopher Nolan] \n", "4 [Taylor Kitsch, Lynn Collins, Samantha Morton] [Andrew Stanton] \n", "... ... ... \n", "4804 [Carlos Gallardo, Jaime de Hoyos, Peter Marqua... [Robert Rodriguez] \n", "4805 [Edward Burns, Kerry Bishé, Marsha Dietlein] [Edward Burns] \n", "4806 [Eric Mabius, Kristin Booth, Crystal Lowe] [Scott Smith] \n", "4807 [Daniel Henney, Eliza Coupe, Bill Paxton] [Daniel Hsia] \n", "4808 [Drew Barrymore, Brian Herzlinger, Corey Feldman] [Brian Herzlinger] \n", "\n", "[4806 rows x 7 columns]" ] }, "execution_count": 73, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies" ] }, { "cell_type": "code", "execution_count": 74, "id": "751819f4", "metadata": {}, "outputs": [], "source": [ "movies['genres'] = movies['genres'].apply(lambda x : [i.replace(\" \",\"\") for i in x])\n", "movies['keywords'] = movies['keywords'].apply(lambda x : [i.replace(\" \",\"\") for i in x])\n", "movies['cast'] = movies['cast'].apply(lambda x : [i.replace(\" \",\"\") for i in x])\n", "movies['crew'] = movies['crew'].apply(lambda x : [i.replace(\" \",\"\") for i in x])" ] }, { "cell_type": "code", "execution_count": 75, "id": "defb6b24", "metadata": {}, "outputs": [], "source": [ "movies['tags'] = movies['overview'] + movies['genres'] + movies['keywords'] + movies['cast'] + movies['crew']" ] }, { "cell_type": "code", "execution_count": 76, "id": "cd33c269", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idoverviewgenreskeywordscastcrewtags
0Avatar19995[In, the, 22nd, century,, a, paraplegic, Marin...[Action, Adventure, Fantasy, ScienceFiction][cultureclash, future, spacewar, spacecolony, ...[SamWorthington, ZoeSaldana, SigourneyWeaver][JamesCameron][In, the, 22nd, century,, a, paraplegic, Marin...
1Pirates of the Caribbean: At World's End285[Captain, Barbossa,, long, believed, to, be, d...[Adventure, Fantasy, Action][ocean, drugabuse, exoticisland, eastindiatrad...[JohnnyDepp, OrlandoBloom, KeiraKnightley][GoreVerbinski][Captain, Barbossa,, long, believed, to, be, d...
2Spectre206647[A, cryptic, message, from, Bond’s, past, send...[Action, Adventure, Crime][spy, basedonnovel, secretagent, sequel, mi6, ...[DanielCraig, ChristophWaltz, LéaSeydoux][SamMendes][A, cryptic, message, from, Bond’s, past, send...
3The Dark Knight Rises49026[Following, the, death, of, District, Attorney...[Action, Crime, Drama, Thriller][dccomics, crimefighter, terrorist, secretiden...[ChristianBale, MichaelCaine, GaryOldman][ChristopherNolan][Following, the, death, of, District, Attorney...
4John Carter49529[John, Carter, is, a, war-weary,, former, mili...[Action, Adventure, ScienceFiction][basedonnovel, mars, medallion, spacetravel, p...[TaylorKitsch, LynnCollins, SamanthaMorton][AndrewStanton][John, Carter, is, a, war-weary,, former, mili...
...........................
4804El Mariachi9367[El, Mariachi, just, wants, to, play, his, gui...[Action, Crime, Thriller][unitedstates–mexicobarrier, legs, arms, paper...[CarlosGallardo, JaimedeHoyos, PeterMarquardt][RobertRodriguez][El, Mariachi, just, wants, to, play, his, gui...
4805Newlyweds72766[A, newlywed, couple's, honeymoon, is, upended...[Comedy, Romance][][EdwardBurns, KerryBishé, MarshaDietlein][EdwardBurns][A, newlywed, couple's, honeymoon, is, upended...
4806Signed, Sealed, Delivered231617[\"Signed,, Sealed,, Delivered\", introduces, a,...[Comedy, Drama, Romance, TVMovie][date, loveatfirstsight, narration, investigat...[EricMabius, KristinBooth, CrystalLowe][ScottSmith][\"Signed,, Sealed,, Delivered\", introduces, a,...
4807Shanghai Calling126186[When, ambitious, New, York, attorney, Sam, is...[][][DanielHenney, ElizaCoupe, BillPaxton][DanielHsia][When, ambitious, New, York, attorney, Sam, is...
4808My Date with Drew25975[Ever, since, the, second, grade, when, he, fi...[Documentary][obsession, camcorder, crush, dreamgirl][DrewBarrymore, BrianHerzlinger, CoreyFeldman][BrianHerzlinger][Ever, since, the, second, grade, when, he, fi...
\n", "

4806 rows × 8 columns

\n", "
" ], "text/plain": [ " title movie_id \\\n", "0 Avatar 19995 \n", "1 Pirates of the Caribbean: At World's End 285 \n", "2 Spectre 206647 \n", "3 The Dark Knight Rises 49026 \n", "4 John Carter 49529 \n", "... ... ... \n", "4804 El Mariachi 9367 \n", "4805 Newlyweds 72766 \n", "4806 Signed, Sealed, Delivered 231617 \n", "4807 Shanghai Calling 126186 \n", "4808 My Date with Drew 25975 \n", "\n", " overview \\\n", "0 [In, the, 22nd, century,, a, paraplegic, Marin... \n", "1 [Captain, Barbossa,, long, believed, to, be, d... \n", "2 [A, cryptic, message, from, Bond’s, past, send... \n", "3 [Following, the, death, of, District, Attorney... \n", "4 [John, Carter, is, a, war-weary,, former, mili... \n", "... ... \n", "4804 [El, Mariachi, just, wants, to, play, his, gui... \n", "4805 [A, newlywed, couple's, honeymoon, is, upended... \n", "4806 [\"Signed,, Sealed,, Delivered\", introduces, a,... \n", "4807 [When, ambitious, New, York, attorney, Sam, is... \n", "4808 [Ever, since, the, second, grade, when, he, fi... \n", "\n", " genres \\\n", "0 [Action, Adventure, Fantasy, ScienceFiction] \n", "1 [Adventure, Fantasy, Action] \n", "2 [Action, Adventure, Crime] \n", "3 [Action, Crime, Drama, Thriller] \n", "4 [Action, Adventure, ScienceFiction] \n", "... ... \n", "4804 [Action, Crime, Thriller] \n", "4805 [Comedy, Romance] \n", "4806 [Comedy, Drama, Romance, TVMovie] \n", "4807 [] \n", "4808 [Documentary] \n", "\n", " keywords \\\n", "0 [cultureclash, future, spacewar, spacecolony, ... \n", "1 [ocean, drugabuse, exoticisland, eastindiatrad... \n", "2 [spy, basedonnovel, secretagent, sequel, mi6, ... \n", "3 [dccomics, crimefighter, terrorist, secretiden... \n", "4 [basedonnovel, mars, medallion, spacetravel, p... \n", "... ... \n", "4804 [unitedstates–mexicobarrier, legs, arms, paper... \n", "4805 [] \n", "4806 [date, loveatfirstsight, narration, investigat... \n", "4807 [] \n", "4808 [obsession, camcorder, crush, dreamgirl] \n", "\n", " cast crew \\\n", "0 [SamWorthington, ZoeSaldana, SigourneyWeaver] [JamesCameron] \n", "1 [JohnnyDepp, OrlandoBloom, KeiraKnightley] [GoreVerbinski] \n", "2 [DanielCraig, ChristophWaltz, LéaSeydoux] [SamMendes] \n", "3 [ChristianBale, MichaelCaine, GaryOldman] [ChristopherNolan] \n", "4 [TaylorKitsch, LynnCollins, SamanthaMorton] [AndrewStanton] \n", "... ... ... \n", "4804 [CarlosGallardo, JaimedeHoyos, PeterMarquardt] [RobertRodriguez] \n", "4805 [EdwardBurns, KerryBishé, MarshaDietlein] [EdwardBurns] \n", "4806 [EricMabius, KristinBooth, CrystalLowe] [ScottSmith] \n", "4807 [DanielHenney, ElizaCoupe, BillPaxton] [DanielHsia] \n", "4808 [DrewBarrymore, BrianHerzlinger, CoreyFeldman] [BrianHerzlinger] \n", "\n", " tags \n", "0 [In, the, 22nd, century,, a, paraplegic, Marin... \n", "1 [Captain, Barbossa,, long, believed, to, be, d... \n", "2 [A, cryptic, message, from, Bond’s, past, send... \n", "3 [Following, the, death, of, District, Attorney... \n", "4 [John, Carter, is, a, war-weary,, former, mili... \n", "... ... \n", "4804 [El, Mariachi, just, wants, to, play, his, gui... \n", "4805 [A, newlywed, couple's, honeymoon, is, upended... \n", "4806 [\"Signed,, Sealed,, Delivered\", introduces, a,... \n", "4807 [When, ambitious, New, York, attorney, Sam, is... \n", "4808 [Ever, since, the, second, grade, when, he, fi... \n", "\n", "[4806 rows x 8 columns]" ] }, "execution_count": 76, "metadata": {}, "output_type": "execute_result" } ], "source": [ "movies" ] }, { "cell_type": "code", "execution_count": 77, "id": "74c39c82", "metadata": {}, "outputs": [], "source": [ "new_df = movies[['title','movie_id','tags']]" ] }, { "cell_type": "code", "execution_count": 78, "id": "f5467a1e", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ ":1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " new_df['tags'] = new_df['tags'].apply(lambda x : \" \".join(x))\n" ] } ], "source": [ "new_df['tags'] = new_df['tags'].apply(lambda x : \" \".join(x))" ] }, { "cell_type": "code", "execution_count": 79, "id": "6cbd052a", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ ":1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " new_df['tags'] = new_df['tags'].apply(lambda x : x.lower())\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlemovie_idtags
0Avatar19995in the 22nd century, a paraplegic marine is di...
1Pirates of the Caribbean: At World's End285captain barbossa, long believed to be dead, ha...
2Spectre206647a cryptic message from bond’s past sends him o...
3The Dark Knight Rises49026following the death of district attorney harve...
4John Carter49529john carter is a war-weary, former military ca...
............
4804El Mariachi9367el mariachi just wants to play his guitar and ...
4805Newlyweds72766a newlywed couple's honeymoon is upended by th...
4806Signed, Sealed, Delivered231617\"signed, sealed, delivered\" introduces a dedic...
4807Shanghai Calling126186when ambitious new york attorney sam is sent t...
4808My Date with Drew25975ever since the second grade when he first saw ...
\n", "

4806 rows × 3 columns

\n", "
" ], "text/plain": [ " title movie_id \\\n", "0 Avatar 19995 \n", "1 Pirates of the Caribbean: At World's End 285 \n", "2 Spectre 206647 \n", "3 The Dark Knight Rises 49026 \n", "4 John Carter 49529 \n", "... ... ... \n", "4804 El Mariachi 9367 \n", "4805 Newlyweds 72766 \n", "4806 Signed, Sealed, Delivered 231617 \n", "4807 Shanghai Calling 126186 \n", "4808 My Date with Drew 25975 \n", "\n", " tags \n", "0 in the 22nd century, a paraplegic marine is di... \n", "1 captain barbossa, long believed to be dead, ha... \n", "2 a cryptic message from bond’s past sends him o... \n", "3 following the death of district attorney harve... \n", "4 john carter is a war-weary, former military ca... \n", "... ... \n", "4804 el mariachi just wants to play his guitar and ... \n", "4805 a newlywed couple's honeymoon is upended by th... \n", "4806 \"signed, sealed, delivered\" introduces a dedic... \n", "4807 when ambitious new york attorney sam is sent t... \n", "4808 ever since the second grade when he first saw ... \n", "\n", "[4806 rows x 3 columns]" ] }, "execution_count": 79, "metadata": {}, "output_type": "execute_result" } ], "source": [ "new_df['tags'] = new_df['tags'].apply(lambda x : x.lower())\n", "new_df" ] }, { "cell_type": "code", "execution_count": 80, "id": "e080ef90", "metadata": {}, "outputs": [], "source": [ "from nltk.stem.porter import PorterStemmer\n", "ps = PorterStemmer()\n", "\n", "def stem(text):\n", " y = []\n", " for i in text.split():\n", " y.append(ps.stem(i))\n", " \n", " return \" \".join(y)" ] }, { "cell_type": "code", "execution_count": 81, "id": "01546211", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ ":1: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", "Try using .loc[row_indexer,col_indexer] = value instead\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " new_df['tags'] = new_df['tags'].apply(stem)\n" ] } ], "source": [ "new_df['tags'] = new_df['tags'].apply(stem)" ] }, { "cell_type": "code", "execution_count": 82, "id": "cd5a792b", "metadata": {}, "outputs": [], "source": [ "from sklearn.feature_extraction.text import CountVectorizer\n", "cv = CountVectorizer(max_features=None,stop_words='english')" ] }, { "cell_type": "code", "execution_count": 89, "id": "d5f4de9d", "metadata": {}, "outputs": [], "source": [ "vectors = cv.fit_transform(new_df['tags']).toarray()" ] }, { "cell_type": "code", "execution_count": 91, "id": "24017bc9", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([[0, 0, 0, ..., 0, 0, 0],\n", " [0, 0, 0, ..., 0, 0, 0],\n", " [0, 0, 0, ..., 0, 0, 0],\n", " ...,\n", " [0, 0, 0, ..., 0, 0, 0],\n", " [0, 0, 0, ..., 0, 0, 0],\n", " [0, 0, 0, ..., 0, 0, 0]], dtype=int64)" ] }, "execution_count": 91, "metadata": {}, "output_type": "execute_result" } ], "source": [ "vectors" ] }, { "cell_type": "code", "execution_count": null, "id": "6a1e0ac8", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 92, "id": "745e2979", "metadata": {}, "outputs": [], "source": [ "from sklearn.metrics.pairwise import cosine_similarity\n", "similarity = cosine_similarity(vectors)" ] }, { "cell_type": "code", "execution_count": 93, "id": "1de25fa1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(4806, 4806)" ] }, "execution_count": 93, "metadata": {}, "output_type": "execute_result" } ], "source": [ "similarity.shape" ] }, { "cell_type": "code", "execution_count": 101, "id": "62f7d246", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([1. , 0.06776309, 0.06862635, ..., 0.03571429, 0. ,\n", " 0. ])" ] }, "execution_count": 101, "metadata": {}, "output_type": "execute_result" } ], "source": [ "similarity[0]" ] }, { "cell_type": "code", "execution_count": 183, "id": "86beb283", "metadata": {}, "outputs": [], "source": [ "def recommand(movie):\n", " movie_index = new_df[new_df['title'] == movie].index[0]\n", " distences = similarity[movie_index]\n", " \n", " movies_list = sorted(list(enumerate(distences)),reverse=True,key = lambda x : x[1])[1:6]\n", " for i in movies_list:\n", " print(i)\n", " " ] }, { "cell_type": "code", "execution_count": 184, "id": "cab3f3ff", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(2409, 0.22318099025284097)\n", "(1216, 0.21757417824291833)\n", "(539, 0.21428571428571427)\n", "(507, 0.19928166641797587)\n", "(582, 0.1979813906238809)\n" ] } ], "source": [ "recommand('Avatar')" ] }, { "cell_type": "code", "execution_count": null, "id": "423484c0", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 166, "id": "c339f86e", "metadata": {}, "outputs": [], "source": [ "import pickle" ] }, { "cell_type": "code", "execution_count": 174, "id": "a74a2437", "metadata": {}, "outputs": [], "source": [ "pickle.dump(new_df.to_dict(),open('movie_dict.pkl','wb'))" ] }, { "cell_type": "code", "execution_count": 173, "id": "722f5e9e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'title': {0: 'Avatar',\n", " 1: \"Pirates of the Caribbean: At World's End\",\n", " 2: 'Spectre',\n", " 3: 'The Dark Knight Rises',\n", " 4: 'John Carter',\n", " 5: 'Spider-Man 3',\n", " 6: 'Tangled',\n", " 7: 'Avengers: Age of Ultron',\n", " 8: 'Harry Potter and the Half-Blood Prince',\n", " 9: 'Batman v Superman: Dawn of Justice',\n", " 10: 'Superman Returns',\n", " 11: 'Quantum of Solace',\n", " 12: \"Pirates of the Caribbean: Dead Man's Chest\",\n", " 13: 'The Lone Ranger',\n", " 14: 'Man of Steel',\n", " 15: 'The Chronicles of Narnia: Prince Caspian',\n", " 16: 'The Avengers',\n", " 17: 'Pirates of the Caribbean: On Stranger Tides',\n", " 18: 'Men in Black 3',\n", " 19: 'The Hobbit: The Battle of the Five Armies',\n", " 20: 'The Amazing Spider-Man',\n", " 21: 'Robin Hood',\n", " 22: 'The Hobbit: The Desolation of Smaug',\n", " 23: 'The Golden Compass',\n", " 24: 'King Kong',\n", " 25: 'Titanic',\n", " 26: 'Captain America: Civil War',\n", " 27: 'Battleship',\n", " 28: 'Jurassic World',\n", " 29: 'Skyfall',\n", " 30: 'Spider-Man 2',\n", " 31: 'Iron Man 3',\n", " 32: 'Alice in Wonderland',\n", " 33: 'X-Men: The Last Stand',\n", " 34: 'Monsters University',\n", " 35: 'Transformers: Revenge of the Fallen',\n", " 36: 'Transformers: Age of Extinction',\n", " 37: 'Oz: The Great and Powerful',\n", " 38: 'The Amazing Spider-Man 2',\n", " 39: 'TRON: Legacy',\n", " 40: 'Cars 2',\n", " 41: 'Green Lantern',\n", " 42: 'Toy Story 3',\n", " 43: 'Terminator Salvation',\n", " 44: 'Furious 7',\n", " 45: 'World War Z',\n", " 46: 'X-Men: Days of Future Past',\n", " 47: 'Star Trek Into Darkness',\n", " 48: 'Jack the Giant Slayer',\n", " 49: 'The Great Gatsby',\n", " 50: 'Prince of Persia: The Sands of Time',\n", " 51: 'Pacific Rim',\n", " 52: 'Transformers: Dark of the Moon',\n", " 53: 'Indiana Jones and the Kingdom of the Crystal Skull',\n", " 54: 'The Good Dinosaur',\n", " 55: 'Brave',\n", " 56: 'Star Trek Beyond',\n", " 57: 'WALL·E',\n", " 58: 'Rush Hour 3',\n", " 59: '2012',\n", " 60: 'A Christmas Carol',\n", " 61: 'Jupiter Ascending',\n", " 62: 'The Legend of Tarzan',\n", " 63: 'The Chronicles of Narnia: The Lion, the Witch and the Wardrobe',\n", " 64: 'X-Men: Apocalypse',\n", " 65: 'The Dark Knight',\n", " 66: 'Up',\n", " 67: 'Monsters vs Aliens',\n", " 68: 'Iron Man',\n", " 69: 'Hugo',\n", " 70: 'Wild Wild West',\n", " 71: 'The Mummy: Tomb of the Dragon Emperor',\n", " 72: 'Suicide Squad',\n", " 73: 'Evan Almighty',\n", " 74: 'Edge of Tomorrow',\n", " 75: 'Waterworld',\n", " 76: 'G.I. Joe: The Rise of Cobra',\n", " 77: 'Inside Out',\n", " 78: 'The Jungle Book',\n", " 79: 'Iron Man 2',\n", " 80: 'Snow White and the Huntsman',\n", " 81: 'Maleficent',\n", " 82: 'Dawn of the Planet of the Apes',\n", " 83: 'The Lovers',\n", " 84: '47 Ronin',\n", " 85: 'Captain America: The Winter Soldier',\n", " 86: 'Shrek Forever After',\n", " 87: 'Tomorrowland',\n", " 88: 'Big Hero 6',\n", " 89: 'Wreck-It Ralph',\n", " 90: 'The Polar Express',\n", " 91: 'Independence Day: Resurgence',\n", " 92: 'How to Train Your Dragon',\n", " 93: 'Terminator 3: Rise of the Machines',\n", " 94: 'Guardians of the Galaxy',\n", " 95: 'Interstellar',\n", " 96: 'Inception',\n", " 97: 'Shin Godzilla',\n", " 98: 'The Hobbit: An Unexpected Journey',\n", " 99: 'The Fast and the Furious',\n", " 100: 'The Curious Case of Benjamin Button',\n", " 101: 'X-Men: First Class',\n", " 102: 'The Hunger Games: Mockingjay - Part 2',\n", " 103: \"The Sorcerer's Apprentice\",\n", " 104: 'Poseidon',\n", " 105: 'Alice Through the Looking Glass',\n", " 106: 'Shrek the Third',\n", " 107: 'Warcraft',\n", " 108: 'Terminator Genisys',\n", " 109: 'The Chronicles of Narnia: The Voyage of the Dawn Treader',\n", " 110: 'Pearl Harbor',\n", " 111: 'Transformers',\n", " 112: 'Alexander',\n", " 113: 'Harry Potter and the Order of the Phoenix',\n", " 114: 'Harry Potter and the Goblet of Fire',\n", " 115: 'Hancock',\n", " 116: 'I Am Legend',\n", " 117: 'Charlie and the Chocolate Factory',\n", " 118: 'Ratatouille',\n", " 119: 'Batman Begins',\n", " 120: 'Madagascar: Escape 2 Africa',\n", " 121: 'Night at the Museum: Battle of the Smithsonian',\n", " 122: 'X-Men Origins: Wolverine',\n", " 123: 'The Matrix Revolutions',\n", " 124: 'Frozen',\n", " 125: 'The Matrix Reloaded',\n", " 126: 'Thor: The Dark World',\n", " 127: 'Mad Max: Fury Road',\n", " 128: 'Angels & Demons',\n", " 129: 'Thor',\n", " 130: 'Bolt',\n", " 131: 'G-Force',\n", " 132: 'Wrath of the Titans',\n", " 133: 'Dark Shadows',\n", " 134: 'Mission: Impossible - Rogue Nation',\n", " 135: 'The Wolfman',\n", " 136: 'Bee Movie',\n", " 137: 'Kung Fu Panda 2',\n", " 138: 'The Last Airbender',\n", " 139: 'Mission: Impossible III',\n", " 140: 'White House Down',\n", " 141: 'Mars Needs Moms',\n", " 142: 'Flushed Away',\n", " 143: 'Pan',\n", " 144: 'Mr. Peabody & Sherman',\n", " 145: 'Troy',\n", " 146: \"Madagascar 3: Europe's Most Wanted\",\n", " 147: 'Die Another Day',\n", " 148: 'Ghostbusters',\n", " 149: 'Armageddon',\n", " 150: 'Men in Black II',\n", " 151: 'Beowulf',\n", " 152: 'Kung Fu Panda 3',\n", " 153: 'Mission: Impossible - Ghost Protocol',\n", " 154: 'Rise of the Guardians',\n", " 155: 'Fun with Dick and Jane',\n", " 156: 'The Last Samurai',\n", " 157: 'Exodus: Gods and Kings',\n", " 158: 'Star Trek',\n", " 159: 'Spider-Man',\n", " 160: 'How to Train Your Dragon 2',\n", " 161: 'Gods of Egypt',\n", " 162: 'Stealth',\n", " 163: 'Watchmen',\n", " 164: 'Lethal Weapon 4',\n", " 165: 'Hulk',\n", " 166: 'G.I. Joe: Retaliation',\n", " 167: 'Sahara',\n", " 168: 'Final Fantasy: The Spirits Within',\n", " 169: 'Captain America: The First Avenger',\n", " 170: 'The World Is Not Enough',\n", " 171: 'Master and Commander: The Far Side of the World',\n", " 172: 'The Twilight Saga: Breaking Dawn - Part 2',\n", " 173: 'Happy Feet Two',\n", " 174: 'The Incredible Hulk',\n", " 175: 'The BFG',\n", " 176: 'The Revenant',\n", " 177: 'Turbo',\n", " 178: 'Rango',\n", " 179: 'Penguins of Madagascar',\n", " 180: 'The Bourne Ultimatum',\n", " 181: 'Kung Fu Panda',\n", " 182: 'Ant-Man',\n", " 183: 'The Hunger Games: Catching Fire',\n", " 184: 'Home',\n", " 185: 'War of the Worlds',\n", " 186: 'Bad Boys II',\n", " 187: 'Puss in Boots',\n", " 188: 'Salt',\n", " 189: 'Noah',\n", " 190: 'The Adventures of Tintin',\n", " 191: 'Harry Potter and the Prisoner of Azkaban',\n", " 192: 'Australia',\n", " 193: 'After Earth',\n", " 194: 'Dinosaur',\n", " 195: 'Night at the Museum: Secret of the Tomb',\n", " 196: 'Megamind',\n", " 197: \"Harry Potter and the Philosopher's Stone\",\n", " 198: 'R.I.P.D.',\n", " 199: 'Pirates of the Caribbean: The Curse of the Black Pearl',\n", " 200: 'The Hunger Games: Mockingjay - Part 1',\n", " 201: 'The Da Vinci Code',\n", " 202: 'Rio 2',\n", " 203: 'X2',\n", " 204: 'Fast Five',\n", " 205: 'Sherlock Holmes: A Game of Shadows',\n", " 206: 'Clash of the Titans',\n", " 207: 'Total Recall',\n", " 208: 'The 13th Warrior',\n", " 209: 'The Bourne Legacy',\n", " 210: 'Batman & Robin',\n", " 211: 'How the Grinch Stole Christmas',\n", " 212: 'The Day After Tomorrow',\n", " 213: 'Mission: Impossible II',\n", " 214: 'The Perfect Storm',\n", " 215: 'Fantastic 4: Rise of the Silver Surfer',\n", " 216: 'Life of Pi',\n", " 217: 'Ghost Rider',\n", " 218: 'Jason Bourne',\n", " 219: \"Charlie's Angels: Full Throttle\",\n", " 220: 'Prometheus',\n", " 221: 'Stuart Little 2',\n", " 222: 'Elysium',\n", " 223: 'The Chronicles of Riddick',\n", " 224: 'RoboCop',\n", " 225: 'Speed Racer',\n", " 226: 'How Do You Know',\n", " 227: 'Knight and Day',\n", " 228: 'Oblivion',\n", " 229: 'Star Wars: Episode III - Revenge of the Sith',\n", " 230: 'Star Wars: Episode II - Attack of the Clones',\n", " 231: 'Monsters, Inc.',\n", " 232: 'The Wolverine',\n", " 233: 'Star Wars: Episode I - The Phantom Menace',\n", " 234: 'The Croods',\n", " 235: 'Asterix at the Olympic Games',\n", " 236: 'Windtalkers',\n", " 237: \"The Huntsman: Winter's War\",\n", " 238: 'Teenage Mutant Ninja Turtles',\n", " 239: 'Gravity',\n", " 240: \"Dante's Peak\",\n", " 241: 'Teenage Mutant Ninja Turtles: Out of the Shadows',\n", " 242: 'Fantastic Four',\n", " 243: 'Night at the Museum',\n", " 244: 'San Andreas',\n", " 245: 'Tomorrow Never Dies',\n", " 246: 'The Patriot',\n", " 247: \"Ocean's Twelve\",\n", " 248: 'Mr. & Mrs. Smith',\n", " 249: 'Insurgent',\n", " 250: 'The Aviator',\n", " 251: \"Gulliver's Travels\",\n", " 252: 'The Green Hornet',\n", " 253: '300: Rise of an Empire',\n", " 254: 'The Smurfs',\n", " 255: 'Home on the Range',\n", " 256: 'Allegiant',\n", " 257: 'Real Steel',\n", " 258: 'The Smurfs 2',\n", " 259: 'Speed 2: Cruise Control',\n", " 260: \"Ender's Game\",\n", " 261: 'Live Free or Die Hard',\n", " 262: 'The Lord of the Rings: The Fellowship of the Ring',\n", " 263: 'Around the World in 80 Days',\n", " 264: 'Ali',\n", " 265: 'The Cat in the Hat',\n", " 266: 'I, Robot',\n", " 267: 'Kingdom of Heaven',\n", " 268: 'Stuart Little',\n", " 269: 'The Princess and the Frog',\n", " 270: 'The Martian',\n", " 271: 'The Island',\n", " 272: 'Town & Country',\n", " 273: 'Gone in Sixty Seconds',\n", " 274: 'Gladiator',\n", " 275: 'Minority Report',\n", " 276: 'Harry Potter and the Chamber of Secrets',\n", " 277: 'Casino Royale',\n", " 278: 'Planet of the Apes',\n", " 279: 'Terminator 2: Judgment Day',\n", " 280: 'Public Enemies',\n", " 281: 'American Gangster',\n", " 282: 'True Lies',\n", " 283: 'The Taking of Pelham 1 2 3',\n", " 284: 'Little Fockers',\n", " 285: 'The Other Guys',\n", " 286: 'Eraser',\n", " 287: 'Django Unchained',\n", " 288: 'The Hunchback of Notre Dame',\n", " 289: \"The Emperor's New Groove\",\n", " 290: 'The Expendables 2',\n", " 291: 'National Treasure',\n", " 292: 'Eragon',\n", " 293: 'Where the Wild Things Are',\n", " 294: 'Epic',\n", " 295: 'The Tourist',\n", " 296: 'End of Days',\n", " 297: 'Blood Diamond',\n", " 298: 'The Wolf of Wall Street',\n", " 299: 'Batman Forever',\n", " 300: 'Starship Troopers',\n", " 301: 'Cloud Atlas',\n", " 302: \"Legend of the Guardians: The Owls of Ga'Hoole\",\n", " 303: 'Catwoman',\n", " 304: 'Hercules',\n", " 305: 'Treasure Planet',\n", " 306: 'Land of the Lost',\n", " 307: 'The Expendables 3',\n", " 308: 'Point Break',\n", " 309: 'Son of the Mask',\n", " 310: 'In the Heart of the Sea',\n", " 311: 'The Adventures of Pluto Nash',\n", " 312: 'Green Zone',\n", " 313: 'The Peanuts Movie',\n", " 314: 'The Spanish Prisoner',\n", " 315: 'The Mummy Returns',\n", " 316: 'Gangs of New York',\n", " 317: 'The Flowers of War',\n", " 318: \"Surf's Up\",\n", " 319: 'The Stepford Wives',\n", " 320: 'Black Hawk Down',\n", " 321: 'The Campaign',\n", " 322: 'The Fifth Element',\n", " 323: 'Sex and the City 2',\n", " 324: 'The Road to El Dorado',\n", " 325: 'Ice Age: Continental Drift',\n", " 326: 'Cinderella',\n", " 327: 'The Lovely Bones',\n", " 328: 'Finding Nemo',\n", " 329: 'The Lord of the Rings: The Return of the King',\n", " 330: 'The Lord of the Rings: The Two Towers',\n", " 331: 'Seventh Son',\n", " 332: 'Lara Croft: Tomb Raider',\n", " 333: 'Transcendence',\n", " 334: 'Jurassic Park III',\n", " 335: 'Rise of the Planet of the Apes',\n", " 336: 'The Spiderwick Chronicles',\n", " 337: 'A Good Day to Die Hard',\n", " 338: 'The Alamo',\n", " 339: 'The Incredibles',\n", " 340: 'Cutthroat Island',\n", " 341: 'Percy Jackson & the Olympians: The Lightning Thief',\n", " 342: 'Men in Black',\n", " 343: 'Toy Story 2',\n", " 344: 'Unstoppable',\n", " 345: 'Rush Hour 2',\n", " 346: 'What Lies Beneath',\n", " 347: 'Cloudy with a Chance of Meatballs',\n", " 348: 'Ice Age: Dawn of the Dinosaurs',\n", " 349: 'The Secret Life of Walter Mitty',\n", " 350: \"Charlie's Angels\",\n", " 351: 'The Departed',\n", " 352: 'Mulan',\n", " 353: 'Tropic Thunder',\n", " 354: 'The Girl with the Dragon Tattoo',\n", " 355: 'Die Hard: With a Vengeance',\n", " 356: 'Sherlock Holmes',\n", " 357: 'Ben-Hur',\n", " 358: 'Atlantis: The Lost Empire',\n", " 359: 'Alvin and the Chipmunks: The Road Chip',\n", " 360: 'Valkyrie',\n", " 361: \"You Don't Mess with the Zohan\",\n", " 362: 'Pixels',\n", " 363: 'A.I. Artificial Intelligence',\n", " 364: 'The Haunted Mansion',\n", " 365: 'Contact',\n", " 366: 'Hollow Man',\n", " 367: 'The Interpreter',\n", " 368: 'Percy Jackson: Sea of Monsters',\n", " 369: 'Lara Croft Tomb Raider: The Cradle of Life',\n", " 370: 'Now You See Me 2',\n", " 371: 'The Saint',\n", " 372: 'Spy Game',\n", " 373: 'Mission to Mars',\n", " 374: 'Rio',\n", " 375: 'Bicentennial Man',\n", " 376: 'Volcano',\n", " 377: \"The Devil's Own\",\n", " 378: 'K-19: The Widowmaker',\n", " 379: 'Conan the Barbarian',\n", " 380: 'Cinderella Man',\n", " 381: 'The Nutcracker: The Untold Story',\n", " 382: 'Seabiscuit',\n", " 383: 'Twister',\n", " 384: 'Cast Away',\n", " 385: 'Happy Feet',\n", " 386: 'The Bourne Supremacy',\n", " 387: 'Air Force One',\n", " 388: \"Ocean's Eleven\",\n", " 389: 'The Three Musketeers',\n", " 390: 'Hotel Transylvania',\n", " 391: 'Enchanted',\n", " 392: 'Safe House',\n", " 393: '102 Dalmatians',\n", " 394: 'Tower Heist',\n", " 395: 'The Holiday',\n", " 396: 'Enemy of the State',\n", " 397: \"It's Complicated\",\n", " 398: \"Ocean's Thirteen\",\n", " 399: 'Open Season',\n", " 400: 'Divergent',\n", " 401: 'Enemy at the Gates',\n", " 402: 'The Rundown',\n", " 403: 'Last Action Hero',\n", " 404: 'Memoirs of a Geisha',\n", " 405: 'The Fast and the Furious: Tokyo Drift',\n", " 406: 'Arthur Christmas',\n", " 407: 'Meet Joe Black',\n", " 408: 'Collateral Damage',\n", " 409: 'All That Jazz',\n", " 410: 'Mirror Mirror',\n", " 411: 'Scott Pilgrim vs. the World',\n", " 412: 'The Core',\n", " 413: 'Nutty Professor II: The Klumps',\n", " 414: 'Scooby-Doo',\n", " 415: 'Dredd',\n", " 416: 'Click',\n", " 417: 'Creepshow',\n", " 418: 'Cats & Dogs 2 : The Revenge of Kitty Galore',\n", " 419: 'Jumper',\n", " 420: 'Hellboy II: The Golden Army',\n", " 421: 'Zodiac',\n", " 422: 'The 6th Day',\n", " 423: 'Bruce Almighty',\n", " 424: 'The Expendables',\n", " 425: 'Mission: Impossible',\n", " 426: 'The Hunger Games',\n", " 427: 'The Hangover Part II',\n", " 428: 'Batman Returns',\n", " 429: 'Over the Hedge',\n", " 430: 'Lilo & Stitch',\n", " 431: \"Charlotte's Web\",\n", " 432: 'Deep Impact',\n", " 433: 'RED 2',\n", " 434: 'The Longest Yard',\n", " 435: 'Alvin and the Chipmunks: Chipwrecked',\n", " 436: 'Grown Ups 2',\n", " 437: 'Get Smart',\n", " 438: \"Something's Gotta Give\",\n", " 439: 'Shutter Island',\n", " 440: 'Four Christmases',\n", " 441: 'Robots',\n", " 442: 'Face/Off',\n", " 443: 'Bedtime Stories',\n", " 444: 'Road to Perdition',\n", " 445: 'Just Go with It',\n", " 446: 'Con Air',\n", " 447: 'Eagle Eye',\n", " 448: 'Cold Mountain',\n", " 449: 'The Book of Eli',\n", " 450: 'Flubber',\n", " 451: 'The Haunting',\n", " 452: 'Space Jam',\n", " 453: 'The Pink Panther',\n", " 454: 'The Day the Earth Stood Still',\n", " 455: 'Conspiracy Theory',\n", " 456: 'Fury',\n", " 457: 'Six Days Seven Nights',\n", " 458: 'Yogi Bear',\n", " 459: 'Spirit: Stallion of the Cimarron',\n", " 460: 'Zookeeper',\n", " 461: 'Lost in Space',\n", " 462: 'The Manchurian Candidate',\n", " 463: 'Déjà Vu',\n", " 464: 'Hotel Transylvania 2',\n", " 465: 'Fantasia 2000',\n", " 466: 'The Time Machine',\n", " 467: 'Mighty Joe Young',\n", " 468: 'Swordfish',\n", " 469: 'The Legend of Zorro',\n", " 470: 'What Dreams May Come',\n", " 471: 'Little Nicky',\n", " 472: 'The Brothers Grimm',\n", " 473: 'Mars Attacks!',\n", " 474: 'Evolution',\n", " 475: 'The Edge',\n", " 476: 'Surrogates',\n", " 477: 'Thirteen Days',\n", " 478: 'Daylight',\n", " 479: 'Walking With Dinosaurs',\n", " 480: 'Battlefield Earth',\n", " 481: 'Looney Tunes: Back in Action',\n", " 482: 'Nine',\n", " 483: 'Timeline',\n", " 484: 'The Postman',\n", " 485: 'Babe: Pig in the City',\n", " 486: 'The Last Witch Hunter',\n", " 487: 'Red Planet',\n", " 488: 'Arthur and the Invisibles',\n", " 489: 'Oceans',\n", " 490: 'A Sound of Thunder',\n", " 491: 'Pompeii',\n", " 492: 'Top Cat Begins',\n", " 493: 'A Beautiful Mind',\n", " 494: 'The Lion King',\n", " 495: 'Journey 2: The Mysterious Island',\n", " 496: 'Cloudy with a Chance of Meatballs 2',\n", " 497: 'Red Dragon',\n", " 498: 'Hidalgo',\n", " 499: 'Jack and Jill',\n", " 500: '2 Fast 2 Furious',\n", " 501: 'The Little Prince',\n", " 502: 'The Invasion',\n", " 503: 'The Adventures of Rocky & Bullwinkle',\n", " 504: 'The Secret Life of Pets',\n", " 505: 'The League of Extraordinary Gentlemen',\n", " 506: 'Despicable Me 2',\n", " 507: 'Independence Day',\n", " 508: 'The Lost World: Jurassic Park',\n", " 509: 'Madagascar',\n", " 510: 'Children of Men',\n", " 511: 'X-Men',\n", " 512: 'Wanted',\n", " 513: 'The Rock',\n", " 514: 'Ice Age: The Meltdown',\n", " 515: '50 First Dates',\n", " 516: 'Hairspray',\n", " 517: 'Exorcist: The Beginning',\n", " 518: 'Inspector Gadget',\n", " 519: 'Now You See Me',\n", " 520: 'Grown Ups',\n", " 521: 'The Terminal',\n", " 522: 'Hotel for Dogs',\n", " 523: 'Vertical Limit',\n", " 524: \"Charlie Wilson's War\",\n", " 525: 'Shark Tale',\n", " 526: 'Dreamgirls',\n", " 527: 'Be Cool',\n", " 528: 'Munich',\n", " 529: 'Tears of the Sun',\n", " 530: 'Killers',\n", " 531: 'The Man from U.N.C.L.E.',\n", " 532: 'Spanglish',\n", " 533: 'Monster House',\n", " 534: 'Bandits',\n", " 535: 'First Knight',\n", " 536: 'Anna and the King',\n", " 537: 'Immortals',\n", " 538: 'Hostage',\n", " 539: 'Titan A.E.',\n", " 540: 'Hollywood Homicide',\n", " 541: 'Soldier',\n", " 542: 'Carriers',\n", " 543: 'Monkeybone',\n", " 544: 'Flight of the Phoenix',\n", " 545: 'Unbreakable',\n", " 546: 'Minions',\n", " 547: 'Sucker Punch',\n", " 548: 'Snake Eyes',\n", " 549: 'Sphere',\n", " 550: 'The Angry Birds Movie',\n", " 551: \"Fool's Gold\",\n", " 552: 'Funny People',\n", " 553: 'The Kingdom',\n", " 554: 'Talladega Nights: The Ballad of Ricky Bobby',\n", " 555: 'Dr. Dolittle 2',\n", " 556: 'Braveheart',\n", " 557: 'Jarhead',\n", " 558: 'The Simpsons Movie',\n", " 559: 'The Majestic',\n", " 560: 'Driven',\n", " 561: 'Two Brothers',\n", " 562: 'The Village',\n", " 563: 'Doctor Dolittle',\n", " 564: 'Signs',\n", " 565: 'Shrek 2',\n", " 566: 'Cars',\n", " 567: 'Runaway Bride',\n", " 568: 'xXx',\n", " 569: 'The SpongeBob Movie: Sponge Out of Water',\n", " 570: 'Ransom',\n", " 571: 'Inglourious Basterds',\n", " 572: 'Hook',\n", " 573: 'Die Hard 2',\n", " 574: 'S.W.A.T.',\n", " 575: 'Vanilla Sky',\n", " 576: 'Lady in the Water',\n", " 577: 'AVP: Alien vs. Predator',\n", " 578: 'Alvin and the Chipmunks: The Squeakquel',\n", " 579: 'We Were Soldiers',\n", " 580: 'Olympus Has Fallen',\n", " 581: 'Star Trek: Insurrection',\n", " 582: 'Battle: Los Angeles',\n", " 583: 'Big Fish',\n", " 584: 'Wolf',\n", " 585: 'War Horse',\n", " 586: 'The Monuments Men',\n", " 587: 'The Abyss',\n", " 588: 'Wall Street: Money Never Sleeps',\n", " 589: 'Dracula Untold',\n", " 590: 'The Siege',\n", " 591: 'Stardust',\n", " 592: 'Seven Years in Tibet',\n", " 593: 'The Dilemma',\n", " 594: 'Bad Company',\n", " 595: 'Doom',\n", " 596: 'I Spy',\n", " 597: 'Underworld: Awakening',\n", " 598: 'Rock of Ages',\n", " 599: \"Hart's War\",\n", " 600: 'Killer Elite',\n", " 601: 'Rollerball',\n", " 602: 'Ballistic: Ecks vs. Sever',\n", " 603: 'Hard Rain',\n", " 604: 'Osmosis Jones',\n", " 605: \"Legends of Oz: Dorothy's Return\",\n", " 606: 'Blackhat',\n", " 607: 'Sky Captain and the World of Tomorrow',\n", " 608: 'Basic Instinct 2',\n", " 609: 'Escape Plan',\n", " 610: 'The Legend of Hercules',\n", " 611: 'The Sum of All Fears',\n", " 612: 'The Twilight Saga: Eclipse',\n", " 613: 'The Score',\n", " 614: 'Despicable Me',\n", " 615: 'Money Train',\n", " 616: 'Ted 2',\n", " 617: 'Agora',\n", " 618: 'Mystery Men',\n", " 619: 'Hall Pass',\n", " 620: 'The Insider',\n", " 621: 'The Finest Hours',\n", " 622: 'Body of Lies',\n", " 623: 'Dinner for Schmucks',\n", " 624: 'Abraham Lincoln: Vampire Hunter',\n", " 625: 'Entrapment',\n", " 626: 'The X Files',\n", " 627: 'The Last Legion',\n", " 628: 'Saving Private Ryan',\n", " 629: 'Need for Speed',\n", " 630: 'What Women Want',\n", " 631: 'Ice Age',\n", " 632: 'Dreamcatcher',\n", " 633: 'Lincoln',\n", " 634: 'The Matrix',\n", " 635: 'Apollo 13',\n", " 636: 'The Santa Clause 2',\n", " 637: 'Les Misérables',\n", " 638: \"You've Got Mail\",\n", " 639: 'Step Brothers',\n", " 640: 'The Mask of Zorro',\n", " 641: 'Due Date',\n", " 642: 'Unbroken',\n", " 643: 'Space Cowboys',\n", " 644: 'Cliffhanger',\n", " 645: 'Broken Arrow',\n", " 646: 'The Kid',\n", " 647: 'World Trade Center',\n", " 648: 'Mona Lisa Smile',\n", " 649: 'The Dictator',\n", " 650: 'Eyes Wide Shut',\n", " 651: 'Annie',\n", " 652: 'Focus',\n", " 653: 'This Means War',\n", " 654: 'Blade: Trinity',\n", " 655: 'Red Dawn',\n", " 656: 'Primary Colors',\n", " 657: 'Resident Evil: Retribution',\n", " 658: 'Death Race',\n", " 659: 'The Long Kiss Goodnight',\n", " 660: 'Proof of Life',\n", " 661: 'Zathura: A Space Adventure',\n", " 662: 'Fight Club',\n", " 663: 'We Are Marshall',\n", " 664: 'Hudson Hawk',\n", " 665: 'Lucky Numbers',\n", " 666: 'I, Frankenstein',\n", " 667: 'Oliver Twist',\n", " 668: 'Elektra',\n", " 669: 'Sin City: A Dame to Kill For',\n", " 670: 'Random Hearts',\n", " 671: 'Everest',\n", " 672: 'Perfume: The Story of a Murderer',\n", " 673: 'Austin Powers in Goldmember',\n", " 674: 'Astro Boy',\n", " 675: 'Jurassic Park',\n", " 676: 'Wyatt Earp',\n", " 677: 'Clear and Present Danger',\n", " 678: 'Dragon Blade',\n", " 679: 'Little Man',\n", " 680: 'U-571',\n", " 681: 'The American President',\n", " 682: 'The Love Guru',\n", " 683: '3000 Miles to Graceland',\n", " 684: 'The Hateful Eight',\n", " 685: 'Blades of Glory',\n", " 686: 'Hop',\n", " 687: '300',\n", " 688: 'Meet the Fockers',\n", " 689: 'Marley & Me',\n", " 690: 'The Green Mile',\n", " 691: 'Wild Hogs',\n", " 692: 'Chicken Little',\n", " 693: 'Gone Girl',\n", " 694: 'The Bourne Identity',\n", " 695: 'GoldenEye',\n", " 696: \"The General's Daughter\",\n", " 697: 'The Truman Show',\n", " 698: 'The Prince of Egypt',\n", " 699: 'Daddy Day Care',\n", " 700: '2 Guns',\n", " 701: 'Cats & Dogs',\n", " 702: 'The Italian Job',\n", " 703: 'Two Weeks Notice',\n", " 704: 'Antz',\n", " 705: 'Couples Retreat',\n", " 706: 'Days of Thunder',\n", " 707: 'Cheaper by the Dozen 2',\n", " 708: 'Maze Runner: The Scorch Trials',\n", " 709: 'Eat Pray Love',\n", " 710: 'The Family Man',\n", " 711: 'RED',\n", " 712: 'Any Given Sunday',\n", " 713: 'The Horse Whisperer',\n", " 714: 'Collateral',\n", " 715: 'The Scorpion King',\n", " 716: 'Ladder 49',\n", " 717: 'Jack Reacher',\n", " 718: 'Deep Blue Sea',\n", " 719: 'This Is It',\n", " 720: 'Contagion',\n", " 721: 'Kangaroo Jack',\n", " 722: 'Coraline',\n", " 723: 'The Happening',\n", " 724: 'Man on Fire',\n", " 725: 'The Shaggy Dog',\n", " 726: 'Starsky & Hutch',\n", " 727: 'Jingle All the Way',\n", " 728: 'Hellboy',\n", " 729: 'A Civil Action',\n", " 730: 'ParaNorman',\n", " 731: 'The Jackal',\n", " 732: 'Paycheck',\n", " 733: 'Up Close & Personal',\n", " 734: 'The Tale of Despereaux',\n", " 735: 'The Tuxedo',\n", " 736: 'Under Siege 2: Dark Territory',\n", " 737: 'Jack Ryan: Shadow Recruit',\n", " 738: 'Joy',\n", " 739: 'London Has Fallen',\n", " 740: 'Alien: Resurrection',\n", " 741: 'Shooter',\n", " 742: 'The Boxtrolls',\n", " 743: 'Practical Magic',\n", " 744: 'The Lego Movie',\n", " 745: 'Miss Congeniality 2: Armed and Fabulous',\n", " 746: 'Reign of Fire',\n", " 747: 'Gangster Squad',\n", " 748: 'Year One',\n", " 749: 'Invictus',\n", " 750: 'State of Play',\n", " 751: 'Duplicity',\n", " 752: 'My Favorite Martian',\n", " 753: 'The Sentinel',\n", " 754: 'Planet 51',\n", " 755: 'Star Trek: Nemesis',\n", " 756: 'Intolerable Cruelty',\n", " 757: 'Trouble with the Curve',\n", " 758: 'Edge of Darkness',\n", " 759: 'The Relic',\n", " 760: 'Analyze That',\n", " 761: 'Righteous Kill',\n", " 762: 'Mercury Rising',\n", " 763: 'The Soloist',\n", " 764: 'The Legend of Bagger Vance',\n", " 765: 'Almost Famous',\n", " 766: 'Garfield: A Tail of Two Kitties',\n", " 767: 'xXx: State of the Union',\n", " 768: 'Priest',\n", " 769: 'Sinbad: Legend of the Seven Seas',\n", " 770: 'Event Horizon',\n", " 771: 'Dragonfly',\n", " 772: 'The Black Dahlia',\n", " 773: 'Flyboys',\n", " 774: 'The Last Castle',\n", " 775: 'Supernova',\n", " 776: \"Winter's Tale\",\n", " 777: 'The Mortal Instruments: City of Bones',\n", " 778: 'Meet Dave',\n", " 779: 'Dark Water',\n", " 780: 'Edtv',\n", " 781: 'Inkheart',\n", " 782: 'The Spirit',\n", " 783: 'Mortdecai',\n", " 784: 'In the Name of the King: A Dungeon Siege Tale',\n", " 785: 'Beyond Borders',\n", " 786: 'The Monkey King 2',\n", " 787: 'The Great Raid',\n", " 788: 'Deadpool',\n", " 789: 'Holy Man',\n", " 790: 'American Sniper',\n", " 791: 'Goosebumps',\n", " 792: 'Just Like Heaven',\n", " 793: 'The Flintstones in Viva Rock Vegas',\n", " 794: 'Rambo III',\n", " 795: 'Leatherheads',\n", " 796: 'The Ridiculous 6',\n", " 797: 'Did You Hear About the Morgans?',\n", " 798: 'The Internship',\n", " 799: 'Resident Evil: Afterlife',\n", " 800: 'Red Tails',\n", " 801: \"The Devil's Advocate\",\n", " 802: \"That's My Boy\",\n", " 803: 'DragonHeart',\n", " 804: 'After the Sunset',\n", " 805: 'Ghost Rider: Spirit of Vengeance',\n", " 806: \"Captain Corelli's Mandolin\",\n", " 807: 'The Pacifier',\n", " 808: 'Walking Tall',\n", " 809: 'Forrest Gump',\n", " 810: 'Alvin and the Chipmunks',\n", " 811: 'Meet the Parents',\n", " 812: 'Pocahontas',\n", " 813: 'Superman',\n", " 814: 'The Nutty Professor',\n", " 815: 'Hitch',\n", " 816: 'George of the Jungle',\n", " 817: 'American Wedding',\n", " 818: 'Captain Phillips',\n", " 819: 'Date Night',\n", " 820: 'Casper',\n", " 821: 'The Equalizer',\n", " 822: 'Maid in Manhattan',\n", " 823: 'Crimson Tide',\n", " 824: 'The Pursuit of Happyness',\n", " 825: 'Flightplan',\n", " 826: 'Disclosure',\n", " 827: 'City of Angels',\n", " 828: 'Kill Bill: Vol. 1',\n", " 829: 'Bowfinger',\n", " 830: 'Kill Bill: Vol. 2',\n", " 831: 'Tango & Cash',\n", " 832: 'Death Becomes Her',\n", " 833: 'Shanghai Noon',\n", " 834: 'Executive Decision',\n", " 835: \"Mr. Popper's Penguins\",\n", " 836: 'The Forbidden Kingdom',\n", " 837: 'Free Birds',\n", " 838: 'Alien³',\n", " 839: 'Evita',\n", " 840: 'Ronin',\n", " 841: 'The Ghost and the Darkness',\n", " 842: 'Paddington',\n", " 843: 'The Watch',\n", " 844: 'The Hunted',\n", " 845: 'Instinct',\n", " 846: 'Stuck on You',\n", " 847: 'Semi-Pro',\n", " 848: 'The Pirates! In an Adventure with Scientists!',\n", " 849: 'Changeling',\n", " 850: 'Chain Reaction',\n", " 851: 'The Fan',\n", " 852: 'The Phantom of the Opera',\n", " 853: 'Elizabeth: The Golden Age',\n", " 854: 'Æon Flux',\n", " 855: 'Gods and Generals',\n", " 856: 'Turbulence',\n", " 857: 'Imagine That',\n", " 858: 'Muppets Most Wanted',\n", " 859: 'Thunderbirds',\n", " 860: 'Burlesque',\n", " 861: 'A Very Long Engagement',\n", " 862: 'Lolita',\n", " 863: 'D-Tox',\n", " 864: 'Blade II',\n", " 865: 'Seven Pounds',\n", " 866: 'Bullet to the Head',\n", " 867: 'The Godfather: Part III',\n", " 868: 'Elizabethtown',\n", " 869: 'You, Me and Dupree',\n", " 870: 'Superman II',\n", " 871: 'Gigli',\n", " 872: \"All the King's Men\",\n", " 873: 'Shaft',\n", " 874: 'Anastasia',\n", " 875: 'Moulin Rouge!',\n", " 876: 'Domestic Disturbance',\n", " 877: 'Black Mass',\n", " 878: 'Flags of Our Fathers',\n", " 879: 'Law Abiding Citizen',\n", " 880: 'Grindhouse',\n", " 881: 'Beloved',\n", " 882: 'Lucky You',\n", " 883: 'Catch Me If You Can',\n", " 884: 'Zero Dark Thirty',\n", " 885: 'The Break-Up',\n", " 886: 'Mamma Mia!',\n", " 887: \"Valentine's Day\",\n", " 888: 'The Dukes of Hazzard',\n", " 889: 'The Thin Red Line',\n", " 890: 'The Change-Up',\n", " 891: 'Man on the Moon',\n", " 892: 'Casino',\n", " 893: 'From Paris with Love',\n", " 894: 'Bulletproof Monk',\n", " 895: 'Me, Myself & Irene',\n", " 896: 'Barnyard',\n", " 897: 'Deck the Halls',\n", " 898: 'The Twilight Saga: New Moon',\n", " 899: 'Shrek',\n", " 900: 'The Adjustment Bureau',\n", " 901: 'Robin Hood: Prince of Thieves',\n", " 902: 'Jerry Maguire',\n", " 903: 'Ted',\n", " 904: 'As Good as It Gets',\n", " 905: 'Patch Adams',\n", " 906: 'Anchorman 2: The Legend Continues',\n", " 907: 'Mr. Deeds',\n", " 908: 'Super 8',\n", " 909: 'Erin Brockovich',\n", " 910: 'How to Lose a Guy in 10 Days',\n", " 911: '22 Jump Street',\n", " 912: 'Interview with the Vampire',\n", " 913: 'Yes Man',\n", " 914: 'Central Intelligence',\n", " 915: 'Stepmom',\n", " 916: \"Daddy's Home\",\n", " 917: 'Into the Woods',\n", " 918: 'Inside Man',\n", " 919: 'Payback',\n", " 920: 'Congo',\n", " 921: 'We Bought a Zoo',\n", " 922: 'Knowing',\n", " 923: 'Failure to Launch',\n", " 924: 'The Ring Two',\n", " 925: 'Crazy, Stupid, Love.',\n", " 926: 'Garfield',\n", " 927: 'Christmas with the Kranks',\n", " 928: 'Moneyball',\n", " 929: 'Outbreak',\n", " 930: 'Non-Stop',\n", " 931: 'Race to Witch Mountain',\n", " 932: 'V for Vendetta',\n", " 933: 'Shanghai Knights',\n", " 934: 'Curious George',\n", " 935: 'Herbie Fully Loaded',\n", " 936: \"Don't Say a Word\",\n", " 937: 'Hansel & Gretel: Witch Hunters',\n", " 938: 'Unfaithful',\n", " 939: 'I Am Number Four',\n", " 940: 'Syriana',\n", " 941: '13 Hours: The Secret Soldiers of Benghazi',\n", " 942: 'The Book of Life',\n", " 943: 'Firewall',\n", " 944: 'Absolute Power',\n", " 945: 'G.I. Jane',\n", " 946: 'The Game',\n", " 947: 'Silent Hill',\n", " 948: 'The Replacements',\n", " 949: 'American Reunion',\n", " 950: 'The Negotiator',\n", " 951: 'Into the Storm',\n", " 952: 'Beverly Hills Cop III',\n", " 953: 'Gremlins 2: The New Batch',\n", " 954: 'The Judge',\n", " 955: 'The Peacemaker',\n", " 956: 'Resident Evil: Apocalypse',\n", " 957: 'Bridget Jones: The Edge of Reason',\n", " 958: 'Out of Time',\n", " 959: 'On Deadly Ground',\n", " 960: 'The Adventures of Sharkboy and Lavagirl',\n", " 961: 'The Beach',\n", " 962: 'Raising Helen',\n", " 963: 'Ninja Assassin',\n", " 964: 'For Love of the Game',\n", " 965: 'Striptease',\n", " 966: 'Marmaduke',\n", " 967: 'Hereafter',\n", " 968: 'Murder by Numbers',\n", " 969: 'Assassins',\n", " 970: 'Hannibal Rising',\n", " 971: 'The Story of Us',\n", " 972: 'The Host',\n", " 973: 'The Host',\n", " 974: 'The Host',\n", " 975: 'The Host',\n", " 976: 'Basic',\n", " 977: 'Blood Work',\n", " 978: 'The International',\n", " 979: 'Escape from L.A.',\n", " 980: 'The Iron Giant',\n", " 981: 'The Life Aquatic with Steve Zissou',\n", " 982: 'Free State of Jones',\n", " 983: 'The Life of David Gale',\n", " 984: 'Man of the House',\n", " 985: 'Run All Night',\n", " 986: 'Eastern Promises',\n", " 987: 'Into the Blue',\n", " 988: 'The Messenger: The Story of Joan of Arc',\n", " 989: 'Your Highness',\n", " 990: 'Dream House',\n", " 991: 'Mad City',\n", " 992: \"Baby's Day Out\",\n", " 993: 'The Scarlet Letter',\n", " 994: 'Fair Game',\n", " 995: 'Domino',\n", " 996: 'Jade',\n", " 997: 'Gamer',\n", " 998: 'Beautiful Creatures',\n", " 999: 'Death to Smoochy',\n", " ...},\n", " 'movie_id': {0: 19995,\n", " 1: 285,\n", " 2: 206647,\n", " 3: 49026,\n", " 4: 49529,\n", " 5: 559,\n", " 6: 38757,\n", " 7: 99861,\n", " 8: 767,\n", " 9: 209112,\n", " 10: 1452,\n", " 11: 10764,\n", " 12: 58,\n", " 13: 57201,\n", " 14: 49521,\n", " 15: 2454,\n", " 16: 24428,\n", " 17: 1865,\n", " 18: 41154,\n", " 19: 122917,\n", " 20: 1930,\n", " 21: 20662,\n", " 22: 57158,\n", " 23: 2268,\n", " 24: 254,\n", " 25: 597,\n", " 26: 271110,\n", " 27: 44833,\n", " 28: 135397,\n", " 29: 37724,\n", " 30: 558,\n", " 31: 68721,\n", " 32: 12155,\n", " 33: 36668,\n", " 34: 62211,\n", " 35: 8373,\n", " 36: 91314,\n", " 37: 68728,\n", " 38: 102382,\n", " 39: 20526,\n", " 40: 49013,\n", " 41: 44912,\n", " 42: 10193,\n", " 43: 534,\n", " 44: 168259,\n", " 45: 72190,\n", " 46: 127585,\n", " 47: 54138,\n", " 48: 81005,\n", " 49: 64682,\n", " 50: 9543,\n", " 51: 68726,\n", " 52: 38356,\n", " 53: 217,\n", " 54: 105864,\n", " 55: 62177,\n", " 56: 188927,\n", " 57: 10681,\n", " 58: 5174,\n", " 59: 14161,\n", " 60: 17979,\n", " 61: 76757,\n", " 62: 258489,\n", " 63: 411,\n", " 64: 246655,\n", " 65: 155,\n", " 66: 14160,\n", " 67: 15512,\n", " 68: 1726,\n", " 69: 44826,\n", " 70: 8487,\n", " 71: 1735,\n", " 72: 297761,\n", " 73: 2698,\n", " 74: 137113,\n", " 75: 9804,\n", " 76: 14869,\n", " 77: 150540,\n", " 78: 278927,\n", " 79: 10138,\n", " 80: 58595,\n", " 81: 102651,\n", " 82: 119450,\n", " 83: 79698,\n", " 84: 64686,\n", " 85: 100402,\n", " 86: 10192,\n", " 87: 158852,\n", " 88: 177572,\n", " 89: 82690,\n", " 90: 5255,\n", " 91: 47933,\n", " 92: 10191,\n", " 93: 296,\n", " 94: 118340,\n", " 95: 157336,\n", " 96: 27205,\n", " 97: 315011,\n", " 98: 49051,\n", " 99: 9799,\n", " 100: 4922,\n", " 101: 49538,\n", " 102: 131634,\n", " 103: 27022,\n", " 104: 503,\n", " 105: 241259,\n", " 106: 810,\n", " 107: 68735,\n", " 108: 87101,\n", " 109: 10140,\n", " 110: 676,\n", " 111: 1858,\n", " 112: 1966,\n", " 113: 675,\n", " 114: 674,\n", " 115: 8960,\n", " 116: 6479,\n", " 117: 118,\n", " 118: 2062,\n", " 119: 272,\n", " 120: 10527,\n", " 121: 18360,\n", " 122: 2080,\n", " 123: 605,\n", " 124: 109445,\n", " 125: 604,\n", " 126: 76338,\n", " 127: 76341,\n", " 128: 13448,\n", " 129: 10195,\n", " 130: 13053,\n", " 131: 19585,\n", " 132: 57165,\n", " 133: 62213,\n", " 134: 177677,\n", " 135: 7978,\n", " 136: 5559,\n", " 137: 49444,\n", " 138: 10196,\n", " 139: 956,\n", " 140: 117251,\n", " 141: 50321,\n", " 142: 11619,\n", " 143: 266647,\n", " 144: 82703,\n", " 145: 652,\n", " 146: 80321,\n", " 147: 36669,\n", " 148: 43074,\n", " 149: 95,\n", " 150: 608,\n", " 151: 2310,\n", " 152: 140300,\n", " 153: 56292,\n", " 154: 81188,\n", " 155: 7552,\n", " 156: 616,\n", " 157: 147441,\n", " 158: 13475,\n", " 159: 557,\n", " 160: 82702,\n", " 161: 205584,\n", " 162: 10048,\n", " 163: 13183,\n", " 164: 944,\n", " 165: 1927,\n", " 166: 72559,\n", " 167: 7364,\n", " 168: 2114,\n", " 169: 1771,\n", " 170: 36643,\n", " 171: 8619,\n", " 172: 50620,\n", " 173: 65759,\n", " 174: 1724,\n", " 175: 267935,\n", " 176: 281957,\n", " 177: 77950,\n", " 178: 44896,\n", " 179: 270946,\n", " 180: 2503,\n", " 181: 9502,\n", " 182: 102899,\n", " 183: 101299,\n", " 184: 228161,\n", " 185: 74,\n", " 186: 8961,\n", " 187: 417859,\n", " 188: 27576,\n", " 189: 86834,\n", " 190: 17578,\n", " 191: 673,\n", " 192: 6972,\n", " 193: 82700,\n", " 194: 10567,\n", " 195: 181533,\n", " 196: 38055,\n", " 197: 671,\n", " 198: 49524,\n", " 199: 22,\n", " 200: 131631,\n", " 201: 591,\n", " 202: 172385,\n", " 203: 36658,\n", " 204: 51497,\n", " 205: 58574,\n", " 206: 18823,\n", " 207: 861,\n", " 208: 1911,\n", " 209: 49040,\n", " 210: 415,\n", " 211: 8871,\n", " 212: 435,\n", " 213: 955,\n", " 214: 2133,\n", " 215: 1979,\n", " 216: 87827,\n", " 217: 1250,\n", " 218: 324668,\n", " 219: 9471,\n", " 220: 70981,\n", " 221: 10996,\n", " 222: 68724,\n", " 223: 2789,\n", " 224: 97020,\n", " 225: 7459,\n", " 226: 42888,\n", " 227: 37834,\n", " 228: 75612,\n", " 229: 1895,\n", " 230: 1894,\n", " 231: 585,\n", " 232: 76170,\n", " 233: 1893,\n", " 234: 49519,\n", " 235: 2395,\n", " 236: 12100,\n", " 237: 290595,\n", " 238: 98566,\n", " 239: 49047,\n", " 240: 9619,\n", " 241: 308531,\n", " 242: 166424,\n", " 243: 1593,\n", " 244: 254128,\n", " 245: 714,\n", " 246: 2024,\n", " 247: 163,\n", " 248: 787,\n", " 249: 262500,\n", " 250: 2567,\n", " 251: 38745,\n", " 252: 40805,\n", " 253: 53182,\n", " 254: 41513,\n", " 255: 13700,\n", " 256: 262504,\n", " 257: 39254,\n", " 258: 77931,\n", " 259: 1639,\n", " 260: 80274,\n", " 261: 1571,\n", " 262: 120,\n", " 263: 10204,\n", " 264: 8489,\n", " 265: 10588,\n", " 266: 2048,\n", " 267: 1495,\n", " 268: 10137,\n", " 269: 10198,\n", " 270: 286217,\n", " 271: 1635,\n", " 272: 24113,\n", " 273: 9679,\n", " 274: 98,\n", " 275: 180,\n", " 276: 672,\n", " 277: 36557,\n", " 278: 869,\n", " 279: 280,\n", " 280: 11322,\n", " 281: 4982,\n", " 282: 36955,\n", " 283: 18487,\n", " 284: 39451,\n", " 285: 27581,\n", " 286: 9268,\n", " 287: 68718,\n", " 288: 10545,\n", " 289: 11688,\n", " 290: 76163,\n", " 291: 2059,\n", " 292: 2486,\n", " 293: 16523,\n", " 294: 116711,\n", " 295: 37710,\n", " 296: 9946,\n", " 297: 1372,\n", " 298: 106646,\n", " 299: 414,\n", " 300: 563,\n", " 301: 83542,\n", " 302: 41216,\n", " 303: 314,\n", " 304: 184315,\n", " 305: 9016,\n", " 306: 18162,\n", " 307: 138103,\n", " 308: 257088,\n", " 309: 10214,\n", " 310: 205775,\n", " 311: 11692,\n", " 312: 22972,\n", " 313: 227973,\n", " 314: 29193,\n", " 315: 1734,\n", " 316: 3131,\n", " 317: 76758,\n", " 318: 9408,\n", " 319: 9890,\n", " 320: 855,\n", " 321: 77953,\n", " 322: 18,\n", " 323: 37786,\n", " 324: 10501,\n", " 325: 57800,\n", " 326: 150689,\n", " 327: 7980,\n", " 328: 12,\n", " 329: 122,\n", " 330: 121,\n", " 331: 68737,\n", " 332: 1995,\n", " 333: 157353,\n", " 334: 331,\n", " 335: 61791,\n", " 336: 8204,\n", " 337: 47964,\n", " 338: 10733,\n", " 339: 9806,\n", " 340: 1408,\n", " 341: 32657,\n", " 342: 607,\n", " 343: 863,\n", " 344: 44048,\n", " 345: 5175,\n", " 346: 2655,\n", " 347: 22794,\n", " 348: 8355,\n", " 349: 116745,\n", " 350: 4327,\n", " 351: 1422,\n", " 352: 10674,\n", " 353: 7446,\n", " 354: 65754,\n", " 355: 1572,\n", " 356: 10528,\n", " 357: 271969,\n", " 358: 10865,\n", " 359: 258509,\n", " 360: 2253,\n", " 361: 10661,\n", " 362: 257344,\n", " 363: 644,\n", " 364: 10756,\n", " 365: 686,\n", " 366: 9383,\n", " 367: 179,\n", " 368: 76285,\n", " 369: 1996,\n", " 370: 291805,\n", " 371: 10003,\n", " 372: 1535,\n", " 373: 2067,\n", " 374: 46195,\n", " 375: 2277,\n", " 376: 10357,\n", " 377: 4477,\n", " 378: 8665,\n", " 379: 9387,\n", " 380: 921,\n", " 381: 49852,\n", " 382: 4464,\n", " 383: 664,\n", " 384: 8358,\n", " 385: 9836,\n", " 386: 2502,\n", " 387: 9772,\n", " 388: 161,\n", " 389: 52451,\n", " 390: 76492,\n", " 391: 4523,\n", " 392: 59961,\n", " 393: 10481,\n", " 394: 59108,\n", " 395: 1581,\n", " 396: 9798,\n", " 397: 22897,\n", " 398: 298,\n", " 399: 7484,\n", " 400: 157350,\n", " 401: 853,\n", " 402: 10159,\n", " 403: 9593,\n", " 404: 1904,\n", " 405: 9615,\n", " 406: 51052,\n", " 407: 297,\n", " 408: 9884,\n", " 409: 16858,\n", " 410: 62764,\n", " 411: 22538,\n", " 412: 9341,\n", " 413: 12107,\n", " 414: 9637,\n", " 415: 49049,\n", " 416: 9339,\n", " 417: 16281,\n", " 418: 39691,\n", " 419: 8247,\n", " 420: 11253,\n", " 421: 1949,\n", " 422: 8452,\n", " 423: 310,\n", " 424: 27578,\n", " 425: 954,\n", " 426: 70160,\n", " 427: 45243,\n", " 428: 364,\n", " 429: 7518,\n", " 430: 11544,\n", " 431: 9986,\n", " 432: 8656,\n", " 433: 146216,\n", " 434: 9291,\n", " 435: 55301,\n", " 436: 109418,\n", " 437: 11665,\n", " 438: 6964,\n", " 439: 11324,\n", " 440: 12193,\n", " 441: 9928,\n", " 442: 754,\n", " 443: 10202,\n", " 444: 4147,\n", " 445: 50546,\n", " 446: 1701,\n", " 447: 13027,\n", " 448: 2289,\n", " 449: 20504,\n", " 450: 9574,\n", " 451: 11618,\n", " 452: 2300,\n", " 453: 12096,\n", " 454: 10200,\n", " 455: 8834,\n", " 456: 228150,\n", " 457: 6068,\n", " 458: 41515,\n", " 459: 9023,\n", " 460: 38317,\n", " 461: 2157,\n", " 462: 14462,\n", " 463: 161795,\n", " 464: 159824,\n", " 465: 49948,\n", " 466: 2135,\n", " 467: 9822,\n", " 468: 9705,\n", " 469: 1656,\n", " 470: 12159,\n", " 471: 9678,\n", " 472: 4442,\n", " 473: 75,\n", " 474: 330770,\n", " 475: 9433,\n", " 476: 19959,\n", " 477: 11973,\n", " 478: 11228,\n", " 479: 77951,\n", " 480: 5491,\n", " 481: 10715,\n", " 482: 10197,\n", " 483: 9562,\n", " 484: 9922,\n", " 485: 9447,\n", " 486: 274854,\n", " 487: 8870,\n", " 488: 9992,\n", " 489: 36970,\n", " 490: 10077,\n", " 491: 76649,\n", " 492: 293644,\n", " 493: 453,\n", " 494: 8587,\n", " 495: 72545,\n", " 496: 109451,\n", " 497: 9533,\n", " 498: 2023,\n", " 499: 71880,\n", " 500: 584,\n", " 501: 309809,\n", " 502: 4858,\n", " 503: 17711,\n", " 504: 328111,\n", " 505: 8698,\n", " 506: 93456,\n", " 507: 602,\n", " 508: 330,\n", " 509: 953,\n", " 510: 9693,\n", " 511: 36657,\n", " 512: 8909,\n", " 513: 9802,\n", " 514: 950,\n", " 515: 1824,\n", " 516: 2976,\n", " 517: 11026,\n", " 518: 332,\n", " 519: 75656,\n", " 520: 38365,\n", " 521: 594,\n", " 522: 15189,\n", " 523: 11678,\n", " 524: 6538,\n", " 525: 10555,\n", " 526: 1125,\n", " 527: 4551,\n", " 528: 612,\n", " 529: 9567,\n", " 530: 37821,\n", " 531: 203801,\n", " 532: 2539,\n", " 533: 9297,\n", " 534: 3172,\n", " 535: 6520,\n", " 536: 1439,\n", " 537: 37958,\n", " 538: 2026,\n", " 539: 7450,\n", " 540: 11375,\n", " 541: 9425,\n", " 542: 25769,\n", " 543: 23685,\n", " 544: 11866,\n", " 545: 9741,\n", " 546: 211672,\n", " 547: 23629,\n", " 548: 8688,\n", " 549: 10153,\n", " 550: 153518,\n", " 551: 8676,\n", " 552: 20829,\n", " 553: 4349,\n", " 554: 9718,\n", " 555: 10808,\n", " 556: 197,\n", " 557: 25,\n", " 558: 35,\n", " 559: 11086,\n", " 560: 10477,\n", " 561: 1997,\n", " 562: 6947,\n", " 563: 3050,\n", " 564: 2675,\n", " 565: 809,\n", " 566: 920,\n", " 567: 4806,\n", " 568: 7451,\n", " 569: 228165,\n", " 570: 3595,\n", " 571: 16869,\n", " 572: 879,\n", " 573: 1573,\n", " 574: 9257,\n", " 575: 1903,\n", " 576: 9697,\n", " 577: 395,\n", " 578: 23398,\n", " 579: 10590,\n", " 580: 117263,\n", " 581: 200,\n", " 582: 44943,\n", " 583: 587,\n", " 584: 10395,\n", " 585: 57212,\n", " 586: 152760,\n", " 587: 2756,\n", " 588: 33909,\n", " 589: 49017,\n", " 590: 9882,\n", " 591: 2270,\n", " 592: 978,\n", " 593: 44564,\n", " 594: 3132,\n", " 595: 8814,\n", " 596: 8427,\n", " 597: 52520,\n", " 598: 80585,\n", " 599: 10592,\n", " 600: 49021,\n", " 601: 11535,\n", " 602: 10550,\n", " 603: 11258,\n", " 604: 12610,\n", " 605: 59981,\n", " 606: 201088,\n", " 607: 5137,\n", " 608: 3093,\n", " 609: 107846,\n", " 610: 188207,\n", " 611: 4614,\n", " 612: 24021,\n", " 613: 11371,\n", " 614: 20352,\n", " 615: 11517,\n", " 616: 214756,\n", " 617: 26428,\n", " 618: 9824,\n", " 619: 48988,\n", " 620: 9008,\n", " 621: 300673,\n", " 622: 12113,\n", " 623: 38778,\n", " 624: 72331,\n", " 625: 1844,\n", " 626: 846,\n", " 627: 9703,\n", " 628: 857,\n", " 629: 136797,\n", " 630: 3981,\n", " 631: 425,\n", " 632: 6171,\n", " 633: 72976,\n", " 634: 603,\n", " 635: 568,\n", " 636: 9021,\n", " 637: 82695,\n", " 638: 9489,\n", " 639: 12133,\n", " 640: 9342,\n", " 641: 41733,\n", " 642: 227306,\n", " 643: 5551,\n", " 644: 9350,\n", " 645: 9208,\n", " 646: 4244,\n", " 647: 1852,\n", " 648: 11820,\n", " 649: 76493,\n", " 650: 345,\n", " 651: 196867,\n", " 652: 256591,\n", " 653: 59962,\n", " 654: 36648,\n", " 655: 1880,\n", " 656: 9440,\n", " 657: 71679,\n", " 658: 10483,\n", " 659: 11412,\n", " 660: 11983,\n", " 661: 6795,\n", " 662: 550,\n", " 663: 11170,\n", " 664: 9292,\n", " 665: 10783,\n", " 666: 100241,\n", " 667: 257,\n", " 668: 9947,\n", " 669: 189,\n", " 670: 12618,\n", " 671: 253412,\n", " 672: 1427,\n", " 673: 818,\n", " 674: 16577,\n", " 675: 329,\n", " 676: 12160,\n", " 677: 9331,\n", " 678: 300168,\n", " 679: 9072,\n", " 680: 3536,\n", " 681: 9087,\n", " 682: 12177,\n", " 683: 12138,\n", " 684: 273248,\n", " 685: 9955,\n", " 686: 50359,\n", " 687: 1271,\n", " 688: 693,\n", " 689: 14306,\n", " 690: 497,\n", " 691: 11199,\n", " 692: 9982,\n", " 693: 210577,\n", " 694: 2501,\n", " 695: 710,\n", " 696: 2275,\n", " 697: 37165,\n", " 698: 9837,\n", " 699: 10708,\n", " 700: 136400,\n", " 701: 10992,\n", " 702: 9654,\n", " 703: 2642,\n", " 704: 8916,\n", " 705: 19899,\n", " 706: 2119,\n", " 707: 9641,\n", " 708: 294254,\n", " 709: 38167,\n", " 710: 5994,\n", " 711: 39514,\n", " 712: 9563,\n", " 713: 547,\n", " 714: 1538,\n", " 715: 9334,\n", " 716: 11128,\n", " 717: 75780,\n", " 718: 8914,\n", " 719: 13576,\n", " 720: 39538,\n", " 721: 10628,\n", " 722: 14836,\n", " 723: 8645,\n", " 724: 9509,\n", " 725: 10067,\n", " 726: 9384,\n", " 727: 9279,\n", " 728: 1487,\n", " 729: 9422,\n", " 730: 77174,\n", " 731: 4824,\n", " 732: 9620,\n", " 733: 9302,\n", " 734: 10199,\n", " 735: 10771,\n", " 736: 3512,\n", " 737: 137094,\n", " 738: 274479,\n", " 739: 267860,\n", " 740: 8078,\n", " 741: 7485,\n", " 742: 170687,\n", " 743: 6435,\n", " 744: 137106,\n", " 745: 10040,\n", " 746: 6278,\n", " 747: 82682,\n", " 748: 17610,\n", " 749: 22954,\n", " 750: 16995,\n", " 751: 16558,\n", " 752: 9849,\n", " 753: 5820,\n", " 754: 16866,\n", " 755: 201,\n", " 756: 11775,\n", " 757: 87825,\n", " 758: 12201,\n", " 759: 11015,\n", " 760: 9932,\n", " 761: 13389,\n", " 762: 8838,\n", " 763: 17332,\n", " 764: 4958,\n", " 765: 786,\n", " 766: 9513,\n", " 767: 11679,\n", " 768: 38321,\n", " 769: 14411,\n", " 770: 8413,\n", " 771: 10052,\n", " 772: 9676,\n", " 773: 9664,\n", " 774: 2100,\n", " 775: 10384,\n", " 776: 137321,\n", " 777: 123553,\n", " 778: 11260,\n", " 779: 9009,\n", " 780: 11374,\n", " 781: 2309,\n", " 782: 8285,\n", " 783: 210860,\n", " 784: 2312,\n", " 785: 9839,\n", " 786: 381902,\n", " 787: 13922,\n", " 788: 293660,\n", " 789: 9713,\n", " 790: 190859,\n", " 791: 257445,\n", " 792: 9007,\n", " 793: 889,\n", " 794: 1370,\n", " 795: 4942,\n", " 796: 347969,\n", " 797: 24438,\n", " 798: 116741,\n", " 799: 35791,\n", " 800: 72431,\n", " 801: 1813,\n", " 802: 87428,\n", " 803: 8840,\n", " 804: 10589,\n", " 805: 71676,\n", " 806: 1722,\n", " 807: 10022,\n", " 808: 11358,\n", " 809: 13,\n", " 810: 6477,\n", " 811: 1597,\n", " 812: 10530,\n", " 813: 1924,\n", " 814: 9327,\n", " 815: 8488,\n", " 816: 10603,\n", " 817: 8273,\n", " 818: 109424,\n", " 819: 35056,\n", " 820: 8839,\n", " 821: 156022,\n", " 822: 7303,\n", " 823: 8963,\n", " 824: 1402,\n", " 825: 9315,\n", " 826: 8984,\n", " 827: 795,\n", " 828: 24,\n", " 829: 11353,\n", " 830: 393,\n", " 831: 9618,\n", " 832: 9374,\n", " 833: 8584,\n", " 834: 2320,\n", " 835: 58224,\n", " 836: 1729,\n", " 837: 175574,\n", " 838: 8077,\n", " 839: 8818,\n", " 840: 8195,\n", " 841: 10586,\n", " 842: 116149,\n", " 843: 80035,\n", " 844: 10632,\n", " 845: 12117,\n", " 846: 1792,\n", " 847: 13260,\n", " 848: 72197,\n", " 849: 3580,\n", " 850: 12123,\n", " 851: 9566,\n", " 852: 9833,\n", " 853: 4517,\n", " 854: 8202,\n", " 855: 16072,\n", " 856: 34314,\n", " 857: 19724,\n", " 858: 145220,\n", " 859: 14623,\n", " 860: 42297,\n", " 861: 2841,\n", " 862: 802,\n", " 863: 10375,\n", " 864: 36586,\n", " 865: 11321,\n", " 866: 70074,\n", " 867: 242,\n", " 868: 9621,\n", " 869: 1819,\n", " 870: 8536,\n", " 871: 8046,\n", " 872: 1717,\n", " 873: 479,\n", " 874: 9444,\n", " 875: 824,\n", " 876: 11456,\n", " 877: 261023,\n", " 878: 3683,\n", " 879: 22803,\n", " 880: 285923,\n", " 881: 39437,\n", " 882: 1950,\n", " 883: 640,\n", " 884: 97630,\n", " 885: 9767,\n", " 886: 11631,\n", " 887: 32856,\n", " 888: 6519,\n", " 889: 8741,\n", " 890: 49520,\n", " 891: 1850,\n", " 892: 524,\n", " 893: 26389,\n", " 894: 11817,\n", " 895: 2123,\n", " 896: 9907,\n", " 897: 9969,\n", " 898: 18239,\n", " 899: 808,\n", " 900: 38050,\n", " 901: 8367,\n", " 902: 9390,\n", " 903: 72105,\n", " 904: 2898,\n", " 905: 10312,\n", " 906: 109443,\n", " 907: 2022,\n", " 908: 37686,\n", " 909: 462,\n", " 910: 9919,\n", " 911: 187017,\n", " 912: 628,\n", " 913: 10201,\n", " 914: 302699,\n", " 915: 9441,\n", " 916: 274167,\n", " 917: 224141,\n", " 918: 388,\n", " 919: 2112,\n", " 920: 10329,\n", " 921: 74465,\n", " 922: 13811,\n", " 923: 6877,\n", " 924: 10320,\n", " 925: 50646,\n", " 926: 8920,\n", " 927: 13673,\n", " 928: 60308,\n", " 929: 6950,\n", " 930: 225574,\n", " 931: 13836,\n", " 932: 752,\n", " 933: 6038,\n", " 934: 9975,\n", " 935: 11451,\n", " 936: 12103,\n", " 937: 60304,\n", " 938: 2251,\n", " 939: 46529,\n", " 940: 231,\n", " 941: 300671,\n", " 942: 228326,\n", " 943: 9754,\n", " 944: 66,\n", " 945: 4421,\n", " 946: 2649,\n", " 947: 588,\n", " 948: 10393,\n", " 949: 71552,\n", " 950: 9631,\n", " 951: 216282,\n", " 952: 306,\n", " 953: 928,\n", " 954: 205587,\n", " 955: 6623,\n", " 956: 1577,\n", " 957: 9801,\n", " 958: 2116,\n", " 959: 9624,\n", " 960: 14199,\n", " 961: 1907,\n", " 962: 4599,\n", " 963: 22832,\n", " 964: 10390,\n", " 965: 9879,\n", " 966: 38579,\n", " 967: 44603,\n", " 968: 11892,\n", " 969: 9691,\n", " 970: 1248,\n", " 971: 12220,\n", " 972: 72710,\n", " 973: 1255,\n", " 974: 72710,\n", " 975: 1255,\n", " 976: 10782,\n", " 977: 9573,\n", " 978: 4959,\n", " 979: 10061,\n", " 980: 10386,\n", " 981: 421,\n", " 982: 316152,\n", " 983: 11615,\n", " 984: 13498,\n", " 985: 241554,\n", " 986: 2252,\n", " 987: 11968,\n", " 988: 10047,\n", " 989: 38319,\n", " 990: 69668,\n", " 991: 9770,\n", " 992: 11212,\n", " 993: 10533,\n", " 994: 38363,\n", " 995: 9923,\n", " 996: 11863,\n", " 997: 18501,\n", " 998: 109491,\n", " 999: 9275,\n", " ...},\n", " 'tags': {0: 'in the 22nd century, a parapleg marin is dispatch to the moon pandora on a uniqu mission, but becom torn between follow order and protect an alien civilization. action adventur fantasi sciencefict cultureclash futur spacewar spacecoloni societi spacetravel futurist romanc space alien tribe alienplanet cgi marin soldier battl loveaffair antiwar powerrel mindandsoul 3d samworthington zoesaldana sigourneyweav jamescameron',\n", " 1: \"captain barbossa, long believ to be dead, ha come back to life and is head to the edg of the earth with will turner and elizabeth swann. but noth is quit as it seems. adventur fantasi action ocean drugabus exoticisland eastindiatradingcompani loveofone'slif traitor shipwreck strongwoman ship allianc calypso afterlif fighter pirat swashbuckl aftercreditssting johnnydepp orlandobloom keiraknightley goreverbinski\",\n", " 2: 'a cryptic messag from bond’ past send him on a trail to uncov a sinist organization. while m battl polit forc to keep the secret servic alive, bond peel back the layer of deceit to reveal the terribl truth behind spectre. action adventur crime spi basedonnovel secretag sequel mi6 britishsecretservic unitedkingdom danielcraig christophwaltz léaseydoux sammend',\n", " 3: \"follow the death of district attorney harvey dent, batman assum respons for dent' crime to protect the late attorney' reput and is subsequ hunt by the gotham citi polic department. eight year later, batman encount the mysteri selina kyle and the villain bane, a new terrorist leader who overwhelm gotham' finest. the dark knight resurfac to protect a citi that ha brand him an enemy. action crime drama thriller dccomic crimefight terrorist secretident burglar hostagedrama timebomb gothamc vigilant cover-up superhero villai tragichero terror destruct catwoman catburglar imax flood criminalunderworld batman christianbal michaelcain garyoldman christophernolan\",\n", " 4: \"john carter is a war-weary, former militari captain who' inexplic transport to the mysteri and exot planet of barsoom (mars) and reluctantli becom embroil in an epic conflict. it' a world on the brink of collapse, and carter rediscov hi human when he realiz the surviv of barsoom and it peopl rest in hi hands. action adventur sciencefict basedonnovel mar medallion spacetravel princess alien steampunk martian escap edgarriceburrough alienrac superhumanstrength marscivil swordandplanet 19thcenturi 3d taylorkitsch lynncollin samanthamorton andrewstanton\",\n", " 5: \"the seemingli invinc spider-man goe up against an all-new crop of villain – includ the shape-shift sandman. while spider-man’ superpow are alter by an alien organism, hi alter ego, peter parker, deal with nemesi eddi brock and also get caught up in a love triangle. fantasi action adventur dualident amnesia sandstorm loveofone'slif forgiv spider wretch deathofafriend egomania sand narcism hostil marvelcom sequel superhero reveng tobeymaguir kirstendunst jamesfranco samraimi\",\n", " 6: \"when the kingdom' most wanted-and most charming-bandit flynn rider hide out in a mysteri tower, he' taken hostag by rapunzel, a beauti and feisti tower-bound teen with 70 feet of magical, golden hair. flynn' curiou captor, who' look for her ticket out of the tower where she' been lock away for years, strike a deal with the handsom thief and the unlik duo set off on an action-pack escapade, complet with a super-cop horse, an over-protect chameleon and a gruff gang of pub thugs. anim famili hostag magic hors fairytal music princess anim tower blondewoman selfish healingpow basedonfairytal duringcreditssting healinggift animalsidekick zacharylevi mandymoor donnamurphi byronhoward\",\n", " 7: 'when toni stark tri to jumpstart a dormant peacekeep program, thing go awri and earth’ mightiest hero are put to the ultim test as the fate of the planet hang in the balance. as the villain ultron emerges, it is up to the aveng to stop him from enact hi terribl plans, and soon uneasi allianc and unexpect action pave the way for an epic and uniqu global adventure. action adventur sciencefict marvelcom sequel superhero basedoncomicbook vision superheroteam duringcreditssting marvelcinematicunivers 3d robertdowneyjr. chrishemsworth markruffalo josswhedon',\n", " 8: \"as harri begin hi sixth year at hogwarts, he discov an old book mark as 'properti of the half-blood prince', and begin to learn more about lord voldemort' dark past. adventur fantasi famili witch magic broom schoolofwitchcraft wizardri apparit teenagecrush werewolf danielradcliff rupertgrint emmawatson davidy\",\n", " 9: 'fear the action of a god-lik super hero left unchecked, gotham city’ own formidable, forc vigilant take on metropolis’ most revered, modern-day savior, while the world wrestl with what sort of hero it realli needs. and with batman and superman at war with one another, a new threat quickli arises, put mankind in greater danger than it’ ever known before. action adventur fantasi dccomic vigilant superhero basedoncomicbook reveng superpow clarkkent brucewayn dcextendedunivers benaffleck henrycavil galgadot zacksnyd',\n", " 10: 'superman return to discov hi 5-year absenc ha allow lex luthor to walk free, and that those he wa closest too felt abandon and have move on. luthor plot hi ultim reveng that could see million kill and chang the face of the planet forever, as well as rid himself of the man of steel. adventur fantasi action sciencefict savingtheworld dccomic invulner sequel superhero basedoncomicbook kryptonit superpow superhumanstrength lexluthor brandonrouth kevinspacey katebosworth bryansing',\n", " 11: 'quantum of solac continu the adventur of jame bond after casino royale. betray by vesper, the woman he loved, 007 fight the urg to make hi latest mission personal. pursu hi determin to uncov the truth, bond and m interrog mr. white, who reveal that the organ that blackmail vesper is far more complex and danger than anyon had imagined. adventur action thriller crime kill undercov secretag britishsecretservic danielcraig olgakurylenko mathieuamalr marcforst',\n", " 12: 'captain jack sparrow work hi way out of a blood debt with the ghostli davey jones, he also attempt to avoid etern damnation. adventur fantasi action witch fortunetel bondag exoticisland monster captain cardgam eastindiatradingcompani compass ship daughter pirat swashbuckl aftercreditssting johnnydepp orlandobloom keiraknightley goreverbinski',\n", " 13: 'the texa ranger chase down a gang of outlaw led by butch cavendish, but the gang ambush the rangers, seemingli kill them all. one survivor is found, however, by an american indian name tonto, who nurs him back to health. the ranger, don a mask and ride a white stallion name silver, team up with tonto to bring the unscrupul gang and other of that ilk to justice. action adventur western texa hors survivor texasrang partner outlaw escap lawyer train lonerang comanch thelonerang tonto johnnydepp armiehamm williamfichtn goreverbinski',\n", " 14: 'a young boy learn that he ha extraordinari power and is not of thi earth. as a young man, he journey to discov where he came from and what he wa sent here to do. but the hero in him must emerg if he is to save the world from annihil and becom the symbol of hope for all mankind. action adventur fantasi sciencefict savingtheworld dccomic superhero basedoncomicbook superhuman alieninvas reboot superpow dcextendedunivers henrycavil amyadam michaelshannon zacksnyd',\n", " 15: 'one year after their incred adventur in the lion, the witch and the wardrobe, peter, edmund, luci and susan pevensi return to narnia to aid a young princ whose life ha been threaten by the evil king miraz. now, with the help of a color cast of new characters, includ trufflehunt the badger and nikabrik the dwarf, the pevensi clan embark on an incred quest to ensur that narnia is return to it right heir. adventur famili fantasi basedonnovel fictionalplac brothersisterrelationship lion humanb wretch leapintim matteroflifeanddeath faith uncl narnia fantasyworld benbarn williammoseley annapopplewel andrewadamson',\n", " 16: 'when an unexpect enemi emerg and threaten global safeti and security, nick fury, director of the intern peacekeep agenc known as s.h.i.e.l.d., find himself in need of a team to pull the world back from the brink of disaster. span the globe, a dare recruit effort begins! sciencefict action adventur newyork shield marvelcom superhero basedoncomicbook alieninvas superheroteam aftercreditssting duringcreditssting marvelcinematicunivers robertdowneyjr. chrisevan markruffalo josswhedon',\n", " 17: \"captain jack sparrow cross path with a woman from hi past, and he' not sure if it' love -- or if she' a ruthless con artist who' use him to find the fabl fountain of youth. when she forc him aboard the queen anne' revenge, the ship of the formid pirat blackbeard, jack find himself on an unexpect adventur in which he doesn't know who to fear more: blackbeard or the woman from hi past. adventur action fantasi sea captain mutini sword primeminist sail silver ship duke mermaid pirat soldier battl swashbuckl aftercreditssting 3d johnnydepp penélopecruz ianmcshan robmarshal\",\n", " 18: \"agent j (will smith) and k (tommi lee jones) are back...in time. j ha seen some inexplic thing in hi 15 year with the men in black, but nothing, not even aliens, perplex him as much as hi wry, retic partner. but when k' life and the fate of the planet are put at stake, agent j will have to travel back in time to put thing right. j discov that there are secret to the univers that k never told him - secret that will reveal themselv as he team up with the young agent k (josh brolin) to save hi partner, the agency, and the futur of humankind. action comedi sciencefict timetravel timemachin alien fictionalgovernmentag seeingthefutur changinghistori willsmith tommyleejon joshbrolin barrysonnenfeld\",\n", " 19: \"immedi after the event of the desol of smaug, bilbo and the dwarv tri to defend erebor' mountain of treasur from other who claim it: the men of the ruin laketown and the elv of mirkwood. meanwhil an armi of orc led by azog the defil is march on erebor, fuel by the rise of the dark lord sauron. dwarves, elv and men must unite, and the hope for middle-earth fall into bilbo' hands. action adventur fantasi corrupt elv dwarv orc middle-earth(tolkien) hobbit dragon battl unlikelyfriendship epicbattl swordandsorceri martinfreeman ianmckellen richardarmitag peterjackson\",\n", " 20: \"peter parker is an outcast high schooler abandon by hi parent as a boy, leav him to be rais by hi uncl ben and aunt may. like most teenagers, peter is tri to figur out who he is and how he got to be the person he is today. as peter discov a mysteri briefcas that belong to hi father, he begin a quest to understand hi parents' disappear – lead him directli to oscorp and the lab of dr. curt connors, hi father' former partner. as spider-man is set on a collis cours with connors' alter ego, the lizard, peter will make life-alt choic to use hi power and shape hi destini to becom a hero. action adventur fantasi lossoffath vigilant serum marvelcom scientificexperi spiderbit maskedvigilant reboot superpow geneticengin socialoutcast duringcreditssting andrewgarfield emmaston rhysifan marcwebb\",\n", " 21: \"when soldier robin happen upon the die robert of loxley, he promis to return the man' sword to hi famili in nottingham. there, he assum robert' identity; romanc hi widow, marion; and draw the ire of the town' sheriff and king john' henchman, godfrey. action adventur robinhood archer knight sherwoodforest bowandarrow middleag mediev kingofengland russellcrow cateblanchett maxvonsydow ridleyscott\",\n", " 22: 'the dwarves, bilbo and gandalf have success escap the misti mountains, and bilbo ha gain the one ring. they all continu their journey to get their gold back from the dragon, smaug. adventur fantasi elv dwarv orc hobbit dragon wizard swordandsorceri martinfreeman ianmckellen richardarmitag peterjackson',\n", " 23: \"after overhear a shock secret, precoci orphan lyra belacqua trade her carefre exist roam the hall of jordan colleg for an otherworldli adventur in the far north, unawar that it' part of her destiny. adventur fantasi england compass experi lordship uncl polarbear orphan anim basedonyoungadultnovel dakotabluerichard nicolekidman danielcraig chrisweitz\",\n", " 24: 'in 1933 new york, an overli ambiti movi produc coerc hi cast and hire ship crew to travel to mysteri skull island, where they encount kong, a giant ape who is immedi smitten with the lead lady. adventur drama action filmbusi screenplay showbusi filmmak filmproduc exoticisland monster indigen ship dinosaur naomiwatt jackblack adrienbrodi peterjackson',\n", " 25: '84 year later, a 101-year-old woman name rose dewitt bukat tell the stori to her granddaught lizzi calvert, brock lovett, lewi bodine, bobbi buell and anatoli mikailavich on the keldysh about her life set in april 10th 1912, on a ship call titan when young rose board the depart ship with the upper-class passeng and her mother, ruth dewitt bukater, and her fiancé, caledon hockley. meanwhile, a drifter and artist name jack dawson and hi best friend fabrizio de rossi win third-class ticket to the ship in a game. and she explain the whole stori from departur until the death of titan on it first and last voyag april 15th, 1912 at 2:20 in the morning. drama romanc thriller shipwreck iceberg ship panic titan oceanlin epic richwoman-poorman love disast tragiclov classdiffer imax starcrossedlov steerag salvag richsnob 3d 1910 katewinslet leonardodicaprio francesfish jamescameron',\n", " 26: 'follow the event of age of ultron, the collect govern of the world pass an act design to regul all superhuman activity. thi polar opinion amongst the avengers, caus two faction to side with iron man or captain america, which caus an epic battl between former allies. adventur action sciencefict civilwar war marvelcom sequel superhero basedoncomicbook imax aftercreditssting duringcreditssting marvelcinematicunivers 3d chrisevan robertdowneyjr. scarlettjohansson anthonyrusso',\n", " 27: \"when mankind beam a radio signal into space, a repli come from ‘planet g’, in the form of sever alien craft that splash down in the water off hawaii. lieuten alex hopper is a weapon offic assign to the uss john paul jones, part of an intern naval coalit which becom the world' last hope for surviv as they engag the hostil alien forc of unimagin strength. while take on the invaders, hopper must also tri to live up to the potenti hi brother, and hi fiancée' father, admir shane, expect of him. thriller action adventur sciencefict fight u.s.navi mindread hongkong soccer scientist fictionalwar naval armada battleship navalcombat jdsmyoko lostcommun taser buoy communicationsexpert jointchiefsofstaff crashland jetfighterpilot navylieuten permissiontomarri ussjohnpauljon basedonboardgam aftercreditssting mightymo ussmissouri taylorkitsch alexanderskarsgård rihanna peterberg\",\n", " 28: 'twenty-two year after the event of jurass park, isla nublar now featur a fulli function dinosaur theme park, jurass world, as origin envis by john hammond. action adventur sciencefict thriller monster dna tyrannosaurusrex velociraptor island sequel suspens disast escap dinosaur amusementpark animalattack themepark jurassicpark 3d animalhorror chrispratt brycedallashoward irrfankhan colintrevorrow',\n", " 29: \"when bond' latest assign goe grave wrong and agent around the world are exposed, mi6 is attack forc m to reloc the agency. these event caus her author and posit to be challeng by gareth mallory, the new chairman of the intellig and secur committee. with mi6 now compromis from both insid and out, m is left with one alli she can trust: bond. 007 take to the shadow - aid onli by field agent, eve - follow a trail to the mysteri silva, whose lethal and hidden motiv have yet to reveal themselves. action adventur thriller spi secretag sociopath killer artgalleri britishsecretservic istanbulturkey imax uzi boobytrap impersonatingapoliceoffic macao danielcraig judidench javierbardem sammend\",\n", " 30: \"peter parker is go through a major ident crisis. burn out from be spider-man, he decid to shelv hi superhero alter ego, which leav the citi suffer in the wake of carnag left by the evil doc ock. in the meantime, parker still can't act on hi feel for mari jane watson, a girl he' love sinc childhood. action adventur fantasi dualident loveofone'slif pizzaboy marvelcom sequel superhero doctor scientist tentacl death supervillain tobeymaguir kirstendunst jamesfranco samraimi\",\n", " 31: \"when toni stark' world is torn apart by a formid terrorist call the mandarin, he start an odyssey of rebuild and retribution. action adventur sciencefict terrorist waronterror tennesse malibu marvelcom superhero basedoncomicbook tonystark ironman aftercreditssting marvelcinematicunivers mandarin 3d warmachin ironpatriot extremi robertdowneyjr. gwynethpaltrow doncheadl shaneblack\",\n", " 32: \"alice, an unpretenti and individu 19-year-old, is betroth to a dunc of an english nobleman. at her engag party, she escap the crowd to consid whether to go through with the marriag and fall down a hole in the garden after spot an unusu rabbit. arriv in a strang and surreal place call 'underland,' she find herself in a world that resembl the nightmar she had as a child, fill with talk animals, villain queen and knights, and frumiou bandersnatches. alic realiz that she is there for a reason – to conquer the horrif jabberwocki and restor the right queen to her throne. famili fantasi adventur basedonnovel fictionalplac queen fantasi aliceinwonderland fantasyworld 3d miawasikowska johnnydepp annehathaway timburton\",\n", " 33: \"when a cure is found to treat mutations, line are drawn amongst the x-men and the brotherhood, a band of power mutant organ under xavier' former ally, magneto. adventur action sciencefict thriller mutant marvelcom basedoncomicbook superhuman beast cyclop aftercreditssting hughjackman halleberri ianmckellen brettratn\",\n", " 34: \"a look at the relationship between mike and sulley dure their day at monster univers — when they weren't necessarili the best of friends. anim famili monster dormitori game anim bestfriend univers scari aftercreditssting billycryst johngoodman stevebuscemi danscanlon\",\n", " 35: \"sam witwicki leav the autobot behind for a normal life. but when hi mind is fill with cryptic symbols, the decepticon target him and he is drag back into the transformers' war. sciencefict action adventur egypt sun chao symbol artifact transform tank robot imax duringcreditssting shialabeouf meganfox joshduhamel michaelbay\",\n", " 36: 'as human pick up the pieces, follow the conclus of \"transformers: dark of the moon,\" autobot and decepticon have all but vanish from the face of the planet. however, a group of powerful, ingeni businessman and scientist attempt to learn from past transform incurs and push the boundari of technolog beyond what they can control - all while an ancient, power transform menac set earth in hi cross-hairs. sciencefict action adventur sequel alien transform giantrobot robot imax transformingrobot markwahlberg stanleytucci kelseygramm michaelbay',\n", " 37: \"oscar diggs, a small-tim circu illusionist and con-artist, is whisk from kansa to the land of oz where the inhabit assum he' the great wizard of prophecy, there to save oz from the clutch of evil. fantasi adventur famili circu witch magic hope illus lost magictrick wizard 3d jamesfranco milakuni rachelweisz samraimi\",\n", " 38: 'for peter parker, life is busy. between take out the bad guy as spider-man and spend time with the person he loves, gwen stacy, high school graduat cannot come quickli enough. peter ha not forgotten about the promis he made to gwen’ father to protect her by stay away, but that is a promis he cannot keep. thing will chang for peter when a new villain, electro, emerges, an old friend, harri osborn, returns, and peter uncov new clue about hi past. action adventur fantasi obsess marvelcom sequel basedoncomicbook electrocut medicalexperi electr superpow andrewgarfield emmaston jamiefoxx marcwebb',\n", " 39: \"sam flynn, the tech-savvi and dare son of kevin flynn, investig hi father' disappear and is pull into the grid. with the help of a mysteri program name quorra, sam quest to stop evil dictat clu from cross into the real world. adventur action sciencefict artificialintellig secretident computerprogram dystopia comput decept duel motorcycl neonlight autocraci garretthedlund jeffbridg oliviawild josephkosinski\",\n", " 40: 'star race car lightn mcqueen and hi pal mater head oversea to compet in the world grand prix race. but the road to the championship becom rocki as mater get caught up in an intrigu adventur of hi own: intern espionage. anim famili adventur comedi carrac sequel comedi anthropomorph bestfriend duringcreditssting owenwilson larrythecableguy michaelcain johnlasset',\n", " 41: 'for centuries, a small but power forc of warrior call the green lantern corp ha sworn to keep intergalact order. each green lantern wear a ring that grant him superpowers. but when a new enemi call parallax threaten to destroy the balanc of power in the universe, their fate and the fate of earth lie in the hand of the first human ever recruited. adventur action thriller sciencefict dccomic transform superhero alien alieninfect magicalobject protector superpow origin 3d ryanreynold blakel petersarsgaard martincampbel',\n", " 42: \"woody, buzz, and the rest of andy' toy haven't been play with in years. with andi about to go to college, the gang find themselv accident left at a nefari day care center. the toy must band togeth to escap and return home to andy. anim famili comedi hostag colleg toy barbi anim escap daycar teddybear duringcreditssting toycomestolif personif inanimateobjectscomingtolif toystori tomhank timallen nedbeatti leeunkrich\",\n", " 43: \"all grown up in post-apocalypt 2018, john connor must lead the resist of human against the increasingli domin militarist robots. but when marcu wright appears, hi exist confus the mission as connor tri to determin whether wright ha come from the futur or the past -- and whether he' friend or foe. action sciencefict thriller savingtheworld artificialintellig propheci sanfrancisco cyborg killerrobot gasstat post-apocalypt dystopia armi firearm wartim losangel christianbal samworthington antonyelchin mcg\",\n", " 44: 'deckard shaw seek reveng against domin toretto and hi famili for hi comatos brother. action carrac speed reveng suspens car race musclecar vindiesel paulwalk dwaynejohnson jameswan',\n", " 45: 'life for former unit nation investig gerri lane and hi famili seem content. suddenly, the world is plagu by a mysteri infect turn whole human popul into rampag mindless zombies. after bare escap the chaos, lane is persuad to go on a mission to investig thi disease. what follow is a peril trek around the world where lane must brave horrif danger and long odd to find answer befor human civil falls. action drama horror sciencefict thriller dystopia apocalyps zombi nuclearweapon multipleperspect zombieapocalyps bradpitt mireilleeno abigailhargrov marcforst',\n", " 46: 'the ultim x-men ensembl fight a war for the surviv of the speci across two time period as they join forc with their younger selv in an epic battl that must chang the past – to save our future. action adventur fantasi sciencefict 1970 mutant timetravel marvelcom basedoncomicbook superhuman storm beast aftercreditssting changingthepastorfutur hughjackman jamesmcavoy michaelfassbend bryansing',\n", " 47: 'when the crew of the enterpris is call back home, they find an unstopp forc of terror from within their own organ ha deton the fleet and everyth it stand for, leav our world in a state of crisis. with a person score to settle, captain kirk lead a manhunt to a war-zon world to captur a one man weapon of mass destruction. as our hero are propel into an epic chess game of life and death, love will be challenged, friendship will be torn apart, and sacrific must be made for the onli famili kirk ha left: hi crew. action adventur sciencefict spacecraft friendship sequel futurist space alien imax spaceopera terroristbomb 3d chrispin zacharyquinto zoesaldana j.j.abram',\n", " 48: 'the stori of an ancient war that is reignit when a young farmhand unwittingli open a gateway between our world and a fearsom race of giants. unleash on the earth for the first time in centuries, the giant strive to reclaim the land they onc lost, forc the young man, jack into the battl of hi life to stop them. fight for a kingdom, it people, and the love of a brave princess, he come face to face with the unstopp warrior he thought onli exist in legend–and get the chanc to becom a legend himself. action famili fantasi basedonfairytal giant nicholashoult eleanortomlinson ewanmcgregor bryansing',\n", " 49: \"an adapt of f. scott fitzgerald' long island-set novel, where midwestern nick carraway is lure into the lavish world of hi neighbor, jay gatsby. soon enough, however, carraway will see through the crack of gatsby' nouveau rich existence, where obsession, madness, and tragedi await. drama romanc basedonnovel infidel obsess hope 3d leonardodicaprio tobeymaguir careymulligan bazluhrmann\",\n", " 50: 'a rogu princ reluctantli join forc with a mysteri princess and together, they race against dark forc to safeguard an ancient dagger capabl of releas the sand of time – gift from the god that can revers time and allow it possessor to rule the world. adventur fantasi action romanc persia sandstorm brotheragainstbroth armageddon regent basedonvideogam jakegyllenha gemmaarterton benkingsley mikenewel',\n", " 51: \"when legion of monstrou creatures, known as kaiju, start rise from the sea, a war began that would take million of live and consum humanity' resourc for year on end. to combat the giant kaiju, a special type of weapon wa devised: massiv robots, call jaegers, which are control simultan by two pilot whose mind are lock in a neural bridge. but even the jaeger are prove nearli defenseless in the face of the relentless kaiju. on the verg of defeat, the forc defend mankind have no choic but to turn to two unlik heroes—a washed-up former pilot (charli hunnam) and an untest traine (rinko kikuchi)—who are team to drive a legendari but seemingli obsolet jaeger from the past. together, they stand as mankind' last hope against the mount apocalypse. action sciencefict adventur dystopia giantrobot giantmonst apocalyps imax duringcreditssting 3d idriselba charliehunnam charlieday guillermodeltoro\",\n", " 52: \"sam witwicki take hi first tenuou step into adulthood while remain a reluct human alli of autobot-lead optimu prime. the film center around the space race between the ussr and the usa, suggest there wa a hidden transform role in it all that remain one of the planet' most danger secrets. action sciencefict adventur moon spacecraft traitor bodyguard alienplanet basedoncartoon transform giantrobot sabotag worddomin commando duringcreditssting shialabeouf johnmalkovich kenjeong michaelbay\",\n", " 53: \"set dure the cold war, the soviet – led by sword-wield irina spalko – are in search of a crystal skull which ha supernatur power relat to a mystic lost citi of gold. after be captur and then escap from them, indi is coerc to head to peru at the behest of a young man whose friend – and indy' colleagu – professor oxley ha been captur for hi knowledg of the skull' whereabouts. adventur action savingtheworld riddl whip treasur mexicoc leatherjacket machinegun alienphenomenon mayacivil peru treasurehunt nuclearexplos refriger archaeologist indianajon archeolog harrisonford cateblanchett shialabeouf stevenspielberg\",\n", " 54: 'an epic journey into the world of dinosaur where an apatosauru name arlo make an unlik human friend. adventur anim famili tyrannosaurusrex friend alternatehistori dinosaur fear storm natur human journey raymondochoa jackbright jeffreywright petersohn',\n", " 55: 'brave is set in the mystic scottish highlands, where mérida is the princess of a kingdom rule by king fergu and queen elinor. an unruli daughter and an accomplish archer, mérida one day defi a sacr custom of the land and inadvert bring turmoil to the kingdom. in an attempt to set thing right, mérida seek out an eccentr old wise woman and is grant an ill-fat wish. also figur into mérida’ quest — and serv as comic relief — are the kingdom’ three lords: the enorm lord macguffin, the surli lord macintosh, and the disagre lord dingwall. anim adventur comedi famili action fantasi scotland rebel braveri kingdom archer wish bear scot rebelliousdaught turnsintoanim archeri ruin aftercreditssting peaceoff womandirector courag 3d kellymacdonald juliewalt billyconnolli brendachapman',\n", " 56: 'the uss enterpris crew explor the furthest reach of unchart space, where they encount a mysteri new enemi who put them and everyth the feder stand for to the test. action adventur sciencefict sequel strand hatr spaceopera chrispin zacharyquinto karlurban justinlin',\n", " 57: \"wall· is the last robot left on an earth that ha been overrun with garbag and all human have fled to outer space. for 700 year he ha continu to tri and clean up the mess, but ha develop some rather interest human-lik qualities. when a ship arriv with a sleek new type of robot, wall· think he' final found a friend and stow away on the ship when it leaves. anim famili romanticcomedi benburtt elissaknight jeffgarlin andrewstanton\",\n", " 58: \"after an attempt assassin on ambassador han, inspector lee and detect carter are back in action as they head to pari to protect a french woman with knowledg of the triads' secret leaders. lee also hold secret meet with a unit nation authority, but hi person struggl with a chines crimin mastermind name kenji, which reveal that it' lee' long-lost...brother. action comedi crime thriller ambassador christuck jackiechan hiroyukisanada brettratn\",\n", " 59: 'dr. adrian helmsley, part of a worldwid geophys team investig the effect on the earth of radiat from unpreced solar storms, learn that the earth\\' core is heat up. he warn u.s. presid thoma wilson that the crust of the earth is becom unstabl and that without proper prepar for save a fraction of the world\\' population, the entir race is doomed. meanwhile, writer jackson curti stumbl on the same information. while the world\\' leader race to build \"arks\" to escap the impend cataclysm, curti struggl to find a way to save hi family. meanwhile, volcan erupt and earthquak of unpreced strength wreak havoc around the world. action adventur sciencefict civil naturaldisast endoftheworld disast apocalyps destruct volcanicerupt mayan ark solar destructionofmankind johncusack amandapeet chiwetelejiofor rolandemmerich',\n", " 60: 'miser ebenez scroog is awaken on christma eve by spirit who reveal to him hi own miser existence, what opportun he wast in hi youth, hi current cruelties, and the dire fate that await him if he doe not chang hi ways. scroog is face with hi own stori of grow bitter and meanness, and must decid what hi own futur will hold: death or redemption. anim drama holiday basedonnovel victorianengland money christmasev scroog christmascarol ghost lesson charlesdicken christma garyoldman jimcarrey stevevalentin robertzemecki',\n", " 61: 'in a univers where human genet materi is the most preciou commodity, an impoverish young earth woman becom the key to strateg maneuv and intern strife within a power dynasty… sciencefict fantasi action adventur jupit space womandirector 3d interspeciesrom milakuni channingtatum seanbean lillywachowski',\n", " 62: 'tarzan, have acclim to life in london, is call back to hi former home in the jungl to investig the activ at a mine encampment. action adventur africa feralchild tarzan jungl animalattack alexanderskarsgård margotrobbi christophwaltz davidy',\n", " 63: \"sibl lucy, edmund, susan and peter step through a magic wardrob and find the land of narnia. there, the they discov a charming, onc peac kingdom that ha been plung into etern winter by the evil white witch, jadis. aid by the wise and magnific lion, aslan, the children lead narnia into a spectacular, climact battl to be free of the witch' glacial power forever. adventur famili fantasi savingtheworld witch basedonnovel brothersisterrelationship selfsacrific winter cupboard beaver lion fairy-talefigur battl narnia fantasyworld duringcreditssting williammoseley annapopplewel skandarkeyn andrewadamson\",\n", " 64: \"after the re-emerg of the world' first mutant, world-destroy apocalypse, the x-men must unit to defeat hi extinct level plan. sciencefict mutant supernaturalpow marvelcom superhero basedoncomicbook superhuman apocalyps superheroteam worlddomin aftercreditssting 1980 jamesmcavoy michaelfassbend jenniferlawr bryansing\",\n", " 65: 'batman rais the stake in hi war on crime. with the help of lt. jim gordon and district attorney harvey dent, batman set out to dismantl the remain crimin organ that plagu the streets. the partnership prove to be effective, but they soon find themselv prey to a reign of chao unleash by a rise crimin mastermind known to the terrifi citizen of gotham as the joker. drama action crime thriller dccomic crimefight secretident scarecrow sadism chao gothamc vigilant joker superhero basedoncomicbook tragichero organizedcrim criminalmastermind districtattorney imax supervillain superpow batman christianbal heathledg aaroneckhart christophernolan',\n", " 66: 'carl fredricksen spent hi entir life dream of explor the globe and experienc life to it fullest. but at age 78, life seem to have pass him by, until a twist of fate (and a persist 8-year old wilder explor name russell) give him a new leas on life. anim comedi famili adventur agediffer centralandsouthamerica balloon anim floatingintheair duringcreditssting explor edasn christopherplumm jordannagai petedoct',\n", " 67: 'when susan murphi is unwittingli clobber by a meteor full of outer space gunk on her wed day, she mysteri grow to 49-feet-11-inches. the militari jump into action and captur susan, secret her away to a covert govern compound. she is renam ginormica and place in confin with a ragtag group of monsters... anim famili adventur sciencefict alien giantrobot duringcreditssting sethrogen reesewitherspoon hughlauri conradvernon',\n", " 68: 'after be held captiv in an afghan cave, billionair engin toni stark creat a uniqu weapon suit of armor to fight evil. action sciencefict adventur middleeast armsdeal malibu marvelcom superhero basedoncomicbook tonystark ironman aftercreditssting marvelcinematicunivers counterterror agentcoulson robertdowneyjr. terrencehoward jeffbridg jonfavreau',\n", " 69: \"hugo is an orphan boy live in the wall of a train station in 1930 paris. he learn to fix clock and other gadget from hi father and uncl which he put to use keep the train station clock running. the onli thing that he ha left that connect him to hi dead father is an automaton (mechan man) that doesn't work without a special key which hugo need to find to unlock the secret he believ it contains. on hi adventures, he meet with a shopkeeper, georg melies, who work in the train station and hi adventure-seek god-daughter. hugo find that they have a surpris connect to hi father and the automaton, and he discov it unlock some memori the old man ha buri insid regard hi past. adventur drama famili librari clock filmdirector key toy boy love orphan robot automaton hide filmmak legbrac doberman 3d benkingsley sachabaroncohen asabutterfield martinscorses\",\n", " 70: \"legless southern inventor dr. arliss loveless plan to rekindl the civil war by assassin presid u.s. grant. onli two men can stop him: gunfight jame west and master-of-disguis and inventor artemu gordon. the two must team up to thwart loveless' plans. action adventur comedi sciencefict western steampunk basedontvseri steamlocomot drag willsmith kevinklin kennethbranagh barrysonnenfeld\",\n", " 71: \"archaeologist rick o'connel travel to china, pit him against an emperor from the 2,000-year-old han dynasti who' return from the dead to pursu a quest for world domination. thi time, o'connel enlist the help of hi wife and son to quash the so-cal 'dragon emperor' and hi abus of supernatur power. adventur action fantasi brendanfras jetli johnhannah robcohen\",\n", " 72: 'from dc comic come the suicid squad, an antihero team of incarcer supervillain who act as deniabl asset for the unit state government, undertak high-risk black op mission in exchang for commut prison sentences. action adventur crime fantasi sciencefict dccomic sharedunivers antihero secretmiss villain superhero supervillain dcextendedunivers willsmith margotrobbi joelkinnaman daviday',\n", " 73: \"god contact congressman evan baxter and tell him to build an ark in prepar for a great flood. fantasi comedi famili fathersonrelationship dailylif marriedcoupl support father marriag faith baustel rescu anim natur duringcreditssting noah'sark stevecarel laurengraham johngoodman tomshadyac\",\n", " 74: 'major bill cage is an offic who ha never seen a day of combat when he is unceremoni demot and drop into combat. cage is kill within minutes, manag to take an alpha alien down with him. he awaken back at the begin of the same day and is forc to fight and die again... and again - as physic contact with the alien ha thrown him into a time loop. action sciencefict dejavu timewarp restart dystopia war alien militaryoffic soldier alieninvas exoskeleton tomcruis emilyblunt brendangleeson dougliman',\n", " 75: \"in a futurist world where the polar ice cap have melt and made earth a liquid planet, a beauti barmaid rescu a mutant seafar from a float island prison. they escape, along with her young charge, enola, and sail off aboard hi ship. but the trio soon becom the target of a menac pirat who covet the map to 'dryland' – which is tattoo on enola' back. adventur action ocean tattoo mutant water dystopia doomsday kevincostn chaimgirafi rickavil kevinreynold\",\n", " 76: 'from the egyptian desert to deep below the polar ice caps, the elit g.i. joe team use the latest in next-gener spi and militari equip to fight the corrupt arm dealer destro and the grow threat of the mysteri cobra organ to prevent them from plung the world into chaos. adventur action thriller sciencefict terrorist secret hostag technolog warhead govern presid reveng murder attack explos scientist laser evil cobra dennisquaid channingtatum marlonwayan stephensomm',\n", " 77: \"grow up can be a bumpi road, and it' no except for riley, who is uproot from her midwest life when her father start a new job in san francisco. like all of us, riley is guid by her emot - joy, fear, anger, disgust and sadness. the emot live in headquarters, the control center insid riley' mind, where they help advis her through everyday life. as riley and her emot struggl to adjust to a new life in san francisco, turmoil ensu in headquarters. although joy, riley' main and most import emotion, tri to keep thing positive, the emot conflict on how best to navig a new city, hous and school. drama comedi anim famili dream cartoon imaginaryfriend anim famili move kid unicorn duringcreditssting 3d emot amypoehl phyllissmith richardkind petedoct\",\n", " 78: 'after a threat from the tiger shere khan forc him to flee the jungle, a man-cub name mowgli embark on a journey of self discoveri with the help of panther, bagheera, and free spirit bear, baloo. famili adventur drama fantasi basedonnovel snake wolf eleph tiger feralchild panther remak bear jungl talkinganim orphan anim talkingtoanim neelsethi billmurray benkingsley jonfavreau',\n", " 79: \"with the world now awar of hi dual life as the armor superhero iron man, billionair inventor toni stark face pressur from the government, the press and the public to share hi technolog with the military. unwil to let go of hi invention, stark, with pepper pott and jame 'rhodey' rhode at hi side, must forg new allianc – and confront power enemies. adventur action sciencefict malibu marvelcom superhero basedoncomicbook reveng aftercreditssting marvelcinematicunivers robertdowneyjr. gwynethpaltrow doncheadl jonfavreau\",\n", " 80: 'after the evil queen marri the king, she perform a violent coup in which the king is murder and hi daughter, snow white, is taken captive. almost a decad later, a grown snow white is still in the clutch of the queen. in order to obtain immortality, the evil queen need the heart of snow white. after snow escap the castle, the queen send the huntsman to find her in the dark forest. adventur fantasi drama queen magic fairytal immort forest decept woman eternalyouth snowwhit evilqueen evilstepmoth imprison sorceress kristenstewart charlizetheron chrishemsworth rupertsand',\n", " 81: \"the untold stori of disney' most icon villain from the 1959 classic 'sleep beauty'. a beautiful, pure-heart young woman, malefic ha an idyl life grow up in a peaceabl forest kingdom, until one day when an invad armi threaten the harmoni of the land. malefic rise to be the land' fiercest protector, but she ultim suffer a ruthless betray – an act that begin to turn her heart into stone. bent on revenge, malefic face an epic battl with the invad king' successor and, as a result, place a curs upon hi newborn infant aurora. as the child grows, malefic realiz that aurora hold the key to peac in the kingdom - and to maleficent' true happi as well. fantasi adventur action famili romanc fairytal villain sleepingbeauti darkfantasi basedonfairytal adapt retel literaryadapt 3d angelinajoli ellefan sharltocopley robertstromberg\",\n", " 82: 'a group of scientist in san francisco struggl to stay aliv in the aftermath of a plagu that is wipe out humanity, while caesar tri to maintain domin over hi commun of intellig apes. sciencefict action drama thriller leader coloni post-apocalypt dystopia forest sequel wood ape scientist monkey medicalresearch animalattack plagu 3d andyserki jasonclark garyoldman mattreev',\n", " 83: 'the lover is an epic romanc time travel adventur film. helm by roland joffé from a stori by ajey jhankar, the film is a sweep tale of an imposs love set against the backdrop of the first anglo-maratha war across two time period and contin and centr around four charact — a british offic in 18th centuri coloni india, the indian woman he fall deepli in love with, an american present-day marin biologist and hi wife. action adventur sciencefict romanc joshhartnett simonekessel tamsinegerton rolandjoffé',\n", " 84: 'base on the origin 1941 movi from japan, and from ancient japan’ most endur tale, the epic 3d fantasy-adventur 47 ronin is born. keanu reev lead the cast as kai, an outcast who join oishi (hiroyuki sanada), the leader of the 47 outcast samurai. togeth they seek vengeanc upon the treacher overlord who kill their master and banish their kind. to restor honor to their homeland, the warrior embark upon a quest that challeng them with a seri of trial that would destroy ordinari warriors. drama action adventur fantasi japan suicid samurai basedontruestori samuraisword ronin shogun halfbre 3d keanureev hiroyukisanada koushibasaki carlrinsch',\n", " 85: 'after the cataclysm event in new york with the avengers, steve rogers, aka captain america is live quietli in washington, d.c. and tri to adjust to the modern world. but when a s.h.i.e.l.d. colleagu come under attack, steve becom embroil in a web of intrigu that threaten to put the world at risk. join forc with the black widow, captain america struggl to expos the ever-widen conspiraci while fight off profession assassin sent to silenc him at everi turn. when the full scope of the villain plot is revealed, captain america and the black widow enlist the help of a new ally, the falcon. however, they soon find themselv up against an unexpect and formid enemy—th winter soldier. action adventur sciencefict washingtond.c. futur shield marvelcom superhero basedoncomicbook captainamerica aftercreditssting duringcreditssting marvelcinematicunivers 3d politicalthril chrisevan samuell.jackson scarlettjohansson anthonyrusso',\n", " 86: \"a bore and domest shrek pact with deal-mak rumpelstiltskin to get back to feel like a real ogr again, but when he' dupe and sent to a twist version of far far away—wher rumpelstiltskin is king, ogr are hunted, and he and fiona have never met—h set out to restor hi world and reclaim hi true love. comedi adventur fantasi anim famili ogr 3d mikemy eddiemurphi camerondiaz mikemitchel\",\n", " 87: 'bound by a share destiny, a bright, optimist teen burst with scientif curios and a former boy-geniu inventor jade by disillusion embark on a danger-fil mission to unearth the secret of an enigmat place somewher in time and space that exist in their collect memori as \"tomorrowland.\" adventur famili mysteri sciencefict inventor apocalyps destini imax dreamer futuristiccar futuristicc brittrobertson georgeclooney raffeycassidi bradbird',\n", " 88: 'the special bond that develop between plus-siz inflat robot baymax, and prodigi hiro hamada, who team up with a group of friend to form a band of high-tech heroes. adventur famili anim action comedi brotherbrotherrelationship hero talent reveng bestfriend anotherdimens robot boygeniu hate aftercreditssting moraldilemma 3d teensuperhero deadbroth scottadsit ryanpott danielhenney chriswilliam',\n", " 89: \"wreck-it ralph is the 9-foot-tall, 643-pound villain of an arcad video game name fix-it felix jr., in which the game' titular hero fix build that ralph destroys. want to prove he can be a good guy and not just a villain, ralph escap hi game and land in hero' duty, a first-person shooter where he help the game' hero battl against alien invaders. he later enter sugar rush, a kart race game set on track made of candies, cooki and other sweets. there, ralph meet vanellop von schweetz who ha learn that her game is face with a dire threat that could affect the entir arcade, and one that ralph may have inadvert started. famili anim comedi adventur supportgroup productplac bulli race arcad medal selfesteem curios precociouschild aftercreditssting duringcreditssting firstpersonshoot glitch carefre videogam q*bert interruptedwed socialreject johnc.reilli sarahsilverman jackmcbray richmoor\",\n", " 90: 'when a doubt young boy take an extraordinari train ride to the north pole, he embark on a journey of self-discoveri that show him that the wonder of life never fade for those who believe. adventur anim famili fantasi santaclau nerd faith gift bell beard northpol chute trestl ticket christma tomhank michaeljet nonagay robertzemecki',\n", " 91: 'we alway knew they were come back. use recov alien technology, the nation of earth have collabor on an immens defens program to protect the planet. but noth can prepar us for the aliens’ advanc and unpreced force. onli the ingenu of a few brave men and women can bring our world back from the brink of extinction. action adventur sciencefict alternatehistori alieninvas liamhemsworth jeffgoldblum billpullman rolandemmerich',\n", " 92: 'as the son of a vike leader on the cusp of manhood, shi hiccup horrend haddock iii face a rite of passage: he must kill a dragon to prove hi warrior mettle. but after down a fear dragon, he realiz that he no longer want to destroy it, and instead befriend the beast – which he name toothless – much to the chagrin of hi warrior father fantasi adventur anim famili fli blacksmith arena island night ship train villag forest vike friendship ignor flight nest dragon battl combat well warrior jaybaruchel gerardbutl craigferguson chrissand',\n", " 93: \"it' been 10 year sinc john connor save earth from judgment day, and he' now live under the radar, steer clear of use anyth skynet can trace. that is, until he encount t-x, a robot assassin order to finish what t-1000 started. good thing connor' former nemesis, the terminator, is back to aid the now-adult connor … just like he promised. action thriller sciencefict savingtheworld artificialintellig manvsmachin cyborg killerrobot sunglass leatherjacket nanotechnolog rocketlaunch firemen veterinarian fireengin dystopia psychiatrist arnoldschwarzenegg nickstahl clairedan jonathanmostow\",\n", " 94: 'light year from earth, 26 year after be abducted, peter quill find himself the prime target of a manhunt after discov an orb want by ronan the accuser. action sciencefict adventur marvelcom spaceship space outerspac orphan adventur aftercreditssting duringcreditssting marvelcinematicunivers chrispratt zoesaldana davebautista jamesgunn',\n", " 95: 'interstellar chronicl the adventur of a group of explor who make use of a newli discov wormhol to surpass the limit on human space travel and conquer the vast distanc involv in an interstellar voyage. adventur drama sciencefict savingtheworld artificialintellig fathersonrelationship singlepar nasa expedit wormhol spacetravel famin blackhol dystopia raceagainsttim quantummechan spaceship space rescu familyrelationship farmhous robot astronaut scientist fatherdaughterrelationship singlefath farmer spacest imax astrophys zerograv courag timeparadox rel matthewmcconaughey jessicachastain annehathaway christophernolan',\n", " 96: 'cobb, a skill thief who commit corpor espionag by infiltr the subconsci of hi target is offer a chanc to regain hi old life as payment for a task consid to be impossible: \"inception\", the implant of anoth person\\' idea into a target\\' subconscious. action thriller sciencefict mysteri adventur lossoflov dream kidnap sleep subconsci heist redempt femalehero leonardodicaprio josephgordon-levitt ellenpag christophernolan',\n", " 97: \"from the mind behind evangelion come a hit larger than life. when a massive, gill monster emerg from the deep and tear through the city, the govern scrambl to save it citizens. a rag-tag team of volunt cut through a web of red tape to uncov the monster' weak and it mysteri tie to a foreign superpower. but time is not on their side - the greatest catastroph to ever befal the world is about to evolv right befor their veri eyes. action adventur drama horror sciencefict monster godzilla giantmonst destruct kaiju toyko hirokihasegawa yutakatakenouchi satomiishihara hideakianno\",\n", " 98: 'bilbo baggins, a hobbit enjoy hi quiet life, is swept into an epic quest by gandalf the grey and thirteen dwarv who seek to reclaim their mountain home from smaug, the dragon. adventur fantasi action riddl elv dwarv orc middle-earth(tolkien) hobbit mountain wizard journey ring goblin courag giant tunnel undergroundlak buriedtreasur climbingatre invis ancient gnome ianmckellen martinfreeman richardarmitag peterjackson',\n", " 99: \"domen toretto is a lo angel street racer suspect of mastermind a seri of big-rig hijackings. when undercov cop brian o'conn infiltr toretto' iconoclast crew, he fall for toretto' sister and must choos a side: the gang or the lapd. action crime thriller streetgang carrac undercov auto-tun losangel car automobilerac aftercreditssting duringcreditssting paulwalk vindiesel michellerodriguez robcohen\",\n", " 100: 'tell the stori of benjamin button, a man who start age backward with bizarr consequences. fantasi drama thriller mysteri romanc diari navi funer tea travel hospit cateblanchett bradpitt tildaswinton davidfinch',\n", " 101: 'befor charl xavier and erik lensherr took the name professor x and magneto, they were two young men discov their power for the first time. befor they were arch-enemies, they were closest of friends, work togeth with other mutant (some familiar, some new), to stop the greatest threat the world ha ever known. action sciencefict adventur cia mutant mine marvelcom superhero basedoncomicbook superhuman historicalfict nuclearwar cubanmissilecrisi worldwariii 1960 jamesmcavoy michaelfassbend jenniferlawr matthewvaughn',\n", " 102: 'with the nation of panem in a full scale war, katniss confront presid snow in the final showdown. team with a group of her closest friend – includ gale, finnick, and peeta – katniss goe off on a mission with the unit from district 13 as they risk their live to stage an assassin attempt on presid snow who ha becom increasingli obsess with destroy her. the mortal traps, enemies, and moral choic that await katniss will challeng her more than ani arena she face in the hunger games. action adventur sciencefict revolut strongwoman dystopia gameofdeath 3d basedonyoungadultnovel jenniferlawr joshhutcherson liamhemsworth francislawr',\n", " 103: \"balthazar blake is a master sorcer in modern-day manhattan tri to defend the citi from hi arch-nemesis, maxim horvath. balthazar can't do it alone, so he recruit dave stutler, a seemingli averag guy who demonstr hidden potential, as hi reluct protégé. the sorcer give hi unwil accomplic a crash cours in the art and scienc of magic, and together, these unlik partner work to stop the forc of darkness. fantasi adventur action comedi drama witch fire wolf fountain magic book castl water apprentic train merlin love mission sorcer dragon aftercreditssting apprendista morgana nicolascag jaybaruchel monicabellucci jonturteltaub\",\n", " 104: \"a pack cruis ship travel the atlant is hit and overturn by a massiv wave, compel the passeng to begin a dramat fight for their lives. adventur action drama thriller newyear'sev fire drown cataclysm lossoffath atlanticocean ball self-abandon shipwreck giantwav blackout ship daughter singl escap capsizedship kurtrussel richarddreyfuss joshluca wolfgangpetersen\",\n", " 105: 'in the sequel to tim burton\\' \"alic in wonderland\", alic kingsleigh return to underland and face a new adventur in save the mad hatter. fantasi basedonnovel clock queen sequel aliceinwonderland darkfantasi madhatt 3d johnnydepp miawasikowska annehathaway jamesbobin',\n", " 106: \"the king of far far away ha die and shrek and fiona are to becom king & queen. however, shrek want to return to hi cozi swamp and live in peac and quiet, so when he find out there is anoth heir to the throne, they set off to bring him back to rule the kingdom. fantasi adventur anim comedi famili ambush sad stage liberationofprison island traitor shipwreck princ ship donkey kingdom theatreplay transform concili trick heirtothethron assault boardingschool coupd'etat teacher bestfriend dragon cowardli pregnanc captur duringcreditssting mikemy eddiemurphi camerondiaz chrismil\",\n", " 107: 'the peac realm of azeroth stand on the brink of war as it civil face a fearsom race of invaders: orc warrior flee their die home to colon another. as a portal open to connect the two worlds, one armi face destruct and the other face extinction. from oppos sides, two hero are set on a collis cours that will decid the fate of their family, their people, and their home. action adventur fantasi videogam elv orc magic chase basedoncomicbook sorcer fictionalwar basedonvideogam wizard fictionallanguag muscl orc swordandsorceri paulapatton travisfimmel benfost duncanjon',\n", " 108: \"the year is 2029. john connor, leader of the resist continu the war against the machines. at the lo angel offensive, john' fear of the unknown futur begin to emerg when tecom spi reveal a new plot by skynet that will attack him from both fronts; past and future, and will ultim chang warfar forever. sciencefict action thriller adventur savingtheworld artificialintellig cyborg killerrobot futur timetravel dystopia sequel fiction duringcreditssting 3d arnoldschwarzenegg jasonclark emiliaclark alantaylor\",\n", " 109: 'thi time around edmund and luci pevensie, along with their peski cousin eustac scrubb find themselv swallow into a paint and on to a fantast narnian ship head for the veri edg of the world. adventur famili fantasi basedonnovel magic goodvsevil king narnia fantasyworld knifeheldtothroat snow quest skandarkeyn georgiehenley simonpegg michaelapt',\n", " 110: \"the lifelong friendship between rafe mccawley and danni walker is put to the ultim test when the two ace fighter pilot becom entangl in a love triangl with beauti naval nurs evelyn johnson. but the rivalri between the friends-turned-fo is immedi put on hold when they find themselv at the center of japan' devast attack on pearl harbor on dec. 7, 1941. histori romanc war nurs patriot hawaii worldwarii pilot pearlharbor u.s.airforc airplan war armi love pin-up benaffleck joshhartnett katebeckinsal michaelbay\",\n", " 111: 'young teenager, sam witwicki becom involv in the ancient struggl between two extraterrestri faction of transform robot – the heroic autobot and the evil decepticons. sam hold the clue to unimagin power and the decepticon will stop at noth to retriev it. adventur sciencefict action destroy transform alien basedontoy transform robot duringcreditssting teenagehero shialabeouf joshduhamel meganfox michaelbay',\n", " 112: 'alexander, the king of macedonia, lead hi legion against the giant persian empire. after defeat the persians, he lead hi armi across the then known world, ventur farther than ani western had ever gone, all the way to india. war histori action adventur drama romanc aristotl egypt greec persia eleph campaign alexanderthegreat homosexu gayrelationship ancientworld colinfarrel angelinajoli valkilm oliverston',\n", " 113: \"return for hi fifth year of studi at hogwarts, harri is stun to find that hi warn about the return of lord voldemort have been ignored. left with no choice, harri take matter into hi own hands, train a small group of student – dub 'dumbledore' army' – to defend themselv against the dark arts. adventur fantasi famili mysteri propheci witch lossoflov magic cuttingthecord childhero dyinganddeath broom sorcerer'sapprentic schoolofwitchcraft blackmag deathofafriend sorceri occult danielradcliff rupertgrint emmawatson davidy\",\n", " 114: \"harri start hi fourth year at hogwarts, compet in the treacher triwizard tournament and face the evil lord voldemort. ron and hermion help harri manag the pressur – but voldemort lurks, await hi chanc to destroy harri and all that he stand for. adventur fantasi famili magic dyinganddeath broom sorcerer'sapprentic schoolofwitchcraft chosenon blackmag boardingschool vision tournament teenag wizard teenagehero basedonyoungadultnovel danielradcliff rupertgrint emmawatson mikenewel\",\n", " 115: \"hancock is a down-and-out superhero who' forc to employ a pr expert to help repair hi imag when the public grow weari of all the damag he' inflict dure hi lifesav heroics. the agent' idea of imprison the antihero to make the world miss him prove successful, but will hancock stick to hi new sens of purpos or slip back into old habits? fantasi action fli alcohol loveofone'slif forbiddenlov lover affect advertisingexpert alcohol invulner superhero poki duringcreditssting willsmith charlizetheron jasonbateman peterberg\",\n", " 116: 'robert nevil is a scientist who wa unabl to stop the spread of the terribl viru that wa incur and man-made. immune, nevil is now the last human survivor in what is left of new york citi and perhap the world. for three years, nevil ha faith sent out daili radio messages, desper to find ani other survivor who might be out there. but he is not alone. drama horror action thriller sciencefict savingtheworld lostcivilis post-apocalypt dystopia matteroflifeanddeath alon helpless viru pandem willsmith alicebraga charlietahan francislawr',\n", " 117: \"a young boy win a tour through the most magnific chocol factori in the world, led by the world' most unusu candi maker. adventur comedi famili fantasi londonengland fathersonrelationship chocol factorywork basedonnovel parentskidsrelationship candi overweightchild grandfathergrandsonrelationship teacher johnnydepp freddiehighmor davidkelli timburton\",\n", " 118: \"a rat name remi dream of becom a great french chef despit hi family' wish and the obviou problem of be a rat in a decidedli rodent-phob profession. when fate place remi in the sewer of paris, he find himself ideal situat beneath a restaur made famou by hi culinari hero, august gusteau. despit the appar danger of be an unlik - and certainli unwant - visitor in the kitchen of a fine french restaurant, remy' passion for cook soon set into motion a hilari and excit rat race that turn the culinari world of pari upsid down. anim comedi famili fantasi pari brotherbrotherrelationship expensiverestaur river cook mous confid roof window leavingone'sfamili work restaurantcrit kitchen spice court cookbook famili chef rat pattonoswalt ianholm louromano janpinkava\",\n", " 119: 'driven by tragedy, billionair bruce wayn dedic hi life to uncov and defeat the corrupt that plagu hi home, gotham city. unabl to work within the system, he instead creat a new identity, a symbol of fear for the crimin underworld - the batman. action crime drama himalaya martialart dccomic crimefight secretident undercov hero lossoffath societi gothamc vigilant superhero basedoncomicbook rivalri tragichero ninja goodvsevil crime superpow hauntedbythepast evildoctor escapad mastervillain fightingcrim unfulfil loveandrom unfulfilledlov christianbal michaelcain liamneeson christophernolan',\n", " 120: 'alex, marty, melman, gloria, king julien, maurice, the penguin and the chimp are back and still maroon on madagascar. in the face of thi obstacle, the new yorker have hatch a plan so crazi it just might work. with militari precision, the penguin have repair an old crash plane... sort of. famili anim africa jealousi danc hunger lion zoo hippopotamu chimp penguin volcano madagascar airplan zebra sequel shark imax duringcreditssting benstil jadapinkettsmith davidschwimm ericdarnel',\n", " 121: \"hapless museum night watchman larri daley must help hi living, breath exhibit friend out of a pickl now that they'v been transfer to the archiv at the smithsonian institution. larry' (mis)adventur thi time includ close encount with amelia earhart, abe lincoln and ivan the terrible. adventur fantasi action comedi famili museum theodoreroosevelt duringcreditssting ameliaearhart smithsonian benstil amyadam owenwilson shawnlevi\",\n", " 122: 'after seek to live a normal life, logan set out to aveng the death of hi girlfriend by undergo the mutant weapon x program and becom wolverine. adventur action thriller sciencefict corrupt mutant boxer armi marvelcom superhero aftercreditssting duringcreditssting hughjackman lievschreib dannyhuston gavinhood',\n", " 123: 'the human citi of zion defend itself against the massiv invas of the machin as neo fight to end the war at anoth front while also oppos the rogu agent smith. adventur action thriller sciencefict savingtheworld artificialintellig manvsmachin fli philosophi fortunetel kungfu undergroundworld killerrobot templ subway dream sun hero fight sunlight computerviru key futur precognit supercomput machinetown yingyang dyinganddeath virtualr dystopia comput faith worldreligion truth rescu mission cyberpunk womandirector yinyang gnostic keanureev laurencefishburn carrie-annemoss lillywachowski',\n", " 124: \"young princess anna of arendel dream about find true love at her sister elsa’ coronation. fate take her on a danger journey in an attempt to end the etern winter that ha fallen over the kingdom. she' accompani by ice deliveri man kristoff, hi reindeer sven, and snowman olaf. on an adventur where she will find out what friendship, courage, family, and true love realli means. anim adventur famili queen music princess betray snowman anim reindeer curs snow troll mountainclimb aftercreditssting womandirector 3d kristenbel idinamenzel jonathangroff chrisbuck\",\n", " 125: \"six month after the event depict in the matrix, neo ha prove to be a good omen for the free humans, as more and more human are be freed from the matrix and brought to zion, the one and onli stronghold of the resistance. neo himself ha discov hi superpow includ super speed, abil to see the code of the thing insid the matrix and a certain degre of pre-cognition. but a nasti piec of news hit the human resistance: 250,000 machin sentinel are dig to zion and would reach them in 72 hours. as zion prepar for the ultim war, neo, morpheu and triniti are advis by the oracl to find the keymak who would help them reach the source. meanwhil neo' recurr dream depict trinity' death have got him worri and as if it wa not enough, agent smith ha somehow escap deletion, ha becom more power than befor and ha fix neo as hi next target. adventur action thriller sciencefict savingtheworld artificialintellig manvsmachin martialart kungfu undergroundworld dream hero fight computerviru key futur plato precognit rave dyinganddeath virtualr dystopia comput faith worldreligion truth mission cyberpunk womandirector gnostic keanureev carrie-annemoss laurencefishburn lillywachowski\",\n", " 126: 'thor fight to restor order across the cosmos… but an ancient race led by the veng malekith return to plung the univers back into darkness. face with an enemi that even odin and asgard cannot withstand, thor must embark on hi most peril and person journey yet, one that will reunit him with jane foster and forc him to sacrific everyth to save us all. action adventur fantasi marvelcom superhero basedoncomicbook hostiletakeov norsemytholog aftercreditssting duringcreditssting marvelcinematicunivers 3d asgard chrishemsworth natalieportman tomhiddleston alantaylor',\n", " 127: \"an apocalypt stori set in the furthest reach of our planet, in a stark desert landscap where human is broken, and most everyon is craze fight for the necess of life. within thi world exist two rebel on the run who just might be abl to restor order. there' max, a man of action and a man of few words, who seek peac of mind follow the loss of hi wife and child in the aftermath of the chaos. and furiosa, a woman of action and a woman who believ her path to surviv may be achiev if she can make it across the desert back to her childhood homeland. action adventur sciencefict thriller futur chase post-apocalypt dystopia australia rescu surviv ontherun convoy peakoil darkfutur tomhardi charlizetheron nicholashoult georgemil\",\n", " 128: 'harvard symbologist robert langdon investig a mysteri symbol sear into the chest of a murder physicist. he discov evid of the unimaginable, the rebirth of an ancient secret brotherhood known as the illuminati, the most power underground organ ever to walk the earth. thriller mysteri rome vatican basedonnovel symbol christian illuminati quantummechan prequel antimatt conspiraci investig catholic cern tomhank ewanmcgregor ayeletzur ronhoward',\n", " 129: \"against hi father odin' will, the mighti thor - a power but arrog warrior god - recklessli reignit an ancient war. thor is cast down to earth and forc to live among human as punishment. onc here, thor learn what it take to be a true hero when the most danger villain of hi world send the darkest forc of asgard to invad earth. adventur fantasi action newmexico banish shield marvelcom hammer superhero basedoncomicbook redempt norsemytholog aftercreditssting marvelcinematicunivers 3d asgard odin heimdal chrishemsworth natalieportman tomhiddleston kennethbranagh\",\n", " 130: 'bolt is the star of the biggest show in hollywood. the onli problem is, he think it\\' real. after he\\' accident ship to new york citi and separ from penny, hi belov co-star and owner, bolt must har all hi \"super powers\" to find a way home. anim famili adventur comedi hamster kidsandfamili anim catvsdog duringcreditssting dogcatfriendship animallead girldogrelationship johntravolta mileycyru susieessman chriswilliam',\n", " 131: 'a team of train secret agent animals, guinea pig darwin, juarez, blaster, mole speckles, and fli mooch take on a mission for the us govern to stop evil leonard saber, who plan to destroy the world with household appliances. but the govern shut them down and they are sentenc to a pet shop. can they escap to defeat the villain and save the world? fantasi action adventur famili comedi dyr duringcreditssting samrockwel penélopecruz tracymorgan hoytyeatman',\n", " 132: \"a decad after hi heroic defeat of the monstrou kraken, perseus-th demigod son of zeus-i attempt to live a quieter life as a villag fisherman and the sole parent to hi 10-year old son, helius. meanwhile, a struggl for supremaci rage between the god and the titans. danger weaken by humanity' lack of devotion, the god are lose control of the imprison titan and their feroci leader, kronos, father of the long-rul brother zeus, hade and poseidon. adventur underworld hade mytholog greekmytholog zeu perseu god ancientgreec basedongreekmyth are 3d samworthington liamneeson ralphfienn jonathanliebesman\",\n", " 133: 'vampir barnaba collin is inadvert freed from hi tomb and emerg into the veri chang world of 1972. he return to collinwood manor to find that hi once-grand estat and famili have fallen into ruin. comedi fantasi witch imprison vampir curs fishoutofwat chain gothic mad oldhous lostlov angrymob 18thcenturi ghost hiddenroom oldmans johnnydepp michellepfeiff helenabonhamcart timburton',\n", " 134: 'ethan and team take on their most imposs mission yet, erad the syndic - an intern rogu organ as highli skill as they are, commit to destroy the imf. action adventur thriller londonengland spi austria villain sequel mission conspiraci viennaopera vienna tomcruis rebeccaferguson simonpegg christophermcquarri',\n", " 135: 'lawrenc talbot, an american man on a visit to victorian london to make amend with hi estrang father, get bitten by a werewolf and, after a moonlight transformation, leav him with a savag hunger for flesh. drama horror thriller fathersonrelationship victorianengland remak ruralset werewolf beniciodeltoro anthonyhopkin emilyblunt joejohnston',\n", " 136: \"barri b. benson, a bee who ha just graduat from college, is disillus at hi lone career choice: make honey. on a special trip outsid the hive, barry' life is save by vanessa, a florist in new york city. as their relationship blossoms, he discov human actual eat honey, and subsequ decid to sue us. famili anim adventur comedi factorywork tenni flower florist flowershop pilot colleg airplan beehiv court aftercreditssting jerryseinfeld renéezellweg jimcum stevehickn\",\n", " 137: 'po is now live hi dream as the dragon warrior, protect the valley of peac alongsid hi friend and fellow kung fu masters, the furiou five - tigress, crane, mantis, viper and monkey. but po’ new life of awesom is threaten by the emerg of a formid villain, who plan to use a secret, unstopp weapon to conquer china and destroy kung fu. it is up to po and the furiou five to journey across china to face thi threat and vanquish it. but how can po stop a weapon that can stop kung fu? he must look to hi past and uncov the secret of hi mysteri origins; onli then will he be abl to unlock the strength he need to succeed. anim famili martialart hope fleet panda mission womandirector jackblack angelinajoli dustinhoffman jenniferyuhnelson',\n", " 138: 'the stori follow the adventur of aang, a young successor to a long line of avatars, who must put hi childhood way asid and stop the fire nation from enslav the water, earth and air nations. action adventur famili fantasi fire ice warship princ kingdom water villag arrest remak attack avatar air spirit world domin cheer noahring nicolapeltz jacksonrathbon m.nightshyamalan',\n", " 139: 'retir from activ duti to train new imf agents, ethan hunt is call back into action to confront sadist arm dealer, owen davian. hunt must tri to protect hi girlfriend while work with hi new team to complet the mission. adventur action thriller berlin cia vatican whitehous secretident secret explos mobilephon map traitor mask honeymoon shanghai pretendedmurd secretmiss letter funer coveredinvestig toshootdead secretag video stamp harddriv e-mail decipher suitcas comput reveng murder mission hospit duel disguis celebr goodandbad researchlaboratori blast tomcruis philipseymourhoffman vingrham j.j.abram',\n", " 140: \"capitol policeman john cale ha just been deni hi dream job with the secret servic of protect presid jame sawyer. not want to let down hi littl girl with the news, he take her on a tour of the white house, when the complex is overtaken by a heavili arm paramilitari group. now, with the nation' govern fall into chao and time run out, it' up to cale to save the president, hi daughter, and the country. action drama thriller usapresid conspiraci secretservic thewhitehous channingtatum jamiefoxx joeyk rolandemmerich\",\n", " 141: \"when martian suddenli abduct hi mom, mischiev milo rush to the rescu and discov whi all mom are so special. adventur anim famili boy alien rescu martian alienabduct alieninvas basedonchildren'sbook duringcreditssting sethgreen joancusack danfogl simonwel\",\n", " 142: 'london high-societi mouse, roddi is flush down the toilet by sid, a common sewer rat. hang on for a madcap adventur deep in the sewer bowel of ratropolis, where roddi meet the resourc rita, the rodent-h toad and hi faith thugs, spike and whitey. adventur anim comedi famili londonengland underworld return ship frog girlfriend rubin hughjackman katewinslet ianmckellen davidbow',\n", " 143: 'live a bleak exist at a london orphanage, 12-year-old peter find himself whisk away to the fantast world of neverland. adventur await as he meet new friend jame hook and the warrior tiger lily. they must band togeth to save neverland from the ruthless pirat blackbeard. along the way, the rebelli and mischiev boy discov hi true destiny, becom the hero forev known as peter pan. adventur famili fantasi fli magic fairytal peterpan mermaid pirat fantasyworld levimil garretthedlund hughjackman joewright',\n", " 144: 'a young boy and hi dog, who happen to have a genius-level iq, spring into action when their time-travel machin is stolen and moment in histori begin to be changed. anim adventur famili fathersonrelationship egypt intellig adopt timetravel boy childprodigi friendship growingup children talkinganim talkingdog dog firstlov ancientegypt timetravel duringcreditssting newschool georgewashington gag troubl timeparadox prodigi tyburrel maxcharl arielwint robminkoff',\n", " 145: \"in year 1250 b.c. dure the late bronz age, two emerg nation begin to clash. paris, the trojan prince, convinc helen, queen of sparta, to leav her husband menelaus, and sail with him back to troy. after menelau find out that hi wife wa taken by the trojans, he ask hi brother agamemnom to help him get her back. agamemnon see thi as an opportun for power. so they set off with 1,000 ship hold 50,000 greek to troy. with the help of achilles, the greek are abl to fight the never befor defeat trojans. adventur drama war brotherbrotherrelationship adulteri mytholog beauti trojanwar braveri wall fraud hostil epic swordfight battlefield ancientworld pyre ancientgreec trojanhors trojan bronzeag spartagreec helenoftroy homer'siliad bradpitt orlandobloom ericbana wolfgangpetersen\",\n", " 146: 'alex, marty, gloria and melman are still tri to get back to the big appl and their belov central park zoo, but first they need to find the penguins. when they travel to mont carlo, they attract the attent of anim control after gate crash a parti and are join by the penguins, king julian and co., and the monkeys. how do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemur travel through europ without attract attent and get back to new york? they join a travel circus. their attempt to get back to new york are consist hamper by the captain of anim control who want to make alex part of her collection. onc they make it back to new york marty, alex, gloria and melman realiz that they want to be part of the travel circus. anim famili madagascar 3d benstil sachabaroncohen davidschwimm conradvernon',\n", " 147: \"bond take on a north korean leader who undergo dna replac procedur that allow him to assum differ identities. american agent, jinx johnson assist bond in hi attempt to thwart the villain' plan to exploit a satellit that is power by solar energy. adventur action thriller laser britishsecretservic secretserviceag spacebasedweapon piercebrosnan halleberri rosamundpik leetamahori\",\n", " 148: 'follow a ghost invas of manhattan, paranorm enthusiast erin gilbert and abbi yates, nuclear engin jillian holtzmann, and subway worker patti tolan band togeth to stop the otherworldli threat. action fantasi comedi femalefriendship ghosthunt reboot ghost melissamccarthi kristenwiig katemckinnon paulfeig',\n", " 149: \"when an asteroid threaten to collid with earth, nasa honcho dan truman determin the onli way to stop it is to drill into it surfac and deton a nuclear bomb. thi lead him to renown driller harri stamper, who agre to helm the danger space mission provid he can bring along hi own hotshot crew. among them is the cocksur a.j. who harri think isn't good enough for hi daughter, until the mission prove otherwise. action thriller sciencefict adventur savingtheworld pari moon cataclysm asteroid selfsacrific nasa spacemarin lossoffath daughter space wed astronaut eiffeltowerpari duringcreditssting disastermovi spacecentr brucewilli billybobthornton benaffleck michaelbay\",\n", " 150: \"kay and jay reunit to provid our best, last and onli line of defens against a sinist seductress who level the toughest challeng yet to the mib' untarnish mission statement – protect earth from the scum of the universe. it' been four year sinc the alien-seek agent avert an intergalact disast of epic proportions. now it' a race against the clock as jay must convinc kay – who not onli ha absolut no memori of hi time spent with the mib, but is also the onli live person left with the expertis to save the galaxi – to reunit with the mib befor the earth submit to ultim destruction. action adventur comedi sciencefict savingtheworld secretident sunglass undercov spacemarin illegalimmigr deport newident flyingsauc light firearm alien fictionalgovernmentag tommyleejon willsmith riptorn barrysonnenfeld\",\n", " 151: '6th-centuri scandinavian warrior, beowulf embark on a mission to slay the manlik ogr grendel, a descend of cain. adventur action anim denmark nordicmytholog lie prideandvan folkhero humanweak vike alien festivalhal sin royalti curs battl ancientworld adultanim motioncaptur raywinston angelinajoli anthonyhopkin robertzemecki',\n", " 152: 'continu hi \"legendari adventur of awesomeness\", po must face two huge epic, but differ threats: one supernatur and the other a littl closer to hi home. action adventur anim comedi famili china martialart kungfu villag panda sequel talkinganim anthropomorph dragon ancientchina wuxia womandirector jackblack bryancranston dustinhoffman jenniferyuhnelson',\n", " 153: 'in the 4th instal of the mission imposs series, ethan hunt (cruise) and hi team are race against time to track down a danger terrorist name hendrick (nyqvist), who ha gain access to russian nuclear launch code and is plan a strike on the unit states. an attempt to stop him end in an explos caus sever destruct to the kremlin and the imf to be implic in the bombing, forc the presid to disavow them. no longer be aid by the government, ethan and hi team chase hendrick around the globe, although they might still be too late to stop a disaster. action thriller adventur fight sequel mission explos brokenarm imax nuclearthreat tomcruis jeremyrenn simonpegg bradbird',\n", " 154: 'when an evil spirit known as pitch lay down the gauntlet to take over the world, the immort guardian must join forc for the first time to protect the hopes, belief and imagin of children all over the world. fantasi anim famili dream santaclau nightmar easterbunni toothfairi jackfrost sandman duringcreditssting chrispin alecbaldwin judelaw peterramsey',\n", " 155: \"after dick harper lose hi job at globodyn in an enron-esqu collapse, he and hi wife, jane, turn to crime in order to handl the massiv debt they now face. two intellig people, dick and jane actual get pretti good at rob peopl and even enjoy it -- but they have second thought when they'r remind that crime can hurt innoc people. when the coupl hear that globodyn boss jack mccallist actual swindl the company, they plot revenge. comedi basedonnovel desper robber hold-uprobberi remak suburbia lossofjob humili unemploy bankruptci travelag richestorag bearerbond comeupp jimcarrey téaleoni alecbaldwin deanparisot\",\n", " 156: \"nathan algren is an american hire to instruct the japanes armi in the way of modern warfare, which find him learn to respect the samurai and the honor principl that rule them. press to destroy the samurai' way of life in the name of modern and open trade, algren decid to becom an ultim warrior himself and to fight for their right to exist. drama action war histori japan warcrim senseofguilt swordplay gener samurai warveteran katana sword armsdeal homeland emperor languagebarri self-discoveri mountainvillag foreignlegion mercenari campaign commercialagr insurg leader warstrategi gettysburg lossofhusband slaughter soldier alcohol u.s.soldi japanesearmi 19thcenturi wartrauma tomcruis kenwatanab williamatherton edwardzwick\",\n", " 157: 'the defiant leader mose rise up against the egyptian pharaoh ramses, set 400,000 slave on a monument journey of escap from egypt and it terrifi cycl of deadli plagues. adventur drama action mose bibl ancientegypt 3d rams christianbal joeledgerton johnturturro ridleyscott',\n", " 158: 'the fate of the galaxi rest in the hand of bitter rivals. one, jame kirk, is a delinquent, thrill-seek iowa farm boy. the other, spock, a vulcan, wa rais in a logic-bas societi that reject all emotion. as fieri instinct clash with calm reason, their unlik but power partnership is the onli thing capabl of lead their crew through unimagin danger, boldli go where no one ha gone before. the human adventur ha begun again. sciencefict action adventur spacecraft teleport spacemiss parachut timetravel blackhol supernova prequel warpspe futurist warpengin romulan outerspac vulcan alternater spaceopera reboot chrispin zacharyquinto leonardnimoy j.j.abram',\n", " 159: 'after be bitten by a genet alter spider, nerdi high school student peter parker is endow with amaz powers. fantasi action lossoflov spider thanksgiv badboss hostil marvelcom superhero poki evil referencetosuperman goblin tobeymaguir willemdafo kirstendunst samraimi',\n", " 160: \"the thrill second chapter of the epic how to train your dragon trilog bring back the fantast world of hiccup and toothless five year later. while astrid, snotlout and the rest of the gang are challeng each other to dragon race (the island' new favorit contact sport), the now insepar pair journey through the skies, chart unmap territori and explor new worlds. when one of their adventur lead to the discoveri of a secret ice cave that is home to hundr of new wild dragon and the mysteri dragon rider, the two friend find themselv at the center of a battl to protect the peace. fantasi action adventur anim comedi famili fathersonrelationship wifehusbandrelationship sacrific vike sequel rescu dragon mothersonrelationship deathofhusband warrior 3d jaybaruchel gerardbutl kristenwiig deandebloi\",\n", " 161: 'a common thief join a mythic god on a quest through egypt. fantasi egypt underworld fight mytholog nile war thief rescu desert god egyptianmytholog egyptian myth brentonthwait nikolajcoster-waldau gerardbutl alexproya',\n", " 162: 'deepli ensconc in a top-secret militari program, three pilot struggl to bring an artifici intellig program under control ... befor it initi the next world war. action artificialintellig u.s.navi aftercreditssting joshluca jessicabiel jamiefoxx robcohen',\n", " 163: 'in a gritti and altern 1985 the glori day of costum vigilant have been brought to a close by a govern crackdown, but after one of the mask veteran is brutal murder an investig into the killer is initiated. the reunit hero set out to prevent their own destruction, but in do so uncov a sinist plot that put all of human in grave danger. action mysteri sciencefict dccomic secretident massmurd retir basedoncomicbook conspiraci nuclearwar doomsday soviet maskedvigilant doomsdayclock redsquar deathofsuperhero americanpresid 1980 malinåkerman billycrudup carlagugino zacksnyd',\n", " 164: \"in the combust action franchise' final installment, maverick detect martin rigg and roger murtaugh squar off against asian mobster wah sing ku, who' up to hi neck in slave trade and counterfeit currency. with help from gumsho leo getz and smart-aleck rooki cop lee butters, rigg and murtaugh aim to take down ku and hi gang. action adventur comedi crime thriller lapd houseonfir revolv melgibson dannyglov joepesci richarddonn\",\n", " 165: 'bruce banner, a genet research with a tragic past, suffer massiv radiat exposur in hi laboratori that caus him to transform into a rage green monster when he get angry. drama action sciencefict california sanfrancisco monster gener gun dna mutat psycholog berkeley transform frog presid marvelcom superhero goldengatebridg doctor fear scientist dog desert anger mirror phone militari cell hulk superhumanstrength repressedmemori repress ericbana jenniferconnelli samelliott angle',\n", " 166: 'frame for crime against the country, the g.i. joe team is termin by presidenti order. thi forc the g.i. joe into not onli fight their mortal enemi cobra; they are forc to contend with threat from within the govern that jeopard their veri existence. adventur action sciencefict thriller terror assassin secret technolog missil warhead presid rescu conspiraci explos battl surveil cobra dwaynejohnson d.j.cotrona adriannepalicki jonm.chu',\n", " 167: 'scour the ocean depth for treasure-laden shipwreck is busi as usual for a thrill-seek underwat adventur and hi wisecrack buddy. but when these two cross path with a beauti doctor, they find themselv on the ultim treasur hunt. action adventur comedi drama mysteri tyrant ironcladship matthewmcconaughey penélopecruz stevezahn breckeisn',\n", " 168: 'led by a strang dream, scientist aki ross struggl to collect the eight spirit in the hope of creat a forc power enough to protect the planet. with the aid of the deep eye squadron and her mentor, dr. sid, aki must save the earth from it darkest hate and unleash the spirit within. adventur action anim fantasi sciencefict thriller battleassign dystopia alien downfal scientist basedonvideogam donaldsutherland ming-nawen alecbaldwin hironobusakaguchi',\n", " 169: \"predominantli set dure world war ii, steve roger is a sickli man from brooklyn who' transform into super-soldi captain america to aid in the war effort. roger must stop the red skull – adolf hitler' ruthless head of weaponry, and the leader of an organ that intend to use a mysteri devic of untold power for world domination. action adventur sciencefict newyork usa worldwarii nazi marvelcom superhero basedoncomicbook nazigermani perioddrama brooklynnewyorkc captainamerica aftercreditssting marvelcinematicunivers 3d chrisevan hugoweav tommyleejon joejohnston\",\n", " 170: \"greed, revenge, world domin and high-tech terror – it' all in a day' work for bond, who' on a mission to a protect beauti oil heiress from a notori terrorist. in a race against time that culmin in a dramat submarin showdown, bond work to defus the intern power struggl that ha the world' oil suppli hang in the balance. adventur action thriller british mission oil heiress bilbaospain britishsecretservic piercebrosnan sophiemarceau robertcarlyl michaelapt\",\n", " 171: \"after an abrupt and violent encount with a french warship inflict sever damag upon hi ship, a captain of the british royal navi begin a chase over two ocean to captur or destroy the enemy, though he must weigh hi commit to duti and feroci pursuit of glori against the safeti of hi devot crew, includ the ship' thought surgeon, hi best friend. adventur naturalist frigat selfsurgeri seabattl weevil russellcrow paulbettani jamesd'arci peterweir\",\n", " 172: 'after the birth of renesmee, the cullen gather other vampir clan in order to protect the child from a fals alleg that put the famili in front of the volturi. adventur fantasi drama romanc vampir romanc villai superstrength imprint crossbre bloodsuck grudg vampirevsvampir chiefofpolic dhampir forkswashington wolfpack misinform seeingthefutur fangvamp kristenstewart robertpattinson taylorlautn billcondon',\n", " 173: 'mumbl the penguin ha a problem: hi son erik, who is reluct to dance, encount the mighti sven, a penguin who can fly! thing get wors for mumbl when the world is shaken by power forces, caus him to bring togeth the penguin nation and their alli to set thing right. anim comedi famili penguin music aftercreditssting 3d elijahwood robinwilliam pink georgemil',\n", " 174: 'scientist bruce banner scour the planet for an antidot to the unbridl forc of rage within him: the hulk. but when the militari mastermind who dream of exploit hi power forc him back to civilization, he find himself come face to face with a new, deadli foe. sciencefict action adventur newyork riodejaneiro marvelcom superhero basedoncomicbook ontherun fugit supersoldi tonystark virginia militari hulk marvelcinematicunivers angri brucebann edwardnorton livtyl timroth louisleterri',\n", " 175: \"the bfg is no ordinari bone-crunch giant. he is far too nice and jumbly. it' lucki for sophi that he is. had she been carri off in the middl of the night by the bloodbottler, or ani of the other giants—rath than the bfg—she would have soon becom breakfast. when sophi hear that the giant are flush-bunk off to england to swollomp a few nice littl chiddlers, she decid she must stop them onc and for all. and the bfg is go to help her! adventur famili fantasi londonengland england basedonnovel queen littlegirl orphan cannib giant evilbroth rubybarnhil markryl rebeccahal stevenspielberg\",\n", " 176: 'in the 1820s, a frontiersman, hugh glass, set out on a path of vengeanc against those who left him for dead after a bear mauling. western drama adventur thriller fathersonrelationship rape basedonnovel mountain winter grizzlybear wilder frontier reveng murder nativeamerican surviv bear snow violenc animaldeath bearattack deathofson basedontrueev furtrapp leonardodicaprio tomhardi willpoult alejandrogonzáleziñárritu',\n", " 177: 'the tale of an ordinari garden snail who dream of win the indi 500. anim famili underdog carrac dream speed power snail fast friend superpow racer ryanreynold paulgiamatti michaelpeña davidsoren',\n", " 178: 'when rango, a lost famili pet, accident wind up in the gritty, gun-sling town of dirt, the less-than-courag lizard suddenli find he stand out. welcom as the last hope the town ha been wait for, new sheriff rango is forc to play hi new role to the hilt. anim comedi famili western adventur sheriff nevada pet rango chameleon lasvega cactu terrarium constructionsit armadillo disillusion johnnydepp islafish nedbeatti goreverbinski',\n", " 179: 'skipper, kowalski, rico and privat join forc with undercov organ the north wind to stop the villain dr. octaviu brine from destroy the world as we know it. famili anim adventur comedi penguin madagascar 3d tommcgrath chrismil christopherknight ericdarnel',\n", " 180: \"bourn is brought out of hide onc again by report simon ross who is tri to unveil oper blackbriar, an upgrad to project treadstone, in a seri of newspap columns. inform from the report stir a new set of memories, and bourn must final uncov hi dark past while dodg the company' best effort to erad him. action drama mysteri thriller pari corrupt madrid assassin basedonnovel europ prosecut danger falseident revel govern weapon interpol sequel conspiraci shootout espionag motorcycl violenc footchas moskow darkpast langleyvirginia flashback chaseontheroof securityleak mattdamon juliastil davidstrathairn paulgreengrass\",\n", " 181: 'when the valley of peac is threatened, lazi po the panda discov hi destini as the \"chosen one\" and train to becom a kung fu hero, but transform the unsleek slacker into a brave warrior won\\'t be easy. it\\' up to master shifu and the furiou five -- tigress, crane, mantis, viper and monkey -- to give it a try. adventur anim famili comedi china martialart kungfu mentor snake restaur shop strongwoman braveri tiger turtl panda sensei anthropomorph fight ancientchina monkey master destini evil aftercreditssting monkeywarrior noodl jackblack dustinhoffman angelinajoli markosborn',\n", " 182: 'arm with the astonish abil to shrink in scale but increas in strength, master thief scott lang must embrac hi inner-hero and help hi mentor, doctor hank pym, protect the secret behind hi spectacular ant-man suit from a new gener of tower threats. against seemingli insurmount obstacles, pym and lang must plan and pull off a heist that will save the world. sciencefict action adventur marvelcom superhero basedoncomicbook aftercreditssting duringcreditssting marvelcinematicunivers 3d paulrudd michaeldougla evangelinelilli peytonre',\n", " 183: 'katniss everdeen ha return home safe after win the 74th annual hunger game along with fellow tribut peeta mellark. win mean that they must turn around and leav their famili and close friends, embark on a \"victor\\' tour\" of the districts. along the way katniss sens that a rebellion is simmering, but the capitol is still veri much in control as presid snow prepar the 75th annual hunger game (the quarter quell) - a competit that could chang panem forever. adventur action sciencefict competit basedonnovel mentor secret factori televis propaganda futur dystopia allianc game presid upris sequel murder surviv conspiraci rebellion blood femaleprotagonist tournament explos danger imax winner basedonyoungadultnovel jenniferlawr joshhutcherson liamhemsworth francislawr',\n", " 184: 'when earth is taken over by the overly-confid boov, an alien race in search of a new place to call home, all human are promptli relocated, while all boov get busi reorgan the planet. but when one resourc girl, tip, manag to avoid capture, she find herself the accident accomplic of a banish boov name oh. the two fugit realiz there’ a lot more at stake than intergalact relat as they embark on the road trip of a lifetime. fantasi comedi anim sciencefict famili friendship spaceship space alien alieninvas alienfriendship awfullead takingrespos jimparson rihanna stevemartin timjohnson',\n", " 185: 'ray ferrier is a divorc dockwork and less-than-perfect father. soon after hi ex-wif and her new husband drop of hi teenag son and young daughter for a rare weekend visit, a strang and power lightn storm touch down. adventur thriller sciencefict posttraumaticstressdisord newjersey airplan dystopia daughter apocalyps alieninvas humansubjug tomcruis dakotafan mirandaotto stevenspielberg',\n", " 186: 'out-of-control, trash-talk buddi cop marcu burnett and mike lowrey of the miami narcot task forc reunite, and bullet fly, car crash and laugh explod as they pursu a whacked-out drug lord from the street of miami to the barrio of cuba. but the real firework result when marcu discov that playboy mike is secretli romanc marcus’ sexi sister. adventur action comedi thriller crime miami kukluxklan cuba undercov mexicanstandoff ecstasi guantánamo slaughter shootout gunfight bromanc gangster violenc footchas interrog carchas druglord explodinghous narcoticscop illegaldrug deaagent buddycop criminalunderworld actionhero haitiangang minefield martinlawr willsmith jordimollà michaelbay',\n", " 187: 'long befor he even met shrek, the notori fighter, lover and outlaw puss in boot becom a hero when he set off on an adventur with the tough and street smart kitti softpaw and the mastermind humpti dumpti to save hi town. thi is the true stori of the cat, the myth, the legend... the boots. action adventur anim famili fantasi adventur fairy-talefigur antoniobandera salmahayek zachgalifianaki chrismil',\n", " 188: 'as a cia officer, evelyn salt swore an oath to duty, honor and country. her loyalti will be test when a defector accus her of be a russian spy. salt goe on the run, use all her skill and year of experi as a covert oper to elud capture. salt\\' effort to prove her innoc onli serv to cast doubt on her motives, as the hunt to uncov the truth behind her ident continu and the question remains: \"who is salt?\" action mysteri thriller assassin spi cia kidnap coldwar sovietunion doubleag raceagainsttim reveng ontherun shootout espionag femaleprotagonist hitwoman terror violenc russianspi intelligenceoffic actionheroin angelinajoli lievschreib chiwetelejiofor phillipnoyc',\n", " 189: 'a man who suffer vision of an apocalypt delug take measur to protect hi famili from the come flood. drama adventur bibl god noah 3d russellcrow jenniferconnelli emmawatson darrenaronofski',\n", " 190: 'intrepid young reporter, tintin and hi loyal dog, snowi are thrust into a world of high adventur when they discov a ship carri an explos secret. as tintin is drawn into a centuries-old mystery, ivan ivanovitch sakharin suspect him of steal a priceless treasure. tintin and snowy, with the help of salty, cantanker captain haddock and bumbl detectives, thompson & thomson, travel half the world, one step ahead of their enemi as tintin endeavor to find the unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse. adventur anim mysteri riddl captain treasur liquor treasurehunt sunkentreasur plot report 3d action jamiebel andyserki danielcraig stevenspielberg',\n", " 191: \"harry, ron and hermion return to hogwart for anoth magic-fil year. harri come face to face with danger yet again, thi time in the form of escap convict, siriu black – and turn to sympathet professor lupin for help. adventur fantasi famili fli traitor magic cuttingthecord childhero broom sorcerer'sapprentic schoolofwitchcraft griffon blackmag timetravel bestfriend werewolf dark muggl aftercreditssting danielradcliff rupertgrint emmawatson alfonsocuarón\",\n", " 192: 'set in northern australia befor world war ii, an english aristocrat who inherit a sprawl ranch reluctantli pact with a stock-man in order to protect her new properti from a takeov plot. as the pair drive 2,000 head of cattl over unforgiv landscape, they experi the bomb of darwin, australia, by japanes forc firsthand. drama missionari worldwarii ranch australia british racist cattledr aftercreditssting stamped waltzingmatilda trampledtodeath nicolekidman hughjackman essiedavi bazluhrmann',\n", " 193: \"one thousand year after cataclysm event forc humanity' escap from earth, nova prime ha becom mankind' new home. legendari gener cypher raig return from an extend tour of duti to hi estrang family, readi to be a father to hi 13-year-old son, kitai. when an asteroid storm damag cypher and kitai' craft, they crash-land on a now unfamiliar and danger earth. as hi father lie die in the cockpit, kitai must trek across the hostil terrain to recov their rescu beacon. hi whole life, kitai ha want noth more than to be a soldier like hi father. today, he get hi chance. sciencefict action adventur dystopia jadensmith willsmith sophieokonedo m.nightshyamalan\",\n", " 194: 'an orphan dinosaur rais by lemur join an arduou trek to a sancturari after a meteorit shower destroy hi famili home. anim famili cataclysm asteroid leader comet anim prehistor prehistoricegg dinosaur nestingground prehistoriccreatur prehistoricadventur lemur prehistorictim d.b.sweeney alfrewoodard ossiedavi ralphzondag',\n", " 195: 'when the magic power of the tablet of ahkmenrah begin to die out, larri daley (ben stiller) span the globe, unit favorit and new charact while embark on an epic quest to save the magic befor it is gone forever. adventur comedi fantasi famili nightwatchman museum naturalhistori histori smithsonian benstil ramimalek rebelwilson shawnlevi',\n", " 196: 'bumbl supervillain megamind final defeat hi nemesis, the superhero metro man. but without a hero, he lose all purpos and must find new mean to hi life. anim action comedi famili sciencefict savingtheworld date prison secretident fish gun dna mayor antihero rain museum one-sidedlov serum talkinganim report duringcreditssting strongervillain willferrel bradpitt tinafey tommcgrath',\n", " 197: \"harri potter ha live under the stair at hi aunt and uncle' hous hi whole life. but on hi 11th birthday, he learn he' a power wizard -- with a place wait for him at the hogwart school of witchcraft and wizardry. as he learn to har hi newfound power with the help of the school' kindli headmaster, harri uncov the truth about hi parents' death -- and about the villain who' to blame. adventur fantasi famili witch christmasparti magic cuttingthecord halloween childhero broom chosenon frog fantasyworld basedonyoungadultnovel danielradcliff rupertgrint emmawatson chriscolumbu\",\n", " 198: 'a recent slain cop join a team of undead polic offic work for the rest in peac depart and tri to find the man who murder him. base on the comic by peter m. lenkov. fantasi action comedi crime gold policeoper partner reveng undead ghost policedepart jeffbridg ryanreynold kevinbacon robertschwentk',\n", " 199: \"jack sparrow, a freewheel 17th-centuri pirat who roam the caribbean sea, butt head with a rival pirat bent on pillag the villag of port royal. when the governor' daughter is kidnapped, sparrow decid to help the girl' love save her. but their seafar mission is hardli simple. adventur fantasi action exoticisland blacksmith eastindiatradingcompani gold marriagepropos mutini jamaica skeleton daughter governor woodeney goldcoin pirat alcohol swashbuckl caribbean aftercreditssting pirateship capuchinmonkey tortuga johnnydepp geoffreyrush orlandobloom goreverbinski\",\n", " 200: 'katniss everdeen reluctantli becom the symbol of a mass rebellion against the autocrat capitol. sciencefict adventur thriller resist post-apocalypt dystopia war sequel femaleprotagonist bowandarrow game futurewar revolt classprejudic humansubjug basedonyoungadultnovel jenniferlawr joshhutcherson liamhemsworth francislawr',\n", " 201: \"when the curat of the louvr is found murder in the fame museum' hallow halls, harvard professor, robert langdon and cryptographer, sophi neve must untangl a deadli web of deceit involv the work of leonardo da vinci. thriller mysteri pari holygrail christian monk basedonnovel zurich secretsocieti louvr curat symbologist opusdei heresi monalisa freemason conspiraci pentagram tomb catholic cryptologist iconographi albino sect tomhank audreytaut ianmckellen ronhoward\",\n", " 202: \"it' a jungl out there for blu, jewel and their three kid after they'r hurtl from rio de janeiro to the wild of the amazon. as blu tri to fit in, he goe beak-to-beak with the veng nigel, and meet the most fearsom adversari of all: hi father-in-law. anim adventur comedi famili bird sequel jungl audit amazonrainforest parrot jesseeisenberg annehathaway lesliemann carlossaldanha\",\n", " 203: \"professor charl xavier and hi team of genet gift superhero face a rise tide of anti-mut sentiment led by col. william stryker. storm, wolverin and jean grey must join their usual nemes – magneto and mystiqu – to unhing stryker' scheme to extermin all mutants. adventur action sciencefict thriller mutant marvelcom superhero basedoncomicbook superhuman patrickstewart hughjackman ianmckellen bryansing\",\n", " 204: \"former cop brian o'conn partner with ex-con dom toretto on the opposit side of the law. sinc brian and mia toretto broke dom out of custody, they'v blown across mani border to elud authorities. now back into a corner in rio de janeiro, they must pull one last job in order to gain their freedom. action thriller crime brazil fbi freedom escapefromprison carcrash heist organizedcrim ontherun money fugit policechas escapedconvict car imax automobilerac duringcreditssting vindiesel paulwalk jordanabrewst justinlin\",\n", " 205: 'there is a new crimin mastermind at larg (professor moriarty) and not onli is he holmes’ intellectu equal, but hi capac for evil and lack of conscienc may give him an advantag over the detective. adventur action crime mysteri detectiveinspector steampunk criminalmastermind robertdowneyjr. judelaw jaredharri guyritchi',\n", " 206: 'born of a god but rais as a man, perseu is helpless to save hi famili from hades, veng god of the underworld. with noth to lose, perseu volunt to lead a danger mission to defeat hade befor he can seiz power from zeu and unleash hell on earth. battl unholi demon and fearsom beasts, perseu and hi warrior will onli surviv if perseu accept hi power as a god, defi fate and creat hi own destiny. adventur fantasi action hade mytholog greekmytholog zeu medusa mythologicalbeast seamonst perseu kraken god ancientgreec basedongreekmyth 3d samworthington liamneeson ralphfienn louisleterri',\n", " 207: \"construct worker dougla quaid discov a memori chip in hi brain dure a virtual-r trip. he also find that hi past ha been invent to conceal a plot of planetari domination. soon, he' off to mar to find out who he is and who plant the chip. action adventur sciencefict oxygen falselyaccus resist mar doublelif telepathi mutant hologram spacecoloni falseident secretag dystopia cyberpunk falsememori implantedmemori arnoldschwarzenegg sharonston rachelticotin paulverhoeven\",\n", " 208: 'in ad 922, arab courtier, ahmad ibn fadlan accompani a parti of vike to the barbar north to combat a terror that slaughter vike and devour their flesh. adventur fantasi action witch cave arabian scandinavia bagdad vike iraq war mission antoniobandera vladimirkulich dennisstorhøi johnmctiernan',\n", " 209: 'new cia operative, aaron cross experi life-or-death stake that have been trigger by the previou action of jason bourne. action thriller assassin wolf maryland suicidebygunshot rooftop explodinghous laptop trackingdevic fakeid seoulsouthkorea pharmaceuticallab governmentconspiraci roofchas manilaphilippin hunt falsepassport albertacanada lieutenantgener jeremyrenn rachelweisz edwardnorton tonygilroy',\n", " 210: \"along with crime-fight partner robin and new recruit batgirl, batman battl the dual threat of frosti geniu mr. freez and homicid horticulturalist poison ivy. freez plan to put gotham citi on ice, while ivi tri to drive a wedg between the dynam duo. action crime fantasi doublelif dccomic dualident crimefight fictionalplac gothamc superhero creditcard superpow georgeclooney chriso'donnel arnoldschwarzenegg joelschumach\",\n", " 211: 'insid a snowflak exist the magic land of whoville. in whoville, live the whos, an almost mutat sort of munchkin-lik people. all the who love christmas, yet just outsid of their belov whovil live the grinch. the grinch is a nasti creatur that hate christmas, and plot to steal it away from the whos, whom he equal abhors. yet a small child, cindi lou who, decid to tri befriend the grinch. famili comedi fantasi holiday christmasparti newlov santaclau villag kidsandfamili jimcarrey taylormomsen jeffreytambor ronhoward',\n", " 212: 'after year of increas in the greenhous effect, havoc is wreak global in the form of catastroph hurricanes, tornadoes, tidal waves, flood and the begin of a new ice age. paleoclimatologist, jack hall tri to warn the world while also shepherd to safeti hi son, trap in new york after the citi is overwhelm by the start of the new big freeze. action adventur sciencefict thriller savingtheworld librari cataclysm climatechang greenhouseeffect tornado twister hurrican hail temperaturedrop iceag polarzon meteorolog gulfstream barrieric icemelt thirdworld exodu evacu climat govern snow losangel scientist doomsday antarct disastermovi dennisquaid jakegyllenha emmyrossum rolandemmerich',\n", " 213: 'with comput geniu luther stickel at hi side and a beauti thief on hi mind, agent ethan hunt race across australia and spain to stop a former imf agent from unleash a genet engin biolog weapon call chimera. thi mission, should hunt choos to accept it, plung him into the center of an intern crisi of terrifi magnitude. adventur action thriller terror spain cia helicopt secretident skyscrap undercov island ex-lov secretmiss dyinganddeath secretag comput duel lethalviru violenc rescueteam agent car researchlaboratori tomcruis dougrayscott thandienewton johnwoo',\n", " 214: 'in octob 1991, a confluenc of weather condit combin to form a killer storm in the north atlantic. caught in the storm wa the sword-fish boat andrea gail. magnific foreshadow and anticip fill thi true-lif drama while minut detail of the fish boats, their gear and the weather are juxtapos with the sea adventure. drama u.s.airforc groceri jamaican meteorologist rescueboat marina cityhal theflemishcap malecamaraderi stormatsea georgeclooney markwahlberg dianelan wolfgangpetersen',\n", " 215: \"the fantast four return to the big screen as a new and all power enemi threaten the earth. the seemingli unstopp 'silver surfer', but all is not what it seem and there are old and new enemi that pose a greater threat than the intrepid superhero realize. adventur fantasi action thriller fire helicopt surfboard mask satellit airplan transform forest resurrect marvelcom sequel superhero basedoncomicbook outerspac wed explos scientist interrog doublecross fantasticfour militari earthinperil superhumanstrength duringcreditssting invis silversurf forcefield elast absorbingpow ioangruffudd jessicaalba chrisevan timstori\",\n", " 216: \"the stori of an indian boy name pi, a zookeeper' son who find himself in the compani of a hyena, zebra, orangutan, and a bengal tiger after a shipwreck set them adrift in the pacif ocean. adventur drama action ocean shipwreck hindu tiger faith zookeep teenageboy cargoship lifeboat injuredanim surajsharma irrfankhan ayushtandon angle\",\n", " 217: \"in order to save hi die father, young stunt cyclist, johnni blaze sell hi soul to mephistophel and sadli part from the pure-hearted, roxann simpson, the love of hi life. year later, johnny' path cross again with roxanne, now a go-get reporter, and also with mephistopheles, who offer to releas johnny' soul if johnni becom the fabled, fieri 'ghost rider'. thriller action fantasi horror mephisto religionandsupernatur dyinganddeath devil'sson ghostworld stunt flame basedoncomicbook nicolascag evamend wesbentley markstevenjohnson\",\n", " 218: 'the most danger former oper of the cia is drawn out of hide to uncov hidden truth about hi past. action thriller assassin amnesia flashback mattdamon aliciavikand tommyleejon paulgreengrass',\n", " 219: 'the angel are charg with find a pair of miss ring that are encod with the person inform of member of the wit protect program. as inform are killed, the ladi target a rogu agent who might be responsible. action adventur comedi robberi secretident secretag camerondiaz drewbarrymor lucyliu mcg',\n", " 220: 'a team of explor discov a clue to the origin of mankind on earth, lead them on a journey to the darkest corner of the universe. there, they must fight a terrifi battl to save the futur of the human race. sciencefict adventur mysteri android dystopia alien spinoff creation emergencysurgeri aftercreditssting stasi archeologicaldig godcomplex cavedraw geneticmut originsoflif noomirapac michaelfassbend guypearc ridleyscott',\n", " 221: \"stuart, an ador white mouse, still live happili with hi adopt family, the littles, on the east side of manhattan' central park. more crazi mous adventur are in store as stuart, hi human brother, george, and their mischiev cat, snowbell, set out to rescu a friend. famili adventur anim comedi mous falcon bird friendship famili michaelj.fox geenadavi hughlauri robminkoff\",\n", " 222: 'in the year 2159, two class of peopl exist: the veri wealthi who live on a pristin man-mad space station call elysium, and the rest, who live on an overpopulated, ruin earth. secretari rhode (jodi foster), a hard line govern official, will stop at noth to enforc anti-immigr law and preserv the luxuri lifestyl of the citizen of elysium. that doesn’t stop the peopl of earth from tri to get in, by ani mean they can. when unlucki max (matt damon) is back into a corner, he agre to take on a daunt mission that, if successful, will not onli save hi life, but could bring equal to these polar worlds. sciencefict action drama thriller dystopia spacest classconflict mattdamon jodiefost sharltocopley neillblomkamp',\n", " 223: \"after year of outrun ruthless bounti hunters, escap convict riddick suddenli find himself caught between oppos forc in a fight for the futur of the human race. now, wage incred battl on fantast and deadli worlds, thi lone, reluct hero will emerg as humanity' champion - and the last hope for a univers on the edg of annihilation. action sciencefict prison dystopia matteroflifeanddeath outerspac intergalactictravel vindiesel thandienewton karlurban davidtwohi\",\n", " 224: 'in robocop, the year is 2028 and multin conglomer omnicorp is at the center of robot technology. overseas, their drone have been use by the militari for years, but have been forbidden for law enforc in america. now omnicorp want to bring their controversi technolog to the home front, and they see a golden opportun to do it. when alex murphi – a love husband, father and good cop do hi best to stem the tide of crime and corrupt in detroit – is critic injured, omnicorp see their chanc to build a part-man, part-robot polic officer. omnicorp envis a robocop in everi citi and even more billion for their shareholders, but they never count on one thing: there is still a man insid the machine. action sciencefict cyborg futur dystopia polic remak violenc detroit joelkinnaman garyoldman michaelkeaton josépadilha',\n", " 225: 'speed racer is the tale of a young and brilliant race driver. when corrupt in the race leagu cost hi brother hi life, he must team up with the polic and the mysteri racer x to bring an end to the corrupt and crimin activities. inspir by the cartoon series. action famili sciencefict carrac lossofbroth chimp famili duringcreditssting womandirector emilehirsch christinaricci matthewfox lillywachowski',\n", " 226: 'after be cut from the usa softbal team and feel a bit past her prime, lisa find herself evalu her life and in the middl of a love triangle, as a corpor guy in crisi compet with her current, baseball-play beau. comedi drama romanc lovetriangl basebal athlet aftercreditssting reesewitherspoon paulrudd owenwilson jamesl.brook',\n", " 227: 'a fugit coupl goe on a glamor and sometim deadli adventur where noth and no one – even themselv – are what they seem. amid shift allianc and unexpect betrayals, they race across the globe, with their surviv ultim hing on the battl of truth vs. trust. action comedi spi airport gasstat garag pilot chase secretag rope explodingbuild carchas policecar boygeniu duringcreditssting tomcruis camerondiaz petersarsgaard jamesmangold',\n", " 228: 'jack harper is one of the last few drone repairmen station on earth. part of a massiv oper to extract vital resourc after decad of war with a terrifi threat known as the scavs, jack’ mission is nearli complete. hi exist is brought crash down when he rescu a beauti stranger from a down spacecraft. her arriv trigger a chain of event that forc him to question everyth he know and put the fate of human in hi hands. action sciencefict adventur mysteri spacecraft dystopia space drone imax humanvsalien tomcruis morganfreeman olgakurylenko josephkosinski',\n", " 229: \"year after the onset of the clone wars, the nobl jedi knight lead a massiv clone armi into a galaxy-wid battl against the separatists. when the sinist sith unveil a thousand-year-old plot to rule the galaxy, the republ crumbl and from it ash rise the evil galact empire. jedi hero anakin skywalk is seduc by the dark side of the forc to becom the emperor' new apprentic – darth vader. the jedi are decimated, as obi-wan kenobi and jedi master yoda are forc into hiding. the onli hope for the galaxi are anakin' own offspr – the twin children born in secreci who will grow up to becom heroes. sciencefict adventur action showdown deathstar vision cultfigur hatr dreamsequ expectantmoth spaceopera chancel childbirth galacticwar ewanmcgregor natalieportman haydenchristensen georgeluca\",\n", " 230: 'ten year after the invas of naboo, the galaxi is on the brink of civil war. under the leadership of a renegad jedi name count dooku, thousand of solar system threaten to break away from the galact republic. when an assassin attempt is made on senat padmé amidala, the former queen of naboo, twenty-year-old jedi apprentic anakin skywalk is assign to protect her. in the cours of hi mission, anakin discov hi love for padmé as well as hi own darker side. soon, anakin, padmé, and obi-wan kenobi are drawn into the heart of the separatist movement and the begin of the clone wars. adventur action sciencefict senat investig armi deathstar jedi cultfigur wed violenc kendo lasergun spaceopera spaceport teenagerebellion goodbecomingevil alienrac mechanicalhand yoda ewanmcgregor natalieportman haydenchristensen georgeluca',\n", " 231: \"jame sullivan and mike wazowski are monsters, they earn their live scare children and are the best in the business... even though they'r more afraid of the children than they are of them. when a child accident enter their world, jame and mike suddenli find that kid are not to be afraid of and they uncov a conspiraci that could threaten all children across the world. anim comedi famili monster infant energysuppli compani rivalri hijink bestfriend scream conveyorbelt energycompani friend johngoodman billycryst marygibb petedoct\",\n", " 232: 'wolverin face hi ultim nemesi - and test of hi physical, emotional, and mortal limit - in a life-chang voyag to modern-day japan. action sciencefict adventur fantasi japan samurai mutant worldwari marvelcom superhero basedoncomicbook superhuman duringcreditssting hughjackman hiroyukisanada famkejanssen jamesmangold',\n", " 233: 'anakin skywalker, a young slave strong with the force, is discov on tatooine. meanwhile, the evil sith have returned, enact their plot for reveng against the jedi. adventur action sciencefict propheci senat queen taskmast galaxi apprentic tax spaceopera liamneeson ewanmcgregor natalieportman georgeluca',\n", " 234: \"the crood is a prehistor comedi adventur that follow the world' first famili as they embark on a journey of a lifetim when the cave that ha alway shield them from danger is destroyed. travel across a spectacular landscape, the crood discov an incred new world fill with fantast creatur -- and their outlook is chang forever. adventur anim comedi famili fantasi stoneag daughter father prehistor ancientworld fatherdaughterrelationship famili cavemen aftercreditssting duringcreditssting nicolascag emmaston ryanreynold chrissand\",\n", " 235: 'astérix and obélix have to win the olymp game in order to help their friend alafolix marri princess irina (portray by supermodel vanessa hessler). brutu (benoît poelvoorde) use everi trick in the book to have hi own team win the game, and get rid of hi father juliu caesar (alain delon) in the process. fantasi adventur comedi famili competit greec colosseum olympicgam emperor magic hors roman wildboar govern galier cloviscornillac gérarddepardieu franckdubosc thomaslangmann',\n", " 236: 'joe ender is a gung-ho marin assign to protect a \"windtalker\" - one of sever navajo indian who were use to relay messag dure world war ii becaus their spoken languag wa indecipher to japanes code breakers. drama action histori war japan worldwarii radiotransmiss marinecorp u.s.armi code navajo pacificwar nicolascag adambeach peterstormar johnwoo',\n", " 237: 'as two evil sister prepar to conquer the land, two renegades—er the huntsman, who aid snow white in defeat ravenna in snowwhit and the huntsman, and hi forbidden lover, sara—set out to stop them. action adventur drama witch magic fairytal snowwhit huntsman chrishemsworth charlizetheron emilyblunt cedricnicolas-troyan',\n", " 238: \"the citi need heroes. dark ha settl over new york citi as shredder and hi evil foot clan have an iron grip on everyth from the polic to the politicians. the futur is grim until four unlik outcast brother rise from the sewer and discov their destini as teenag mutant ninja turtles. the turtl must work with fearless report april and her wise-crack cameraman vern fenwick to save the citi and unravel shredder' diabol plan. sciencefict action adventur fantasi comedi martialart terrorist hero mutat van turtl vigilant superhero basedoncomicbook ninja newyorkc sewer reboot scienceexperi 3d meganfox willarnett williamfichtn jonathanliebesman\",\n", " 239: 'dr. ryan stone, a brilliant medic engin on her first shuttl mission, with veteran astronaut matt kowalski in command of hi last flight befor retiring. but on a seemingli routin spacewalk, disast strikes. the shuttl is destroyed, leav stone and kowalski complet alone-teth to noth but each other and spiral out into the black of space. the deafen silenc tell them they have lost ani link to earth and ani chanc for rescue. as fear turn to panic, everi gulp of air eat away at what littl oxygen is left. but the onli way home may be to go further out into the terrifi expans of space. sciencefict thriller drama spacemiss loss space astronaut trappedinspac sandrabullock georgeclooney edharri alfonsocuarón',\n", " 240: \"volcanologist harri dalton come to the sleepi town of dante' peak to investig the recent rumbl of the dormant volcano the burg is name for. befor long, hi worst fear are realiz when a massiv erupt hits, and immediately, harry, the mayor and the townspeopl find themselv fight for their live amid a catastroph nightmare. action adventur thriller helicopt smalltown mayor evacu motel lava volcano cabin lover naturaldisast partnership volcanologist rescu explos scientist seismograph volcanicerupt rowboat catastroph acid countyfair abandonedmin volcanicash piercebrosnan lindahamilton jamierenéesmith rogerdonaldson\",\n", " 241: 'after supervillain shredder escap custody, he join forc with mad scientist baxter stockman and two dimwit henchmen, bebop and rocksteady, to unleash a diabol plan to take over the world. as the turtl prepar to take on shredder and hi new crew, they find themselv face an even greater evil with similar intentions: the notori krang. fantasi action adventur comedi brotherbrotherrelationship turtl sequel basedoncomicbook ninja rat meganfox stephenamel willarnett davegreen',\n", " 242: 'four young outsid teleport to a danger universe, which alter their physic form in shock ways. their live irrevoc upended, the team must learn to har their daunt new abil and work togeth to save earth from a former friend turn enemy. action adventur sciencefict teleport transform telekinesi portal marvelcom superhero basedoncomicbook superheroteam fantasticfour bodyhorror invisiblewoman milestel katemara michaelb.jordan joshtrank',\n", " 243: \"chao reign at the natur histori museum when night watchman larri daley accident stir up an ancient curse, awaken attila the hun, an armi of gladiators, a tyrannosauru rex and other exhibits. larri tri desper to keep the museum under control, but he' fight a lose battl until presid teddi roosevelt come to the rescue. action adventur comedi famili fantasi museum skeleton nightshift chao genghiskhan mayacivil naturalhistori theodoreroosevelt dinosaur basedonchildren'sbook magicalobject securityguard duringcreditssting inanimateobjectscomingtolif benstil jakecherri carlagugino shawnlevi\",\n", " 244: 'in the aftermath of a massiv earthquak in california, a rescue-chopp pilot make a danger journey across the state in order to rescu hi estrang daughter. action drama thriller california earthquak catastroph disasterfilm 3d sanandrea sanandreascalifornia rescueoper dwaynejohnson alexandradaddario carlagugino bradpeyton',\n", " 245: \"a derang media mogul is stage intern incid to pit the world' superpow against each other. now 007 must take on thi evil mastermind in an adrenaline-charg battl to end hi reign of terror and prevent global pandemonium. adventur action thriller londonengland england spi china newsbroadcast intellig televis missil manipulationofthemedia secretintelligenceservic specialcar tvstation mediatycoon navi motorcycl secretservic hamburggermani piercebrosnan jonathanpryc michelleyeoh rogerspottiswood\",\n", " 246: 'after prove himself on the field of battl in the french and indian war, benjamin martin want noth more to do with such things, prefer the simpl life of a farmer. but when hi son gabriel enlist in the armi to defend their new nation, america, against the british, benjamin reluctantli return to hi old life to protect hi son. drama histori war action rebel southernusa lossofson martialart gener lossoffamili passion insurg french daughter southcarolina british basedontruestori gore mission melgibson heathledg joelyrichardson rolandemmerich',\n", " 247: 'danni ocean reunit with hi old flame and the rest of hi merri band of thiev in carri out three huge heist in rome, pari and amsterdam – but a europol agent is hot on their heels. thriller crime sequel fabergéegg dutcheastindiancompani second part goldenegg goon georgeclooney bradpitt catherinezeta-jon stevensoderbergh',\n", " 248: \"after five (or six) year of vanilla-wed bliss, ordinari suburbanit john and jane smith are stuck in a huge rut. unbeknownst to each other, they are both coolli lethal, highly-paid assassin work for rival organisations. when they discov they'r each other' next target, their secret live collid in a spicy, explos mix of wick comedy, pent-up passion, nonstop action and high-tech weaponry. action comedi drama thriller bomb assassin secretident secret assaultrifl gun marriedcoupl hitman decoy marriagecrisi marriag job dysfunctionalmarriag gunfight bulletwound angelinajoli bradpitt vincevaughn dougliman\",\n", " 249: 'beatric prior must confront her inner demon and continu her fight against a power allianc which threaten to tear her societi apart. adventur sciencefict thriller basedonnovel revolut dystopia sequel dystopicfutur youngadult 3d diverg shailenewoodley theojam katewinslet robertschwentk',\n", " 250: 'a biopic depict the life of filmmak and aviat pioneer howard hugh from 1927 to 1947, dure which time he becam a success film produc and an aviat magnate, while simultan grow more unstabl due to sever obsessive-compuls disorder. drama ladykil pilot biographi woman aviat phobia u.s.congress flyingboat testflight leonardodicaprio cateblanchett katebeckinsal martinscorses',\n", " 251: 'travel writer lemuel gulliv take an assign in bermuda, but end up on the island of liliput, where he tower over it tini citizens. comedi journalist forbiddenlov princess royalcourt 3d jackblack amandapeet emilyblunt robletterman',\n", " 252: \"britt reid (seth rogen), the heir to the largest newspap fortun in lo angeles, is a spoil playboy who ha been, thu far, happi to lead an aimless life. after hi father (tom wilkinson) dies, britt meet kato (jay chou), a resourc compani employee. realiz that they have the talent and resourc to make someth of their lives, britt and kato join forc as costum crime-fight to bring down the city' most-pow criminal, chudnofski (christoph waltz). action crime comedi bomb martialart assassin vandal nightclub train knife parti playboy superhero reveng trap violenc kato carchas methlab sethrogen jaychou christophwaltz michelgondri\",\n", " 253: 'base on frank miller\\' latest graphic novel xerx and told in the breathtak visual style of the blockbust \"300,\" thi new chapter of the epic saga take the action to a fresh battlefield--on the sea--a greek gener themistokl attempt to unit all of greec by lead the charg that will chang the cours of the war. \"300: rise of an empire\" pit themistokl against the massiv invad persian forc led by mortal-turned-god xerx and artemesia, the veng command of the persian navy. action war basedongraphicnovel ancientgreec duringcreditssting seabattl handtohandcombat minion navalwarfar 3d sullivanstapleton evagreen lenaheadey noammurro',\n", " 254: 'when the evil wizard gargamel chase the tini blue smurf out of their village, they tumbl from their magic world and into our -- in fact, smack dab in the middl of central park. just three appl high and stuck in the big apple, the smurf must find a way to get back to their villag befor gargamel track them down. anim famili adventur comedi fantasi moon magic basedoncomicbook anim goodvsevil smurf blue vortex mischief catandmous duringcreditssting hankazaria neilpatrickharri jaymamay rajagosnel',\n", " 255: 'when a greedi outlaw scheme to take possess of the \"patch of heaven\" dairi farm, three determin cows, a karate-kick stallion and a color corral of critter join forc to save their home. the stake are sky-high as thi unlik anim allianc risk their hide and match wit with a mysteri band of bad guys. anim famili farm cow anim roseannebarr judidench jennifertilli willfinn',\n", " 256: 'beatric prior and tobia eaton ventur into the world outsid of the fenc and are taken into protect custodi by a mysteri agenc known as the bureau of genet welfare. adventur sciencefict basedonnovel revolut dystopia sequel dystopicfutur youngadult basedonyoungadultnovel shailenewoodley theojam zoëkravitz robertschwentk',\n", " 257: \"in the near-future, charli kenton is a washed-up fighter who retir from the ring when robot took over the sport. after charlie' robot is trashed, he reluctantli team up with hi estrang son max to rebuild and train an unlik contender. action sciencefict drama fathersonrelationship fight sport robot prizefight fathersonreunion robotfight hughjackman dakotagoyo evangelinelilli shawnlevi\",\n", " 258: \"the evil wizard gargamel creat a coupl of mischiev smurf-lik creatur call the naughti that he hope will let him har the all-powerful, magic smurf-essence. but when he discov that onli a real smurf can give him what he wants, and onli a secret spell that smurfett know can turn the naughti into real smurfs, gargamel kidnap smurfett and bring her to paris, where he ha been win the ador of million as the world¹ greatest sorcerer. it' up to papa, clumsy, grouchy, and vaniti to return to our world, reunit with their human friend patrick and grace winslow, and rescu her! will smurfette, who ha alway felt differ from the other smurfs, find a new connect with the naughti vexi and hacku or will the smurf convinc her that their love for her is true blue? fantasi famili comedi anim basedoncartoon anim smurf hankazaria neilpatrickharri brendangleeson rajagosnel\",\n", " 259: 'sandra bullock and jason patric star as a young coupl whose dream cruis turn to terror when a lunat comput geniu (willem dafoe) set a new cours for destruction. action adventur thriller boat cruis comput disast diamond collisioncours sandrabullock jasonpatr willemdafo jandebont',\n", " 260: \"base on the classic novel by orson scott card, ender' game is the stori of the earth' most gift children train to defend their homeplanet in the space war of the future. sciencefict action adventur basedonnovel intoler chosenon childprodigi futurist space sciencefict alieninvas militaryschool moralitytal basedonyoungadultnovel asabutterfield harrisonford haileesteinfeld gavinhood\",\n", " 261: \"john mcclane is back and badder than ever, and thi time he' work for homeland security. he call on the servic of a young hacker in hi bid to stop a ring of internet terrorist intent on take control of america' comput infrastructure. action thriller usa washingtond.c. helicopt hostag fbi kidnap hacker satellit transportofprison trafficjam fistfight ex-cop sequel suspens shootout explos violenc cellphon carchas policecar walkietalki basedonarticl cyberterror actionhero powerpl brucewilli justinlong timothyolyph lenwiseman\",\n", " 262: 'young hobbit frodo baggins, after inherit a mysteri ring from hi uncl bilbo, must leav hi home in order to keep it from fall into the hand of it evil creator. along the way, a fellowship is form to protect the ringbear and make sure that the ring arriv at it final destination: mt. doom, the onli place where it can be destroyed. adventur fantasi action elv dwarv orc middle-earth(tolkien) hobbit basedonnovel mountain firework castl volcano password deathofafriend uncl mirror wizard swordandsorceri elijahwood ianmckellen cateblanchett peterjackson',\n", " 263: 'a bet pit a british inventor, a chines thief and a french artist on a worldwid adventur that they can circl the globe in 80 days. action adventur comedi pari londonengland newyork julesvern sanfrancisco istanbul hotairballoon journeyroundtheworld jackiechan stevecoogan céciledefr frankcoraci',\n", " 264: \"in 1964, a brash new pro boxer, fresh from hi olymp gold medal victory, explod on to the scene; cassiu clay. bold and outspoken, he cut an entir new imag for african american in sport with hi proud public self confid and hi unapologet belief that he is the greatest boxer of all time. yet at the top of hi game, both ali' person and profession live face the ultim test. drama usa transport boxer biographi muhammad willsmith jamiefoxx jonvoight michaelmann\",\n", " 265: \"conrad and salli walden are home alon with their pet fish. it is rain outside, and there is noth to do. until the cat in the hat walk in the front door. he introduc them to their imagination, and at first it' all fun and games, until thing get out of hand, and the cat must go, go, go, befor their parent get back. comedi fantasi famili cat brothersisterrelationship boredom chao stepfath basedonchildren'sbook mikemy dakotafan spencerbreslin bowelch\",\n", " 266: 'in 2035, where robot are common-plac and abid by the three law of robotics, a techno-phob cop investig an appar suicide. suspect that a robot may be respons for the death, hi investig lead him to believ that human may be in danger. action sciencefict suicid artificialintellig manvsmachin chicago basedonnovel hero futur law dystopia polic murder robot 3d humanoidrobot willsmith bridgetmoynahan alantudyk alexproya',\n", " 267: 'after hi wife dies, a blacksmith name balian is thrust into royalty, polit intrigu and bloodi holi war dure the crusades. drama action adventur histori war crusad epic knight swordsman orderofthetemplar religi knighttemplar saladin kingrichard orlandobloom evagreen jeremyiron ridleyscott',\n", " 268: 'the adventur of a heroic and debonair stalwart mous name stuart littl with human qualities, who face some comic misadventur while search for hi lost bird friend and live with a human famili as their child. anim fantasi famili comedi brotherbrotherrelationship basedonnovel cat mous adopt orphanag stepbroth kidsandfamili newyorkcitytwintow gangster michaelj.fox geenadavi hughlauri robminkoff',\n", " 269: 'a waitress, desper to fulfil her dream as a restaur owner, is set on a journey to turn a frog princ back into a human being, but she ha to do face the same problem after she kiss him. romanc famili anim music basedonnovel voodoo kiss princess anim cajun firefli basedonfairytal duringcreditssting bigdream frogprinc charlatan anikanoniros brunocampo keithdavid ronclement',\n", " 270: 'dure a man mission to mars, astronaut mark watney is presum dead after a fierc storm and left behind by hi crew. but watney ha surviv and find himself strand and alon on the hostil planet. with onli meager supplies, he must draw upon hi ingenuity, wit and spirit to subsist and find a way to signal to earth that he is alive. drama adventur sciencefict basedonnovel mar nasa isol botanist strand spaceship space engin surviv astronaut scienc deepspaceexplor duringcreditssting battleforsurviv mattdamon jessicachastain kristenwiig ridleyscott',\n", " 271: 'in 2019, lincoln six-echo is a resid of a seemingli \"utopian\" but contain facility. like all of the inhabit of thi carefully-control environment, lincoln hope to be chosen to go to the island — reportedli the last uncontamin locat on the planet. but lincoln soon discov that everyth about hi exist is a lie. action thriller sciencefict adventur clone transplant loveofone\\'slif dystopia genet freedom escap clone plagu ewanmcgregor scarlettjohansson djimonhouns michaelbay',\n", " 272: 'porter stoddard is a well-known new york architect who is at a crossroads... a nexu where twist and turn lead to myriad misstep some with hi wife ellie, other with longtim friend mona and her husband griffin. decid which direct to take often lead to unexpect encount with hilari consequences. comedi romanc architect cellist friend anniversari warrenbeatti dianekeaton goldiehawn peterchelsom',\n", " 273: 'upon learn that he ha to come out of retir to steal 50 car in one night to save hi brother kip\\' life, former car thief randal \"memphis\" rain enlist help from a few \"boost happy\" pal to accomplish a seemingli imposs feat. from countless car chase to relentless cops, the high-octan excit build as randal swerv around more than a few roadblock to keep kip alive. action crime thriller brotherbrotherrelationship detect carrac carthief blackmail brother remak heist betray organizedcrim shootout policechas explos violenc lockpick carchas stakeout illegaldrug carmovi stolencar fordmustang blacklight nicolascag angelinajoli giovanniribisi dominicsena',\n", " 274: \"in the year 180, the death of emperor marcu aureliu throw the roman empir into chaos. maximu is one of the roman army' most capabl and trust gener and a key advisor to the emperor. as marcus' deviou son commodu ascend to the throne, maximu is set to be executed. he escapes, but is captur by slave traders. renam spaniard and forc to becom a gladiator, maximu must battl to the death with other men for the amus of pay audiences. hi battl skill serv him well, and he becom one of the most famou and admir men to fight in the colosseum. determin to aveng himself against the man who took away hi freedom and laid wast to hi family, maximu believ that he can use hi fame and skill in the ring to aveng the loss of hi famili and former glory. as the gladiat begin to challeng hi rule, commodu decid to put hi own fight mettl to the test by squar off with maximu in a battl to the death. action drama adventur rome gladiat arena senat romanempir emperor slaveri battlefield blood ancientworld fatherdaughterrelationship combat mothersonrelationship dreamsequ chariot philosoph barbarianhord 2ndcenturi successor russellcrow joaquinphoenix connienielsen ridleyscott\",\n", " 275: \"john anderton is a top 'precrime' cop in the late-21st century, when technolog can predict crime befor they'r committed. but anderton becom the quarri when anoth investig target him for a murder charge. action thriller sciencefict mysteri self-fulfillingpropheci washingtond.c. evid futur hologram dystopia murder neo-noir futurenoir tomcruis colinfarrel samanthamorton stevenspielberg\",\n", " 276: \"ignor threat to hi life, harri return to hogwart to investig – aid by ron and hermion – a mysteri seri of attacks. adventur fantasi famili flyingcar witch magic cuttingthecord childhero broom sorcerer'sapprentic schoolofwitchcraft giantsnak blackmag aftercreditssting danielradcliff rupertgrint emmawatson chriscolumbu\",\n", " 277: \"le chiffre, a banker to the world' terrorists, is schedul to particip in a high-stak poker game in montenegro, where he intend to use hi win to establish hi financi grip on the terrorist market. m send bond – on hi maiden mission as a 00 agent – to attend thi game and prevent le chiffr from winning. with the help of vesper lynd and felix leiter, bond enter the most import poker game in hi alreadi danger career. adventur action thriller itali poker casino terrorist banker money freerun tortur britishsecretservic montenegro danielcraig evagreen madsmikkelsen martincampbel\",\n", " 278: 'after a spectacular crash-land on an unchart planet, brash astronaut leo davidson find himself trap in a savag world where talk ape domin the human race. desper to find a way home, leo must evad the invinc gorilla armi led by ruthless gener thade. thriller sciencefict action adventur gorilla spacemarin spacesuit revolut chimp slaveri spacetravel timetravel dystopia alienplanet ape humansubjug markwahlberg timroth helenabonhamcart timburton',\n", " 279: 'nearli 10 year have pass sinc sarah connor wa target for termin by a cyborg from the future. now her son, john, the futur leader of the resistance, is the target for a newer, more deadli terminator. onc again, the resist ha manag to send a protector back to attempt to save john and hi mother sarah. action thriller sciencefict cyborg shotgun post-apocalypt dystopia moralambigu mentalinstitut violenc fictionalwar morph nuclearweapon shapeshift savior catchphras arnoldschwarzenegg lindahamilton robertpatrick jamescameron',\n", " 280: \"depression-era bank robber john dillinger' charm and audac endear him to much of america' downtrodden public, but he' also a thorn in the side of j. edgar hoover and the fledgl fbi. desper to captur the elus outlaw, hoover make dilling hi first public enemi number one and assign hi top agent, melvin purvis, the task of bring him in dead or alive. histori crime drama cinema hidingplac machinegun prisonguard escapefromprison dilling christianbal johnnydepp giovanniribisi michaelmann\",\n", " 281: 'follow the death of hi employ and mentor, bumpi johnson, frank luca establish himself as the number one import of heroin in the harlem district of manhattan. he doe so by buy heroin directli from the sourc in south east asia and he come up with a uniqu way of import the drug into the unit states. base on a true story. drama crime underdog blackpeopl drugtraff drugsmuggl societi ambit riseandfal cop drugdeal policecorrupt gangster crime policedetect famili lawenforc aftercreditssting dishonesti criminalhero denzelwashington russellcrow chiwetelejiofor ridleyscott',\n", " 282: 'harri tasker is a secret agent for the unit state government. for years, he ha kept hi job from hi wife, but is forc to reveal hi ident and tri to stop nuclear terrorist when he and hi wife are kidnap by them. action thriller spi terrorist florida gun kidnap horsebackrid floridakey secretag terroristplot topsecret womanwithglass hitwithatelephon truthserum mushroomcloud jackhamm keywest arnoldschwarzenegg jamieleecurti tomarnold jamescameron',\n", " 283: \"arm men hijack a new york citi subway train, hold the passeng hostag in return for a ransom, and turn an ordinari day' work for dispatch walter garber into a face-off with the mastermind behind the crime. thriller drama crime hostag newyorkc newyorksubway subwaytrain stockmarket motorcyclecrash subwaytunnel aftercreditssting denzelwashington johntravolta luisguzmán tonyscott\",\n", " 284: \"it ha taken 10 years, two littl focker with wife pam and countless hurdl for greg to final get in with hi tightli wound father-in-law, jack. after the cash-strap dad take a job moonlight for a drug company, jack' suspicion about hi favorit male nurs come roar back. when greg and pam' entir clan descend for the twins' birthday party, greg must prove to the skeptic jack that he' fulli capabl as the man of the house. comedi romanc nurs cat father-in-law vomit kidsandfamili viagra duringcreditssting robertdeniro benstil owenwilson paulweitz\",\n", " 285: 'nypd detect christoph danson (johnson) and p.k. highsmith (jackson) are the baddest and most belov cop in new york city. they don\\'t get tattoos, other men get tattoo of them. two desk over and one back, sit detect allen gambl (ferrell) and terri hoitz (wahlberg). you\\'v seen them in the background of photo of danson and highsmith, out of focu and eye closed. they\\'r not heroes, they\\'r \"the other guys.\" but everi cop ha hi or her day and soon gambl and hoitz stumbl into a seemingli innocu case no other detect want to touch that could turn into nyc\\' biggest crime. it\\' the opportun of their lives, but do these guy have the right stuff? action comedi crime narrat ceo firetruck shotintheshould ziplin buddycomedi carjack aftercreditssting duringcreditssting willferrel markwahlberg evamend adammckay',\n", " 286: \"u.s. marshal john kruger eras the ident of peopl enrol in the wit protect program. hi current assign is to protect lee cullen, who' uncov evid that the weapon manufactur she work for ha been sell to terrorist groups. when kruger discov that there' a corrupt agent within the program, he must guard hi own life while tri to protect lee's. action drama mysteri thriller suicid ambush showdown hostag traitor newident hitman wit witnessprotect armsdeal decept betray treason conspiraci u.s.marsh gunfight train explos violenc sabotag corporatecrim rogueag assassinationattempt x-rayvis railgun arnoldschwarzenegg jamescaan vanessawilliam chuckrussel\",\n", " 287: 'with the help of a german bounti hunter, a freed slave set out to rescu hi wife from a brutal mississippi plantat owner. drama western bountyhunt hero plantat societi friendship friend reveng rivalri rescu shootout racism danger dentist django dualrol aftercreditssting oddcoupl blackslav deadli chasesandrac 19thcenturi jamiefoxx christophwaltz leonardodicaprio quentintarantino',\n", " 288: 'when quasi defi the evil frollo and ventur out to the festiv of fools, the cruel crowd jeer him. rescu by fellow outcast the gypsi esmeralda, quasi soon find himself battl to save the peopl and the citi he loves. drama anim famili pari basedonnovel judg obsess danc sword mockeri ugli cathedr music fool bell religion orphan armycaptain festiv angrymob witchhunt 15thcenturi tomhulc demimoor tonyjay garytrousdal',\n", " 289: \"kuzco is a self-cent emperor who summon pacha from a villag and to tell him that hi home will be destroy to make room for kuzco' new summer home. kuzco' advisor, yzma, tri to poison kuzco and accident turn him into a llama, who accident end up in pacha' village. pacha offer to help kuzco if he doesn't destroy hi house, and so they form an unlik partnership. adventur anim comedi famili fantasi centralandsouthamerica birthday emperor palac kingdom berat llama davidspad johngoodman earthakitt markdind\",\n", " 290: 'mr. church reunit the expend for what should be an easi paycheck, but when one of their men is murder on the job, their quest for reveng put them deep in enemi territori and up against an unexpect threat. action adventur thriller airplan numberintitl airplanecrash violenc beard ensemblecast lossoffriend wisecrackhumor airportloung asianwoman sylvesterstallon jasonstatham dolphlundgren simonwest',\n", " 291: \"modern treasur hunters, led by archaeologist ben gates, search for a chest of rich rumor to have been stash away by georg washington, thoma jefferson and benjamin franklin dure the revolutionari war. the chest' whereabout may lie in secret clue embed in the constitut and the declar of independence, and gate is in a race to find the gold befor hi enemi do. adventur action thriller mysteri riddl treasur treasurehunt archaeologist archeolog nicolascag dianekrug justinbartha jonturteltaub\",\n", " 292: \"in hi homeland of alagaesia, a farm boy happen upon a dragon' egg -- a discoveri that lead him on a predestin journey where he realiz he' the one person who can defend hi home against an evil king. fantasi action adventur famili basedonnovel mythicalcreatur dragon fantasyworld teenagehero basedonyoungadultnovel edspel jeremyiron siennaguillori stefenfangmei\",\n", " 293: \"max imagin run away from hi mom and sail to a far-off land where larg talk beast -- ira, carol, douglas, the bull, judith and alexand -- crown him as their king, play rumpus, build fort and discov secret hideaways. famili fantasi children'sbook igloo wolfcostum swallowedwhol hitwitharock lie fallingdownahil snowballfight children'sperspect maxrecord catherinekeen laurenambros spikejonz\",\n", " 294: 'a teenag find herself transport to a deep forest set where a battl between the forc of good and the forc of evil is take place. she band togeth with a rag-tag group charact in order to save their world -- and ours. anim adventur famili fantasi fantasi miniaturepeopl joshhutcherson amandaseyfri colinfarrel chriswedg',\n", " 295: 'american tourist frank (johnni depp) meet mysteri british woman elsi (angelina jolie) on the train to venice. romanc seem to bud, but there\\' more to her than meet the eye. remak of the 2005 french film \"anthoni zimmer\", written and direct by jérôme salle. action thriller romanc pari hotel falseident undercoverag romanc johnnydepp angelinajoli paulbettani florianhenckelvondonnersmarck',\n", " 296: \"on decemb 28th, 1999, the citizen of new york citi are get readi for the turn of the millennium. however, the devil decid to crash the parti by come to the city, inhabit a man' body, and search for hi chosen bride, a 20-year-old woman name christin york. the world will end, and the onli hope lie within an atheist call jericho cane. action fantasi horror mysteri christian sex newyear'sev pastor nuditi mephisto nightmar bibl satanist faith ex-cop anti-christ millenium atheist suspens priest hospit train newyorkc explos church violenc devil womaninjeopardi satan flashback stigmata arnoldschwarzenegg gabrielbyrn kevinpollak peterhyam\",\n", " 297: \"an ex-mercenari turn smuggler. a mend fisherman. amid the explos civil war overtak 1999 sierra leone, these men join for two desper missions: recov a rare pink diamond of immens valu and rescu the fisherman' son conscript as a child soldier into the brutal rebel forc rip a swath of tortur and bloodsh countrywide. drama thriller action rebel journalist journal lossoffamili slaveri mercenari diamondmin sierraleon bootlegg fisherman specialunit smuggl genocideinrwanda oppress leonardodicaprio djimonhouns jenniferconnelli edwardzwick\",\n", " 298: \"a new york stockbrok refus to cooper in a larg secur fraud case involv corrupt on wall street, corpor bank world and mob infiltration. base on jordan belfort' autobiography. crime drama comedi corrupt sex sexual bank humor biographi wallstreet marriagecrisi riseandfal stockbrok drug stockbrok leonardodicaprio jonahhil margotrobbi martinscorses\",\n", " 299: \"the dark knight of gotham citi confront a dastardli duo: two-fac and the riddler. formerli district attorney harvey dent, two-fac believ batman caus the courtroom accid which left him disfigur on one side. and edward nygma, computer-geniu and former employe of millionair bruce wayne, is out to get the philanthropist; as the riddler. former circu acrobat dick grayson, hi famili kill by two-face, becom wayne' ward and batman' new partner robin. action crime fantasi riddl dccomic rose gothamc partner superhero robin brokenneck psychologist violenc crimin districtattorney millionair fallingdownstair tiedup tommygun beretta knockedout superpow disfigur fatherfigur valkilm tommyleejon jimcarrey joelschumach\",\n", " 300: 'set in the future, the stori follow a young soldier name johnni rico and hi exploit in the mobil infantry. rico\\' militari career progress from recruit to non-commiss offic and final to offic against the backdrop of an interstellar war between mankind and an arachnoid speci known as \"the bugs\". adventur action thriller sciencefict moon asteroid spacemarin intellig buenosair spacebattl dystopia armi satir spaceship soldier drillinstructor militari caspervandien dinamey deniserichard paulverhoeven',\n", " 301: 'a set of six nest stori span time between the 19th centuri and a distant post-apocalypt future. cloud atla explor how the action and consequ of individu live impact one anoth throughout the past, the present and the future. action, mysteri and romanc weav through the stori as one soul is shape from a killer into a hero and a singl act of kind rippl across centuri to inspir a revolut in the distant future. base on the award win novel by david mitchell. direct by tom tykwer and the wachowskis. drama sciencefict clone futur dystopia ensemblecast duringcreditssting centuri womandirector 1930 tomhank halleberri jimbroadb tomtykw',\n", " 302: \"soren, a young barn owl, is kidnap by owl of st. aggie's, ostens an orphanage, where owlet are brainwash into becom soldiers. he and hi new friend escap to the island of ga'hoole, to assist it noble, wise owl who fight the armi be creat by the wick ruler of st. aggie's. the film is base on the first three book in the series. anim adventur famili fantasi owl emilybarclay abbiecornish essiedavi zacksnyd\",\n", " 303: 'liquid after discov a corpor conspiracy, mild-mann graphic artist patienc phillip wash up on an island, where she\\' resurrect and endow with the prowess of a cat -- and she\\' eager to use her new skill ... as a vigilante. befor you can say \"cat and mouse,\" handsom gumsho tom lone is on her tail. action crime whiterussian sex dccomic beauti sexism basketbal superheroin femaleprotagonist evilcorpor catwoman maskedsuperhero catladi halleberri benjaminbratt sharonston pitof',\n", " 304: 'fourteen hundr year ago, a torment soul walk the earth that wa neither man nor god. hercul wa the power son of the god king zeus, for thi he receiv noth but suffer hi entir life. after twelv arduou labor and the loss of hi family, thi dark, world-weari soul turn hi back on the god find hi onli solac in bloodi battle. over the year he warm to the compani of six similar souls, their onli bond be their love of fight and presenc of death. these men and woman never question where they go to fight or whi or whom, just how much they will be paid. now the king of thrace ha hire these mercenari to train hi men to becom the greatest armi of all time. it is time for thi bunch of lost soul to final have their eye open to how far they have fallen when they must train an armi to becom as ruthless and blood thirsti as their reput ha become. action adventur mercenari battl ancientgreec hercul warrior sagen dwaynejohnson ianmcshan johnhurt brettratn',\n", " 305: 'when space galleon cabin boy jim hawkin discov a map to an intergalact \"loot of a thousand worlds,\" a cyborg cook name john silver teach him to battl supernova and space storms. but, soon, jim realiz silver is a pirat intent on mutiny! adventur anim famili fantasi sciencefict cyborg basedonnovel spacemarin mutini lossoffath map pirategang treasurehunt littleboy space alien anim money treasuremap planet troubledteen spacepir josephgordon-levitt brianmurray davidhydepierc ronclement',\n", " 306: 'on hi latest expedition, dr. rick marshal is suck into a space-tim vortex alongsid hi research assist and a redneck survivalist. in thi altern universe, the trio make friend with a primat name chaka, their onli alli in a world full of dinosaur and other fantast creatures. adventur comedi sciencefict alienlife-form dinosaur primat duringcreditssting willferrel annafriel dannymcbrid bradsilberl',\n", " 307: 'barney, christma and the rest of the team come face-to-fac with conrad stonebanks, who year ago co-found the expend with barney. stonebank subsequ becam a ruthless arm trader and someon who barney wa forc to kill… or so he thought. stonebanks, who elud death onc before, now is make it hi mission to end the expend -- but barney ha other plans. barney decid that he ha to fight old blood with new blood, and bring in a new era of expend team members, recruit individu who are younger, faster and more tech-savvy. the latest mission becom a clash of classic old-school style versu high-tech expertis in the expendables’ most person battl yet. action adventur thriller cia armsdeal sequel rescuemiss hospit battl sledgehamm revolv sylvesterstallon jasonstatham harrisonford patrickhugh',\n", " 308: 'a young undercov fbi agent infiltr a gang of thiev who share a common interest in extrem sports. a remak of the 1991 film, \"point break\". action crime thriller undercov undercoverag extremesport fbiagent 3d edgarramírez lukebracey teresapalm ericsoncor',\n", " 309: 'tim avery, an aspir cartoonist, find himself in a predica when hi dog stumbl upon the mask of loki. then after conceiv an infant son \"born of the mask\", he discov just how looney child rais can be. fantasi comedi famili adventur babi mask vike jamiekennedi alancum traylorhoward lawrenceguterman',\n", " 310: 'in the winter of 1820, the new england whale ship essex wa assault by someth no one could believe: a whale of mammoth size and will, and an almost human sens of vengeance. the real-lif maritim disast would inspir herman melville’ mobi dick. but that told onli half the story. “heart of the sea” reveal the encounter’ harrow aftermath, as the ship’ surviv crew is push to their limit and forc to do the unthink to stay alive. brave storms, starvation, panic and despair, the men will call into question their deepest beliefs, from the valu of their live to the moral of their trade, as their captain search for direct on the open sea and hi first mate still seek to bring the great whale down. thriller drama adventur action histori suicid ocean sea hunger shipwreck ship whale basedontruestori strand surviv whale death newengland lostatsea basedontrueev whalingship starvat 19thcenturi cannib referencetomobydick whaleoil nantucket chrishemsworth benjaminwalk cillianmurphi ronhoward',\n", " 311: 'the year is 2087, the set is the moon. pluto nash, the high-fli success owner of the hottest nightclub in the universe, find himself in troubl when he refus to sell hi club to lunar gangster mogan, who just happen to be help the mysteri rex crater mastermind a plan to take over the entir moon. action comedi sciencefict moon casino bar nightclub futur mafiaboss lasergun eddiemurphi randyquaid rosariodawson ronunderwood',\n", " 312: 'dure the u.s.-l occup of baghdad in 2003, chief warrant offic roy miller and hi team of armi inspector were dispatch to find weapon of mass destruct believ to be stockpil in the iraqi desert. rocket from one booby-trap and treacher site to the next, the men search for deadli chemic agent but stumbl instead upon an elabor cover-up that threaten to invert the purpos of their mission. war action adventur drama thriller weaponofmassdestruct baghdad iraqi mattdamon gregkinnear brendangleeson paulgreengrass',\n", " 313: 'snoopi embark upon hi greatest mission as he and hi team take to the sky to pursu their arch-nemesis, while hi best pal charli brown begin hi own epic quest back home. anim basedoncomicstrip famili 3d charliebrown snoopi noahschnapp billmelendez venusschulthei stevemartino',\n", " 314: \"an employe of a corpor with a lucr secret process is tempt to betray it. but there' more to it than that. crime drama mysteri thriller dialogu confid invent independentfilm stevemartin campbellscott bengazzara davidmamet\",\n", " 315: \"rick and evelyn o'connell, along with their 8 year old son alex, discov the key to the legendari scorpion king' might, the fabl bracelet of anubis. unfortunately, a newli resurrect imhotep ha design on the bracelet as well, and isn't abov kidnap it new bearer, alex, to gain control of anubis' otherworldli army. adventur action fantasi son ancientegypt bracelet brendanfras rachelweisz johnhannah stephensomm\",\n", " 316: \"it' 1863. america wa born in the streets. amsterdam vallon return to the five point of america to seek vengeanc against the psychot gangland kingpin, bill the butcher, who murder hi father year earlier. with an eager pickpocket by hi side and a whole new army, vallon fight hi way to seek vengeanc on the butcher and restor peac in the area. drama histori crime fire irish-american immigr gangwar pickpocket ship gangofthiev butcher pig armi rescu gang leonardodicaprio danielday-lewi camerondiaz martinscorses\",\n", " 317: \"a western find refug with a group of women in a church dure japan' rape of nank in 1937. pose as a priest, he attempt to lead the women to safety. drama histori war forcedprostitut childrap christianbal nini tongdawei zhangyim\",\n", " 318: \"codi is a surf penguin from shiverpool who dream of make it big and be like hi idol big z. on hi journey he discov hi talent are not all he think they are and he must learn to accept that their is more to surf than fame and fortune. surf' up is a 2007 american computer-anim mockumentari film produc by soni pictur anim and distribut by columbia pictur and imagework studios. it star the voic of shia labeouf, jeff bridges, zooey deschanel, jon heder among others. anim comedi famili sea worldcup surfer wave surfboard giantwav worldchampion idol mockumentari shialabeouf jeffbridg zooeydeschanel ashbrannon\",\n", " 319: \"what doe it take to becom a stepford wife, a woman perfect beyond belief? ask the stepford husbands, who'v creat thi high-tech, terrifi littl town. action comedi sciencefict android housewif transform nicolekidman matthewbroderick bettemidl frankoz\",\n", " 320: 'when u.s. ranger and an elit delta forc team attempt to kidnap two underl of a somali warlord, their black hawk helicopt are shot down, and the american suffer heavi casualties, face intens fight from the militia on the ground. action histori war prisonersofwar wound somalia warlord famin deltaforc rescueoper joshhartnett ewanmcgregor jasonisaac ridleyscott',\n", " 321: 'two rival politician compet to win an elect to repres their small north carolina congression district in the unit state hous of representatives. comedi polit politician electioncampaign northcarolinam congressman politicalcandid moustach politicalcorrupt campaignmanag campaignfin willferrel zachgalifianaki dylanmcdermott jayroach',\n", " 322: 'in 2257, a taxi driver is unintent given the task of save a young girl who is part of the key that will ensur the surviv of humanity. adventur fantasi action thriller sciencefict clone taxi cyborg egypt futur stowaway spacetravel raceagainsttim armsdeal love alien priest endoftheworld goodvsevil shootout policechas cabdriv newyorkc spaceopera militari operasing resorthotel ancientastronaut archeologist ancientevil cruiselin brucewilli garyoldman ianholm lucbesson',\n", " 323: \"carrie, charlotte, and miranda are all marri now, but they'r still up for a littl fun in the sun. when samantha get the chanc to visit one of the most extravag vacat destin on the planet and offer to bring them all along, they surmis that a women-onli retreat may be the perfect excus to eschew their respons and rememb what life wa like befor they decid to settl down. comedi drama romanc sarahjessicapark kristindavi cynthianixon michaelpatrick\",\n", " 324: 'after a fail swindle, two con-men end up with a map to el dorado, the fabl \"citi of gold,\" and an unintend trip to the new world. much to their surprise, the map doe lead the pair to the mythic city, where the startl inhabit promptli begin to worship them as gods. the onli question is, do they take the worship nativ for all they\\'r worth, or is there a bit more to el dorado than riches? adventur anim comedi famili gold hors swordfight kennethbranagh kevinklin rosieperez donmichaelpaul',\n", " 325: 'manny, diego, and sid embark upon anoth adventur after their contin is set adrift. use an iceberg as a ship, they encount sea creatur and battl pirat as they explor a new world. anim comedi adventur famili bluefootedboobi prehistorictim meltingic badger elephants floatingic landbridg era glacial deriva johnleguizamo rayromano chriswedg stevemartino',\n", " 326: \"when her father unexpectedli pass away, young ella find herself at the merci of her cruel stepmoth and her daughters. never one to give up hope, ella' fortun begin to chang after meet a dash stranger in the woods. romanc fantasi famili drama cinderella magic princ fairytal kingdom royalti orphan lostsho evilstepmoth retel lilyjam cateblanchett richardmadden kennethbranagh\",\n", " 327: 'after be brutal murdered, 14-year-old susi salmon watch from heaven over her grief-stricken famili -- and her killer. as she observ their daili lives, she must balanc her thirst for reveng with her desir for her famili to heal. fantasi drama rape 1970 evid tree afterlif lossofdaught serialkil corps pedophil teenagelov griev childhoodsexualabus basedonyoungadultnovel rachelweisz markwahlberg susansarandon peterjackson',\n", " 328: \"nemo, an adventur young clownfish, is unexpectedli taken from hi great barrier reef home to a dentist' offic aquarium. it' up to hi worrisom father marlin and a friendli but forget fish dori to bring nemo home -- meet vegetarian sharks, surfer dude turtles, hypnot jellyfish, hungri seagulls, and more along the way. anim famili fathersonrelationship harbor underwat fishtank greatbarrierreef missingchild aftercreditssting duringcreditssting shorttermmemoryloss clownfish fathersonreunion protectivefath albertbrook ellendegener alexandergould andrewstanton\",\n", " 329: \"aragorn is reveal as the heir to the ancient king as he, gandalf and the other member of the broken fellowship struggl to save gondor from sauron' forces. meanwhile, frodo and sam bring the ring closer to the heart of mordor, the dark lord' realm. adventur fantasi action elv orc middle-earth(tolkien) basedonnovel suspicion braveri war honor troll brutal violenc ghost endoftrilog quest swordandsorceri elijahwood ianmckellen viggomortensen peterjackson\",\n", " 330: 'frodo and sam are trek to mordor to destroy the one ring of power while gimli, legola and aragorn search for the orc-captur merri and pippin. all along, nefari wizard saruman await the fellowship member at the orthanc tower in isengard. adventur fantasi action elv orc middle-earth(tolkien) hobbit basedonnovel explos cave fort armi mission attack guid wizard ring swordandsorceri elijahwood ianmckellen viggomortensen peterjackson',\n", " 331: \"john gregory, who is a seventh son of a seventh son and also the local spook, ha protect the countri from witches, boggarts, ghoul and all manner of thing that go bump in the night. howev john is not young anymore, and ha been seek an apprentic to carri on hi trade. most have fail to survive. the last hope is a young farmer' son name thoma ward. will he surviv the train to becom the spook that so mani other couldn't? adventur fantasi magic chosenon darkfantasi witchhunt evilwitch basedonyoungadultnovel swordandsorceri jeffbridg juliannemoor benbarn sergeibodrov\",\n", " 332: \"english aristocrat lara croft is skill in hand-to-hand combat and in the middl of a battl with a secret society. the shape archaeologist moonlight as a tomb raider to recov lost antiqu and meet her match in the evil powell, who' in search of a power relic. adventur fantasi action thriller treasur buddhistmonk planetaryconfigur angkorwat illuminati williamblak treasurehunt archaeologist basedonvideogam archeolog angelinajoli jonvoight iainglen simonwest\",\n", " 333: 'two lead comput scientist work toward their goal of technolog singularity, as a radic anti-technolog organ fight to prevent them from creat a world where comput can transcend the abil of the human brain. thriller sciencefict drama mysteri artificialintellig technolog nanotechnolog computerviru supercomput resurrect love mindcontrol terror scientist extremist moraldilemma computerscientist mindtransf quantumcomput mindupload johnnydepp paulbettani rebeccahal wallypfist',\n", " 334: \"in need of fund for research, dr. alan grant accept a larg sum of money to accompani paul and amanda kirbi on an aerial tour of the infam isla sorna. it isn't long befor all hell break loos and the strand wayfar must fight for surviv as a host of new -- and even more deadli -- dinosaur tri to make snack of them. adventur action thriller sciencefict exoticisland dna paleontolog tyrannosaurusrex velociraptor spinosauru airplan rescu mission dinosaur jurassicpark samneil williamh.maci téaleoni joejohnston\",\n", " 335: \"scientist will rodman is determin to find a cure for alzheimer's, the diseas which ha slowli consum hi father. will feel certain he is close to a breakthrough and test hi latest serum on apes, notic dramat increas in intellig and brain activ in the primat subject – especi caesar, hi pet chimpanzee. thriller action drama sciencefict intellig zoo cage dystopia goldengatebridg ape monkey medicalresearch alzheimer'sdiseas jamesfranco freidapinto johnlithgow rupertwyatt\",\n", " 336: 'upon move into the run-down spiderwick estat with their mother, twin brother jare and simon grace, along with their sister mallory, find themselv pull into an altern world full of faeri and other creatures. adventur famili fantasi brothersisterrelationship familyrelationship singlemoth alternater motherchildrelationship hiddentruth goblin magicalcreatur fairi freddiehighmor mary-louisepark nicknolt markwat',\n", " 337: 'iconoclastic, take-no-prison cop john mcclane, find himself for the first time on foreign soil after travel to moscow to help hi wayward son jack - unawar that jack is realli a highly-train cia oper out to stop a nuclear weapon heist. with the russian underworld in pursuit, and battl a countdown to war, the two mcclane discov that their oppos method make them unstopp heroes. action thriller bomb cia russia escap courthous rogu moscow brucewilli jaicourtney sebastiankoch johnmoor',\n", " 338: \"base on the 1836 standoff between a group of texan and tejano men, led by davi crockett and jim bowie, and mexican dictat santa anna' forc at the alamo in san antonio, texas. western histori war texa offic upris alamo mexican dennisquaid billybobthornton jasonpatr johnleehancock\",\n", " 339: \"bob parr ha given up hi superhero day to log in time as an insur adjust and rais hi three children with hi formerli heroic wife in suburbia. but when he receiv a mysteri assignment, it' time to get back into costume. action adventur anim famili secretident secret hero island wretch supernaturalpow weapon lawsuit superhero craigt.nelson hollyhunt samuell.jackson bradbird\",\n", " 340: 'morgan adam and her slave, william shaw, are on a quest to recov the three portion of a treasur map. unfortunately, the final portion is held by her murder uncle, dawg. her crew is skeptic of her leadership abilities, so she must complet her quest befor they mutini against her. thi is made yet more difficult by the effort of the british crown to end her pirat raids. action adventur exoticisland treasur map ship scalp pirat geenadavi matthewmodin franklangella rennyharlin',\n", " 341: \"accid prone teenager, perci discov he' actual a demi-god, the son of poseidon, and he is need when zeus' lightn is stolen. perci must master hi new found skill in order to prevent a war between the god that could devast the entir world. adventur fantasi famili monster greekmytholog god poseidon lightningbolt basedonyoungadultnovel loganlerman brandont.jackson alexandradaddario chriscolumbu\",\n", " 342: \"men in black follow the exploit of agent kay and jay, member of a top-secret organ establish to monitor and polic alien activ on earth. the two men in black find themselv in the middl of the deadli plot by an intergalact terrorist who ha arriv on earth to assassin two ambassador from oppos galaxies. in order to prevent world from colliding, the mib must track down the terrorist and prevent the destruct of earth. it' just anoth typic day for the men in black. action adventur comedi sciencefict secretident sunglass undercov spacemarin illegalimmigr deport newident giantcockroach cannon flyingsauc staypermit alien fictionalgovernmentag tommyleejon willsmith lindafiorentino barrysonnenfeld\",\n", " 343: \"andi head off to cowboy camp, leav hi toy to their own devices. thing shift into high gear when an obsess toy collector name al mcwhiggen, owner of al' toy barn kidnap woody. andy' toy mount a dare rescu mission, buzz lightyear meet hi match and woodi ha to decid where he and hi heart truli belong. anim comedi famili museum prosecut identitycrisi airplan fleamarket collector teamwork friendship rescueteam garagesal duringcreditssting toycomestolif personif inanimateobjectscomingtolif tomhank timallen joancusack johnlasset\",\n", " 344: 'a runaway train, transport deadly, toxic chemicals, is barrel down on stanton, pennsylvania, and onli two men can stop it: a veteran engin and a young conductor. thousand of live hang in the balanc as these ordinari hero attempt to chase down one million ton of hurtl steel and prevent an epic disaster. action thriller runawaytrain denzelwashington chrispin rosariodawson tonyscott',\n", " 345: \"it' vacat time for carter as he find himself alongsid lee in hong kong wish for more excitement. while carter want to parti and meet the ladies, lee is out to track down a triad gang lord who may be respons for kill two men at the american embassy. thing get complic as the pair stumbl onto a counterfeit plot. the boy are soon up to their neck in fist fight and life-threaten situations. a trip back to the u.s. may provid the answer about the bombing, the counterfeiting, and the true allegi of sexi custom agent isabella. action comedi crime thriller duringcreditssting christuck jackiechan zhangziyi brettratn\",\n", " 346: \"when clair spencer start hear ghostli voic and see spooki images, she wonder if an otherworldli spirit is tri to contact her. all the while, her husband tri to reassur her by tell her it' all in her head. but as clair investigates, she discov that the man she love might know more than he' let on. drama horror mysteri thriller secret hauntedhous ouijaboard haunt missinggirl ghost harrisonford michellepfeiff dianascarwid robertzemecki\",\n", " 347: 'inventor flint lockwood creat a machin that make cloud rain food, enabl the down-and-out citizen of chewandswallow to feed themselves. but when the fall food reach gargantuan proportions, flint must scrambl to avert disaster. can he regain control of the machin and put an end to the wild weather befor the town is destroyed? anim comedi famili weather food scienc billhad annafari jamescaan phillord',\n", " 348: 'time are chang for manni the moodi mammoth, sid the motor mouth sloth and diego the crafti saber-tooth tiger. life heat up for our hero when they meet some new and none-too-friendli neighbor – the mighti dinosaurs. anim comedi famili adventur iceag bridg insan jungl dinosaur birth duringcreditssting 3d rayromano johnleguizamo denisleari carlossaldanha',\n", " 349: 'a timid magazin photo manag who live life vicari through daydream embark on a true-lif adventur when a neg goe missing. adventur comedi drama fantasi himalaya photograph magazin iceland daydream photograph shark firedfromthejob skateboard dreamer onlined daydream benstil kristenwiig pattonoswalt benstil',\n", " 350: \"aspect of thi take on the 1970 hit tv seri are similar to the origin show :angel dylan, natali and alex still work for charli and interfac with bosley. they still flip their hair, stop traffic with a smile and kick butt. the differ are the unsubtl humor, the martial art train and the high-tech premise: thi time, they'r hot on the trail of stolen software. action adventur comedi crime thriller martialart femalefriendship millionair agent camerondiaz lucyliu drewbarrymor mcg\",\n", " 351: \"to take down south boston' irish mafia, the polic send in one of their own to infiltr the underworld, not realiz the syndic ha done likewise. while an undercov cop curri favor with the mob kingpin, a career crimin rise through the polic ranks. but both side soon discov there' a mole among them. drama thriller crime undercov boston polic friend mafia undercovercop mobster mole statepolic policetrain realtor leonardodicaprio mattdamon jacknicholson martinscorses\",\n", " 352: 'a tomboyish girl disguis herself as a young man so she can fight with the imperi chines armi against the invad huns. with help from wise-crack dragon mushu, mulan just might save her countri -- and win the heart of handsom captain li shang. anim famili adventur homeland music train daughter cricket princess dragon luck eddiemurphi jackiechan ming-nawen tonybancroft',\n", " 353: \"vietnam veteran 'four leaf' tayback' memoir, tropic thunder, is be made into a film, but director damien cockburn can’t control the cast of prima donnas. behind schedul and over budget, cockburn is order by a studio execut to get film back on track, or risk it cancellation. on tayback' advice, cockburn drop the actor into the middl of the jungl to film the remain scene but, unbeknownst to the actor and production, the group have been drop in the middl of the golden triangle, the home of heroin-produc gangs. action comedi filmmak satir jungl moviestar southeastasia landmin shackl warfilmmak duringcreditssting blackfac methodact benstil jackblack robertdowneyjr. benstil\",\n", " 354: \"thi english-languag adapt of the swedish novel by stieg larsson follow a disgrac journalist, mikael blomkvist, as he investig the disappear of a weari patriarch' niec from 40 year ago. he is aid by the pierced, tattooed, punk comput hacker name lisbeth salander. as they work togeth in the investigation, blomkvist and saland uncov immens corrupt beyond anyth they have ever imagined. thriller crime mysteri drama rape journalist basedonnovel journal hacker nazi punk investig remak antisocialpersonalitydisord serialkil disappear hack computerhack biblequot scandinavian abus danielcraig rooneymara christopherplumm davidfinch\",\n", " 355: 'new york detect john mcclane is back and kick bad-guy butt in the third instal of thi action-pack series, which find him team with civilian zeu carver to prevent the loss of innoc lives. mcclane thought he\\'d seen it all, until a geniu name simon engag mcclane, hi new \"partner\" -- and hi belov citi -- in a deadli game that demand their concentration. action thriller bomb taxi riddl robberi detect helicopt gold subway ship fistfight polic sequel decept shootout newyorkc explos violenc carchas fbiagent simonsay flashback dumptruck aqueduct actionhero federalreservebank brucewilli jeremyiron samuell.jackson johnmctiernan',\n", " 356: 'eccentr consult detective, sherlock holm and doctor john watson battl to bring down a new nemesi and unravel a deadli plot that could destroy england. action adventur crime mysteri detect scotlandyard coffin blackmag arrest partner sherlockholm murder steampunk pentagram clue robertdowneyjr. judelaw rachelmcadam guyritchi',\n", " 357: 'a fals accus nobleman surviv year of slaveri to take vengeanc on hi best friend who betray him. drama betray vengeanc jackhuston tobykebbel rodrigosantoro timurbekmambetov',\n", " 358: \"the world' most highli qualifi crew of archaeologist and explor is led by historian milo thatch as they board the incred 1,000-foot submarin ulyss and head deep into the mysteri of the sea. anim famili adventur sciencefict sea atlanti anim underwat seamonst michaelj.fox coreyburton claudiachristian garytrousdal\",\n", " 359: 'through a seri of misunderstandings, alvin, simon and theodor come to believ that dave is go to propos to hi new girlfriend in new york citi - and dump them. they have three day to get to him and stop the proposal. adventur anim comedi famili chipmunk cgi talkinganim aftercreditssting duringcreditssting jasonle justinlong bellathorn waltbeck',\n", " 360: 'wound in africa dure world war ii, nazi col. clau von stauffenberg return to hi nativ germani and join the resist in a dare plan to creat a shadow govern and assassin adolf hitler. when event unfold so that he becom a central player, he find himself task with both lead the coup and person kill the führer. drama thriller histori war berlin suicid bomb assassin resist wifehusbandrelationship worldwarii adolfhitl plan friendship decept treason colonel militaryoffic plot germanoffic pianowir medal violenc tomcruis caricevanhouten kennethbranagh bryansing',\n", " 361: \"an isra counterterror soldier with a secretli fabul ambit to becom a manhattan hairstylist. zohan' desir run so deep that he'll do anyth -- includ fake hi own death and go head-to-head with an arab cab driver -- to make hi dream come true. comedi action newyork israel middleeast hairdress ladykil mossad isra palestinian heart-throb middleeastconflict hairstyl hackysack adamsandl johnturturro emmanuellechriqui dennisdugan\",\n", " 362: \"video game expert are recruit by the militari to fight 1980s-era video game charact who'v attack new york. action comedi sciencefict videogam nerd alienattack 3d pixel adamsandl michellemonaghan peterdinklag chriscolumbu\",\n", " 363: \"a robot boy, the first program to love, david is adopt as a test case by a cybertron employe and hi wife. though he gradual becom their child, a seri of unexpect circumst make thi life imposs for david. without final accept by human or machines, david embark on a journey to discov where he truli belongs, uncov a world in which the line between robot and machin is both vast and profoundli thin. drama sciencefict adventur artificialintellig propheci prostitut android lossofmoth extraterrestrialtechnolog iceag adopt fairytal pinocchio prosecut gigolo hologram dystopia alien destini captur doppelgang haleyjoelos franceso'connor samrobard stevenspielberg\",\n", " 364: \"workahol jim ever and hi wife/busi partner, sara get a call one night from mansion owner, edward gracey want to sell hi house. onc the ever famili arriv at the mansion a butler take them to dine with gracey. gracey take one look at sara and he think she' hi lost lover. thriller fantasi comedi famili mysteri secretpassag magic estateag hauntedhous familyvac ghost aftercreditssting eddiemurphi terencestamp nathanielpark robminkoff\",\n", " 365: 'contact is a scienc fiction film about an encount with alien intelligence. base on the novel by carl sagan the film star jodi foster as the one chosen scientist who must make some difficult decis between her beliefs, the truth, and reality. drama sciencefict mysteri basedonnovel nasa newmexico extraterrestrialtechnolog primenumb star radiowav wormhol fanat spiritu religion scientist sabotag hamradio aliencontact mechanicalengin observatori eccentricman radiotelescop jodiefost matthewmcconaughey jameswood robertzemecki',\n", " 366: \"cocki researcher, sebastian cain is work on a project to make live creatur invis and he' so confid he' found the right formula that he test it on himself and soon begin to vanish. the onli problem is – no-on can determin how to make him visibl again. caine' predica eventu drive him mad, with terrifi results. action sciencefict thriller kill humanexperiment scientist invisibleman scienceexperi kevinbacon elisabethshu joshbrolin paulverhoeven\",\n", " 367: 'after silvia broome, an interpret at unit nation headquarters, overhear plan of an assassination, an american secret servic agent is sent to investigate. crime thriller newyork dictat africa destructionofacivil assassin resist reveng murder unitedn witnesstomurd fbiagent resistancefight nicolekidman seanpenn catherinekeen sydneypollack',\n", " 368: 'in their quest to confront the ultim evil, perci and hi friend battl swarm of mythic creatur to find the mythic golden fleec and to stop an ancient evil from rising. adventur famili fantasi poison herm poseidon demigod goldenfleec olympu 3d krono overthrowolympu basedonyoungadultnovel loganlerman alexandradaddario douglassmith thorfreudenth',\n", " 369: \"lara croft ventur to an underwat templ in search of the mytholog pandora' box but, after secur it, it is promptli stolen by the villain leader of a chines crime syndicate. lara must recov the box befor the syndicate' evil mastermind use it to construct a weapon of catastroph capabilities. action adventur fantasi thriller riddl treasur medallion kenia alexanderthegreat pandora'sbox chinesemafia treasurehunt hongkong archaeologist basedonvideogam archeolog angelinajoli gerardbutl noahtaylor jandebont\",\n", " 370: 'one year after outwit the fbi and win the public’ adul with their mind-bend spectacles, the four horsemen resurfac onli to find themselv face to face with a new enemi who enlist them to pull off their most danger heist yet. action adventur comedi crime mysteri thriller londonengland china magic secretsocieti vigilant sequel reveng heist ontherun macauchina magician jesseeisenberg woodyharrelson markruffalo jonm.chu',\n", " 371: 'ivan tretiak, russian mafia boss who want to creat an oil crisi in moscow and seiz power as a result send simon templar, great intern criminal, to england to get a secret formula for cold fusion from u.s. scientist emma russell. templar fall in love with emma and they tri to outwit tretiak and hi guerrillas, hide from them in moscow thriller action romanc sciencefict adventur berlin russia ga masterthief thesaint valkilm elisabethshu radeserbedzija phillipnoyc',\n", " 372: 'veteran spi nathan muir is on the verg of retir from the cia when he learn that hi one-tim protégé and close friend, tom bishop, is a polit prison sentenc to die in beijing. although their friendship ha been mar by bad blood and resentment, muir agre to take on the most danger mission of hi career and rescu bishop. action crime thriller spi china cia coldwar robertredford bradpitt catherinemccormack tonyscott',\n", " 373: 'when contact is lost with the crew of the first mar expedition, a rescu mission is launch to discov their fate. sciencefict mar spacecraft spacetravel alien longtak outerspac astronaut dismember aliencontact trappedinspac garysinis timrobbin doncheadl briandepalma',\n", " 374: 'captur by smuggler when he wa just a hatchling, a macaw name blu never learn to fli and live a happili domest life in minnesota with hi human friend, linda. blu is thought to be the last of hi kind, but when word come that jewel, a lone female, live in rio de janeiro, blu and linda go to meet her. anim smuggler kidnap blu and jewel, but the pair soon escap and begin a peril adventur back to freedom -- and linda. anim adventur comedi famili brazil pet bird music canari samba anim duringcreditssting rio1 río1 jesseeisenberg annehathaway lesliemann carlossaldanha',\n", " 375: 'richard martin buy a gift, a new ndr-114 robot. the product is name andrew by the youngest of the family\\' children. \"bicentenni man\" follow the life and time of andrew, a robot purchas as a household applianc program to perform menial tasks. as andrew begin to experi emot and creativ thought, the martin famili soon discov they don\\'t have an ordinari robot. comedi sciencefict android hologram freedom futurist robot robinwilliam samneil embethdavidtz chriscolumbu',\n", " 376: \"an earthquak shatter a peac lo angel morn and open a fissur deep into the earth, caus lava to start bubbl up. as a volcano begin form in the la brea tar pits, the director of the city' emerg manag service, mike roark, work with geologist ami barnes, must then use everi resourc in the citi to tri and stop the volcano from consum lo angeles. sciencefict action drama thriller subway lava volcano volcanologist losangel tommyleejon annehech gabyhoffmann mickjackson\",\n", " 377: \"franki mcguire, one of the ira' deadliest assassins, draw an american famili into the crossfir of terrorism. but when he is sent to the u.s. to buy weapons, franki is hous with the famili of tom o'meara, a new york cop who know noth about frankie' real identity. their surpris friendship, and tom' grow suspicions, forc franki to choos between the promis of peac or a lifetim of murder. crime thriller drama newyork terrorist anonym northernireland harrisonford bradpitt margaretcolin alanj.pakula\",\n", " 378: \"when russia' first nuclear submarin malfunct on it maiden voyage, the crew must race to save the ship and prevent a nuclear disaster. drama histori thriller submarin sovietunion coremelt northatlant nuclear womandirector harrisonford liamneeson petersarsgaard kathrynbigelow\",\n", " 379: 'a film adapt of the classic sword and sorceri hero, conan the barbarian. a hord of rampag warrior massacr the parent of young conan and enslav the young child for year on the wheel of pain. as the sole survivor of the childhood massacre, conan is releas from slaveri and taught the ancient art of fighting. transform himself into a kill machine, conan travel into the wilder to seek vengeanc on thulsa doom, the man respons for kill hi family. in the wilderness, conan take up with the thiev valeria and subotai. the group come upon king osric, who want the trio of warrior to help rescu hi daughter who ha join doom in the hills. adventur fantasi action gladiat repay despot barbarian swordandsorceri arnoldschwarzenegg jamesearljon maxvonsydow johnmiliu',\n", " 380: \"the true stori of boxer, jim braddock who, in the 1920’ after hi retirement, ha a surpris comeback in order to get him and hi famili out of a social poor state. romanc drama histori transport netherland worldcup sociallydeprivedfamili family'sdailylif boxer boxingmatch comeback train heavyweight folkhero biographi daughter defeat sport russellcrow renéezellweg paulgiamatti ronhoward\",\n", " 381: \"set in 1920' vienna, thi a tale of a littl girl, whose godfath give her a special doll one christma eve. fantasi action famili ellefan nathanlan johnturturro andreikonchalovski\",\n", " 382: 'true stori of the unders depression-era racehors whose victori lift not onli the spirit of the team behind it but also those of their nation. drama histori horserac americandream racehors greatdepress jeffbridg davidmccullough chriscoop garyross',\n", " 383: 'tv weatherman bill hard is tri to get hi tornado-hunt wife, jo, to sign divorc paper so he can marri hi girlfriend melissa. but mother nature, in the form of a seri of intens storm sweep across oklahoma, ha other plans. soon the three have join the team of stormchas as they attempt to insert a revolutionari measur devic into the veri heart of sever extrem violent tornados. action adventur drama wifehusbandrelationship tornado twister oklahoma metereologist invent climat barn naturaldisast cow truck disast auntniecerelationship stormchas divorc helenhunt billpaxton caryelw jandebont',\n", " 384: \"chuck, a top intern manag for fedex, and kelly, a ph.d. student, are in love and head toward marriage. then chuck' plane to malaysia ditch at sea dure a terribl storm. he' the onli survivor, and he wash up on a tini island with noth but some flotsam and jetsam from the aircraft' cargo. adventur drama exoticisland suicideattempt volleybal loneli airplanecrash desertedisland tropicalisland survivalskil tomhank helenhunt chrisnoth robertzemecki\",\n", " 385: 'into the world of the emperor penguins, who find their soul mate through song, a penguin is born who cannot sing. but he can tap danc someth fierce! anim comedi ocean fish zoo penguin tapdanc love crush snow anthropomorph sing antarctica famili duringcreditssting elijahwood robinwilliam brittanymurphi georgemil',\n", " 386: 'when a cia oper to purchas classifi russian document is blown by a rival agent, who then show up in the sleepi seasid villag where bourn and mari have been living. the pair run for their live and bourne, who promis retali should anyon from hi former life attempt contact, is forc to onc again take up hi life as a train assassin to survive. action drama thriller berlin assassin basedonnovel amnesia sniper lie sequel suspens ontherun shootout espionag violenc footchas carchas explodinghous thoughguy oneagainstmani railcar darkpast moscow handtohandcombat mattdamon frankapotent briancox paulgreengrass',\n", " 387: 'russian terrorist conspir to hijack the aircraft with the presid and hi famili on board. the command in chief find himself face an imposs predicament: give in to the terrorist and sacrific hi family, or risk everyth to uphold hi principl - and the integr of the nation. action thriller prison corrupt journalist whitehous hostag ultimatum hostage-tak airforceon aerialcombat conspiraci gunfight fighterplan secretservic americanpresid handtohandcombat negoti politicalprison airplanehijack harrisonford garyoldman glennclos wolfgangpetersen',\n", " 388: \"less than 24 hour into hi parole, charismat thief danni ocean is alreadi roll out hi next plan: in one night, danny' hand-pick crew of specialist will attempt to steal more than $150 million from three la vega casinos. but to score the cash, danni risk hi chanc of reconcil with ex-wife, tess. thriller crime prison pickpocket stripclub conartist atlanticc cockneyacc lasvega carddeal explosivesexpert blackandwhitescen male saltlakecityutah georgeclooney bradpitt mattdamon stevensoderbergh\",\n", " 389: \"the hot-head young d'artagnan along with three former legendari but now down on their luck musket must unit and defeat a beauti doubl agent and her villain employ from seiz the french throne and engulf europ in war. adventur action thriller numberintitl historicalfict musket 17thcenturi 3d millajovovich orlandobloom loganlerman paulw.s.anderson\",\n", " 390: \"dracula, who oper a high-end resort away from the human world, goe into overprotect mode when a boy discov the resort and fall for the count' teen-ag daughter. anim comedi famili fantasi witch magic mummi vampir dracula skeleton backpack frankenstein wolfman zombi invisibleman duringcreditssting nosferatu protectivefath fangvamp adamsandl stevebuscemi davidspad genndytartakovski\",\n", " 391: 'the beauti princess gisel is banish by an evil queen from her magical, music anim land and find herself in the gritti realiti of the street of modern-day manhattan. shock by thi strang new environ that doesn\\'t oper on a \"happili ever after\" basis, gisel is now adrift in a chaotic world badli in need of enchantment. but when gisel begin to fall in love with a charmingli flaw divorc lawyer who ha come to her aid - even though she is alreadi promis to a perfect fairi tale princ back home - she ha to wonder: can a storybook view of romanc surviv in the real world? comedi famili fantasi romanc poison queen fairytal music princess portal anim fantasyworld evilwitch partanim amyadam patrickdempsey jamesmarsden kevinlima',\n", " 392: \"a danger cia renegad resurfac after a decad on the run. when the safe hous he' remand to is attack by mercenaries, a rooki oper escap with him. now, the unlik alli must stay aliv long enough to uncov who want them dead. action thriller cia violenc safehous rogueag capetownsouthafrica soccerstadium denzelwashington ryanreynold verafarmiga danielespinosa\",\n", " 393: \"get readi for a howl good time as an all new assort of irresist anim hero are unleash in thi great famili tail! in an unlik alliance, the outrag waddlesworth... a parrot who think he' a rottweiler... team up with oddball... an un-mark dalmat puppi eager to earn her spots! togeth they embark on a laugh-pack quest to outwit the ever-schem cruella de vil comedi famili londonengland prison releasefromprison women'sprison societyforthepreventionofcrueltytoanim puppi pelz dog dalmatian glennclos ioangruffudd aliceevan kevinlima\",\n", " 394: 'a luxuri condo manag lead a staff of worker to seek payback on the wall street swindler who defraud them. with onli day until the billionair get away with the perfect crime, the unlik crew of amateur thiev enlist the help of petti crook slide to steal the $20 million they’r sure is hidden in the penthouse. action comedi skyscrap thanksgiv billionair parad fbiagent apart highris femaleag ponzischem emptysaf capercomedi plan safecrack recruit heistmovi deceit lobbi benstil eddiemurphi caseyaffleck brettratn',\n", " 395: 'two women, one (cameron diaz) from america and one (kate winslet) from britain, swap home at christmastim after bad breakup with their boyfriends. each woman find romanc with a local man (jude law, jack black) but realiz that the immin return home may end the relationship. comedi romanc holiday londonengland filmmak christmasparti countryhous roomexchang surrey romanticcomedi losangel multiplestorylin womandirector christma camerondiaz katewinslet judelaw nancymey',\n", " 396: 'hotshot washington lawyer, robert dean becom a victim of high-tech ident theft when a hacker slip an incrimin video into hi pocket. soon, a rogu nation secur agent set out to recov the tape – and destroy dean. action drama thriller corrupt washingtond.c. helicopt falselyaccus ident mexicanstandoff blackmail intellig wiretap satellit nationalsecurityagency(nsa) polit explodingbuild suspens mysteri mafia conspiraci lawyer crime privaci surveil baltimoremaryland secrethideout willsmith genehackman jonvoight tonyscott',\n", " 397: \"ten year after their divorce, jane and jake adler unit for their son' colleg graduat and unexpectedli end up sleep together. but jake is married, and jane is embark on a new romanc with her architect. now, she ha to sort out her life – just when she thought she had it all figur out. comedi romanc graduat exhusband womandirector merylstreep alecbaldwin stevemartin nancymey\",\n", " 398: \"danni ocean' team of crimin are back and compos a plan more person than ever. when ruthless casino owner willi bank doublecross reuben tishkoff, caus a heart attack, danni ocean vow that he and hi team will do anyth to bring down willi bank along with everyth he' got. even if it mean ask for help from an enemy. crime thriller casino thief reveng heist lasvega pretendingtoberich laborstrik georgeclooney bradpitt mattdamon stevensoderbergh\",\n", " 399: 'boog, a domest 900lb. grizzli bear find himself strand in the wood 3 day befor open season. forc to reli on elliot, a fast-talk mule deer, the two form an unlik friendship and must quickli ralli other forest anim if they are to form a rag-tag armi against the hunters. adventur anim famili hunter mountain garag grizzlybear bunni chase forest deer bear hunt martinlawr ashtonkutch garysinis jillculton',\n", " 400: \"in a world divid into faction base on person types, tri learn that she' been classifi as diverg and won't fit in. when she discov a plot to destroy divergents, tri and the mysteri four must find out what make diverg danger befor it' too late. adventur action sciencefict basedonnovel dystopia youth dystopicfutur castesystem diverg basedonyoungadultnovel shailenewoodley theojam katewinslet neilburg\",\n", " 401: 'enemi at the gate is a war film from jean-jacqu annaud from 2001 that take place dure the battl of stalingard in world war ii between the russian and the germans. war winter sniper worldwarii stalingrad judelaw rachelweisz edharri jean-jacquesannaud',\n", " 402: \"when travis, the mouthi son of a criminal, disappear in the amazon in search of a treasur artifact, hi father send in beck, who becom travis' rival for the affect of mariana, a mysteri brazilian woman. with hi steeli disposition, beck is a man of few word -- but it take him all the disciplin he can muster to work with travi to nab a tyrant who' after the same treasure. adventur action comedi thriller hunter bounti bountyhunt fight amazon treasurehunt jungl dwaynejohnson seannwilliamscott rosariodawson peterberg\",\n", " 403: \"danni is obsess with a fiction movi charact action hero jack slater. when a magic ticket transport him into jack' latest adventure, danni find himself in a world where movi magic and realiti collide. now it' up to danni to save the life of hi hero and new friend. adventur fantasi action comedi famili magic movieinmovi spoof magicalobject cartooncat ticket self-referenti projectionist child'spointofview arnoldschwarzenegg f.murrayabraham artcarney johnmctiernan\",\n", " 404: 'a sweep romant epic set in japan in the year befor world war ii, a penniless japanes child is torn from her famili to work as a maid in a geisha house. drama histori romanc japan prostitut sistersisterrelationship brothel worldwarii geisha zhangziyi gongli youkikudoh robmarshal',\n", " 405: 'in order to avoid a jail sentence, sean boswel head to tokyo to live with hi militari father. in a low-rent section of the city, shaun get caught up in the underground world of drift race action crime drama thriller carrac carjourney carmechan auto cargarag auto-tun drift car automobilerac lucasblack nathaliekelley sungkang justinlin',\n", " 406: 'each christmas, santa and hi vast armi of highli train elv produc gift and distribut them around the world in one night. however, when one of 600 million children to receiv a gift from santa on christma eve is missed, it is deem ‘acceptable’ to all but one – arthur. arthur clau is santa’ misfit son who execut an unauthor rooki mission to get the last present half way around the globe befor dawn on christma morning. drama anim famili comedi holiday santaclau duringcreditssting womandirector christma jamesmcavoy hughlauri billnighi barrycook',\n", " 407: 'when the grim reaper come to collect the soul of megamogul bill parrish, he arriv with a proposition: host him for a \"vacation\" among the live in trade for a few more day of existence. parrish agrees, and use the pseudonym joe black, death begin take part in parrish\\' daili agenda and fall in love with the man\\' daughter. yet when black\\' holiday is over, so is parrish\\' life. fantasi drama mysteri lifeanddeath loveatfirstsight brokenengag firework religionandsupernatur teenagecrush fate doctor millionair bradpitt anthonyhopkin claireforlani martinbrest',\n", " 408: \"firefight gordon brewer is plung into the complex and danger world of intern terror after he lose hi wife and child in a bomb credit to claudio 'the wolf' perrini. action thriller drama terrorist fbi colombia firemen reveng explos carexplos bombattack arnoldschwarzenegg francescaneri eliaskotea andrewdavi\",\n", " 409: \"bob fosse' semi-autobiograph film celebr show busi strip of glitz or giddi illusions. joe gideon (roy scheider) is at the top of the heap, one of the most success director and choreograph in music theatre. but he can feel hi world slowli collaps around him--hi obsess with work ha almost destroy hi person life, and onli hi bottl of pill keep him going. drama music showbusi filmmak tapdanc movieinmovi divorc tvshowinfilm stand-upcomedian broadway rainstorm surgeri dreamsequ edit semiautobiograph restroom screeningroom amphetamin prescriptiondrugabus royscheid jessicalang lelandpalm bobfoss\",\n", " 410: \"after she spend all her money, an evil enchantress queen scheme to marri a handsome, wealthi prince. there' just one problem - he' in love with a beauti princess, snow white. now, join by seven rebelli dwarves, snow white launch an epic battl of good vs. evil... adventur fantasi drama comedi sciencefict famili attemptedmurd fairytal blackmag cockroach villai goodvsevil womanfightsman insecur mirror snowkingdom snowwhit evilqueen enchantress gala financialproblem pendant halfnakedman returningmoney evilplot duringcreditssting juliarobert lilycollin armiehamm tarsemsingh\",\n", " 411: 'scott pilgrim is a film adapt of the critic acclaimed, award-win seri of graphic novel of the same name by canadian cartoonist bryan lee o’malley. scott pilgrim is a 23 year old canadian slacker and wannab rockstar who fall in love with an american deliveri girl, ramona v. flowers, and must defeat her seven \"evil exes\" to be abl to date her. action adventur comedi whip hipster underagegirlfriend animatedflashback character\\'spointofviewcamerashot unconsci girlfight vegan aftercreditssting michaelcera maryelizabethwinstead kieranculkin edgarwright',\n", " 412: \"geophysicist dr. josh key discov that an unknown forc ha caus the earth' inner core to stop rotating. with the planet' magnet field rapidli deteriorating, our atmospher liter start to come apart at the seam with catastroph consequences. to resolv the crisis, keyes, along with a team of the world' most gift scientists, travel into the earth' core. their mission: deton a devic that will reactiv the core. action thriller adventur sciencefict magneticfield centeroftheearth disasterfilm aaroneckhart hilaryswank delroylindo jonamiel\",\n", " 413: \"the hilar begin when professor sherman klump find romanc with fellow dna specialist, denis gaines, and discov a brilliant formula that revers aging. but sherman' thin and obnoxi alter ego, buddi love, want out...and a big piec of the action. and when buddi get loose, thing get serious nutty. fantasi comedi romanc sciencefict alterego madscientist famili dean duringcreditssting researchlaboratori eddiemurphi janetjackson larrymil peterseg\",\n", " 414: 'the mysteri inc. gang have gone their separ way and have been apart for two years, until they each receiv an invit to spooki island. not know that the other have also been invited, they show up and discov an amus park that affect young visitor in veri strang ways. mysteri adventur comedi amateurdetect voodoo resort crimesolv freddieprinzejr. sarahmichellegellar matthewlillard rajagosnel',\n", " 415: 'in the future, america is a dystopian wasteland. the latest scourg is ma-ma, a prostitute-turned-drug pusher with a danger new drug and aim to take over the city. the onli possibl of stop her is an elit group of urban polic call judges, who combin the duti of judge, juri and execution to deliv a brutal brand of swift justice. but even the top-rank judge, dredd, discov that take down ma-ma isn’t as easi as it seem in thi explos adapt of the huge popular comic series. action sciencefict usa corrupt crimefight judg metropoli law post-apocalypt dystopia executivecas polic futurist basedoncomicbook gore surviv gunfight gangster extremeviol psychic violenc crimin justic druglord basedongraphicnovel dystopicfutur darkhumor expertmarksman rooki dredd 2000ad karlurban oliviathirlbi lenaheadey petetravi',\n", " 416: 'a workahol architect find a univers remot that allow him to fast-forward and rewind to differ part of hi life. complic aris when the remot start to overrul hi choices. comedi drama fantasi romanc regret workahol heartattack architect dyinganddeath timetravel remotecontrol children liposuct hospit wed dog secondch alternater fatherhood obes adamsandl katebeckinsal christopherwalken frankcoraci',\n", " 417: 'inspir by the e.c. comic of the 1950s, georg a.romero and stephen king bring five tale of terror to the screen. horror comedi fantasi monster halloween meteor buriedal cockroach antholog basedoncomicbook gore animatedsequ zombi livingdead halholbrook adriennebarbeau fritzweav georgea.romero',\n", " 418: 'the ongo war between the canin and felin speci is put on hold when they join forc to thwart a rogu cat spi with her own sinist plan for conquest. comedi famili tortur aftercreditssting duringcreditssting 3d jamesmarsden nicknolt christinaappleg bradpeyton',\n", " 419: 'david rice is a man who know no boundaries, a jumper, born with the uncanni abil to teleport instantli to anywher on earth. when he discov other like himself, david is thrust into a danger and bloodthirsti war while be hunt by a sinist and determin group of zealot who have sworn to destroy all jumpers. now, david’ extraordinari gift may be hi onli hope for survival! adventur fantasi sciencefict adolesc basedonnovel lossofchild fight chase teleport supernaturalpow leapintim enemi motherlylov haydenchristensen jamiebel samuell.jackson dougliman',\n", " 420: 'in thi continu to the adventur of the demon superhero, an evil elf break an ancient pact between human and creatures, as he declar war against humanity. he is on a mission to releas the golden army, a deadli group of fight machin that can destroy the human race. as hell on earth is readi to erupt, hellboy and hi crew set out to defeat the evil prince. adventur fantasi sciencefict auction northernireland resign superhero rebellion violenc spear cutarm splitscreen superheroteam armrippedoff supervillain remors selfexil vanishingfigur fathersonconflict ronperlman selmablair jeffreytambor guillermodeltoro',\n", " 421: \"the true stori of the investig of 'the zodiac killer', a serial killer who terrifi the san francisco bay area, taunt polic with hi cipher and letters. the case becom an obsess for four men as their live and career are built and destroy by the endless trail of clues. crime drama mysteri thriller california sanfrancisco kill journalist newspap massmurd plannedmurd embassi victim threattodeath victimofmurd code polic murder serialkil report jakegyllenha robertdowneyjr. markruffalo davidfinch\",\n", " 422: 'futurist action about a man who meet a clone of himself and stumbl into a grand conspiraci about clone take over the world. sciencefict clone futur murder clone lasergun dystopicfutur implantedmemori sci-fithril arnoldschwarzenegg michaelrapaport tonygoldwyn rogerspottiswood',\n", " 423: 'bruce nolan toil as a \"human interest\" televis report in buffalo, n.y. despit hi high rate and the love of hi beauti girlfriend, grace, bruce remain unfulfilled. at the end of the worst day in hi life, he angrili ridicul god -- and the almighti responds, endow bruce with all of hi divin powers. fantasi comedi christian moon respons mose streetgang lovesick journal newlov faith prayer god carcrash jimcarrey jenniferaniston philipbakerhal tomshadyac',\n", " 424: 'barney ross lead a band of highli skill mercenari includ knife enthusiast lee christmas, a martial art expert, heavi weapon specialist, demolitionist, and a loose-cannon sniper. when the group is commiss by the mysteri mr. church to assassin the dictat of a small south american island, barney and lee visit the remot local to scout out their opposit and discov the true natur of the conflict engulf the city. thriller adventur action tattoo martialart sniper island mercenari bridg rescu escap church drug blade ensemblecast duringcreditssting sylvesterstallon jasonstatham dolphlundgren sylvesterstallon',\n", " 425: \"when ethan hunt, the leader of a crack espionag team whose peril oper ha gone awri with no explanation, discov that a mole ha penetr the cia, he' surpris to learn that he' the no. 1 suspect. to clear hi name, hunt now must ferret out the real doubl agent and, in the process, even the score. adventur action thriller pari londonengland spi cia terrorist secretident undercov armsdeal headquart secretbas secretmiss pragu embassi secretag tgv comput mission basedontvseri espionag agent tomcruis jonvoight emmanuellebéart briandepalma\",\n", " 426: 'everi year in the ruin of what wa onc north america, the nation of panem forc each of it twelv district to send a teenag boy and girl to compet in the hunger games. part twist entertainment, part govern intimid tactic, the hunger game are a nation televis event in which “tributes” must fight with one anoth until one survivor remains. pit against highly-train tribut who have prepar for these game their entir lives, katniss is forc to reli upon her sharp instinct as well as the mentorship of drunken former victor haymitch abernathy. if she’ ever to return home to district 12, katniss must make imposs choic in the arena that weigh surviv against human and life against love. the world will be watching. sciencefict adventur fantasi hallucin dystopia femaleprotagonist bowandarrow knifethrow knifefight game archeri blind glamour roastedpig sponsor chariot fictionaltvshow mineexplos basedonyoungadultnovel jenniferlawr joshhutcherson liamhemsworth garyross',\n", " 427: \"the hangov crew head to thailand for stu' wedding. after the disast of a bachelor parti in la vega last year, stu is play it safe with a mellow pre-wed brunch. however, noth goe as plan and bangkok is the perfect set for anoth adventur with the rowdi group. comedi sunglass interpol undercovercop hangov duringcreditssting bradleycoop edhelm zachgalifianaki toddphillip\",\n", " 428: \"have defeat the joker, batman now face the penguin - a warp and deform individu who is intent on be accept into gotham society. crook businessman max schreck is coerc into help him becom mayor of gotham and they both attempt to expos batman in a differ light. selina kyle, max' secretary, is thrown from the top of a build and is transform into catwoman - a mysteri figur who ha the same person disord as batman. batman must attempt to clear hi name, all the time decid just what must be done with the catwoman. action fantasi holiday corrupt doublelif dccomic crimefight hallucin christmastre gothamc vigilant superhero violenc darkhero fictionalc supervillain superpow deform birdcag evilcircu christmasholiday michaelkeaton dannydevito michellepfeiff timburton\",\n", " 429: 'a scheme raccoon fool a mismatch famili of forest creatur into help him repay a debt of food, by invad the new suburban sprawl that pop up while they were hibern – and learn a lesson about famili himself. comedi anim famili squirrel eatinganddrink vorort garden grizzlybear entrap suburbianidyl garbag forest turtl hidinginagarbagecontain skunk racoon anim brucewilli garryshandl stevecarel kareykirkpatrick',\n", " 430: 'a lone hawaiian girl name lilo is be rais by her older sister, nani, after their parent die -- under the watch of social worker cobra bubbles. when lilo adopt a funny-look dog and name him \"stitch,\" she doesn\\'t realiz her new best friend is a wacki alien creat by mad scientist dr. jumba. anim famili sistersisterrelationship extraterrestrialtechnolog hawaii adopt mutat alienlife-form alienphenomenon anim dog deadpar chrissand daveighchas tiacarrer chrissand',\n", " 431: 'wilbur the pig is scare of the end of the season, becaus he know that come that time, he will end up on the dinner table. he hatch a plan with charlotte, a spider that live in hi pen, to ensur that thi will never happen. comedi famili fantasi hero barn spider pig egg friendship spring uncl friend rescu surviv talkinganim grass famili desk raincoat talkingpig juliarobert stevebuscemi johnclees garywinick',\n", " 432: \"a seven-mile-wid space rock is hurtl toward earth, threaten to obliter the planet. now, it' up to the presid of the unit state to save the world. he appoint a tough-as-nail veteran astronaut to lead a joint american-russian crew into space to destroy the comet befor impact. meanwhile, an enterpris report use her smart to uncov the scoop of the century. action drama romanc usapresid nasa metereologist spacemiss comet naturaldisast tsunami astronom astronaut womandirector disastermovi robertduval téaleoni elijahwood mimiled\",\n", " 433: 'retir c.i.a. agent frank mose reunit hi unlik team of elit oper for a global quest to track down a miss portabl nuclear device. action comedi crime thriller pari londonengland cia russia mi6 hiredkil explodingairplan brucewilli catherinezeta-jon anthonyhopkin deanparisot',\n", " 434: \"pro quarter-back, paul crew and former colleg champion and coach, nate scarboro are do time in the same prison. ask to put togeth a team of inmat to take on the guards, crew enlist the help of scarboro to coach the inmat to victori in a footbal game 'fixed' to turn out quit anoth way. comedi drama prison americanfootbal prison blackmail supervisor sport adamsandl chrisrock burtreynold peterseg\",\n", " 435: 'play around while aboard a cruis ship, the chipmunk and chipett accident go overboard and end up maroon in a tropic paradise. they discov their new turf is not as desert as it seems. comedi fantasi famili music anim sequel chipmunk cruiseship overboard jasonle davidcross jennysl mikemitchel',\n", " 436: 'the all-star comedi cast from grown up return (with some excit new additions) for more summertim laughs. lenni (adam sandler) ha reloc hi famili back to the small town where he and hi friend grew up. thi time around, the grown up are the one learn lesson from their kid on a day notori full of surprises: the last day of school. comedi adamsandl kevinjam chrisrock dennisdugan',\n", " 437: 'when the ident of secret agent from control are compromised, the chief promot hapless but eager analyst maxwel smart and team him with stylish, capabl agent 99, the onli spi whose cover remain intact. can they work togeth to thwart the evil plan of kao and it crafti operative? action comedi thriller danc spi terrorist traitor airplan violin basedontvseri leg stevecarel annehathaway dwaynejohnson peterseg',\n", " 438: \"harri sanborn is an age music industri exec with a fond for younger women like marin, hi latest trophi girlfriend. thing get a littl awkward when harri suffer a heart attack at the home of marin' mother, erica. left in the care of erica and hi doctor, a love triangl start to take shape. drama comedi romanc agediffer ladykil womandirector jacknicholson dianekeaton keanureev nancymey\",\n", " 439: 'world war ii soldier-turned-u.s. marshal teddi daniel investig the disappear of a patient from a hospit for the crimin insane, but hi effort are compromis by hi troubl vision and also by a mysteri doctor. drama thriller mysteri basedonnovel island hurrican investig psychiatrichospit u.s.marsh conspiracytheori 1950 leonardodicaprio markruffalo benkingsley martinscorses',\n", " 440: 'brad and kate have made someth of an art form out of avoid their famili dure the holidays, but thi year their foolproof plan is about go bust -- big time. stuck at the citi airport after all depart flight are canceled, the coupl is embarrass to see their ruse expos to the world by an overzeal televis reporter. now, brad and kate are left with preciou littl choic other than to swallow their pride and suffer the rounds. comedi romanc drama holiday romanticcomedi dysfunctionalfamili christma vincevaughn reesewitherspoon robertduval sethgordon',\n", " 441: \"rodney copperbottom is a young robot inventor who dream of make the world a better place, until the evil ratchet take over big weld industries. now, rodney' dream – and those of hi friend – are in danger of becom obsolete. anim comedi famili sciencefict inventor businessman robot dishonesti robinwilliam ewanmcgregor halleberri chriswedg\",\n", " 442: \"an antiterror agent goe under the knife to acquir the like of a terrorist and gather detail about a bomb plot. when the terrorist escap custody, he undergo surgeri to look like the agent so he can get close to the agent' family. action crime sciencefict thriller undercov mexicanstandoff biologicalweapon facetranspl rageandh fistfight hostil reveng decept tragedi shootout hospit boatchas losangel explos extremeviol fbiagent prisonescap criminalgang flashback goldengun archvillain bulletballet johntravolta nicolascag joanallen johnwoo\",\n", " 443: \"skeeter bronson is a down-on-his-luck guy who' alway tell bedtim stori to hi niec and nephew. but hi life is turn upsid down when the fantast stori he make up for entertain inexplic turn into reality. can a bewild skeeter manag hi own unruli fantasi now that the outrag charact and situat from hi mind have morph into actual peopl and events? fantasi comedi famili romanc wishescometru escapad disord imaginari miraculousev imaginarykingdom lifeturnedupsidedown nothinggoesright adamsandl kerirussel guypearc adamshankman\",\n", " 444: 'mike sullivan work as a hit man for crime boss john rooney. sullivan view rooney as a father figure, howev after hi son is wit to a killing, mike sullivan find himself on the run in attempt to save the life of hi son and at the same time look for reveng on those who wrong him. thriller crime drama basedongraphicnovel homework shotinthechin softboiledegg learningtodr spoiledson scarredfac thompsonsubmachinegun frostonawindow cauterizingawound libertyhalfdollar tomhank tylerhoechlin jenniferjasonleigh sammend',\n", " 445: \"a plastic surgeon, romanc a much younger schoolteacher, enlist hi loyal assist to pretend to be hi soon to be ex-wife, in order to cover up a careless lie. when more lie backfire, the assistant' kid becom involved, and everyon head off for a weekend in hawaii that will chang all their lives. romanc comedi beach fictitiousmarriag blackmail plasticsurgeri marriag love beautifulwoman kidsandfamili adamsandl jenniferaniston nicolekidman dennisdugan\",\n", " 446: 'when the govern put all it rotten crimin egg in one airborn basket, it\\' ask for trouble. befor you can say, \"pass the barf bag,\" the crook control the plane, led by creepi cyru \"the virus\" grissom. watch hi everi move is the just-releas cameron poe, who\\'d rather reunit with hi family. action thriller crime prison ambush helicopt airport gasstat undercov mexicanstandoff braveri hijack escap shootout u.s.marsh lasvega explos brutal violenc convict desert warhero deaagent motorcyclechas nicolascag johncusack johnmalkovich simonwest',\n", " 447: \"jerri shaw and rachel holloman are two stranger whose live are suddenli thrown into turmoil by a mysteri woman they have never met. threaten their live and family, the unseen caller use everyday technolog to control their action and push them into increas danger. as event escalate, jerri and rachel becom the country' most-want fugit and must figur out what is happen to them. mysteri thriller action artificialintellig washingtond.c. secretident hostag technolog fbi pentagon twinbroth fbiagent shialabeouf michellemonaghan rosariodawson d.j.caruso\",\n", " 448: \"in thi classic stori of love and devot set against the backdrop of the american civil war, a wound confeder soldier name w.p. inman desert hi unit and travel across the south, aim to return to hi young wife, ada, who he left behind to tend their farm. as inman make hi peril journey home, ada struggl to keep their home intact with the assist of ruby, a mysteri drifter sent to help her by a kindli neighbor. drama lossoflov lossoffamili desert lossoffath loveofone'slif judelaw nicolekidman renéezellweg anthonyminghella\",\n", " 449: 'a post-apocalypt tale, in which a lone man fight hi way across america in order to protect a sacr book that hold the secret to save humankind. action thriller sciencefict book post-apocalypt dystopia faith blind denzelwashington garyoldman milakuni alberthugh',\n", " 450: \"professor phillip brainard, an absent mind professor, work with hi assist weebo, tri to creat a substanc that' a new sourc of energi and that will save medfield colleg where hi sweetheart sara is the president. he ha miss hi wed twice, and on the afternoon of hi third wedding, professor brainard creat flubber, which allow object to fli through the air. comedi famili sciencefict weddingvow inventor slime green flight madscientist wed robinwilliam marciagayharden christophermcdonald lesmayfield\",\n", " 451: 'dr. david marrow invit nell vance, and theo and luke sanderson to the eeri and isol hill hous to be subject for a sleep disord study. the unfortun guest discov that marrow is far more interest in the sinist mansion itself – and they soon see the true natur of it horror. horror thriller fantasi mysteri basedonnovel trauma castl hauntedhous insomnia bone poster paint remak haunt childlabor audiorecord spiralstaircas evil loner research insomniac paranormalact logbook strangenois spook cherub liamneeson catherinezeta-jon owenwilson jandebont',\n", " 452: 'in a desper attempt to win a basketbal match and earn their freedom, the looney tune seek the aid of retir basketbal champion, michael jordan. anim comedi drama famili fantasi sport basketbal doctor basketballteam basketballgam refere basketballcourt tweetybird speedygonzal cartoonchicken sylvesterthecat cartoonrealitycrossov basketballhoop cartoonskunk michaeljordan wayneknight billywest joepytka',\n", " 453: 'when the coach of the franc soccer team is kill by a poison dart in the stadium in the end of a game, and hi expens and huge ring with the diamond pink panther disappears, the ambiti chief inspector dreyfu assign the worst polic inspector jacqu clouseau to the case. action comedi crime mysteri famili robberi investig inspector killer clouseau pinkpanth murderhunt stevemartin kevinklin jeanreno shawnlevi',\n", " 454: 'a repres of an alien race that went through drastic evolut to surviv it own climat change, klaatu come to earth to assess whether human can prevent the environment damag they have inflict on their own planet. when bar from speak to the unit nations, he decid humankind shall be extermin so the planet can survive. drama sciencefict thriller extraterrestrialtechnolog spacecraft ultimatum evacu panic govern remak ufo alien endoftheworld giantrobot tank socialcommentari poweroutag interrog environment threat aliencontact centralpark messeng nanobot disintegr keanureev jenniferconnelli kathyb scottderrickson',\n", " 455: 'a man obsess with conspiraci theori becom a target after one of hi theori turn out to be true. unfortunately, in order to save himself, he ha to figur out which theori it is. action drama mysteri thriller newyork cia helicopt assassin secret obsess taxidriv fbi paranoia wheelchair chase theori polit govern control cover-up murder suspens conspiraci tortur flashback target geronimo newslett melgibson juliarobert patrickstewart richarddonn',\n", " 456: 'last month of world war ii in april 1945. as the alli make their final push in the european theater, a battle-harden u.s. armi sergeant in the 2nd armor divis name wardaddi command a sherman tank call \"fury\" and it five-man crew on a deadli mission behind enemi lines. outnumb and outgunned, wardaddi and hi men face overwhelm odd in their heroic attempt to strike at the heart of nazi germany. war drama action worldwarii nazi war nazigermani panzer tank bradpitt shialabeouf loganlerman daviday',\n", " 457: \"when quinn, a grouchi pilot live the good life in the south pacific, agre to transfer a savvi fashion editor, robin, to tahiti, he end up strand on a desert island with her after their plane crashes. the pair avoid each other at first, until they'r forc to team up to escap from the island -- and some pirat who want their heads. action adventur comedi romanc overleven familyguy harrisonford annehech davidschwimm ivanreitman\",\n", " 458: 'jellyston park ha been lose business, so greedi mayor brown decid to shut it down and sell the land. that mean famili will no longer be abl to experi the natur beauti of the outdoor -- and, even worse, yogi and boo boo will be toss out of the onli home they\\'v ever known. face with hi biggest challeng ever, yogi must prove that he realli is \"smarter than the averag bear\" as he and boo boo join forc with their old nemesi ranger smith to find a way to save jellyston park from close forever. comedi famili anim adventur picnic sandwich bear 3d yogi danaykroyd justintimberlak annafari ericbrevig',\n", " 459: 'as a wild stallion travel across the frontier of the old west, he befriend a young human and find true love with a mare. western anim adventur comedi famili humanb freedom mustang rivalri wildlif anim cavalri indianwar eyebrow wildhors mattdamon jamescromwel danielstudi kellyasburi',\n", " 460: \"a comedi about a zookeep who might be great with animals, but he doesn't know anyth about the bird and the bees. the man can't find love, so he decid to quit hi job at the zoo, but hi anim friend tri to stop him and teach him that mother natur know best when it come to love. comedi romanc famili talkinganim scientist germanacc ostrich monkey bullfrog cardealership duringcreditssting kevinjam rosariodawson sylvesterstallon frankcoraci\",\n", " 461: 'the prospect for continu life on earth in the year 2058 are grim. so the robinson are launch into space to colon alpha prime, the onli other inhabit planet in the galaxy. but when a stowaway sabotag the mission, the robinson find themselv hurtl through unchart space. adventur famili sciencefict timetravel sabotag deepspaceexplor garyoldman williamhurt mattleblanc stephenhopkin',\n", " 462: \"when hi armi unit wa ambush dure the first gulf war, sergeant raymond shaw save hi fellow soldier just as hi command officer, then-captain ben marco, wa knock unconscious. broker the incid for polit capital, shaw eventu becom a vice-presidenti nominee, while marco is haunt by dream of what happen -- or didn't happen -- in kuwait. as marco (now a major) investigates, the stori begin to unravel, to the point where he question if it happen at all. is it possibl the entir unit wa kidnap and brainwash to believ shaw is a war hero as part of a plot to seiz the white house? some veri power peopl at manchurian global corpor appear desper to stop him from find out. drama thriller mysteri senat gulfwar cano kuwait conspiraci warhero u.s.congress implant denzelwashington merylstreep lievschreib jonathandemm\",\n", " 463: 'l.a. shop owner dana and englishman sean meet and fall in love at first sight, but sean is marri and dana is to marri her busi partner alex. romanc drama love american pin stranger rubi stephendillan victoriafoyt vanessaredgrav henryjaglom',\n", " 464: 'when the old-old-old-fashion vampir vlad arriv at the hotel for an impromptu famili get-together, hotel transylvania is in for a collis of supernatur old-school and modern day cool. anim comedi famili transylvania hotel witch technolog magic mummi dracula skeleton onlychild backpack marriag frankenstein wolfman zombi movingout invisibleman newlif adamsandl andysamberg selenagomez genndytartakovski',\n", " 465: \"blend live music and brilliant animation, thi sequel to the origin 'fantasia' restor 'the sorcerer' apprentice' and add seven new shorts. anim famili music orchestra musicalseg stevemartin itzhakperlman quincyjon jamesalgar\",\n", " 466: 'hope to alter the event of the past, a 19th centuri inventor instead travel 800,000 year into the future, where he find humankind divid into two war races. sciencefict adventur action futur timemachin guypearc markaddi phyllidalaw simonwel',\n", " 467: \"as a child live in africa, jill young saw her mother kill while protect wild gorilla from poacher led by andrei strasser. now an adult, jill care for an orphan gorilla name joe -- who, due to a genet anomaly, is 15 feet tall. when gregg o'hara arriv from california and see the animal, he convinc jill that joe would be safest at hi wildlif refuge. but strasser follow them to the u.s., intent on captur joe for himself. action adventur famili fantasi gorilla dyinganddeath charlizetheron radeserbedzija billpaxton ronunderwood\",\n", " 468: \"rogu agent gabriel shear is determin to get hi mitt on $9 billion stash in a secret drug enforc administr account. he want the cash to fight terrorism, but lack the comput skill necessari to hack into the govern mainframe. enter stanley jobson, a n'er-do-wel encrypt expert who can log into anything. action crime thriller femalenud hacker terror violenc ex-con wire losangelesinternationalairport(lax) misdirect aftercreditssting johntravolta hughjackman halleberri dominicsena\",\n", " 469: \"have spent the last 10 year fight injustic and cruelty, alejandro de la vega is now face hi greatest challenge: hi love wife elena ha thrown him out of the house! elena ha file for divorc and found comfort in the arm of count armand, a dash french aristocrat. but alejandro know someth she doesn't: armand is the evil mastermind behind a terrorist plot to destroy the unit states. and so, with hi marriag and the county' futur at stake, it' up to zorro to save two union befor it' too late. action adventur california spi fathersonrelationship mexico hero marriagecrisi swordfight divorc americancivilwar antoniobandera catherinezeta-jon adriánalonsobarona martincampbel\",\n", " 470: 'chri neilson die to find himself in a heaven more amaz than he could have ever dream of. there is one thing missing: hi wife. after he dies, hi wife, anni kill herself and went to hell. chri decid to risk etern in hade for the small chanc that he will be abl to bring her back to heaven. drama fantasi romanc paradis soul underworld heaven paint hell afterlif spirit robinwilliam cubagoodingjr. annabellasciorra vincentward',\n", " 471: 'after the lord of dark decid he will not cede hi thrown to ani of hi three sons, the two most power of them escap to earth to creat a kingdom for themselves. thi action close the portal filter sin soul to hell and caus satan to wither away. he must send hi most weak but belov son, littl nicky, to earth to return hi brother to hell. comedi fantasi romanc fathersonrelationship brothersisterrelationship mephisto bulldogg adamsandl patriciaarquett harveykeitel stevenbril',\n", " 472: 'folklor collector and con artists, jake and will grimm, travel from villag to villag pretend to protect townsfolk from enchant creatur and perform exorcisms. however, they are put to the test when they encount a real magic curs in a haunt forest with real magic beings, requir genuin courage. adventur fantasi action comedi thriller brotherbrotherrelationship literatur aftercreditssting heathledg mattdamon mackenziecrook terrygilliam',\n", " 473: \"'we come in peace' is not what those green men from mar mean when they invad our planet, arm with irresist weapon and a cruel sens of humor. thi star stud cast must play victim to the alien’ fun and game in thi comedi homag to scienc fiction film of the '50 and '60s. comedi fantasi sciencefict savingtheworld totaldestruct whitehous mar usapresid cataclysm lasergun ambassador congress pest flyingsauc jacknicholson glennclos annetteben timburton\",\n", " 474: '11-year-old nicola live with hi mother in a seasid hous estate. the onli place that ever see ani activ is the hospital. it is there that all the boy from the villag are forc to undergo strang medic trial that attempt to disrupt the phase of evolution. mysteri drama horror nurs sea beach boy pregnant blood womandirector maxbreb roxaneduran julie-marieparmenti lucilehadzihalilov',\n", " 475: 'the plane carri wealthi charl mors crash down in the alaskan wilderness. togeth with the two other passengers, photograph robert and assist stephen, charl devis a plan to help them reach civilization. however, hi biggest obstacl might not be the elements, or even the kodiak bear stalk them -- it could be robert, whom charl suspect is have an affair with hi wife and would not mind see him dead. action adventur drama photograph grizzlybear wilder airplan supermodel emergencyland suspens surviv bear animalhorror alecbaldwin anthonyhopkin ellemacpherson leetamahori',\n", " 476: \"set in a futurist world where human live in isol and interact through surrog robots, a cop is forc to leav hi home for the first time in year in order to investig the murder of others' surrogates. action sciencefict thriller clone dystopia brucewilli radhamitchel rosamundpik jonathanmostow\",\n", " 477: 'dramatis of the cuban missil crisis, the nuclear standoff with the ussr spark by the discoveri by the american of missl base establish on the soviet alli island of cuba. shown from the perspect of the us president, john f kennedy, hi staff and advisors. drama thriller usapresid atomicbomb johnf.kennedi kubakris threat kevincostn brucegreenwood stevenculp rogerdonaldson',\n", " 478: 'a group of arm robber flee the polic head for the new jersey tunnel and run right into truck transport toxic waste. the spectacular explos that follow result in both end of the tunnel collaps and the hand of peopl who surviv the explos are now in peril. kit latura is the onli man with the skill and knowledg to lead the band of survivor out of the tunnel befor the structur collapses. action adventur thriller taxi newjersey helicopt river hero taxidriv raceagainsttim guard surviv disast newyorkc explos poweroutag dog trap flood tunnel christma trappedunderground actionhero sylvesterstallon amybrenneman viggomortensen robcohen',\n", " 479: 'walk with dinosaur 3d is a film depict life-lik 3d dinosaur charact set in photo-r landscap that transport audienc to the prehistor world as it exist 70 million year ago. the film is base on the 1999 documentari televis miniseri walk with dinosaurs, produc by the bbc. walk with dinosaur 3d is be produc by evergreen studios, the compani that produc happi feet, and it is wa releas on octob 11, 2013. anim famili adventur dinosaur 3d charlierow justinlong karlurban barrycook',\n", " 480: 'in the year 3000, man is no match for the psychlos, a greedy, manipul race of alien on a quest for ultim profit. led by the power terl, the psychlo are strip earth clean of it natur resources, use the broken remnant of human as slaves. what is left of the human race ha descend into a near primit state. after be captured, it is up to tyler to save mankind. action sciencefict war basedonnovel post-apocalypt dystopia mine fighterjet alieninvas scientolog cavemen bureaucrat cityruin johntravolta barrypepp forestwhitak rogerchristian',\n", " 481: 'bug bunni and daffi duck are up to their feud way again. tire of play second fiddl to bugs, daffi ha decid to leav the studio for good. he is aid by warner bros.\\' humor impair vice presid of comedy, kate houghton, who releas him from hi contract and instruct wb secur guard/aspir stunt man dj drake to captur and \"escort\" daffi off the studio lot. anim comedi famili spi duck bunni wretch filmindustri liveactionandanim brendanfras jennaelfman stevemartin joedant',\n", " 482: 'arrogant, self-cent movi director guido contini find himself struggl to find meaning, purpose, and a script for hi latest film endeavor. with onli a week left befor shoot begins, he desper search for answer and inspir from hi wife, hi mistress, hi muse, and hi mother. drama music romanc memori sidewalkcaf roomkey drivingacar coastlin stairway searchformean sequin singingphotograph slidingdownapol costumedesign duringcreditssting 1960 judidench danielday-lewi marioncotillard robmarshal',\n", " 483: \"a group of archaeolog student becom trap in the past when they go there to retriev their professor. the group must surviv in 14th centuri franc long enough to be rescued. action adventur sciencefict professor timetravel quantummechan hundredyears'war excav laroqu knight medievaltim paulwalk franceso'connor gerardbutl richarddonn\",\n", " 484: 'in 2013 there are no highways, no i-ways, no dream of a better tomorrow, onli scatter survivor across what wa onc the unit states. into thi apocalypt wasteland come an enigmat drifter with a mule, a knack for shakespear and someth yet undiscovered: the power to inspir hope. drama adventur usa post postman armi apocalyps kevincostn willpatton oliviawilliam kevincostn',\n", " 485: \"babe, fresh from hi victori in the sheepherd contest, return to farmer hoggett' farm, but after farmer hoggett is injur and unabl to work, babe ha to go to the big citi to save the farm. adventur comedi drama famili fantasi piggybank shortageofmoney pig farm piglet talkinganim talkingdog dog chimpanze talkingpig jamescromwel marystein mickeyrooney georgemil\",\n", " 486: 'the modern world hold mani secrets, but by far the most astound is that witch still live among us; viciou supernatur creatur intent on unleash the black death upon the world and put an end to the human race onc and for all. armi of witch hunter have battl thi unnatur enemi for centuries, includ kaulder, a valiant warrior who mani year ago slay the all-pow witch queen, decim her follow in the process. in the moment right befor her death, the queen curs kaulder with immortality, forev separ him from hi belov wife and daughter. today, kaulder is the last live hunter who ha spent hi immort life track down rogu witches, all the while yearn for hi long-lost family. fantasi action adventur newyork witch upris witchhunt vindiesel roselesli elijahwood breckeisn',\n", " 487: 'astronaut search for solut to save a die earth by search on mars, onli to have the mission go terribl awry. thriller action sciencefict mar futur astronaut scienc catastroph valkilm carrie-annemoss benjaminbratt antonyhoffman',\n", " 488: \"arthur is a spirit ten-year old whose parent are away look for work, whose eccentr grandfath ha been miss for sever years, and who live with hi grandmoth in a countri hous that, in two days, will be repossessed, torn down, and turn into a block of flat unless arthur' grandfath return to sign some paper and pay off the famili debt. arthur discov that the key to success lie in hi own descent into the land of the minimoys, creatur no larger than a tooth, whom hi grandfath help reloc to their garden. somewher among them is hidden a pile of rubies, too. can arthur be of stout heart and save the day? romanc beckon as well, and a villain lurks. adventur fantasi anim famili grandfathergrandsonrelationship wretch treasurehunt disappear famili fantasyworld freddiehighmor miafarrow roncrawford lucbesson\",\n", " 489: 'an ecolog drama/documentary, film throughout the globe. part thriller, part medit on the vanish wonder of the sub-aquat world. documentari famili ocean sea fish whale duringcreditssting piercebrosnan jacquesperrin riemiyazawa jacquesperrin',\n", " 490: 'when a hunter sent back to the prehistor era run off the path he must not leave, he caus a chain reaction that alter histori in disastr ways. thriller sciencefict adventur action dyinganddeath timetravel romanc dinosaur heikemakatsch arminrohd davidoyelowo peterhyam',\n", " 491: 'set in 79 a.d., pompeii tell the epic stori of milo, a slave turn invinc gladiat who find himself in a race against time to save hi true love cassia, the beauti daughter of a wealthi merchant who ha been unwillingli betroth to a corrupt roman senator. as mount vesuviu erupt in a torrent of blaze lava, milo must fight hi way out of the arena in order to save hi belov as the onc magnific pompeii crumbl around him. action adventur histori romanc drama gladiat arena gladiatorfight lava roman forbiddenlov naturaldisast epic disast slave towninpan vulcan volcanicerupt pompeii 3d kitharington carrie-annemoss emilybrown paulw.s.anderson',\n", " 492: 'top cat ha arriv to charm hi way into your hearts! ever wonder how thi scheme felin got hi start? well top cat begin reveal the origin of everyth you know and love about thi classic comedi hero. what follow is an adventur so crazi that it ha to be seen to be believed! comedi anim 3d jasonharri davidhoffman billlobley andréscouturi',\n", " 493: \"at princeton university, john nash struggl to make a worthwhil contribut to serv as hi legaci to the world of mathematics. he final make a revolutionari breakthrough that will eventu earn him the nobel prize. after graduat school he turn to teaching, becom romant involv with hi student alicia. meanwhil the govern ask hi help with break soviet codes, which soon get him involv in a terrifi conspiraci plot. nash grow more and more paranoid until a discoveri that turn hi entir world upsid down. now it is onli with alicia' help that he will be abl to recov hi mental strength and regain hi statu as the great mathematician we know him as today.. drama romanc individu schizophrenia massachusett loveofone'slif intellig mathematician marketeconomi economictheori princetonunivers nobelpr mathematicaltheorem m.i.t. mathemat delus russellcrow edharri jenniferconnelli ronhoward\",\n", " 494: \"a young lion cub name simba can't wait to be king. but hi uncl crave the titl for himself and will stop at noth to get it. famili anim drama lossofpar wildboar uncl shaman redempt king scar hyena meerkat jonathantaylorthoma matthewbroderick jamesearljon rogeral\",\n", " 495: \"sean anderson partner with hi mom' boyfriend on a mission to find hi grandfather, who is thought to be miss on a mythic island. adventur action sciencefict mission mysteriousisland missingperson duringcreditssting 3d dwaynejohnson joshhutcherson kristindavi bradpeyton\",\n", " 496: 'after the disastr food storm in the first film, flint and hi friend are forc to leav the town. flint accept the invit from hi idol chester v to join the live corp company, which ha been task to clean the island, and where the best inventor in the world creat technolog for the better of mankind. when flint discov that hi machin still oper and now creat mutant food beast like live pickles, hungri tacodiles, shrimpanze and appl pie-thons, he and hi friend must return to save the world. anim famili comedi inventor food scientist billhad annafari jamescaan codycameron',\n", " 497: \"former fbi agent will graham, who wa onc almost kill by the savag hannib 'the cannibal' lecter, now ha no choic but to face him again, as it seem lecter is the onli one who can help graham track down a new serial killer. crime thriller horror psychopath serialkil fbiagent anthonyhopkin edwardnorton ralphfienn brettratn\",\n", " 498: 'set in 1890, thi is the stori of a poni express courier who travel to arabia to compet with hi horse, hidalgo, in a danger race for a massiv contest prize, in an adventur that send the pair around the world... western adventur horserac hors racehors viggomortensen zuleikharobinson omarsharif joejohnston',\n", " 499: \"jack sadelstein, a success advertis execut in lo angel with a beauti wife and kids, dread one event each year: the thanksgiv visit of hi twin sister jill. jill' needi and passive-aggress is madden to jack, turn hi normal tranquil life upsid down. comedi duringcreditssting adamsandl katieholm alpacino dennisdugan\",\n", " 500: 'it\\' a major double-cross when former polic offic brian o\\'conn team up with hi ex-con buddi roman pearc to transport a shipment of \"dirty\" money for shadi miami-bas import-export dealer carter verone. but the guy are actual work with undercov agent monica fuent to bring veron down. action crime thriller miami carrac sportscar losangel car automobilerac paulwalk tyresegibson evamend johnsingleton',\n", " 501: \"base on the best-sel book 'the littl prince', the movi tell the stori of a littl girl that live with resign in a world where effici and work are the onli dogmas. everyth will chang when accident she discov her neighbor that will tell her about the stori of the littl princ that he onc met. adventur anim fantasi philosophi utopia airplan adventur dystopia littleboy growingup neighbor motherdaughterrelationship school oldman littlegirl crazi basedonchildren'sbook stori socialdiffer 3d jeffbridg rachelmcadam paulrudd markosborn\",\n", " 502: 'washington, d.c. psychologist carol bennel and her colleagu dr. ben driscol are the onli two peopl on earth who are awar of an epidem run rampant through the city. they discov an alien viru aboard a crash space shuttl that transform anyon who come into contact with it into unfeel drone while they sleep. carol realiz her son hold the key to stop the spread of the plagu and she race to find him befor it is too late. sciencefict thriller remak alien escap alieninvas alieninfect sleep doppelgang newsreport textmessag siren contamin nicolekidman danielcraig jeremynortham oliverhirschbiegel',\n", " 503: 'rocki and bullwinkl have been live off the financ made from the rerun of their cartoon show. bori and natasha somehow manag to crossov into realiti and team up with fearless leader, an evil crimin turn media mogul with some evil plan up hi sleeve. rocki and bullwinkl must stop the three of them befor they wreak havoc. action adventur anim comedi famili adventur cartoon comedi breakingthefourthwal talkingtothecamera roadmovi celebritycameo renerusso jasonalexand piperperabo desmcanuff',\n", " 504: 'the quiet life of a terrier name max is upend when hi owner take in duke, a stray whom max instantli dislikes. anim famili pet bunni anthropomorph dog anim apartmentbuild sewer terrier manhattan,newyorkc rodent mongrel louisc.k. ericstonestreet kevinhart chrisrenaud',\n", " 505: 'to prevent a world war from break out, famou charact from victorian literatur band togeth to do battl against a cun villain. fantasi action thriller sciencefict savingtheworld vampir bite men invisibleman captainnemo allanquatermain venezia immort seanconneri petawilson shanewest stephennorrington',\n", " 506: 'gru is recruit by the anti-villain leagu to help deal with a power new super criminal. anim comedi famili secretag bakeri fallinginlov fatherdaughterrelationship duringcreditssting firstdat minion 3d stevecarel kristenwiig benjaminbratt pierrecoffin',\n", " 507: \"on juli 2, a giant alien mothership enter orbit around earth and deploy sever dozen saucer-shap 'destroyer' spacecraft that quickli lay wast to major citi around the planet. on juli 3, the unit state conduct a coordin counterattack that fails. on juli 4, a plan is devis to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile. action adventur sciencefict spacecraft patriot countdown independ invas war ufo extraterrestri spaceship alien battl willsmith billpullman jeffgoldblum rolandemmerich\",\n", " 508: \"four year after jurass park' genet bred dinosaur ran amok, multimillionair john hammond shock chao theorist ian malcolm by reveal that hammond ha been breed more beasti at a secret location. malcolm, hi paleontologist ladylov and a wildlif videograph join an expedit to document the lethal lizards' natur behavior in thi action-pack thriller. adventur action sciencefict exoticisland dna paleontolog tyrannosaurusrex velociraptor sandiego dinosaur jurassicpark animalhorror jeffgoldblum juliannemoor petepostlethwait stevenspielberg\",\n", " 509: 'zoo anim leav the comfort of man-mad habitat for exot adventur in thi anim famili film. after escap from the zoo, four friend -- a lion, a hippo, a zebra and a giraff -- are sent back to africa. when their ship capsizes, strand them on madagascar, an island popul by crazi critters, the pal must adapt to jungl life and their new role as wild animals. famili anim lion hippopotamu giraff penguin zebra benstil chrisrock davidschwimm ericdarnel',\n", " 510: \"in 2027, in a chaotic world in which human can no longer procreate, a former activist agre to help transport a miracul pregnant woman to a sanctuari at sea, where her child' birth may help scientist save the futur of humankind. drama action thriller sciencefict policest hippi rebel miracl futur dystopia chao age childless faith surviv birth die cliveowen michaelcain juliannemoor alfonsocuarón\",\n", " 511: 'two mutants, rogu and wolverine, come to a privat academi for their kind whose resid superhero team, the x-men, must oppos a terrorist organ with similar powers. adventur action sciencefict mutant marvelcom superhero basedoncomicbook superhuman patrickstewart hughjackman ianmckellen bryansing',\n", " 512: 'doormat wesley gibson discov that hi recent murder father – who wesley never knew – belong to a secret guild of assassins. after a leather-clad sexpot draft wesley into the society, he hone hi innat kill skill and turn avenger. action thriller crime assassin lossoffath secretsocieti missionofmurd reveng angelinajoli jamesmcavoy morganfreeman timurbekmambetov',\n", " 513: 'a group of renegad marin commando seiz a stockpil of chemic weapon and take over alcatraz, with 81 tourist as hostages. their leader demand $100 million to be paid, as restitut to famili of marin who die in covert op – or he will launch 15 rocket carri deadli vx ga into the san francisco bay area. action adventur thriller sanfrancisco fbi gasattack alcatraz hostagesitu fbiagent seanconneri nicolascag edharri michaelbay',\n", " 514: \"diego, manni and sid return in thi sequel to the hit anim movi ice age. thi time around, the deep freez is over, and the ice-cov earth is start to melt, which will destroy the trio' cherish valley. the impend disast prompt them to reunit and warn all the other beast about the desper situation. anim famili comedi adventur mammoth sloth iceag barrieric icemelt iceberg flood adventur lover delug saber-toothedtig rayromano johnleguizamo denisleari carlossaldanha\",\n", " 515: \"henri is a player skill at seduc women. but when thi veterinarian meet lucy, a girl with a quirki problem when it come to total recall, he realiz it' possibl to fall in love all over again…and again, and again. that' becaus the delight luci ha no short-term memory, so henri must woo her day after day until he final sweep her off her feet. comedi romanc dejavu amnesia hawaii ladykil romanticcomedi adamsandl drewbarrymor robschneid peterseg\",\n", " 516: 'pleasantli plump teenager, traci turnblad and her best friend, penni pingleton audit to be on the corni collin show – and traci wins. but when scheme amber von tussl and her mother plot to destroy tracy, it turn to chaos. famili comedi music romanc race dream danc televis tvshow racepolit colour music equal schoolparti perform integr overweightwoman duel basedonstagemus xenophobia basedonfilm 1960 johntravolta michellepfeiff christopherwalken adamshankman',\n", " 517: \"have live through traumat event dure wwii, father lankest merrin take a sabbat from the church to conduct archaeolog excav in british-administ east africa. merrin unearth an ancient byzantin church believ have been built and then immedi buri to keep down evil from the crypt below. the nativ are convinc that uncov the church ha unleash a demon, and begin to violent clash with the british militari troops. as the villag rapidli disintegr into chao and war, merrin must face-off with the demon which ha taken possess of somebodi close to him. horror mysteri thriller secret obsess exorc remak priest goodvsevil pagan devil archaeologist demonicpossess relic crisisoffaith archaeologicaldig stellanskarsgård izabellascorupco jamesd'arci rennyharlin\",\n", " 518: 'john brown is a bumbl but well-intent secur guard who is badli injur in an explos plan by an evil mastermind. he is taken to a laboratory, where brenda, a lead robot surgeon, replac hi damag limb with state-of-the-art gadget and tools. name \"inspector gadget\" by the press, john -- along with hi niece, penny, and her trusti dog, brain -- use hi new power to discov who wa behind the explosion. action adventur comedi famili gadget matthewbroderick ruperteverett joelyfish davidkellogg',\n", " 519: 'an fbi agent and an interpol detect track a team of illusionist who pull off bank heist dure their perform and reward their audienc with the money. thriller crime pari bank secret fbi vault magic neworlean investig heist conspiraci money escap newyorkc lasvega explos jesseeisenberg markruffalo woodyharrelson louisleterri',\n", " 520: 'after their high school basketbal coach pass away, five good friend and former teammat reunit for a fourth of juli holiday weekend. comedi overweight swing foot convert arrow adamsandl salmahayek mariabello dennisdugan',\n", " 521: \"viktor navorski is a man without a country; hi plane took off just as a coup d'etat explod in hi homeland, leav it in shambles, and now he' strand at kennedi airport, where he' hold a passport that nobodi recognizes. while quarantin in the transit loung until author can figur out what to do with him, viktor simpli goe on live – and court romanc with a beauti flight attendant. comedi drama newyork airport marriagepropos translat craftsman stewardess illegalimmigr languagebarri jfkinternationalairport immigrationlaw fastfoodrestaur securitycamera jazzmusician saxophonist autograph passport easterneurop friendship tomhank catherinezeta-jon stanleytucci stevenspielberg\",\n", " 522: \"place in a foster home that doesn't allow pets, 16-year-old andi and her younger brother, bruce, turn an abandon hotel into a home for their dog. soon other stray arrive, and the hotel becom a haven for everi orphan canin in town. but the kid have to do some quick think to keep the cop off their tails. comedi famili adopt puppi pitbul orphan fosterhom animallov beagl duringcreditssting emmarobert jaket.austin doncheadl thorfreudenth\",\n", " 523: \"trap near the summit of k2, the world' second-highest mountain, anni garrett radio to base camp for help. brother peter hear annie' messag and assembl a team to save her and her group befor they succumb to k2' unforgiv elements. but, as anni lay injur in an ici cavern, the rescuer face sever terrifi event that could end the rescu attempt -- and their lives. action adventur thriller himalaya pakistan climb k2 mountain karakoram chriso'donnel robintunney billpaxton martincampbel\",\n", " 524: \"the true stori of texa congressman charli wilson' covert deal in afghanistan, where hi effort to assist rebel in their war with the soviet had some unforeseen and long-reach effects. comedi drama histori washingtond.c. alcohol cia helicopt refugeecamp congress coldwar ladykil rocketlaunch russian munit warinafghanistan dollar tomhank philipseymourhoffman juliarobert mikenichol\",\n", " 525: \"oscar is a small fish whose big aspir often get him into trouble. meanwhile, lenni is a great white shark with a surpris secret that no sea creatur would guess: he' a vegetarian. when a lie turn oscar into an improb hero and lenni becom an outcast, the two form an unlik friendship. anim action comedi famili fish hero missionofmurd threattodeath secretlov anim shark womandirector willsmith robertdeniro renéezellweg vickyjenson\",\n", " 526: \"three young women – deena jones, effi white and lorrel robinson – dream of becom pop star and they get their wish when they'r chosen to be backup singer for the legendari jame 'thunder' early. drama musicrecord manag blackpeopl adulteri soul showbusi drugaddict oscaraward music deceivedwif recordingcontract backgroundsing motown thesuprem recordproduc singl singer sing detroit alcohol extramaritalaffair musicband jamiefoxx beyoncéknowl eddiemurphi billcondon\",\n", " 527: 'disench with the movi industry, chili palmer tri the music industry, meet and romanc a widow of a music exec on the way. comedi crime baseballbat widow recordingcontract recordingstudio russianmafia musicbusi nightclub pawnshop johntravolta umathurman vincevaughn f.garygray',\n", " 528: 'dure the 1972 olymp game in munich, eleven isra athlet are taken hostag and murder by a palestinian terrorist group known as black september. in retaliation, the isra govern recruit a group of mossad agent to track down and execut those respons for the attack. drama action histori thriller pari assassin israel hotelroom 1970 hostag intellig olympicgam munich mossad isra palestinian beirut ailulalaswad plo bombconstructor baader-meinhofgroup olympianvillag reveng ericbana danielcraig ciaránhind stevenspielberg',\n", " 529: 'navi seal lieuten a.k. water and hi elit squadron of tactic specialist are forc to choos between their duti and their humanity, between follow order by ignor the conflict that surround them, or find the courag to follow their conscienc and protect a group of innoc refugees. when the democrat govern of nigeria collaps and the countri is taken over by a ruthless militari dictator, waters, a fierc loyal and harden veteran is dispatch on a routin mission to retriev a doctor without border physician. action drama war u.s.armi nigeria presid brucewilli monicabellucci colehaus antoinefuqua',\n", " 530: 'when an elit assassin marri a beauti comput whiz after a whirlwind romance, he give up the gun and settl down with hi new bride. that is, until he learn that someon from hi past ha put a contract out on hi life. action comedi thriller romanc assassin katherineheigl ashtonkutch tomselleck robertluket',\n", " 531: \"at the height of the cold war, a mysteri crimin organ plan to use nuclear weapon and technolog to upset the fragil balanc of power between the unit state and soviet union. cia agent napoleon solo and kgb agent illya kuryakin are forc to put asid their hostil and work togeth to stop the evildo in their tracks. the duo' onli lead is the daughter of a miss german scientist, whom they must find soon to prevent a global catastrophe. comedi action adventur spi coldwar remak basedontvseri buddycop russianspi americanspi henrycavil armiehamm aliciavikand guyritchi\",\n", " 532: \"mexican immigr and singl mother flor moreno find housekeep work with deborah and john clasky, a well-off coupl with two children of their own. when flor admit she can't handl the schedul becaus of her daughter, cristina, deborah decid they should move into the claski home. cultur clash and tension run high as flor and the claski struggl to share space while rais their children on their own, and veri different, terms. comedi upperclass mother singlepar parentskidsrelationship wifehusbandrelationship cook milieu illegalimmigr immigr languagebarri family'sdailylif platoniclov deceivedhusband classsocieti hysteria biographi unitedstates–mexicobarri relationshipproblem class languagecours singl motherdaughterrelationship american mexican fatherfigur adamsandl téaleoni pazvega jamesl.brook\",\n", " 533: 'monster under the bed are scari enough, but what happen when an entir hous is out to get you? three teen aim to find out when they go up against a decrepit neighbor home and unlock it frighten secrets. anim comedi famili fantasi monster secret toy children neighbor mission child ryannewman stevebuscemi mitchelmusso gilkenan',\n", " 534: \"two bank robber fall in love with the girl they'v kidnapped. action comedi crime romanc prison brucewilli billybobthornton cateblanchett barrylevinson\",\n", " 535: 'the timeless tale of king arthur and the legend of camelot are retold in thi passion period drama. arthur is reluct to hand the crown to lancelot, and guinever is torn between her loyalti to her husband and her grow love for hi rival. but lancelot must balanc hi loyalti to the throne with the reward of true love. action adventur drama romanc camelot knight kingarthur excalibur knightsoftheroundt seanconneri richardger juliaormond jerryzuck',\n", " 536: \"the stori of the romanc between the king of siam (now thailand) and the widow british school teacher anna leonowen dure the 1860's. anna teach the children and becom romanc by the king. she convinc him that a man can be love by just one woman. drama histori romanc civilwar fathersonrelationship eastindiatradingcompani traitor deathpenalti thailand palac burma daughter royalti teacher battl denunci jodiefost chowyun-fat bail andytenn\",\n", " 537: 'theseu is a mortal man chosen by zeu to lead the fight against the ruthless king hyperion, who is on a rampag across greec to obtain a weapon that can destroy humanity. fantasi action drama poison armi zeu poseidon spear mickeyrourk kellanlutz isabelluca tarsemsingh',\n", " 538: 'when a mafia account is taken hostag on hi beat, a polic offic – wrack by guilt from a prior stint as a negoti – must negoti the standoff, even as hi own famili is held captiv by the mob. mysteri drama thriller crime fbi kidnap policeoper homeinvas hostagesitu hostagenegoti brucewilli kevinpollak jimmybennett florent-emiliosiri',\n", " 539: \"a young man find out that he hold the key to restor hope and ensur surviv for the human race, while an alien speci call the dredg are bent on mankind' destruction. anim action sciencefict famili adventur monster galaxi dystopia space alien anim mission mattdamon billpullman drewbarrymor garygoldman\",\n", " 540: 'joe gavilan (harrison ford) and hi new partner k. c. calden (josh hartnett), are detect on the beat in tinseltown. neither one of them realli want to be a cop, gavilan moonlight as a real estat broker, and calden is an aspir actor moonlight as a yoga instructor. when the two are assign a big case they must work out whether they want to solv the case or follow their hearts. action adventur comedi thriller rapmus hitman harrisonford joshhartnett lenaolin ronshelton',\n", " 541: 'sergeant todd is a veteran soldier for an elit group of the arm forces. after be defeat by a new breed of genet engin soldiers, he is dump on a wast planet and left for dead. he soon interact with a group of crash survivor who lead out a peac existence. the peac is broken as the new soldier land on the planet to elimin the colony, which sergeant todd must defend. action war sciencefict spacemarin dystopia alienplanet geneticengin kurtrussel jasonscottle jasonisaac paulw.s.anderson',\n", " 542: 'four friend flee a viral pandem soon learn they are more danger than ani virus.a deadli viru ha spread across the globe. contagion is everywhere, no one is safe and no one can be trusted. four young attract peopl race through the back road of the american west to the pound beat of a vacat soundtrack. their aim is to retreat to seclud utopian beach in the gulf of mexico, where they could peac wait out the pandem and surviv the apocalypt disease. their plan take a grim turn when their car break down on an isol road start a chain of event that will seal the fate of each of them in an inexor and horrifi voyag of hell through a western landscap popul by onli the hideou dead or the twist living. action drama horror sciencefict thriller beach desper infect surviv biohazard diseas trust viru pandem loutaylorpucci chrispin piperperabo àlexpastor',\n", " 543: \"after a car crash send repress cartoonist stu miley (fraser) into a coma, he and the mischiev monkeybone, hi hilari horni alter-ego, wake up in a wacked-out waystat for lost souls. when monkeybon take over stu' bodi and escap to wreak havoc on the real world, stu ha to find a way to stop him befor hi sister pull the plug on realiti forever! adventur fantasi anim action comedi parallelworld organdon horninessag aftercreditssting brendanfras bridgetfonda johnturturro henryselick\",\n", " 544: 'when an amacor oil rig in the gobi desert of mongolia prove unproductive, captain frank town and copilot \"a.j.\" are sent to shut the oper down. however, on their way to beijing, a major dust storm forc them to ditch their c-119 fli boxcar in an unchart area of the desert. action adventur drama thriller robberi water gobidesert disast airplanecrash struggleforsurviv desert dennisquaid tyresegibson giovanniribisi johnmoor',\n", " 545: 'an ordinari man make an extraordinari discoveri when a train accid leav hi fellow passeng dead – and him unscathed. the answer to thi mysteri could lie with the mysteri elijah price, a man who suffer from a diseas that render hi bone as fragil as glass. sciencefict thriller drama fathersonrelationship trainaccid comicbook marriagecrisi invulner superhero suspens superpow brucewilli samuell.jackson robinwright m.nightshyamalan',\n", " 546: 'minion stuart, kevin and bob are recruit by scarlet overkill, a super-villain who, alongsid her inventor husband herb, hatch a plot to take over the world. famili anim adventur comedi assist aftercreditssting duringcreditssting evilmastermind minion 3d sandrabullock jonhamm michaelkeaton kylebalda',\n", " 547: 'a young girl is institution by her abus stepfather. retreat to an altern realiti as a cope strategy, she envis a plan which will help her escap from the mental facility. action fantasi thriller brothel fantasi asylum realiti escap robot violenc inmat altern imagin lobotomi emilybrown abbiecornish jenamalon zacksnyd',\n", " 548: \"all bet are off when corrupt homicid cop rick santoro wit a murder dure a box match. it' up to him and lifelong friend and naval intellig agent kevin dunn to uncov the conspiraci behind the killing. at everi turn, santoro make increasingli shock discoveri that even he can't turn a blind eye to. crime mysteri casino politicalactiv boxer missionofmurd boxingmatch suspens policeoffic witnesstomurd nicolascag garysinis johnheard briandepalma\",\n", " 549: 'the ossa discov a spacecraft thought to be at least 300 year old at the bottom of the ocean. immedi follow the discovery, they decid to send a team down to the depth of the ocean to studi the space craft.they are the best of best, smart and logical, and the perfect choic to learn more about the spacecraft. sciencefict ocean extraterrestrialtechnolog spacemarin paranoia raumschiffabsturz alien psychologist oceanfloor deepsea dustinhoffman sharonston samuell.jackson barrylevinson',\n", " 550: 'an island popul entir by happy, flightless bird or almost entirely. in thi paradise, red, a bird with a temper problem, speedi chuck, and the volatil bomb have alway been outsiders. but when the island is visit by mysteri green piggies, it’ up to these unlik outcast to figur out what the pig are up to. famili anim island bird pig talkinganim basedonvideogam angermanag 3d jasonsudeiki joshgad dannymcbrid fergalreilli',\n", " 551: 'treasur hunter ben \"finn\" finnegan ha sunk hi marriag to tess and hi trusti boat in hi obsess quest to find the legendari queen\\' dowry. when he find a vital clue that may final pinpoint the treasure\\' whereabouts, he drag tess and her boss, billionair nigel honeycutt, along on the hunt. but finn is not the onli one interest in the gold; hi former mentor-turned-enemi moe fitch will stop at noth to beat him to it. romanc comedi adventur helicopt cemeteri boat mexicanstandoff sword cave shipwreck yacht bahama jetski treasurehunt rivalri scubadiv gangster underwat divorc heiress ex-husbandex-wiferelationship henchmen matthewmcconaughey katehudson donaldsutherland andytenn',\n", " 552: \"famou and wealthi funnyman georg simmon doesn't give much thought to how he treat peopl until a doctor deliv stun health news, forc georg to reevalu hi prioriti with a littl help from aspir stand-up comic ira. comedi drama comedian cancer bromanc stand-upcomedian adamsandl sethrogen lesliemann juddapatow\",\n", " 553: 'a team of u.s. govern agent is sent to investig the bomb of an american facil in the middl east. thriller action drama assassin assassin terrorist explos fbi chase saudiarabia investig polic medicalexamin terror fbiagent arab bombattack jamiefoxx jennifergarn chriscoop peterberg',\n", " 554: 'lifelong friend and nation idol ricki bobbi and cal naughton jr. have earn their nascar stripe with their uncanni knack of finish race in the first and second slots, respectively, and sling catchphras like \"shake and bake!\" but when a rival french driver coast onto the track to challeng their records, they\\'ll have to floor it to retain their top-dog status. comedi northcarolina prayer familydinn advertis divorc motor automobilerac nascar dogtrain carmovi sportcompetit psychosomaticil frenchstereotyp aftercreditssting duringcreditssting willferrel johnc.reilli sachabaroncohen adammckay',\n", " 555: \"dr. john dolittl the belov doctor is back, but thi time around he play cupid to bumbl circu bear archi as he' so smitten by a pacif western bear female, ava. dr. dolittl must help a group of forest creatur to save their forest. but with the aid of hi mangy, madcap anim friends, dr. dolittl must teach archi the way of true romanc in time to save hi speci and hi home befor their habit is gone. so john held a meet for everi anim in the forest to not give up without a fight no matter what kind of anim express they have and everyon agre to do it and save their home. comedi famili romanc fantasi veterinarian forest bear anim animalprotect eddiemurphi kristenwilson raven-symoné stevecarr\",\n", " 556: \"enrag at the slaughter of murron, hi new bride and childhood love, scottish warrior william wallac slay a platoon of the local english lord' soldiers. thi lead the villag to revolt and, eventually, the entir countri to rise up against english rule. action drama histori war individu scotland inlovewithenemi legend independ ideal revolt tyranni melgibson catherinemccormack sophiemarceau melgibson\",\n", " 557: 'jarhead is a film about a us marin anthoni swofford’ experi in the gulf war. after put up with an arduou boot camp, swafford and hi unit are sent to the persian gulf where they are earger to fight but are forc to stay back from the action. meanwhil swofford get news of hi girlfriend is cheat on him. desper he want to kill someon and final put hi train to use. drama war sniper marinecorp saudiarabia petrol golfwar u.s.marin jamiefoxx jakegyllenha scottmacdonald sammend',\n", " 558: \"after homer accident pollut the town' water supply, springfield is encas in a gigant dome by the epa and the simpson are declar fugitives. anim comedi famili fathersonrelationship lake springfield thesimpson duffbeer garbag pig pollut environmentalprotectionag quarantin alcohol love alaska dysfunctionalfamili dysfunctionalmarriag ecolog savingl firstlov duringcreditssting donut dancastellaneta juliekavn nancycartwright davidsilverman\",\n", " 559: 'set in 1951, a blacklist hollywood writer get into a car accident, lose hi memori and settl down in a small town where he is mistaken for a long-lost son. drama romanc california falselyaccus prosecut anti-commun hollywood writer jimcarrey martinlandau laurieholden frankdarabont',\n", " 560: \"talent rooki race-car driver jimmi bli ha start lose hi focu and begin to slip in the race rankings. it' no wonder, with the immens pressur be shovel on him by hi overli ambiti promot brother as well as bly' romanc with hi arch rival' girlfriend sophia. with much ride on bly, car owner carl henri bring former race star joe tanto on board to help bly. to drive bli back to the top of the rankings, tanto must first deal with the emot scar left over from a tragic race accid which nearli took hi life. action competit run career idol racingcar kippardu robertseanleonard tilschweig rennyharlin\",\n", " 561: 'two tiger are separ as cub and taken into captivity, onli to be reunit year later as enemi by an explor (pearce) who inadvert forc them to fight each other. adventur drama famili brotherbrotherrelationship lossofbroth cambodia chase tiger governor royalti travellingcircu archaeologist maïanhl guypearc oanhnguyen jean-jacquesannaud',\n", " 562: 'when a will young man tri to ventur beyond hi sequest pennsylvania hamlet, hi action set off a chain of chill incid that will alter the commun forever. drama mysteri thriller secret forest ruralset blind courtship mentallyhandicappedman humannatur aura romant villagecouncil brycedallashoward joaquinphoenix adrienbrodi m.nightshyamalan',\n", " 563: \"a success physician and devot famili man, john dolittl (eddi murphy) seem to have the world by the tail, until a long suppress talent he possess as a child, the abil to commun with anim is suddenli reawaken with a vengeance! now everi creatur within squawk distanc want the good doctor' advice, unleash an outrag chain of event that turn hi world upsid down! comedi famili fantasi talkingtoanim womandirector eddiemurphi ossiedavi oliverplatt bettythoma\",\n", " 564: 'a famili live on a farm find mysteri crop circl in their field which suggest someth more frighten to come. drama thriller sciencefict mysteri symbol water farm faith alien familyrelationship ruralset alieninvas rural cropcircl alienattack ruralpennsylvania ruralamerica ruralfarm lossoffaith alienencount melgibson joaquinphoenix roryculkin m.nightshyamalan',\n", " 565: \"shrek, fiona and donkey set off to far, far away to meet fiona' mother and father. but not everyon is happy. shrek and the king find it hard to get along, and there' tension in the marriage. the fairi godmoth discov that shrek ha marri fiona instead of her son princ charm and set about destroy their marriage. adventur anim comedi famili fantasi prison magic liber honeymoon parents-in-law kingdom enchant dancingscen transform fairy-talefigur mikemy eddiemurphi camerondiaz andrewadamson\",\n", " 566: \"lightn mcqueen, a hotshot rooki race car driven to succeed, discov that life is about the journey, not the finish line, when he find himself unexpectedli detour in the sleepi rout 66 town of radiat springs. on rout across the countri to the big piston cup championship in california to compet against two season pros, mcqueen get to know the town' offbeat characters. anim adventur comedi famili carrac carjourney villageandtown auto route66 wrecker porsch retir media friendship sport anthropomorph losangel roadmovi aftercreditssting duringcreditssting owenwilson paulnewman bonniehunt johnlasset\",\n", " 567: 'ike graham, new york columnist, write hi text alway at the last minute. thi time, a drunken man in hi favourit bar tell ike about maggi carpenter, a woman who alway flee from her groom in the last possibl moment. ike, who doe not have the best opinion about femal anyway, write an offens column without research the subject thoroughly. comedi romanc smalltown self-discoveri justmarri report wed relationship juliarobert richardger joancusack garrymarshal',\n", " 568: 'xander cage is your standard adrenalin junki with no fear and a lousi attitude. when the us govern \"recruits\" him to go on a mission, he\\' not exactli thrilled. hi mission: to gather inform on an organ that may just be plan the destruct of the world, led by the nihilist yorgi. action adventur thriller sportscar biologicalweapon coldwar russian pragu mission athlet nsaagent adrenalinejunki thrillseek vindiesel asiaargento samuell.jackson robcohen',\n", " 569: 'burger beard is a pirat who is in search of the final page of a magic book that make ani evil plan he write in it come true, which happen to be the krabbi patti secret formula. when the entir citi of bikini bottom is put in danger, spongebob, patrick, mr. krabs, squidward, sandy, and plankton need to go on a quest that take them to the surface. in order to get back the recip and save their city, the gang must retriev the book and transform themselv into superheroes. anim adventur comedi famili ocean sea star water comedi spong spongebob liveactionandanim tomkenni billfagerbakk rodgerbumpass paultibbitt',\n", " 570: \"when a rich man' son is kidnapped, he cooper with the polic at first but then tri a uniqu tactic against the criminals. action thriller bounti lossofchild yellowpress fbi baby-snatch suspens fbiagent millionair melgibson garysinis delroylindo ronhoward\",\n", " 571: 'in nazi-occupi franc dure world war ii, a group of jewish-american soldier known as \"the basterds\" are chosen specif to spread fear throughout the third reich by scalp and brutal kill nazis. the basterds, lead by lt. aldo rain soon cross path with a french-jewish teenag girl who run a movi theater in pari which is target by the soldiers. drama action thriller war pari guerrilla cinema selfsacrific dynamit mexicanstandoff worldwarii jewpersecut jew nazi masoch sadism scalp winstonchurchil knifeinhand antisemit gore swastika bloodbath germanoccupationoffr violenc gunviol bradpitt mélanielaur christophwaltz quentintarantino',\n", " 572: \"the boy who wasn't suppos to grow up—pet pan—did just that, becom a soulless corpor lawyer whose workahol could cost him hi wife and kids. but a trip to see granni wendi in london, where the veng capt. hook kidnap peter' kid and forc peter to return to neverland, could lead to a chanc at redemption, in thi family-ori fantasi from director steven spielberg. adventur fantasi comedi famili fli swordplay sword fantasi peterpan daughter fairy-talefigur rescu robinwilliam dustinhoffman juliarobert stevenspielberg\",\n", " 573: \"john mcclane is an off-duti cop grip with a feel of déjà vu when on a snowi christma eve in the nation' capital, terrorist seiz a major intern airport, hold thousand of holiday travel hostage. renegad militari commando led by a murder rogu offic plot to rescu a drug lord from justic and are prepar for everi conting except one: mcclane' smart-mouth heroics. action thriller ambush helicopt journalist basedonnovel airport handgrenad fistfight cop sequel snow dullesinternationalairport shootout officerinvolvedshoot terror explos church violenc sabotag walkietalki swatteam airtrafficcontrol commandounit snowmobil brucewilli bonniebedelia williamatherton rennyharlin\",\n", " 574: \"hondo harrelson recruit jim street to join an elit unit of the lo angel polic department. togeth they seek out more members, includ tough deke kay and singl mom chri sanchez. the team' first big assign is to escort crime boss alex montel to prison. it seem routine, but when montel offer a huge reward to anyon who can break him free, crimin of variou stripe step up for the prize. action thriller crime liber transportofprison specialunit weapon losangel samuell.jackson colinfarrel michellerodriguez clarkjohnson\",\n", " 575: \"david aam (tom cruise) ha it all: wealth, good look and gorgeou women on hi arm. but just as he begin fall for the warmheart sofia (penelop cruz), hi face is horribl disfigur in a car accident. that' just the begin of hi troubl as the line between illus and reality, between life and death, are blurred. drama mysteri romanc sciencefict thriller amnesia ex-girlfriend virtualr tomcruis penélopecruz camerondiaz cameroncrow\",\n", " 576: 'apart build superintend cleveland heep rescu what he think is a young woman from the pool he maintains. when he discov that she is actual a charact from a bedtim stori who is tri to make the journey back to her home, he work with hi tenant to protect hi new friend from the creatur that are determin to keep her in our world. drama thriller fantasi mysteri fortunetel religionandsupernatur supernaturalpow mythicalcreatur hell swimmingpool nix aftercreditssting paulgiamatti jeffreywright bobbalaban m.nightshyamalan',\n", " 577: 'when scientist discov someth in the arctic that appear to be a buri pyramid, they send a research team out to investigate. littl do they know that they are about to step into a hunt ground where alien are grown as sport for the predat race. adventur sciencefict action savingtheworld predat laserpoint spacemarin pyramid prais alien xenomorph sanaalathan raoulbova ewenbremn paulw.s.anderson',\n", " 578: \"pop sensat alvin, simon and theodor end up in the care of dave seville' twenty-someth nephew toby. the boy must put asid music super stardom to return to school, and are task with save the school' music program by win the $25,000 prize in a battl of the bands. but the chipmunk unexpectedli meet their match in three sing chipmunk known as the chipett - brittany, eleanor and jeanette. romant and music spark are ignit when the chipmunk and chipett squar off. comedi famili anim fantasi music chipmunk cgi basedontvseri aftercreditssting duringcreditssting womandirector zacharylevi davidcross jasonle bettythoma\",\n", " 579: 'the stori of the first major battl of the american phase of the vietnam war and the soldier on both side that fought it. action histori war vietnamveteran missil vietnamwar armi major basedontruestori steelhelmet soldier explos battl bayonet death vietnames melgibson gregkinnear madeleinestow randallwallac',\n", " 580: 'when the white hous (secret servic code: \"olympus\") is captur by a terrorist mastermind and the presid is kidnapped, disgrac former presidenti guard mike ban find himself trap within the building. as the nation secur team scrambl to respond, they are forc to reli on banning\\' insid knowledg to help retak the white house, save the presid and avert an even bigger disaster. action thriller whitehous secretservic terroristattack gerardbutl aaroneckhart angelabassett antoinefuqua',\n", " 581: 'when an alien race and faction within starfleet attempt to take over a planet that ha \"regenerative\" properties, it fall upon captain picard and the crew of the enterpris to defend the planet\\' peopl as well as the veri ideal upon which the feder itself wa founded. sciencefict action adventur thriller spaceopera retribut spacecraftoffic explodingship patrickstewart jonathanfrak brentspin jonathanfrak',\n", " 582: \"the earth is attack by unknown forces. as peopl everywher watch the world' great citi fall, lo angel becom the last stand for mankind in a battl no one expected. it' up to a marin staff sergeant and hi new platoon to draw a line in the sand as they take on an enemi unlik ani they'v ever encount before. action sciencefict savingtheworld hero marinecorp chao retir survivor meteor spaceinvas alien battlefield surviv sergeant losangel battl danger escapad u.s.marin heroicmiss evilalien chaosandmayham aaroneckhart ramónrodríguez willrothhaar jonathanliebesman\",\n", " 583: \"throughout hi life edward bloom ha alway been a man of big appetites, enorm passion and tall tales. in hi later years, he remain a huge mysteri to hi son, william. now, to get to know the real man, will begin piec togeth a true pictur of hi father from flashback of hi amaz adventures. adventur fantasi drama circu fathersonrelationship witch fish fish loveofone'slif leech storytel apoplecticstrok fair mermaid cancer relationship youth gentlegi ewanmcgregor albertfinney billycrudup timburton\",\n", " 584: 'publish will randal becom a werewolf and ha to fight to keep hi job. fantasi adulteri heal bite werewolf jacknicholson christopherplumm jamesspad mikenichol',\n", " 585: 'follow a young man name albert and hi horse, joey, and how their bond is broken when joey is sold to the cavalri and sent to the trench of world war one. despit be too young to enlist, albert head to franc to save hi friend. drama war worldwari hors farmlif execut trap alcohol cavalri plow artilleri tomhiddleston benedictcumberbatch tobykebbel stevenspielberg',\n", " 586: 'base on the true stori of the greatest treasur hunt in history, the monument men is an action drama focus on seven over-the-hill, out-of-shap museum directors, artists, architects, curators, and art historian who went to the front line of wwii to rescu the world’ artist masterpiec from nazi thiev and return them to their right owners. with the art hidden behind enemi lines, how could these guy hope to succeed? war drama histori action worldwarii nazi arttheft postworldwarii mattdamon cateblanchett georgeclooney georgeclooney',\n", " 587: \"a civilian oil rig crew is recruit to conduct a search and rescu effort when a nuclear submarin mysteri sinks. one diver soon find himself on a spectacular odyssey 25,000 feet below the ocean' surfac where he confront a mysteri forc that ha the power to chang the world or destroy it. adventur action thriller sciencefict ocean sea divingsuit flyingsauc nuclearmissil alienlife-form insan scubadiv underwat scuba deepsea trappedunderwat thalassophobia edharri maryelizabethmastrantonio michaelbiehn jamescameron\",\n", " 588: \"as the global economi teeter on the brink of disaster, a young wall street trader partner with disgrac former wall street corpor raider gordon gekko on a two tier mission: to alert the financi commun to the come doom, and to find out who wa respons for the death of the young trader' mentor. drama crime duringcreditssting michaeldougla shialabeouf joshbrolin oliverston\",\n", " 589: \"vlad tepe is a great hero, but when he learn the sultan is prepar for battl and need to form an armi of 1,000 boys, includ vlad' son, he vow to find a way to protect hi family. vlad turn to dark forc in order to get the power to destroy hi enemi and agre to go from hero to monster as he' turn into the mytholog vampir dracula. horror action drama fantasi war vampir dracula bite battl 15thcenturi ottomanempir vlad fangvamp tepe lukeevan sarahgadon dominiccoop garyshor\",\n", " 590: 'the secret us abduct of a suspect terrorist lead to a wave of terrorist attack in new york that lead to the declar of martial law. drama action thriller crime islam muslim carbomb fbiagent denzelwashington annetteben brucewilli edwardzwick',\n", " 591: \"in a countrysid town border on a magic land, a young man make a promis to hi belov that he'll retriev a fallen star by ventur into the magic realm. hi journey take him into a world beyond hi wildest dream and reveal hi true identity. adventur fantasi romanc famili witch basedonnovel newlov princ beauti star kingdom wall fallingstar royalti unrequitedlov goodvsevil fratricid clairedan charliecox michellepfeiff matthewvaughn\",\n", " 592: \"austrian mountaineer, heinrich harrer journey to the himalaya without hi famili to head an expedit in 1939. but when world war ii break out, the arrog harrer fall into alli forces' hand as a prison of war. he escap with a fellow detaine and make hi way to llaso, tibet, where he meet the 14-year-old dalai lama, whose friendship ultim transform hi outlook on life. adventur drama histori buddhism himalaya austria mountain buddhistmonk worldwarii prisonersofwar monsoon tibet dalailama mountain lhasa wed bradpitt jamyangjamtshowangchuk davidthewli jean-jacquesannaud\",\n", " 593: \"longtim friend ronni and nick are partner in an auto-design firm. they are hard at work on a present for a dream project that would realli launch their company. then ronni spot nick' wife out with anoth man, and in the process of investig the possibl affair, he learn that nick ha a few secret of hi own. as the present nears, ronni agon over what might happen if the truth get out. comedi drama adulteri infidel secret investig friendship partner love friend dilemma cheatingonpartn bestfriend kevinjam vincevaughn winonaryd ronhoward\",\n", " 594: 'when a harvard-educ cia agent is kill dure an operation, the secret agenc recruit hi twin brother. action adventur comedi thriller ambush cia assassin nightclub hustler hiddencamera decoy undercoverag twinbroth decept betray mistakenident shootout espionag footchas carchas silenc surveil agent imperson langleyvirginia oddcoupl anthonyhopkin chrisrock peterstormar joelschumach',\n", " 595: 'a team of space marin known as the rapid respons tactic squad, led by sarge, is sent to a scienc facil on mar after somebodi report a secur breach. there, they learn that the alert came after a test subject, a mass murder purpos inject with alien dna, broke free and began kill people. dr. grimm, who is relat to team member reaper, inform them all that the chromosom can mutat human into monster -- and is highli infectious. adventur action horror teleport basedonvideogam severedear futurewar wisecrackhumor commandomiss dwaynejohnson karlurban rosamundpik andrzejbartkowiak',\n", " 596: \"when the switchblade, the most sophist prototyp stealth fighter creat yet, is stolen from the u.s. government, one of the unit states' top spies, alex scott, is call to action. what he doesn't expect is to get team up with a cocki civilian, world class box champion kelli robinson, on a danger top secret espionag mission. their assignment: use equal part skill and humor, catch arnold gundars, one of the world' most success arm dealers. action adventur comedi thriller budapest kidnap boxer secretag liberationofhostag hostage-tak womandirector eddiemurphi owenwilson famkejanssen bettythoma\",\n", " 597: 'after be held in a coma-lik state for fifteen years, vampir selen learn that she ha a fourteen-year-old vampire/lycan hybrid daughter name nissa, and when she find her, they must stop biocom from creat super lycan that will kill them all. fantasi action horror vampir daughter hybrid childvampir werewolf imax labexperi werewolfchild fangvamp katebeckinsal stephenrea michaeleali månsmårlind',\n", " 598: 'a small town girl and a citi boy meet on the sunset strip, while pursu their hollywood dreams. comedi drama music romanc music rocker teenag younglov rocksta juliannehough diegoboneta tomcruis adamshankman',\n", " 599: \"fourth-gener armi col. william mcnamara is imprison in a brutal german pow camp. still, as the senior-rank american officer, he command hi fellow inmates, keep a sens of honor aliv in a place where honor is easi to destroy, all under the danger eye of the luftwaf vetran col. wilhelm visser. never give up the fight to win the war, mcnamara is silent planning, wait for hi moment to strike back at the enemy. a murder in the camp give him the chanc to set a riski plan in motion. with a court martial to keep visser and the german distracted, mcnamara orchestr a cun scheme to escap and destroy a nearbi munit plant, enlist the unwit help of young lt. tommi hart. togeth with hi men, mcnamara use a hero' resolv to carri out hi mission, ultim forc to weigh the valu of hi life against the good of hi country. drama war blackpeopl worldwarii prisonersofwar u.s.armi war escap tribun trial soldier militarytribun xenophobia brucewilli colinfarrel terrencehoward gregoryhoblit\",\n", " 600: 'base on a shock true story, killer elit pit two of the world’ most elit operatives—danny, an ex-speci op agent and hunter, hi longtim mentor—against the cun leader of a secret militari society. cover the globe from australia to paris, london and the middl east, danni and hunter are plung into a highli danger game of cat and mouse—wher the predat becom the prey. action adventur thriller rescu jasonstatham cliveowen robertdeniro garymckendri',\n", " 601: \"from the director of die hard come thi high-octan thriller that roar along at a breakneck pace (lo angel times)! star chri klein (american pie), jean reno (ronin), ll cool j (charlie' angels) and rebecca romijn-stamo (x-men), rollerbal goe full-throttl with excit from it death-defi open until it explos end! jonathan cross (klein) is the newest recruit in the most extrem sport of all time where hi fast move and killer look make him an instant superstar. but cross life in the fast lane collid with realiti when he learn that the league' owner (reno) is orchestr seriou on-court accid to boost ratings. now cross plan to take down the owner and hi ruthless sport befor the game put an end to him! action sciencefict thriller manag arena dystopia wrestl sport roller-sk motorcyclerac rollersk futuresport chrisklein llcoolj rebeccaromijn johnmctiernan\",\n", " 602: 'jonathan ecks, an fbi agent, realiz that he must join with hi lifelong enemy, agent sever, a rogu dia agent with whom he is in mortal combat, in order to defeat a common enemy. that enemi ha develop a \"micro-device\" that can be inject into victim in order to kill them at will. action adventur thriller lossoffamili enemi adversari agent antoniobandera lucyliu gregghenri wychkaosayananda',\n", " 603: 'get swept up in the action as an armor car driver (christian slater) tri to elud a gang of thiev (led by morgan freeman) while a flood ravag the countryside. hard rain is \"a wild, thrilling, chill action ride\" fill with close calls, uncertain loyalti and heart-stop heroics. thriller sheriff rain evacu armoredcar crook hoodlum morganfreeman christianslat randyquaid mikaelsalomon',\n", " 604: 'a policeman white blood cell, with the help of a cold pill, must stop a deadli viru from destroy the human they live in, frank. adventur anim action comedi famili cold flu lethalviru constructionwork chrisrock laurencefishburn davidhydepierc bobbyfarrelli',\n", " 605: 'dorothi wake up in post-tornado kansas, onli to be whisk back to oz to tri to save her old friend the scarecrow, the lion, the tin man and glinda from a deviou new villain, the jester. wiser the owl, marshal mallow, china princess and tugg the tugboat join dorothi on her latest magic journey through the color landscap of oz to restor order and happi to emerald city. anim music famili leamichel danaykroyd patrickstewart danst.pierr',\n", " 606: 'a man is releas from prison to help american and chines author pursu a mysteri cyber criminal. the danger search lead them from chicago to hong kong. crime drama mysteri terrorist technolog antihero hacker computerviru nationalsecurityagency(nsa) raceagainsttim comput malaysia nuclearpowerpl suspens betray conspiraci ontherun fugit shootout hack terror catandmous oneagainstmani computerhack noopeningcredit terroristplot stockexchang cybercrim cyberterror chinesemilitari cyberterrorist cyberthril chrishemsworth leehomwang tangwei michaelmann',\n", " 607: 'when gigant robot attack new york city, \"ski captain\" use hi privat air forc to fight them off. hi ex-girlfriend, report polli perkins, ha been investig the recent disappear of promin scientists. suspect a link between the global robot attack and miss men, sky captain and polli decid to work together. they fli to the himalaya in pursuit of the mysteri dr. totenkopf, the mastermind behind the robots. mysteri action thriller sciencefict adventur londonengland himalaya journalist killerrobot computerwar robot judelaw gwynethpaltrow giovanniribisi kerryconran',\n", " 608: 'novelist catherin tramel is onc again in troubl with the law, and scotland yard appoint psychiatrist dr. michael glass to evalu her. though, like detect nick curran befor him, glass is entranc by tramel and lure into a seduct game. crime mysteri thriller malenud sex leg soholondon playinggod jacuzzi sharonston davidmorrissey charlotterampl michaelcaton-jon',\n", " 609: \"ray breslin is the world' foremost author on structur security. after analyz everi high secur prison and learn a vast array of surviv skill so he can design escape-proof prisons, hi skill are put to the test. he' frame and incarcer in a master prison he design himself. he need to escap and find the person who put him behind bars. action thriller prison muslim ship mysteri sciencefict escap crime prisonescap ciaagent sylvesterstallon arnoldschwarzenegg jimcaviezel mikaelhåfström\",\n", " 610: 'in ancient greec 1200 b.c., a queen succumb to the lust of zeu to bear a son promis to overthrow the tyrann rule of the king and restor peac to a land in hardship. but thi prince, hercules, know noth of hi real ident or hi destiny. he desir onli one thing: the love of hebe, princess of crete, who ha been promis to hi own brother. when hercul learn of hi greater purpose, he must choose: to flee with hi true love or to fulfil hi destini and becom the true hero of hi time. the stori behind one of the greatest myth is reveal in thi action-pack epic - a tale of love, sacrific and the strength of the human spirit. action adventur mytholog zeu ancientgreec demigod cityofargo mistakenparentag kellanlutz liammcintyr gaiaweiss rennyharlin',\n", " 611: 'when the presid of russia suddenli dies, a man whose polit are virtual unknown succe him. the chang in polit leader spark paranoia among american cia officials, so cia director bill cabot recruit a young analyst to suppli insight and advic on the situation. then the unthink happens: a nuclear bomb explod in a u.s. city, and america is quick to blame the russians. thriller action drama cia terrorist atomicbomb coldwar nuclearexplos jackryan benaffleck morganfreeman jamescromwel philaldenrobinson',\n", " 612: 'bella onc again find herself surround by danger as seattl is ravag by a string of mysteri kill and a malici vampir continu her quest for revenge. in the midst of it all, she is forc to choos between her love for edward and her friendship with jacob, know that her decis ha the potenti to ignit the ageless struggl between vampir and werewolf. with her graduat quickli approaching, bella is confront with the most import decis of her life. adventur fantasi drama romanc vampir graduat bite immort werewolf fangvamp kristenstewart robertpattinson taylorlautn davidslad',\n", " 613: 'an age thief hope to retir and live off hi ill-gotten wealth when a young kid convinc him into do one last heist. action crime thriller quebec jewel scepter customshous jewelryheist blueprint assumedident schemat voiceov surveillancecamera onelastjob robertdeniro edwardnorton marlonbrando frankoz',\n", " 614: \"villain gru live up to hi reput as a despicable, deplor and downright unlik guy when he hatch a plan to steal the moon from the sky. but he ha a tough time stay on task after three orphan land in hi care. anim famili adoptivefath orphanag life'sdream rivalri steal ballet littlegirl orphan fatherdaughterrelationship tomboy mothersonrelationship intellig kid evildoctor duringcreditssting minion supervillain 3d despic cattivissimo stevecarel jasonsegel russellbrand pierrecoffin\",\n", " 615: 'a veng new york transit cop decid to steal a trainload of subway fares; hi foster brother, a fellow cop, tri to protect him. action comedi crime brotherbrotherrelationship subway newyorkc newyorksubway trainrobberi wesleysnip woodyharrelson jenniferlopez josephruben',\n", " 616: \"newlyw coupl ted and tami-lynn want to have a baby, but in order to qualifi to be a parent, ted will have to prove he' a person in a court of law. comedi spermbank sequel buddi courthous teddybear aftercreditssting toycomestolif marri markwahlberg sethmacfarlan amandaseyfri sethmacfarlan\",\n", " 617: 'a histor drama set in roman egypt, concern philosoph hypatia of alexandria and her relationship with her slave davus, who is torn between hi love for her and the possibl of gain hi freedom by join the rise tide of christianity. adventur drama histori christian philosophi egypt newlov war cult historicalfigur histori swordfight ancientworld destini fallinlov hypatia misogyni persecut libraryofalexandria politicalunrest impossiblelov falsehistori powerrel unfulfil masterandserv loveandrom unfulfilledlov rachelweisz maxminghella oscarisaac alejandroamenábar',\n", " 618: \"when captain amaz (kinnear) is kidnap by casanova frankenstein (rush) a group of superhero combin togeth to creat a plan. but these aren't normal superheroes. now, the group who includ such hero as mr. furiou (stiller), the shovel (macy) and the blue raja (azaria) must put all the power togeth to save everyon they know and love. adventur fantasi action comedi sciencefict bowl hostag sphinx train insaneasylum tool frankenstein casanova superhero basedoncomicbook independentfilm comedi spoof skull shovel disco superherospoof invisibleman darkhorsecom invis rajah bowlingbal spleen evilgeniu benstil geoffreyrush claireforlani kinkaush\",\n", " 619: 'when best bud rick and fred begin to show sign of restless at home, their wive take a bold approach to revit their marriages: they grant the guy a \"hall pass\", one week of freedom to do whatev they want. at first, it seem like a dream come true, but they quickli discov that their expect of the singl life - and themselv - are complet and hilari out of sync with reality. comedi wifehusbandrelationship daydream marriag freedom friend owenwilson jasonsudeiki jennafisch bobbyfarrelli',\n", " 620: 'tell the true stori of a 60 minut televis seri exposé of the tobacco industry, as seen through the eye of a real tobacco executive, jeffrey wigand drama thriller spi newspap research interview tobacco insid conspiracytheori report whistleblow columbiabroadcastingsystem(cbs) tobaccoindustri alpacino russellcrow christopherplumm michaelmann',\n", " 621: 'the coast guard make a dare rescu attempt off the coast of cape cod after a pair of oil tanker are destroy dure a blizzard in 1952. action drama histori thriller coastguard basedontruestori surviv rescuemiss stormatsea sinkingship 1950 3d chrispin caseyaffleck benfost craiggillespi',\n", " 622: 'the cia’ hunt is on for the mastermind of a wave of terrorist attacks. roger ferri is the agency’ man on the ground, move from place to place, scrambl to stay ahead of ever-shift events. an eye in the sky – a satellit link – watch ferris. at the other end of that real-tim link is the cia’ ed hoffman, strateg event from thousand of mile away. and as ferri near the target, he discov trust can be just as danger as it is necessari for survival. action drama thriller terror falselyaccus basedonnovel dyinganddeath jordan dubai intelligenceag beat leonardodicaprio russellcrow markstrong ridleyscott',\n", " 623: \"rise execut tim wagner work for a boss who host a monthli dinner in which the guest who bring the biggest buffoon get a career-boost. tim plan on not attend until he meet barry, a man who build diorama use stuf mice. barry' blunder but good intent send tim' life into a downward spiral, threaten a major busi deal and possibl scuttl tim' engag to hi fiancee. comedi mous idiot mindcontrol taxidermi aftercreditssting duringcreditssting stevecarel paulrudd stephanieszostak jayroach\",\n", " 624: \"presid lincoln' mother is kill by a supernatur creature, which fuel hi passion to crush vampir and their slave-own helpers. action fantasi horror usapresid vampir steamlocomot americancivilwar 19thcenturi abrahamlincoln 3d benjaminwalk dominiccoop anthonymacki timurbekmambetov\",\n", " 625: \"two thieves, who travel in eleg circles, tri to outsmart each other and, in the process, end up fall in love. romanc drama mysteri londonengland newyear'sev skyscrap burglar distrust undercov blackmail nuditi thief heist oldermanyoungerwomanrelationship artthief crimin arttheft millennium manhattan,newyorkc gala kualalumpurmalaysia seanconneri catherinezeta-jon willpatton jonamiel\",\n", " 626: \"mulder and scully, now taken off the fbi' x file cases, must find a way to fight the shadowi element of the govern to find out the truth about a conspiraci that might mean the alien colon of earth. mysteri sciencefict thriller bomb helicopt secret obsess extraterrestrialtechnolog fbi spacemarin mutat secretsocieti secretorgan secretlab x-file govern davidduchovni gilliananderson mitchpileggi robbowman\",\n", " 627: 'as the roman empir crumbles, young romulu augustu flee the citi and embark on a peril voyag to britain to track down a legion of supporters. action adventur fantasi war romanempir emperor ancientrom westernromanempir ancientworld juliuscaesar colinfirth benkingsley aishwaryaraibachchan douglefl',\n", " 628: 'as u.s. troop storm the beach of normandy, three brother lie dead on the battlefield, with a fourth trap behind enemi lines. ranger captain john miller and seven men are task with penetr german-held territori and bring the boy home. drama histori war warcrim selfsacrific warveteran worldwarii warship airplan braveri normandi parachut troop waffenss omahabeach armi cowardic americanflag warmemori desertedtown militari 1940 tomhank mattdamon vindiesel stevenspielberg',\n", " 629: \"the film revolv around a local street-rac who partner with a rich and arrog busi associate, onli to find himself frame by hi colleagu and sent to prison. after he get out, he join a new york-to-lo angel race to get revenge. but when the ex-partn learn of the scheme, he put a massiv bounti on the racer' head, forc him to run a cross-countri gauntlet of illeg racer in all manner of supercharg vehicles. action crime drama thriller streetrac supercar superspe car basedonvideogam duringcreditssting 3d aaronpaul dominiccoop imogenpoot scottwaugh\",\n", " 630: \"advertis execut nick marshal is as cocki as they come, but what happen to a chauvinist guy when he can suddenli hear what women are thinking? nick get pass over for a promotion, but after an accid enabl him to hear women' thoughts, he put hi newfound talent to work against darcy, hi new boss, who seem to be infatu with him. comedi romanc women telepathi supernaturalpow advertisingexecut womandirector helenhunt melgibson marisatomei nancymey\",\n", " 631: 'with the impend ice age almost upon them, a mismatch trio of prehistor critter – manni the woolli mammoth, diego the saber-tooth tiger and sid the giant sloth – find an orphan infant and decid to return it to it human parents. along the way, the unlik alli becom friend but, when enemi attack, their quest take on far nobler aims. anim comedi famili adventur humanevolut parentskidsrelationship squirrel ice lossofchild mammoth sloth dyinganddeath stoneag prehistor saber-toothedtig cavemen prehistoriccreatur prehistoricadventur prehistorictim prehistoricman rayromano johnleguizamo denisleari chriswedg',\n", " 632: \"four boyhood pal perform a heroic act and are chang by the power they gain in return. year later, on a hunt trip in the main woods, they'r overtaken by a viciou blizzard that harbor an omin presence. challeng to stop an alien force, the friend must first prevent the slaughter of innoc civilian by a militari vigilant ... and then overcom a threat to the bond that unit the four of them. drama horror sciencefict thriller religionandsupernatur morganfreeman thomasjan jasonle lawrencekasdan\",\n", " 633: \"a reveal drama that focus on the 16th president' tumultu final month in office. in a nation divid by war and the strong wind of change, lincoln pursu a cours of action design to end the war, unit the countri and abolish slavery. with the moral courag and fierc determin to succeed, hi choic dure thi critic moment will chang the fate of gener to come. histori drama usapresid speech battlefield familyconflict mourn americancivilwar culturalconflict basedontrueev battleofgettysburg secess presidentialcabinet gettysburgaddress conflagr ethicaldilemma emancip abrahamlincoln danielday-lewi sallyfield davidstrathairn stevenspielberg\",\n", " 634: 'set in the 22nd century, the matrix tell the stori of a comput hacker who join a group of underground insurg fight the vast and power comput who now rule the earth. action sciencefict savingtheworld artificialintellig manvsmachin philosophi propheci martialart selfsacrific fight insurg virtualr dystopia truth cyberpunk womandirector messiah gnostic keanureev laurencefishburn carrie-annemoss lillywachowski',\n", " 635: 'the true stori of technic troubl that scuttl the apollo 13 lunar mission in 1971, risk the live of astronaut jim lovel and hi crew, with the fail journey turn into a thrill saga of heroism. drift more than 200,000 mile from earth, the astronaut work furious with the ground crew to avert tragedy. drama moon florida nasa spaceman raceagainsttim houston basedontruestori space rescu surviv disast explos astronaut imax saturnvrocket courag hypothermia apolloprogram capekennedi lunarmiss spacecraftaccid tomhank billpaxton kevinbacon ronhoward',\n", " 636: \"better watch out! the big guy in red is come to town onc again. thi time, scott calvin -- also known as santa clau -- find out there' an obscur claus in hi contract requir him to take on a wife. he ha to leav the north pole to fulfil hi obligations, or els he'll be forc to give up hi yuletid gig. fantasi comedi famili holiday christmasparti home santaclau magic toy wish son sequel savingchristma christma timallen elizabethmitchel davidkrumholtz michaellembeck\",\n", " 637: \"an adapt of the success stage music base on victor hugo' classic novel set in 19th-centuri france, in which a parol prison name jean valjean seek redemption. drama music romanc franc robberi brothel mayor star music arrest armi rebellion wed fallinginlov corps parol convict girldisguisedasboy hughjackman russellcrow annehathaway tomhoop\",\n", " 638: \"book superstor magnate, joe fox and independ book shop owner, kathleen kelli fall in love in the anonym of the internet – both bliss unawar that he' put her out of business. comedi romanc romanticcomedi onlined womandirector tomhank megryan katiesagona noraephron\",\n", " 639: \"brennan huff and dale doback might be grown men. but that doesn't stop them from live at home and turn into jealous, competit stepbroth when their singl parent marry. brennan' constant competit with dale strain hi mom' marriag to dale' dad, leav everyon to wonder whether they'll ever see eye to eye. comedi becominganadult autonomi childhoodtrauma hostil stepbroth slacker manchild aftercreditssting duringcreditssting willferrel johnc.reilli marysteenburgen adammckay\",\n", " 640: 'it ha been twenti year sinc don diego de la vega fought spanish oppress in alta california as the legendari romant hero, zorro. have escap from prison he transform troubl bandit alejandro into hi successor, in order to foil the plan of the tyrann don rafael montero who rob him of hi freedom, hi wife and hi preciou daughter. action adventur california spi hero horsebackrid swordfight reveng antoniobandera anthonyhopkin catherinezeta-jon martincampbel',\n", " 641: \"peter highman must scrambl across the us in five day to be present for the birth of hi first child. he get off to a bad start when hi wallet and luggag are stolen, and put on the 'no-fly' list. peter embark on a terrifi journey when he accept a ride from an actor. comedi drama highway slacker hitchhik wallet sunglass reststop vicodin waffl robertdowneyjr. zachgalifianaki michellemonaghan toddphillip\",\n", " 642: \"a chronicl of the life of loui zamperini, an olymp runner who wa taken prison by japanes forc dure world war ii. drama war worldwarii prisonersofwar biographi sport war athlet womandirector olympicathlet jacko'connel domhnallgleeson garretthedlund angelinajoli\",\n", " 643: \"frank corvin, ‘hawk’ hawkins, jerri o'neil and ‘tank’ sullivan were hotdog member of project daedalus, the air force' test program for space travel, but their hope were dash in 1958 with the format of nasa and the use of train chimps. they blackmail their way into orbit when russia' mysteri ‘ikon’ commun satellite' orbit begin to degrad and threaten to crash to earth. action adventur thriller nasa spacetravel astronaut elderli clinteastwood tommyleejon donaldsutherland clinteastwood\",\n", " 644: 'a year after lose hi friend in a tragic 4,000-foot fall, former ranger gabe walker and hi partner, hal, are call to return to the same peak to rescu a group of strand climbers, onli to learn the climber are actual thiev hijack who are look for box full of money. action adventur thriller rockymountain airplan hijack suitcas climb heist money snow mountainclimb mountain sylvesterstallon johnlithgow michaelrook rennyharlin',\n", " 645: \"when rogu stealth-fight pilot vic deakin deliber drop off the radar while on maneuvers, the air forc end up with two stolen nuclear warhead -- and deakins' co-pilot, riley hale, is the military' onli hope for get them back. travers the desert canyon of utah, hale team with park ranger terri carmichael to put deakin back in hi box. action adventur drama thriller helicopt river captain underground mexicanstandoff countdown pilot fistfight canyon major betray gunfight train explos parkrang desert militari nucleardevic box stealthaircraft abandonedmin humve johntravolta christianslat samanthamathi johnwoo\",\n", " 646: \"power businessman russ duritz is self-absorb and immers in hi work. but by the magic of the moon, he meet rusty, a chubby, charm 8-year-old version of himself who can't believ he could turn out so badli -- with no life and no dog. with rusty' help, russ is abl to reconcil the person he use to dream of be with the man he' actual become. fantasi comedi famili agediffer midlifecrisi suppressedpast self-awar childhoodmemori humor changingthepastorfutur brucewilli spencerbreslin emilymortim jonturteltaub\",\n", " 647: 'on september, 11th 2001, after the terrorist attack to the world trade center, the build collaps over the rescu team from the port author polic department. will jimeno and hi sergeant john mcloughlin are found aliv trap under the wreckag while the rescu team fight to save them. drama histori thriller terror runaway alarmclock hero firemen fireengin waronterror rescu marin hospit trap rubbl rescueteam nicolascag mariabello maggiegyllenha oliverston',\n", " 648: \"the stori of katherin ann watson, a feminist teacher who studi at ucla graduat school and in 1953 left her boyfriend behind in lo angeles, california to teach at wellesley college, a conserv women' privat liber art colleg in massachusetts, unit states. drama romanc faculti arthistori row schoolnurs feminin teacherhero womensissu juliarobert kirstendunst juliastil mikenewel\",\n", " 649: 'the heroic stori of a dictat who risk hi life to ensur that democraci would never come to the countri he so lovingli oppressed. comedi kurdish sachabaroncohen sayedbadreya aasifmandvi larrycharl',\n", " 650: \"after dr. bill hartford' wife, alice, admit to have sexual fantasi about a man she met, bill becom obsess with have a sexual encounter. he discov an underground sexual group and attend one of their meet -- and quickli discov that he is in over hi head. mysteri drama lifeanddeath sexualobsess freelov heterosexu christmasparti erotic orgi maskedbal marijuana illegalprostitut tomcruis nicolekidman madisoneginton stanleykubrick\",\n", " 651: \"ever sinc her parent left her as a baby, littl anni ha led a hard-knock life with her calcul foster mother, miss hannigan. however, all that chang when hard-nos billionair and mayor candid will stack take her in on the recommend of hi advisers. stack believ that he' annie' guardian angel, but the plucki youngster' confid and sunni outlook may mean that anni will save will instead. comedi drama famili music orphan fosterchild quvenzhanéw jamiefoxx rosebyrn willgluck\",\n", " 652: 'nicky, a veteran con artist, take a novic name jess under hi wing. while nicki teach jess the trick of the trade, the pair becom romant involved; but, when jess get uncomfort close, nicki end their relationship. three year later, nicki is in bueno air work a veri danger scheme when jess -- now an accomplish femm fatal -- unexpectedli show up. her appear throw nicki for a loop at a time when he cannot afford to be off hi game. romanc comedi crime drama seduct conman femmefatal decept rivalri conartist willsmith margotrobbi rodrigosantoro glennficarra',\n", " 653: 'two top cia oper wage an epic battl against one anoth after they discov they are date the same woman. action comedi romanc lovetriangl friendship date sushibar explodingairplan onlined stabl karateclass dogshelt reesewitherspoon chrispin tomhardi mcg',\n", " 654: 'for years, blade ha fought against the vampir in the cover of the night. but now, after fall into the crosshair of the fbi, he is forc out into the daylight, where he is driven to join forc with a clan of human vampir hunter he never knew exist - the nightstalkers. togeth with abigail and hannibal, two deftli train nightstalkers, blade follow a trail of blood to the ancient creatur that is also hunt him, the origin vampire, dracula. sciencefict action horror thriller adventur fantasi fbi dracula fistfight vampirehunt superhero basedoncomicbook martialartsmast motorcycl katanasword blade lossoffriend supervillain vampireslay fastmotionscen femalevampir wesleysnip kriskristofferson dominicpurcel davids.goy',\n", " 655: 'it is the mid-1980s. from out of the sky, soviet and cuban troop begin land on the footbal field of a colorado high school. in seconds, the paratroop have attack the school and sent a group of teenag flee into the mountains. arm onli with hunt rifles, pistol and bow and arrows, the teen struggl to surviv the bitter winter and soviet kgb patrol hunt for them. action thriller guerrilla colorado invas anti-commun nearfutur redarmi patrickswayz c.thomashowel leathompson johnmiliu',\n", " 656: \"in thi adapt of the best-sel roman à clef about bill clinton' 1992 run for the white house, the young and gift henri burton is tap to overse the presidenti campaign of governor jack stanton. burton is pull into the politician' color world and look on as stanton -- who ha a wander eye that could be hi downfal -- contend with hi ambiti wife, susan, and an outspoken adviser, richard jemmons. comedi drama whitehous usapresid presidentialelect scandal georgew.bush extramaritalaffair johntravolta emmathompson billybobthornton mikenichol\",\n", " 657: 'the umbrella corporation’ deadli t-viru continu to ravag the earth, transform the global popul into legion of the flesh eat undead. the human race’ last and onli hope, alice, awaken in the heart of umbrella’ most clandestin oper facil and unveil more of her mysteri past as she delv further into the complex. without a safe haven, alic continu to hunt those respons for the outbreak; a chase that take her from tokyo to new york, washington, d.c. and moscow, culmin in a mind-blow revel that will forc her to rethink everyth that she onc thought to be true. aid by new found alli and familiar friends, alic must fight to surviv long enough to escap a hostil world on the brink of oblivion. the countdown ha begun. action horror sciencefict mutant dystopia sequel conspiraci tokyojapan zombi basedonvideogam moscow handtohandcombat viru plagu pandem megacorpor millajovovich siennaguillori michellerodriguez paulw.s.anderson',\n", " 658: \"termin island, new york: 2020. overcrowd in the us penal system ha reach a break point. prison have been turn over to a monolith weyland corporation, which see jail full of thug as an opportun for televis sport. adren inmates, a global audienc hungri for violenc and a spectacular, enclos arena come togeth to form the 'death race', the biggest, most brutal event. action thriller sciencefict carrac dystopia matteroflifeanddeath prisonguard carsetonfir escapefromprison explodingbuild vehiclecombat carcrash violenc jasonstatham joanallen ianmcshan paulw.s.anderson\",\n", " 659: 'samantha caine, suburban homemaker, is the ideal mom to her 8 year old daughter caitlin. she live in honesdale, pa, ha a job teach school and make the best rice krispi treat in town. but when she receiv a bump on her head, she begin to rememb small part of her previou life as a lethal, top-secret agent crime action mysteri thriller assassin amnesia hostag chase darkcomedi teacher escap singlemoth timebomb candlelightvigil rogueag streetshootout exciaag christmasparad geenadavi samuell.jackson yvonnezima rennyharlin',\n", " 660: 'alic hire a profession negoti to obtain the releas of her engin husband, who ha been kidnap by anti-govern guerrilla in south america. action adventur drama romanc thriller hostag newlov suspens agent megryan russellcrow davidmors taylorhackford',\n", " 661: 'after their father is call into work, two young boys, walter and danny, are left in the care of their teenag sister, lisa, and told they must stay inside. walter and danny, who anticip a bore day, are shock when they begin play zathura, a space-them board game, which they realiz ha mystic power when their hous is shot into space. with the help of an astronaut, the boy attempt to return home. famili fantasi sciencefict adventur adventur hous alien giantrobot outerspac astronaut jonahbobo joshhutcherson daxshepard jonfavreau',\n", " 662: 'a ticking-time-bomb insomniac and a slipperi soap salesman channel primal male aggress into a shock new form of therapy. their concept catch on, with underground \"fight clubs\" form in everi town, until an eccentr get in the way and ignit an out-of-control spiral toward oblivion. drama supportgroup dualident nihil rageandh insomnia dystopia violenc edwardnorton bradpitt meatloaf davidfinch',\n", " 663: \"when a plane crash claim the live of member of the marshal univers footbal team and some of it fans, the team' new coach and hi surviv player tri to keep the footbal program alive. drama americanfootbal 1970 trainer colleg sport matthewmcconaughey matthewfox anthonymacki mcg\",\n", " 664: 'eddi hawkins, call hudson hawk ha just been releas from ten year of prison and is plan to spend the rest of hi life honestly. but then the crazi mayflow coupl blackmail him to steal some of the work of leonardo da vinci. if he refuses, they threaten to kill hi friend tommy. action adventur comedi vatican leonardodavinci paint masterthief brucewilli dannyaiello andiemacdowel michaellehmann',\n", " 665: \"russ richard is a tv weatherman and local celebr on the verg of lose hi shirt. desper to escap financi ruin, he scheme with crystal the tv station' lotto ball girl to rig the state lotteri drawing. the number come up right, but everyth els goe wrong as the plan start to unravel and the game turn rough. action adventur comedi crime romanc thriller weatherforecast tvstation weather lotteri wettermann debt womandirector johntravolta lisakudrow timroth noraephron\",\n", " 666: \"200 year after hi shock creation, dr. frankenstein' creature, adam, still walk the earth. but when he find himself in the middl of a war over the fate of humanity, adam discov he hold the key that could destroy humankind. horror thriller soul queen antihero fantasi princ supernatur frankenstein goodvsevil gargoyl fight demon dark imax 3d aaroneckhart yvonnestrahovski billnighi stuartbeatti\",\n", " 667: \"oliv twist the modern film version of charl dicken bestseller, a roman polanski adaptation. the classic dicken tale, where an orphan meet a pickpocket on the street of london. from there, he join a household of boy who are train to steal for their master. crime drama famili londonengland childabus streetgang runaway childlabour children'shom orphanag thief violenc goodandbad child barneyclark benkingsley jamieforeman romanpolanski\",\n", " 668: 'elektra the warrior surviv a near-death experience, becom an assassin-for-hire, and tri to protect her two latest targets, a singl father and hi young daughter, from a group of supernatur assassins. action fantasi martialart basedoncomicbook femaleassassin spinoff jennifergarn goranvisnj willyunle robbowman',\n", " 669: \"some of sin city' most hard-boil citizen cross path with a few of it more revil inhabitants. crime thriller detect dystopia dominatrix murder suspens twin basedongraphicnovel darkhorsecom neo-noir 3d mickeyrourk jessicaalba joshbrolin robertrodriguez\",\n", " 670: \"after the death of their love one in a tragic plane crash 'harrison ford' and kristin scott thoma find each other key in each other love one posess and realiz that they were have an affair and must figur out all the details. written by andi heitzth wife of polic sergeant dutch van den broek and the husband of politician kay chandler are kill in a plane crash. now dutch discov some anomali in what he told her befor she left and discov that she and chandler' husband were travel together. dutch then goe to chandler and tell her that he suspect that they were have an affair. he tell her that he want to know the truth; she tell him that she doesn't but she later join him and they grow close. drama romanc infidel politician airplanecrash death deathofhusband policeserg deathofwif harrisonford kristinscottthoma charless.dutton sydneypollack\",\n", " 671: 'inspir by the incred event surround a treacher attempt to reach the summit of the world\\' highest mountain, \"everest\" document the awe-inspir journey of two differ expedit challeng beyond their limit by one of the fiercest snowstorm ever encount by mankind. their mettl test by the harshest of element found on the planet, the climber will face nearli imposs obstacl as a lifelong obsess becom a breathtak struggl for survival. adventur drama mountain snowstorm hike climb snow death blizzard mountainclimb basedontrueev mounteverest 3d jasonclark jakegyllenha joshbrolin baltasarkormákur',\n", " 672: \"jean-baptist grenouille, born in the stench of 18th centuri paris, develop a superior olfactori sense, which he use to creat the world' finest perfumes. however, hi work take a dark turn as he tri to preserv scent in the search for the ultim perfume. crime fantasi drama pari femalenud prostitut smalltown obsess orgi badsmel nuditi lonewolf lavend nose childprodigi fishmarket daughter supernatur geniu children'shom death perfum benwhishaw simonchandl davidcald tomtykw\",\n", " 673: \"the world' most shagadel spi continu hi fight against dr. evil. thi time, the diabol doctor and hi clone, mini-me, team up with a new foe -- '70 kingpin goldmember. while pursu the team of villain to stop them from world domination, austin get help from hi dad and an old girlfriend. comedi crime sciencefict savingtheworld submarin brotherbrotherrelationship clone spi helicopt gold submachinegun asteroid undercov belgium dutch carjourney nightclub laser sumoring familyhistori auto clown overweightman concili jamesbondspoof duringcreditssting mikemy beyoncéknowl sethgreen jayroach\",\n", " 674: \"set in futurist metro city, astro boy is about a young robot with incred power creat by a brilliant scientist in the imag of the son he ha lost. unabl to fulfil the griev man' expectations, our hero embark on a journey in search of acceptance, experienc betray and a netherworld of robot gladiators, befor he return to save metro citi and reconcil with the father who had reject him. anim action famili sciencefict superhero nicolascag kristenbel billnighi davidbow\",\n", " 675: 'a wealthi entrepreneur secretli creat a theme park featur live dinosaur drawn from prehistor dna. befor open day, he invit a team of expert and hi two eager grandchildren to experi the park and help calm anxiou investors. however, the park is anyth but amus as the secur system go off-lin and the dinosaur escape. adventur sciencefict exoticisland dna paleontolog tyrannosaurusrex triceratop brontosauru electricf island dinosaur amusementpark themepark jurassicpark samneil lauradern jeffgoldblum stevenspielberg',\n", " 676: \"cover the life and time of one of the west' most icon hero wyatt earp weav an intric tale of earp and hi friend and family. with a star stud cast, sweep cinematographi and authent costum wyatt earp led the way dure the western reviv in the 90's. drama action western gunsling gambl sheriff deputysheriff wretch wyattearp historicalfigur docholliday kevincostn dennisquaid genehackman lawrencekasdan\",\n", " 677: 'cia analyst jack ryan is drawn into an illeg war fought by the us govern against a colombian drug cartel. action drama thriller assassin spi ambush cia helicopt basedonnovel usapresid sniper fbi colombia drugtraff bomber missionofmurd mercenari insurg coastguard spi war carbomb drugcartel conspiraci shootout infantri violenc jackryan politicalcover-up harrisonford willemdafo annearch phillipnoyc',\n", " 678: 'huo an, the command of the protect squad of the western regions, wa frame by evil forc and becom enslaved. on the other hand, a roman gener escap to china after rescu the prince. the heroic duo meet in the western desert and a thrill stori unfolds. action drama adventur jackiechan johncusack adrienbrodi danielle',\n", " 679: \"after leav the prison, the dwarf crimin calvin sim join to hi moron brother perci to steal an expens huge diamond in a jewelri for the mobster walken. they are chase by the police, and calvin hide the stone in the purs of the execut vanessa edwards, whose husband darryl edward want to have a baby. perci convinc calvin to dress like a babi and be left in front of the edwards' hous to get insid the hous and retriev the diamond. darryl and vanessa keep calvin for the weekend and decid to adopt him, while walken threaten darryl to get the stone back. comedi crime babi adopt marriedcoupl smallperson crimin marlonwayan shawnwayan kerrywashington keenenivorywayan\",\n", " 680: \"in the midst of world war ii, the battl under the sea rage and the nazi have the upper hand as the alli are unabl to crack their war codes. however, after a wreck u-boat send out an so signal, the alli realis thi is their chanc to seiz the 'enigma code machine'. action drama thriller war submarin worldwarii northatlant mission matthewmcconaughey billpaxton harveykeitel jonathanmostow\",\n", " 681: \"widow u.s. presid andrew shepherd, one of the world' most power men, can have anyth he want -- and what he covet most is sydney ellen wade, a washington lobbyist. but shepherd' attempt at court her spark wild rumor and decim hi approv ratings. comedi drama romanc whitehous usapresid newlov widow wildlifeconserv michaeldougla annetteben michaelj.fox robrein\",\n", " 682: \"born in america and rais in an indian ashram, pitka return to hi nativ land to seek hi fortun as a spiritualist and self-help expert. hi skill are put to the test when he must get a brokenheart hockey player' marriag back on track in time for the man to help hi team win the stanley cup. comedi romanc sport icehockey guru comedi bollywood india spiritualist brokenheart self-help stanleycup chastiti ashram expert mikemy jessicaalba justintimberlak marcoschnabel\",\n", " 683: \"it wa an ingeni enough plan: rob the riviera casino' count room dure an elvi imperson convention. but thoma murphi decid to keep all the money for himself and shot all hi partners, includ recently-fre ex-con michael zane. with $3.2 million at stake, the marshal servic close in, michael must track down murphy. action adventur comedi thriller crime casino submachinegun hold-uprobberi elvi referencetoelvispresley duringcreditssting kurtrussel kevincostn courteneycox demianlichtenstein\",\n", " 684: 'bounti hunter seek shelter from a rage blizzard and get caught up in a plot of betray and deception. crime drama mysteri western bountyhunt wyom mountain narrat hangman stagecoach blizzard postcivilwar samuell.jackson kurtrussel jenniferjasonleigh quentintarantino',\n", " 685: 'when a much-public ice-sk scandal strip them of their gold medals, two world-class athlet skirt their way back onto the ice via a loophol that allow them to compet togeth as a pair team. action comedi drama competit olympicgam sport rivalri icesk willferrel jonhed willarnett joshgordon',\n", " 686: \"e.b., the easter bunny' teenag son, head to hollywood, determin to becom a drummer in a rock 'n' roll band. in la, he' taken in by fred after the out-of-work slacker hit e.b. with hi car. anim comedi famili coupd'etat slacker easter easterbunni aftercreditssting liveactionandanim russellbrand jamesmarsden kaleycuoco timhil\",\n", " 687: 'base on frank miller\\' graphic novel, \"300\" is veri loos base the 480 b.c. battl of thermopylae, where the king of sparta led hi armi against the advanc persians; the battl is said to have inspir all of greec to band togeth against the persians, and help usher in the world\\' first democracy. action adventur war eviscer javelin shield armi fallfromheight ancientworld s.a.t. minion gerardbutl lenaheadey dominicwest zacksnyd',\n", " 688: \"hard-to-crack ex-cia man, jack byrn and hi wife, dina head for the warmer clime of florida to meet son-in-law-to-be, greg focker' parents. unlik their happili match offspring, the futur in-law find themselv in a situat of opposit that definit do not attract. comedi romanc cia parentskidsrelationship florida anti-authoritarianupbring jew parents-in-law orderli justmarri sextherapi badfather-in-law famili illegitimateson benstil teripolo robertdeniro jayroach\",\n", " 689: \"a newli marri coupl who, in the process of start a family, learn mani of life' import lesson from their trouble-lov retriever, marley. pack with plenti of laugh to lighten the load, the film explor the high and low of marriage, matur and confront one' own mortality, as seen through the len of famili life with a dog. comedi famili journalist basedonnovel puppi dog duringcreditssting columnist animallead owenwilson jenniferaniston ericdan davidfrankel\",\n", " 690: \"a supernatur tale set on death row in a southern prison, where gentl giant john coffey possess the mysteri power to heal people' ailments. when the cellblock' head guard, paul edgecomb, recogn coffey' miracul gift, he tri desper to help stave off the condemn man' execution. fantasi drama crime southernusa blackpeopl mentallydis basedonnovel heal deathrow jailguard greatdepress prisonguard electricchair magicr heal deathrowinm 1930 tomhank michaelclarkeduncan davidmors frankdarabont\",\n", " 691: 'restless and readi for adventure, four suburban biker leav the safeti of their subdivis and head out on the open road. but complic ensu when they cross path with an intimid band of new mexico biker known as the del fuegos. action adventur comedi midlifecrisi roadtrip politicallyincorrect motorcyclegang bikerfilm awkward travelwrit middleag middleagedman timallen johntravolta martinlawr waltbeck',\n", " 692: \"when the sky realli is fall and saniti ha flown the coop, who will rise to save the day? togeth with hi hyster band of misfit friends, chicken littl must hatch a plan to save the planet from alien invas and prove that the world' biggest hero is a littl chicken. anim famili comedi fish smalltown spacemarin chicken alien bestfriend alieninvas anim duringcreditssting 3d zachbraff joancusack danmolina markdind\",\n", " 693: \"with hi wife' disappear have becom the focu of an intens media circus, a man see the spotlight turn on him when it' suspect that he may not be innocent. mysteri thriller drama basedonnovel marriagecrisi disappear cheatinghusband missingperson searchparti criminallawy wifemurd murdersuspect missingwif benaffleck rosamundpik carriecoon davidfinch\",\n", " 694: 'wound to the brink of death and suffer from amnesia, jason bourn is rescu at sea by a fisherman. with noth to go on but a swiss bank account number, he start to reconstruct hi life, but find that mani peopl he encount want him dead. however, bourn realiz that he ha the combat and mental skill of a world-class spi – but who doe he work for? action drama mysteri thriller pari barcelonaspain assassin basedonnovel secretident amnesia sniper passport missionofmurd lover escap shootout footchas cellphon carchas multipleident surveillancecamera hamburggermani fishingboat langleyvirginia safedepositbox flashback handtohandcombat mattdamon frankapotent chriscoop dougliman',\n", " 695: 'jame bond must unmask the mysteri head of the janu syndic and prevent the leader from util the goldeney weapon system to inflict devast reveng on britain. adventur action thriller cuba falselyaccus secretident computerviru secretbas secretintelligenceservic kgb satellit specialcar cossack electromagneticpuls timebomb st.petersburgrussia ejectionseat redarmi piercebrosnan seanbean izabellascorupco martincampbel',\n", " 696: \"when the bodi of armi capt. elizabeth campbel is found on a georgia militari base, two investigators, warrant offic paul brenner and sara sunhill, are order to solv her murder. what they uncov is anyth but clear-cut. unseemli detail emerg about campbell' life, lead to alleg of a possibl militari coverup of her death and the involv of her father, lt. gen. joseph campbell. crime drama mysteri thriller suicid detect basedonnovel bondag gener paranoia nuditi u.s.armi investig polit cover-up murder betray conspiraci gangrap fatherdaughterrelationship videotap militarylaw johntravolta madeleinestow jamescromwel simonwest\",\n", " 697: 'truman burbank is the star of \"the truman show\", a 24-hour-a-day \"reality\" tv show that broadcast everi aspect of hi life -- live and in color -- without hi knowledge. hi entir life ha been an unend soap opera for consumpt by the rest of the world. and everyon he know -- includ hi wife and hi best friend -- is realli an actor, paid to be part of hi life. comedi drama claustrophobia hiddencamera dystopia realityshow makebeliev pretend jimcarrey lauralinney noahemmerich peterweir',\n", " 698: 'thi is the extraordinari tale of two brother name mose and ramses, one born of royal blood, and one an orphan with a secret past. grow up the best of friends, they share a strong bond of free-spirit youth and good-natur rivalry. but the truth will ultim set them at odds, as one becom the ruler of the most power empir on earth, and the other the chosen leader of hi people! their final confront will forev chang their live and the world. adventur anim drama famili music mose egypt pyramid exodu kingdom govern ancientegypt hebrew pharaoh womandirector valkilm ralphfienn patrickstewart simonwel',\n", " 699: \"two men get laid off and have to becom stay-at-hom dad when they can't find jobs, which inspir them to open their own day-car center. comedi famili competit success kindergarten children unemploy eddiemurphi jeffgarlin stevezahn stevecarr\",\n", " 700: 'a dea agent and an undercov naval intellig offic who have been task with investig one anoth find they have been set up by the mob -- the veri organ the two men believ they have been steal money from. action comedi crime undercov undercoverag basedoncomicbook money fugit bankrobberi deaagent denzelwashington markwahlberg paulapatton baltasarkormákur',\n", " 701: 'when a professor develop a vaccin that elimin human allergi to dogs, he unwittingli upset the fragil balanc of power between cat and dog and touch off an epic battl for pet supremacy. the fur fli as the felin faction, led by mr. tinkles, squar off against wide-ey puppi lou and hi canin cohorts. comedi famili fight govern puppi allergi 3d jeffgoldblum elizabethperkin alexanderpollock lawrenceguterman',\n", " 702: \"charli croker pull off the crime of a lifetime. the one thing that he didn't plan on wa be double-crossed. along with a drop-dead gorgeou safecracker, croker and hi team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-met chase that careen up, down, abov and below the street of lo angeles. action crime venic california trainstat helicopt austria mountain gold subway hacker chase safe remak caper reveng murder heist doublecross fastcar boatchas losangel explos convict fatherdaughterrelationship carchas tvnew hollywoodsign televisionrepair minicoop markwahlberg charlizetheron edwardnorton f.garygray\",\n", " 703: \"dedic environment lawyer luci kelson goe to work for billionair georg wade as part of a deal to preserv a commun center. indecis and weak-wil georg grow depend on lucy' guidanc on everyth from legal matter to clothing. exasperated, luci give notic and pick harvard graduat june carter as her replacement. as lucy' time at the firm near an end, she grow jealou of june and ha second thought about leav george. romanc comedi newyork parishhal romanticcomedi lawyer billionair environmentallaw sandrabullock hughgrant aliciawitt marclawr\",\n", " 704: \"in thi anim hit, a neurot worker ant in love with a rebelli princess rise to unlik stardom when he switch place with a soldier. sign up to march in a parade, he end up under the command of a bloodthirsti general. but he' actual been enlist to fight against a termit army. adventur anim comedi famili gener hero worker ant work assign war princess soldier individu friend woodyallen danaykroyd annebancroft ericdarnel\",\n", " 705: 'four couples, all friends, descend on a tropic island resort. though one husband and wife are there to work on their marriage, the other just want to enjoy some fun in the sun. they soon find, however, that paradis come at a price: particip in coupl therapi session is mandatory. what start out as a cut-rat vacat turn into an examin of the common problem mani face. comedi romanc island marriedcoupl yoga tahiti couplestherapi beautifulwoman tropic aftercreditssting duringcreditssting frenchpolynesia polynésiefrançais vincevaughn malinåkerman jasonbateman peterbillingsley',\n", " 706: 'talent but unproven stock car driver cole trickl get a break and with the guidanc of veteran harri hogg turn head on the track. the young hotshot develop a rivalri with a fellow racer that threaten hi career when the two smash their cars. but with the help of hi doctor, cole just might overcom hi injuries-- and hi fear. adventur stock-car-rac daytona carcrash tomcruis robertduval nicolekidman tonyscott',\n", " 707: 'steve martin and bonni hunt return as head of the baker famili who, while on vacation, find themselv in competit with a rival famili of eight children, head by eugen levy, comedi holiday lake bigfamili father laborpain rivalri familyholiday stevemartin eugenelevi bonniehunt adamshankman',\n", " 708: \"thoma and hi fellow glader face their greatest challeng yet: search for clue about the mysteri and power organ known as wckd. their journey take them to the scorch, a desol landscap fill with unimagin obstacles. team up with resist fighters, the glader take on wckd’ vastli superior forc and uncov it shock plan for them all. action basedonnovel resist maze post-apocalypt dystopia infect ontherun escap zombi storm diseas desert sewer antidot corpor viru runner cityruin immun dylano'brien kayascodelario thomasbrodie-sangst wesbal\",\n", " 709: 'liz gilbert had everyth a modern woman is suppos to dream of have – a husband, a hous and a success career – yet like so mani others, she found herself lost, confus and search for what she realli want in life. newli divorc and at a crossroads, gilbert step out of her comfort zone, risk everyth to chang her life, embark on a journey around the world that becom a quest for self-discovery. in her travels, she discov the true pleasur of nourish by eat in italy, the power of prayer in india and, final and unexpectedly, the inner peac and balanc of true love in bali. drama indonesia femaleprotagonist india divorc bali juliarobert jamesfranco javierbardem ryanmurphi',\n", " 710: \"jack' lavish, fast-pac lifestyl chang one christma night when he stumbl into a groceri store holdup and disarm the gunman. the next morn he wake up in bed lie next to kate, hi colleg sweetheart he left in order to pursu hi career, and to the horrifi discoveri that hi former life no longer exists. as he stumbl through thi altern suburban universe, jack find himself at a crossroad where he must choos between hi high-pow career and the woman he loves. comedi drama romanc fantasi workahol secondch guardianangel christma careervsfamili liferepriorit nicolascag téaleoni doncheadl brettratn\",\n", " 711: 'when hi peac life is threaten by a high-tech assassin, former black-op agent, frank mose reassembl hi old team in a last ditch effort to surviv and uncov hi assailants. action adventur comedi crime thriller cia retir shottodeath sniperrifl retir femalespi alarm brucewilli johnmalkovich helenmirren robertschwentk',\n", " 712: 'a star quarterback get knock out of the game and an unknown third stringer is call in to replac him. the unknown give a stun perform and forc the age coach to reevalu hi game plan and life. a new co-owner/presid add to the pressur of winning. the new owner must prove her self in a male domin world. drama americanfootbal trainer train americanfootballcoach sport americanfootballstadium alpacino camerondiaz dennisquaid oliverston',\n", " 713: 'base on the novel by the same name from nichola evans, the talent robert redford present thi medit famili drama set in the countri side. redford not onli direct but also star in the roll of a cowboy with a magic talent for healing. drama romanc lovetriangl newyork montana attachmenttonatur confid horsebackrid hors ridingaccid careerwoman ranch horsewhisper trauma countrylif marriagecrisi crisi travel motherdaughterrelationship anim natur robertredford kristinscottthoma samneil robertredford',\n", " 714: 'cab driver max pick up a man who offer him $600 to drive him around. but the promis of easi money sour when max realiz hi fare is an assassin. drama crime thriller california taxi assassin hostag taxidriv fbi hitman polic losangel murder crime crimin gunviol tomcruis jamiefoxx jadapinkettsmith michaelmann',\n", " 715: \"in ancient egypt, peasant mathayu is hire to exact reveng on the power memnon and the sorceress cassandra, who are readi to overtak balthazar' village. amid betrayals, thieves, abduct and more, mathayu strive to bring justic to hi complic world. action fantasi adventur egypt templ dwaynejohnson kellyhu michaelclarkeduncan chuckrussel\",\n", " 716: \"under the watch eye of hi mentor, captain mike kennedy, probationari firefight jack morrison matur into a season veteran at a baltimor fire station. however, jack ha reach a crossroad as the sacrific he' made have put him in harm' way innumer time and significantli impact hi relationship with hi wife and kids. drama action thriller ledg practicaljok joaquinphoenix johntravolta jacindabarrett jayrussel\",\n", " 717: 'in an innoc heartland city, five are shot dead by an expert sniper. the polic quickli identifi and arrest the culprit, and build a slam-dunk case. but the accus man claim he\\' innoc and say \"get jack reacher.\" reacher himself see the news report and turn up in the city. the defens is immens relieved, but reacher ha come to buri the guy. shock at the accused\\' request, reacher set out to confirm for himself the absolut certainti of the man\\' guilt, but come up with more than he bargain for. crime drama thriller basedonnovel sniper investig polic quarri tomcruis rosamundpik richardjenkin christophermcquarri',\n", " 718: \"on a remot former submarin refuel facil call aquatica, a team of scientist are search for a cure for alzheimer' disease. dr. susan mcalest genet engin three mako sharks, intend to increas their brain capac so that they can harvest the tissu as a cure for alzheimer's. unfortunately, the increas brain capac also make the shark smarter, faster, and more dangerous. aquatica' financi backer are skeptic and nervou about the tests, and send a corpor execut to visit the facility. action sciencefict thriller sharkattack shark alzheimer'sdiseas killershark noopeningcredit thomasjan saffronburrow llcoolj rennyharlin\",\n", " 719: 'a compil of interviews, rehears and backstag footag of michael jackson as he prepar for hi seri of sold-out show in london. music documentari popstar music concert aftercreditssting duringcreditssting michaeljackson orianthi kennyortega kennyortega',\n", " 720: 'as an epidem of a lethal airborn viru - that kill within day - rapidli grows, the worldwid medic commun race to find a cure and control the panic that spread faster than the viru itself. drama thriller sciencefict savingtheworld mutat infect terminalil quarantin outbreak medic vaccin lethalviru scientist epidem mattdamon gwynethpaltrow katewinslet stevensoderbergh',\n", " 721: \"two childhood friends, a new york hairstylist and a wanna-b musician, get mixed-up with the mob and are forc to deliv $50,000 to australia, but thing go all wrong when the money is lost to a wild kangaroo. comedi adventur crime moneydeliveri fool australia hoodlum kangaroo jerryo'connel anthonyanderson estellawarren davidmcn\",\n", " 722: 'when coralin move to an old house, she feel bore and neglect by her parents. she find a hidden door with a brick up passage. dure the night, she cross the passag and find a parallel world where everybodi ha button instead of eyes, with care parent and all her dream come true. when the other mother invit coralin to stay in her world forever, the girl refus and find that the altern realiti where she is trap is onli a trick to lure her. anim famili dream eye stuffedanim parallelworld button newhom secretdoor aftercreditssting duringcreditssting dakotafan terihatch jennifersaund henryselick',\n", " 723: 'when a deadli airborn viru threaten to wipe out the northeastern unit states, teacher elliott moor (mark wahlberg) and hi wife (zooey deschanel) flee from contamin citi into the countrysid in a fight to discov the truth. is it terrorism, the accident releas of some toxic militari bio weapon -- or someth even more sinister? john leguizamo and betti buckley co-star in thi thriller from writer-director m. night shyamalan. thriller sciencefict tree naturaldisast crisi park strangebehavior markwahlberg zooeydeschanel johnleguizamo m.nightshyamalan',\n", " 724: \"jade ex-cia oper john creasi reluctantli accept a job as the bodyguard for a 10-year-old girl in mexico city. they clash at first, but eventu bond, and when she' kidnap he' consum by furi and will stop at noth to save her life. action drama thriller crime mexico cia kidnap diari bibl bodyguard stuffedanim cellphon alcohol grenadelaunch bloodsh swimmeet denzelwashington dakotafan marcanthoni tonyscott\",\n", " 725: \"the tale of a workahol dad-turned-dog who find that be man' best friend show him the most import job - be a great dad. comedi famili fathersonrelationship parentskidsrelationship workahol wifehusbandrelationship transform bodyexchang daughter lawyer dog famili turnsintoanim timallen kristindavi dannyglov brianrobbin\",\n", " 726: 'join uptight david starski and laid-back ken \"hutch\" hutchinson as they\\'r pair for the first time as undercov cops. the new partner must overcom their differ to solv an import case with help from street inform huggi bear and persuas crimin rees feldman. comedi crime inform jumpingfromarooftop surveillancefootag benstil owenwilson snoopdogg toddphillip',\n", " 727: \"meet howard langston, a salesman for a mattress compani is constantli busi at hi job, and he also constantli disappoint hi son, after he miss hi son' karat exposition, hi son tell howard that he want for christma is an action figur of hi son' televis hero, he tri hard to to make it up to him. unfortun for howard, it is christma eve, and everi store is sold out of turbo man, now howard must travel all over town and compet with everybodi els to find a turbo man action figure. famili comedi holiday christmasparti santaclau toy puppet christma turboman navidad arnoldschwarzenegg philhartman sinbad brianlev\",\n", " 728: 'in the final day of world war ii, the nazi attempt to use black magic to aid their die cause. the alli raid the camp where the ceremoni is take place, but not befor a demon - hellboy - ha alreadi been conjured. join the alli forces, hellboy eventu grow to adulthood, serv the caus of good rather than evil. fantasi action sciencefict blackmag fistfight cover-up superhero paranormalphenomena narrationfromgrav demon occult combatphotographi reanimatedcorps duringcreditssting ronperlman selmablair rupertevan guillermodeltoro',\n", " 729: 'jan schlickmann is a cynic lawyer who goe out to \"get rid of\" a case, onli to find out it is potenti worth millions. the case becom hi obsession, to the extent that he is will to give up everyth - includ hi career and hi clients\\' goals, in order to continu the case against all odds. drama success advanc rightandjustic leukemia lawyer businessstart-up johntravolta robertduval tonyshalhoub stevenzaillian',\n", " 730: \"in the town of blith hollow, norman babcock is a boy who can speak to the dead, but no one besid hi eccentr new friend, neil, believ hi abil is real. one day, norman' estrang eccentr uncl tell him of an import annual ritual he must take up to protect the town from an curs cast by a witch it condemn centuri ago. eventually, norman decid to cooperate, but thing don't go accord to plan. now, a magic storm of the witch threaten blith hollow as the accurs dead rise. togeth with unexpect new companions, norman struggl to save hi town, onli to discov the horrif truth of the curse. with that insight, norman must resolv the crisi for good as onli he can. famili anim adventur comedi medium stopmot curs jock ghost communicatingwiththedead aftercreditssting dealingwiththepast witchtrial childwitch empathi strang kodismit-mcphe tuckeralbrizzi jodelleferland samfel\",\n", " 731: 'hire by a power member of the russian mafia to aveng an fbi sting that left hi brother dead, the perfectionist jackal prove an elus target for the men charg with the task of bring him down: a deputi fbi boss and a former ira terrorist. action thriller adventur crime fbi coldwar hitman brucewilli richardger sidneypoiti michaelcaton-jon',\n", " 732: \"michael jen is a geniu who' hire – and paid handsom – by high-tech firm to work on highli sensit projects, after which hi short-term memori is eras so he' incap of breach security. but at the end of a three-year job, he' told he isn't get a paycheck and instead receiv a mysteri envelope. in it are clue he must piec togeth to find out whi he wasn't paid – and whi he' now in hot water. action adventur mysteri sciencefict thriller propheci engin scientist millionair benaffleck aaroneckhart umathurman johnwoo\",\n", " 733: 'talli atwat ha a dream: to be a prime-tim network newscaster. she pursu thi dream with noth but ambition, raw talent and a homemad demo tape. warren justic is a brilliant, hard edged, veteran newsman. he see talli ha talent and becom her mentor. tally’ career take a meteor rise and she and warren fall in love. the romanc that result is as intens and reveal as televis news itself. yet, each break story, everi videotap crisi that bring them together, also threaten to drive them apart... drama romanc miami televis career vitaminb report robertredford michellepfeiff stockardchan jonavnet',\n", " 734: 'onc upon a time... in the far away kingdom of dor... live a brave and virtuou mous with comic overs ear who dreamt of becom a knight. banish from hi home for have such lofti ambitions, despereaux set off on an amaz adventur with hi good-heart rat friend roscuro, who lead him, at long last, on a veri nobl quest to rescu an endang princess and save an entir kingdom from darkness. adventur anim famili loyalti totalitarianregim mous forgiv honor unlikelyfriendship courag chivalri animallead matthewbroderick dustinhoffman emmawatson robertstevenhagen',\n", " 735: \"cabbie-turned-chauffeur jimmi tong learn there is realli onli one rule when you work for playboy millionair clark devlin : never touch devlin' prize tuxedo. but when devlin is temporarili put out of commiss in an explos accident, jimmi put on the tux and soon discov that thi extraordinari suit may be more black belt than black tie. pair with a partner as inexperienc as he is, jimmi becom an unwit secret agent. thriller action comedi sciencefict bomb intellig chauffeur wound secretag headinjuri jackiechan jenniferlovehewitt jasonisaac kevindonovan\",\n", " 736: 'a passeng train ha been hijack by an electron expert and turn into an untrac command center for a weapon satellite. he ha plan to blow up washington dc and onli one man can stop him, former navi seal casey ryback. action thriller terrorist pentagon satellit navys train stevenseag ericbogosian everettmcgil geoffmurphi',\n", " 737: 'jack ryan, as a young covert cia analyst, uncov a russian plot to crash the u.s. economi with a terrorist attack. action drama thriller londonengland corrupt cia terrorist sniper explos intellig russia murder conspiraci surveil agent jackryan u.s.marin rehab analyst chrispin keiraknightley kevincostn kennethbranagh',\n", " 738: \"a stori base on the life of a struggl long island singl mom who becam one of the country' most success entrepreneurs. drama comedi factori inventor strongwoman biographi basedontruestori stolenpat jenniferlawr bradleycoop robertdeniro davido.russel\",\n", " 739: \"in london for the prime minister' funeral, mike ban discov a plot to assassin all the attend world leaders. action crime thriller londonengland terrorist terroristattack gerardbutl aaroneckhart morganfreeman babaknajafi\",\n", " 740: 'two hundr year after lt. ripley died, a group of scientist clone her, hope to breed the ultim weapon. but the new ripley is full of surpris … as are the new aliens. ripley must team with a band of smuggler to keep the creatur from reach earth. sciencefict horror action android mercenari dystopia sequel alien betray impal clone scientist flamethrow disembowel smuggler genemanipul maninwheelchair breed geneticengin regener xenomorph alienqueen explosivedecompress swimmingunderwat sigourneyweav winonaryd braddourif jean-pierrejeunet',\n", " 741: 'a marksman live in exil is coax back into action after learn of a plot to kill the president. ultim double-cross and frame for the attempt, he goe on the run to track the real killer and find out who exactli set him up, and why. action drama mysteri thriller crime corrupt sniper senat conspiracyofmurd childless rifl sniperrifl fbiagent markwahlberg michaelpeña dannyglov antoinefuqua',\n", " 742: 'an orphan boy rais by underground creatur call boxtrol come up from the sewer and out of hi box to save hi famili and the town from the evil exterminator, archibald snatcher. anim comedi famili fantasi basedonnovel stopmot fatherdaughterrelationship unlikelyfriendship duringcreditssting benkingsley isaachempstead-wright ellefan anthonystacchi',\n", " 743: \"salli and gillian owens, born into a magic family, have mostli avoid witchcraft themselves. but when gillian' viciou boyfriend, jimmi angelov, die unexpectedly, the owen sister give themselv a crash cours in hard magic. with policeman gari hallet grow suspicious, the girl struggl to resurrect angelov -- and unwittingli inject hi corps with an evil spirit that threaten to end their famili line. drama fantasi comedi witch magic sorceri love curs familycurs sandrabullock nicolekidman evanrachelwood griffindunn\",\n", " 744: 'an ordinari lego mini-figure, mistakenli thought to be the extraordinari masterbuilder, is recruit to join a quest to stop an evil lego tyrant from glu the univers together. adventur anim comedi famili fantasi fathersonrelationship creativ friendship partliveact toy basedontoy fallinginlov superpow duringcreditssting differentworld lego batman chrispratt willferrel elizabethbank phillord',\n", " 745: 'after her triumph at the miss unit state pageant, fbi agent graci hart becom an overnight sensat -- and the new \"face of the fbi.\" but it\\' time to spring into action again when the pageant\\' winner, cheryl, and emcee, stan, are abducted. action comedi ransom pressconfer ship missamerica fbiagent sandrabullock reginak enriquemurciano johnpasquin',\n", " 746: 'in post-apocalypt england, an american volunt and a british survivor team up to fight off a brood of fire-breath dragon seek to return to global domin after centuri of rest underground. the brit -- lead a clan of survivor to hunt down the king of the dragon -- ha much at stake: hi mother wa kill by a dragon, but hi love is still alive. adventur action fantasi dragon evolut firechief animatedmap theatreaudi dragonslay tunnelconstruct firerepel drill iodin christianbal matthewmcconaughey izabellascorupco robbowman',\n", " 747: 'lo angeles, 1949. ruthless, brooklyn-born mob king mickey cohen run the show in thi town, reap the ill-gotten gain from the drugs, the guns, the prostitut and — if he ha hi way — everi wire bet place west of chicago. and he doe it all with the protect of not onli hi own paid goons, but also the polic and the politician who are under hi control. it’ enough to intimid even the bravest, street-harden cop… except, perhaps, for the small, secret crew of lapd outsid led by sgt. john o’mara and jerri wooter who come togeth to tri to tear cohen’ world apart. crime drama action thriller losangel gangster joshbrolin ryangosl nicknolt rubenfleisch',\n", " 748: 'when a coupl of lazi hunter-gather are banish from their primit village, they set off on an epic journey through the ancient world. comedi adventur templ slaveri stoneag circumcis hebrew cavemen prehistoricadventur duringcreditssting prehistorictim prehistoricman jackblack michaelcera oliviawild haroldrami',\n", " 749: \"newli elect presid nelson mandela know hi nation remain racial and econom divid in the wake of apartheid. believ he can bring hi peopl togeth through the univers languag of sport, mandela ralli south africa' rugbi team as they make their histor run to the 1995 rugbi world cup championship match. drama histori stadium southafrica apartheid nelsonmandela sport nation rugbi presid racism poverti celebr duringcreditssting morganfreeman mattdamon tonykgorog clinteastwood\",\n", " 750: \"handsome, unflapp u.s. congressman stephen collin is the futur of hi polit party: an honor appointe who serv as the chairman of a committe overse defens spending. all eye are upon the rise star to be hi party' contend for the upcom presidenti race. until hi research assistant/mistress is brutal murder and buri secret come tumbl out. action corrupt assassin detect journalist assassin newspap congress editor-in-chief conspiracyofmurd polit electioncampaign govern murder thriller blog report russellcrow benaffleck rachelmcadam kevinmacdonald\",\n", " 751: 'two romantically-engag corpor spi team up to manipul a corpor race to corner the market on a medic innov that will reap huge profit and enabl them to lead an extravag lifestyl together. romanc comedi crime spi cliveowen juliarobert paulgiamatti tonygilroy',\n", " 752: \"news producer, tim o'hara get himself fire for unwillingli compromis hi bosses' daughter dure a live transmission. a littl later, he wit the crash of a small martian spacecraft, realiz hi one-tim chanc of deliv a stori that will rock the earth. sinc tim took the origin but scaled-down spaceship with him, the martian follow him to retriev it. comedi drama famili sciencefict alien martian basedontvseri fishoutofwat jeffdaniel elizabethhurley darylhannah donaldpetri\",\n", " 753: 'a secret servic agent is frame as the mole in an assassin attempt on the president. he must clear hi name and foil anoth assassin attempt while on the run from a relentless fbi agent. action thriller crime usapresid agent michaeldougla kiefersutherland evalongoria clarkjohnson',\n", " 754: 'when earth astronaut capt. chuck baker arriv on planet 51 -- a world reminisc of american suburbia circa 1950 -- he tri to avoid capture, recov hi spaceship and make it home safely, all with the help of an empathet littl green being. sciencefict anim famili comedi adventur flyingsauc alienlife-form spaceship alien alienplanet planet duringcreditssting dwaynejohnson seannwilliamscott jessicabiel jorgeblanco',\n", " 755: 'en rout to the honeymoon of william riker to deanna troi on her home planet of betazed, captain jean-luc picard and the crew of the u.s.s. enterpris receiv word from starfleet that a coup ha result in the instal of a new romulan polit leader, shinzon, who claim to seek peac with the human-back unit feder of planets. onc in enemi territory, the captain and hi crew make a startl discovery: shinzon is human, a slave from the romulan sister planet of remus, and ha a secret, shock relationship to picard himself. sciencefict action adventur thriller clone assassin ambush feder starfleet enterprise- romulu android senat selfsacrific telepathi weapon romulan spaceopera patrickstewart jonathanfrak brentspin stuartbaird',\n", " 756: 'a revenge-seek gold digger marri a woman beverli hill lawyer with the intent of make a kill in the divorce. crime comedi romanc california assassin infidel fetish hitman tycoon court satir lawyer inherit divorc georgeclooney catherinezeta-jon edwardherrmann joelcoen',\n", " 757: 'slow by age and fail eyesight, crack basebal scout gu lobel take hi grown daughter along as he check out the final prospect of hi career. along the way, the two renew their bond, and she catch the eye of a young player-turned-scout. drama romanc women basebal pitcher homerun age sport talent-scout cigarsmok pooreyesight bostonredsox draft motelroom baseballscout failingeyesight blurryvis blurredsight clinteastwood amyadam justintimberlak robertlorenz',\n", " 758: \"as a season homicid detective, thoma craven ha seen the bleakest side of humanity. but noth prepar him for the toughest investig of hi life: the search for hi onli daughter emma' killer. now, he is on a person mission to uncov the disturb secret surround her murder, includ corpor corruption, govern collus and emma' own mysteri life. crime drama mysteri thriller murder violenc deathofdaught homicidedetect melgibson raywinston dannyhuston martincampbel\",\n", " 759: \"a research at chicago' natur histori museum return from south america with some crate contain hi findings. when the crate arriv at the museum without the owner there appear to be veri littl inside. however, polic discov gruesom murder on the cargo ship that brought the crate to the us and then anoth murder in the museum itself. horror mysteri thriller chicago basedonnovel monster museum pileofdeadbodi god deadbodi anthropologist indiantrib amazonjungl penelopeannmil tomsizemor lindahunt peterhyam\",\n", " 760: \"the mafia' paul vitti is back in prison and will need some seriou counsel when he get out. naturally, he return to hi analyst dr. ben sobel for help and find that sobel need some seriou help himself as he ha inherit the famili practice, as well as an excess stock of stress. comedi crime prison gold therapist gangster robertdeniro billycryst lisakudrow haroldrami\",\n", " 761: 'two veteran new york citi detect work to identifi the possibl connect between a recent murder and a case they believ they solv year ago; is there a serial killer on the loose, and did they perhap put the wrong person behind bars? action crime drama thriller reveng murder plottwist dirtycop robertdeniro carlagugino 50cent jonavnet',\n", " 762: 'renegad fbi agent art jeffri protect a nine-year-old autist boy who ha crack the government\\' new \"unbreakable\" code. action crime drama thriller assassin lossoffamili autism fbi bangkok nationalsecurityagency(nsa) boy childinperil fbiagent autisticsav brucewilli alecbaldwin mikohugh haroldbeck',\n", " 763: 'a lo angel journalist befriend a homeless juilliard-train musician, while look for a new articl for the paper. drama newspap cello music violin losangel robertdowneyjr. jamiefoxx catherinekeen joewright',\n", " 764: 'world war i ha left golfer rannulph junuh a poker-play alcoholic, hi perfect swing gone. now, however, he need to get it back to play in a tournament to save the financi ravag golf cours of a long-ago sweetheart. help arriv in the form of mysteri caddi bagger vance. fantasi drama competit worldwari greatdepress caddi savannah mattdamon brucemcgil charlizetheron robertredford',\n", " 765: 'almost famou is an autobiograph inspir film about a 15-year-old who is hire by roll stone magazin to follow and interview a rock band dure their tour. a film about grow up, first love, disappointment, and the life of a rock star. drama music hotelroom sandiego drugaddict stewardess overdos groupi musicjournalist blacksabbath rock concert swimmingpool basedontruestori promiscu comingofag ontheroad domineeringmoth reconcili semiautobiograph innocencelost bustrip aspiringwrit katehudson billycrudup francesmcdormand cameroncrow',\n", " 766: 'garfield is back and thi time garfield and hi canin sidekick odi follow their owner, jon arbuckle, to england, the u.k. may never recover, as garfield is mistaken for a look-alike, regal cat who ha inherit a castle. anim comedi famili londonengland cat mistakeinperson luxuri wretch nobil garfield billmurray jenniferlovehewitt billyconnolli timhil',\n", " 767: \"ice cube star as dariu stone, a thrill-seek troublemak whose crimin record and extrem sport obsess make him the perfect candid to be the newest xxx agent. he must save the u.s. govern from a deadli conspiraci led by five-star gener and secretari of defens georg deckert (play by willem dafoe). action adventur crime drama mysteri thriller washingtond.c. helicopt usapresid gener coupd'etat militaryprison coup agent insurg secretaryofdefens potu icecub samuell.jackson willemdafo leetamahori\",\n", " 768: \"in an altern world, human and vampir have war for centuries. after the last vampir war, the veteran warrior priest live in obscur with other human insid one of the church' wall cities. when the priest' niec is kidnap by vampires, the priest break hi vow to hunt them down. he is accompani by the niece' boyfriend, who is a wasteland sheriff, and a former warrior priestess. action sciencefict fantasi thriller horror vampir crucifixion post-apocalypt dystopia vampirehunt disobey niec darkhero paulbettani karlurban camgigandet scottstewart\",\n", " 769: 'the sailor of legend is frame by the goddess eri for the theft of the book of peace, and must travel to her realm at the end of the world to retriev it and save the life of hi childhood friend princ proteus. famili anim adventur princ watermonst bradpitt catherinezeta-jon michellepfeiff timjohnson',\n", " 770: 'in the year 2047 a group of astronaut are sent to investig and salvag the long lost starship \"event horizon\". the ship disappear mysteri 7 year befor on it maiden voyag and with it return come even more mysteri as the crew of the \"lewi and clark\" discov the real truth behind it disappear and someth even more terrifying. horror sciencefict mysteri spacemarin nuditi nightmar hallucin cryogen spacetravel blackhol insan delus crew alternatedimens evilspirit hellgat religion explos violenc burningman rescueteam flashback supernaturalpow trappedinspac distresssign derelictship laurencefishburn samneil kathleenquinlan paulw.s.anderson',\n", " 771: 'a griev doctor is be contact by hi late wife through hi patient near death experiences. drama pregnancyandbirth voic dragonfli carcrash jungl hospit doctor humanitarian spirit kevincostn joemorton ronrifkin tomshadyac',\n", " 772: 'lee blanchard and bucki bleichert are former boxers-turned-cop in 1940 lo angel and, when an aspir young actress turn up dead, blanchard and bleichert must grappl with corruption, narcissism, stag film and famili mad as they pursu the killer. drama pornographi observ losangel murderhunt joshhartnett scarlettjohansson aaroneckhart briandepalma',\n", " 773: \"the adventur of the lafayett escadrille, young american who volunt for the french militari befor the u.s. enter world war i, and becam the country' first fighter pilots. action adventur drama histori romanc war worldwari biplan jamesfranco davidellison jeanreno tonybil\",\n", " 774: 'a court martial gener ralli togeth 1200 inmat to rise against the system that put him away. action drama thriller prison gener robertredford jamesgandolfini markruffalo rodluri',\n", " 775: 'set in the 22nd century, when a batter salvag ship send out a distress signal, the season crew of the rescu hospit ship nova-17 responds. what they find is a black hole--that threaten to destroy both ships--and a mysteri survivor whose bodi quickli mutat into a monstrou and deadli form. horror sciencefict thriller blackpeopl starship futur star supernova blast jamesspad angelabassett robertforst walterhil',\n", " 776: 'a burglar fall for an heiress as she die in hi arms. when he learn that he ha the gift of reincarnation, he set out to save her. drama fantasi mysteri romanc basedonnovel colinfarrel jessicabrownfindlay russellcrow akivagoldsman',\n", " 777: \"in new york city, clari fray, a seemingli ordinari teenager, learn that she is descend from a line of shadowhunt — half-angel warrior who protect human from evil forces. after her mother disappears, clari join forc with a group of shadowhunt and enter downworld, an altern realm fill with demons, vampires, and a host of other creatures. clari and her companion must find and protect an ancient cup that hold the key to her mother' future. action adventur drama mysteri romanc fantasi angel vampir werewolf warlock downworld shadowhunt demonhunt basedonyoungadultnovel lilycollin jamiecampbellbow kevinzeg haraldzwart\",\n", " 778: 'a crew of miniatur alien oper a spaceship that ha a human form. while tri to save their planet, the alien encount a new problem, as their ship becom smitten with an earth woman. comedi sciencefict adventur famili newyork captain starship newlov earth friendship crew carcrash space alien surviv planet duringcreditssting eddiemurphi elizabethbank gabrielleunion brianrobbin',\n", " 779: \"dahlia william and her daughter cecelia move into a rundown apart on new york' roosevelt island. she is current in midst of divorc proceed and the apartment, though near an excel school for her daughter, is all she can afford. from the time she arrives, there are mysteri occurr and there is a constant drip from the ceil in her daughter' bedroom. drama horror thriller basedonnovel water remak teacher divorc apart ghost manhattan,newyorkc jenniferconnelli johnc.reilli timroth waltersal\",\n", " 780: 'video store clerk ed agre to have hi life film by a camera crew for a tv network. comedi tvshow tvstation simulatedr realitytv tvstar tvrate matthewmcconaughey woodyharrelson sallykirkland ronhoward',\n", " 781: \"the adventur of a father and hi young daughter, in their search for a long lost book that will help reunit a missing, close relative. adventur famili fantasi book fairytal eavesdrop adventur writer'sblock brendanfras siennaguillori andyserki iainsoftley\",\n", " 782: \"down these mean street a man must come. a hero born, murdered, and born again. when a rooki cop name denni colt return from the beyond as the spirit, a hero whose mission is to fight against the bad forc from the shadow of central city, the octopu who kill anyon unfortun enough to see hi face who ha other plans. he' go to wipe out the entir city. action comedi thriller crime sciencefict secretident robber mask frog basedoncomicstrip backfromthedead gabrielmacht scarlettjohansson samuell.jackson frankmil\",\n", " 783: 'art dealer, charl mortdecai, search for a stolen paint rumor to contain a secret code that gain access to hidden nazi gold. comedi adventur basedonnovel paint debt artdeal stolenpaint johnnydepp gwynethpaltrow ewanmcgregor davidkoepp',\n", " 784: \"a man name farmer set out to rescu hi kidnap wife and aveng the death of hi son -- two act commit by the krugs, a race of animal-warrior who are control by the evil gallian. adventur fantasi action drama fictionalplac monster lossoffamili newlov hero loveofone'slif magic fairytal villain kingdom enchant badpow son heirtothethron motherlylov wizardri reveng royalti famili basedonvideogam mediev jasonstatham johnrhys-davi rayliotta uwebol\",\n", " 785: \"beyond border is an epic tale of the turbul romanc between two star-cross lover set against the backdrop of the world' most danger hot spots. academi award winner angelina joli star as sarah jordan, an american live in london in 1984. she is marri to henri bauford son of a wealthi british industrialist, when she encount nick callahan a renegad doctor, whose impass plea for help to support hi relief effort in war-torn africa move her deeply. as a result, sarah embark upon a journey of discoveri that lead to danger, heartbreak and romanc in the far corner of the world. drama romanc adventur war londonengland cia landmin loveofone'slif cambodia ethiopia chechnya foreignaid angelinajoli cliveowen teripolo martincampbel\",\n", " 786: 'take place 500 year after the havoc in heaven, the tang priest is appoint by buddha to go to the west to fetch the sacr scriptures, onli to accident free the monkey king. with ladi white (gong li) aim to break up the team assembl to defeat her, the monkey king must fight in order to save hi world! action adventur fantasi monkeyk aaronkwok gongli williamfeng soicheang',\n", " 787: 'as world war ii rages, the elit sixth ranger battalion is given a mission of heroic proportions: push 30 mile behind enemi line and liber over 500 american prison of war. action histori war basedonnovel worldwarii prisonersofwar narrat archivefootag rescuemiss soldier 1940 inspiredbytrueev fictionalizedhistori benjaminbratt jamesfranco connienielsen johndahl',\n", " 788: 'deadpool tell the origin stori of former special forc oper turn mercenari wade wilson, who after be subject to a rogu experi that leav him with acceler heal powers, adopt the alter ego deadpool. arm with hi new abil and a dark, twist sens of humor, deadpool hunt down the man who nearli destroy hi life. action adventur comedi antihero mercenari marvelcom superhero basedoncomicbook breakingthefourthwal aftercreditssting duringcreditssting selfheal ryanreynold morenabaccarin edskrein timmil',\n", " 789: 'eddi murphi star as an over-the-top televis evangelist who find a way to turn televis home shop into a religi experience, and take america by storm. drama comedi salesclerk televis tvrate guru televisionproduc eddiemurphi jeffgoldblum kellypreston stephenherek',\n", " 790: 'u.s. navi seal chri kyle take hi sole mission—protect hi comrades—to heart and becom one of the most lethal sniper in american history. hi pinpoint accuraci not onli save countless live but also make him a prime target of insurgents. despit grave danger and hi struggl to be a good husband and father to hi famili back in the states, kyle serv four tour of duti in iraq. however, when he final return home, he find that he cannot leav the war behind. war action sniper biographi iraq navys u.s.soldi bradleycoop siennamil kylegalln clinteastwood',\n", " 791: \"a teenag team up with the daughter of young adult horror author r.l. stine after the writer' imaginari demon are set free on the town of madison, delaware. adventur horror comedi basedonnovel magic fantasi werewolf famili ventriloquistdummi bookcomestolif 3d jackblack dylanminnett odeyarush robletterman\",\n", " 792: \"shortli after david abbott move into hi new san francisco digs, he ha an unwelcom visitor on hi hands: winsom elizabeth martinson, who assert that the apart is her -- and promptli vanishes. when she start appear and disappear at will, david think she' a ghost, while elizabeth is convinc she' alive. comedi fantasi romanc coma basedonnovel workahol flirt architect romanticcomedi ghost landscapearchitect reesewitherspoon markruffalo donallogu markwat\",\n", " 793: \"the flintston are at it again. the flintston and the rubbl head for rock vega with fred hope to court the love wilma. noth will stand in the way of love, except for the conniv chip rockefel who is the playboy born in baysvil but who ha made it in the cutthroat town of rock vegas. will fred win wilma' love? sciencefict comedi famili romanc waitress marriagepropos flirt stoneag bestfriend dinosaur markaddi stephenbaldwin kristenjohnston brianlev\",\n", " 794: \"combat ha taken it toll on rambo, but he' final begun to find inner peac in a monastery. when rambo' friend and mentor col. trautman ask for hi help on a top secret mission to afghanistan, rambo declin but must reconsid when trautman is captured. action adventur thriller war competit submachinegun sovietunion liber russian soviettroop thailand freedomfight afghanistan waronfreedom machinegun mujahid realityshow western japanesefood soapopera sylvesterstallon richardcrenna kurtwoodsmith petermacdonald\",\n", " 795: 'a light heart comedi about the begin of profession american football. when a decor war hero and colleg all star is tempt into play profession football. everyon see the chanc to make some big money, but when a report dig up some dirt on the war hero... everyon could lose out. comedi romanc drama americanfootbal sportsteam stadium hero success sponsorship polic game coach womanreport thebiggam georgeclooney renéezellweg johnkrasinski georgeclooney',\n", " 796: 'when hi long-lost outlaw father returns, tommi \"white knife\" stockburn goe on an adventure-fil journey across the old west with hi five brothers. comedi western wildwest adamsandl taylorlautn stevebuscemi frankcoraci',\n", " 797: 'in new york city, an estrang coupl who wit a murder are reloc to small-town wyom as part of a witness-protect program. comedi witnessprotect comedi duringcreditssting hughgrant sarahjessicapark marysteenburgen marclawr',\n", " 798: 'two recent laid-off men in their 40 tri to make it as intern at a success internet compani where their manag are in their 20s. comedi jobinterview lossofjob intern referencetogoogl newjob laidoff transamericapyramid owenwilson vincevaughn rosebyrn shawnlevi',\n", " 799: 'in a world ravag by a viru infection, turn it victim into the undead, alic continu on her journey to find survivor and lead them to safety. her deadli battl with the umbrella corpor reach new heights, but alic get some unexpect help from an old friend. a new lead that promis a safe haven from the undead take them to lo angeles, but when they arriv the citi is overrun by thousand of undead - and alic and her comrad are about to step into a deadli trap. action adventur horror sciencefict post-apocalypt dystopia undead biohazard evilcorpor residentevil zombi basedonvideogam duringcreditssting 3d millajovovich wentworthmil alilart paulw.s.anderson',\n", " 800: 'the stori of the tuskege airmen, the first african-american pilot to fli in a combat squadron dure world war ii. drama action adventur histori war worldwarii fighterpilot fighterplan bryancranston davidoyelowo cubagoodingjr. anthonyhemingway',\n", " 801: \"a hotshot lawyer get more than he bargain for when he learn hi new boss is lucif himself. drama horror mysteri thriller childabus southernusa obsess subway nuditi bibl seduct hallucin ambit devil'sson marriagecrisi pactwiththedevil crookedlawy evilspirit satan religion lust courtroom temptat lawfirm manhattan,newyorkc sevendeadlysin ethic gainesvilleflorida keanureev alpacino charlizetheron taylorhackford\",\n", " 802: \"while in hi teens, donni father a son, todd, and rais him as a singl parent up until todd' 18th birthday. now, after not see each other for years, todd' world come crash down when donni resurfac just befor todd' wedding. comedi deadbeatdad cheatingfiancé teacherstudentsex brothersisterincest adamsandl susansarandon evaamurrimartino seanand\",\n", " 803: \"in an ancient time when majest fire-breath soar through the skies, a knight name bowen come face to face and heart to heart with the last dragon on earth, draco. take up arm to suppress a tyrant king, bowen soon realiz hi task will be harder than he'd imagined: if he kill the king, draco will die as well. fantasi magic kingdom despot immort villag forest armi horror partner reveng knight battl mediev dragonheart dennisquaid davidthewli petepostlethwait robcohen\",\n", " 804: 'two master thiev (brosnan and hayek) are final retir after one last succes mission. resid in their own tropic paradise, their old nemesis, fbi agent stan p. lloyd show up to make sure they realli are retired. dock in the port is an ocean liner call the \"diamond cruise\" and stan is convinc that they\\'r not realli retir at all, and that thi is the next set up. action comedi crime drama bahama masterthief crookcoupl piercebrosnan salmahayek woodyharrelson brettratn',\n", " 805: 'when the devil resurfac with aim to take over the world in human form, johnni blaze reluctantli come out of hide to transform into the flame-spew supernatur hero ghost rider -- and rescu a 10-year-old boy from an unsavori end. action fantasi thriller monk easterneurop skeleton biker marvelcom superhero motorcycl devil darkhero ghostrid nicolascag ciaránhind violanteplacido briantaylor',\n", " 806: 'when a greek fisherman leav to fight with the greek armi dure wwii, hi fiance fall in love with the local italian commander. the film is base on a novel about an italian soldier\\' experi dure the italian occup of the greek island of cephalonia (kefalonia), but hollywood made it into a pure love stori by remov much of the \"unpleasant\" stuff. drama histori romanc offic greekisland mandolin italiansoldi resistancefight greekhistori italianarmi alliedforc nicolascag penélopecruz johnhurt johnmadden',\n", " 807: \"disgrac navi seal shane wolf is hand a new assignment: protect the five plummer kid from enemi of their recent deceas father -- a govern scientist whose top-secret experi remain hidden in the kids' house. action comedi drama famili thriller bodybuild children bodyguard scientist famili u.s.soldi deathofhusband malenanni vindiesel laurengraham faithford adamshankman\",\n", " 808: 'a former u.s. soldier return to hi hometown to find it overrun by crime and corruption, which prompt him to clean house. adventur drama action thriller casino sheriff home violenc specialforc exsoldi dwaynejohnson johnnyknoxvil nealmcdonough kevinbray',\n", " 809: \"a man with a low iq ha accomplish great thing in hi life and been present dure signific histor event - in each case, far exceed what anyon imagin he could do. yet, despit all the thing he ha attained, hi one true love elud him. 'forrest gump' is the stori of a man who rose abov hi challenges, and who prove that determination, courage, and love are more import than ability. comedi drama romanc vietnamveteran hippi mentallydis run basedonnovel vietnam vietnamwar friendship love familyrelationship bulli mothersonrelationship militari hug shrimp woundedsoldi flashback parkbench ampute tomhank robinwright garysinis robertzemecki\",\n", " 810: 'a struggl songwrit name dave sevil find success when he come across a trio of sing chipmunks: mischiev leader alvin, braini simon, and chubby, impression theodore. comedi music famili fantasi anim pop popstar recordproduc surpris approach forest music concert friendship perform chipmunk talkinganim songwrit talkingtoanim duringcreditssting jasonle davidcross cameronrichardson timhil',\n", " 811: \"greg focker is readi to marri hi girlfriend, pam, but befor he pop the question, he must win over her formid father, humorless former cia agent jack byrnes, at the wed of pam' sister. as greg bend over backward to make a good impression, hi visit to the byrn home turn into a hilari seri of disasters, and everyth that can go wrong does, all under jack' critical, hawklik gaze. comedi romanc cia airport cat jew orderli airplan father-in-law epistaxi daughter lostbaggag urn pavilion volleybal hospit wed benstil robertdeniro teripolo jayroach\",\n", " 812: \"histori come glorious to life in disney' epic anim tale about love and adventur in the new world. pocahonta is a nativ american woman whose father ha arrang for her to marri her village' best warrior. but a vision tell her chang is coming, and soon she come face to face with it in the form of capt. john smith. adventur anim drama famili cultureclash settler forbiddenlov coloni music goldrush princess romanc nativeamerican anim virginia starcrossedlov referencetopizarro jamestownvirginia pugdog crossculturalrelationship musket animatetre indianchief basedonfolktal 17thcenturi shaman song indiansvs.settl animalsidekick powhatan landclaim irenebedard melgibson davidogdensti mikegabriel\",\n", " 813: \"mild-mann clark kent work as a report at the daili planet alongsid hi crush, loi lane − who' in love with superman. clark must summon hi superhero alter ego when the nefari lex luthor launch a plan to take over the world. action adventur fantasi sciencefict savingtheworld journalist dccomic crimefight nuclearmissil galaxi superhero basedoncomicbook crimin sabotag northpol midwest kryptonit superpow superhumanstrength aftercreditssting savetheday christopherreev marlonbrando margotkidd richarddonn\",\n", " 814: \"eddi murphi star as shi dr. sherman klump, a kind, brilliant, 'calorif challenged' genet professor. when beauti carla purti join the univers faculty, sherman grow desper to whittl hi 400-pound frame down to size and win her heart. so, with one swig of hi experiment fat-reduc serum, sherman becom 'buddi love', a fast-talking, pumped-up , plump down don juan. fantasi comedi romanc sciencefict overweight overweightman duringcreditssting eddiemurphi jadapinkettsmith jamescoburn tomshadyac\",\n", " 815: \"date coach alex 'hitch' hitchen mentor a bumbl client, albert, who hope to win the heart of the glamor allegra cole. while albert make progress, hitch face hi own romant setback when proven techniqu fail to work on sara melas, a tabloid report dig for dirt on allegra cole' love life. when sara discov hitch' connect to albert – now allegra' boyfriend – it threaten to destroy both relationships. comedi drama romanc speeddat romanticcomedi date willsmith evamend kevinjam andytenn\",\n", " 816: \"babi georg got into a plane crash in a jungle, stay aliv and wa adopt by a wise ape. ursula stanhope, us nobl woman is save from death on safari by grown-up george, and he take her to jungl to live with him. he slowli learn a rule of human relationships, while ursula' lover lyle is look for her and the one who took her. after they are found, ursula take georg to the usa. adventur comedi famili romanc africa sanfrancisco gorilla lion feralchild jungl brendanfras lesliemann thomashadenchurch samweisman\",\n", " 817: \"with high school a distant memory, jim and michel are get marri -- and in a hurry, sinc jim' grandmoth is sick and want to see him walk down the aisl -- prompt stifler to throw the ultim bachelor party. and jim' dad is reliabl as ever, dole out advic no one want to hear. comedi romanc handcuff sistersisterrelationship spanner blowjob stagnight wed jasonbigg alysonhannigan seannwilliamscott jessedylan\",\n", " 818: 'the true stori of captain richard phillip and the 2009 hijack by somali pirat of the us-flag mv maersk alabama, the first american cargo ship to be hijack in two hundr years. action drama thriller ship hijack somalia fisherman blood poverti pirat terror commando hijack cargoship shipcaptain shiphijack somali commandounit tomhank catherinekeen maxmartini paulgreengrass',\n", " 819: 'phil and clair foster fear that their mild-mann relationship may be fall into a stale rut. dure their weekli date night, their dinner reserv lead to their be mistaken for a coupl of thiev – and now a number of unsavouri charact want phil and clair killed. comedi date corrupt taxi expensiverestaur wifehusbandrelationship gun boat taxidriv document restaur roof marriedcoupl politician stripper shoot thief carcrash steal mistakenident policecorrupt aftercreditssting duringcreditssting tinafey stevecarel markwahlberg shawnlevi',\n", " 820: 'furiou that her late father onli will her hi gloomy-look mansion rather than hi millions, carrigan crittenden is readi to burn the place to the ground when she discov a map to a treasur hidden in the house. but when she enter the ricketi mansion to seek her claim, she is frighten away by a wick wave of ghosts. determin to get her hand on thi hidden fortune, she hire afterlif therapist dr. jame harvey to exorcis the ghost from the mansion. harvey and hi daughter kat move in, and soon kat meet casper, the ghost of a young boy who\\' \"the friendliest ghost you know.\" but not so friendli are casper\\' uncles--stretch, fatso and stinkie--who are determin to drive all \"fleshies\" away. fantasi comedi famili halloween friendship supernatur afterlif friend danger ghost disord younghero imaginari supernatural mischievouschildren christinaricci billpullman cathymoriarti bradsilberl',\n", " 821: 'in the equalizer, denzel washington play mccall, a man who believ he ha put hi mysteri past behind him and dedic himself to begin a new, quiet life. but when mccall meet teri (chloë grace moretz), a young girl under the control of ultra-viol russian gangsters, he can’t stand idli by – he ha to help her. arm with hidden skill that allow him to serv vengeanc against anyon who would brutal the helpless, mccall come out of hi self-impos retir and find hi desir for justic reawakened. if someon ha a problem, if the odd are stack against them, if they have nowher els to turn, mccall will help. he is the equalizer. thriller action crime corrupt assassin hostag fbi hitman russian securitycamera sadism vigilant sociopath reveng suspens organizedcrim gore gangster violenc teenageprostitut commando interrog surveil exsoldi fakeddeath loner callgirl blackop handtohandcombat mysteriouspast denzelwashington martoncsoka chloëgracemoretz antoinefuqua',\n", " 822: \"marisa ventura is a struggl singl mom who work at a posh manhattan hotel and dream of a better life for her and her young son. one fate day, hotel guest and senatori candid christoph marshal meet marisa and mistak her for a wealthi socialite. after an enchant even together, the two fall madli in love. but when marisa' true ident is revealed, issu of class and social statu threaten to separ them. can two peopl from veri differ world overcom their differ and live happili ever after? comedi drama romanc hotel politician mistakenident maid classdiffer singlemoth publicrel maiduniform hotelclerk wealthdiffer jenniferlopez ralphfienn natasharichardson waynewang\",\n", " 823: 'on a us nuclear missil sub, a young first offic stage a mutini to prevent hi trigger happi captain from launch hi missil befor confirm hi order to do so. action thriller drama submarin mutini russia missil nuclearmissil embassi u.s.navi battleforpow torpedo militari moraldilemma postcoldwar aircraftcarri chainofcommand launchcod sonar denzelwashington genehackman mattcraven tonyscott',\n", " 824: \"the true stori of christoph gardner, who invest heavili in a devic known as a 'bone densiti scanner', onli to find himself struggl to sell the product as it' just margin better than the current technology, and much more expensive. hi wife leav him, he lose hi house, bank account and credit card and, now forc to live out in the street with hi young son, he' desper to find a steadi job. he take on a job as a stockbrok but, befor he can receiv pay, he need to go through 6 month of training, and must sell hi devices. drama sanfrancisco singlepar homelessperson bu worker homeless work churchservic badluck biographi salesman stockbrok willsmith jadensmith thandienewton gabrielemuccino\",\n", " 825: 'a claustrophobic, hitchcockian thriller. a bereav woman and her daughter are fli home from berlin to america. at 30,000 feet the child vanish and nobodi admit she wa ever on that plane. thriller drama mysteri berlin lossoffath airplan baby-snatch jodiefost petersarsgaard seanbean robertschwentk',\n", " 826: 'a comput specialist is su for sexual harass by a former lover turn boss who initi the act forcefully, which threaten both hi career and hi person life. drama thriller crime mysteri romanc employe workplac sexualharass intrigu michaeldougla demimoor donaldsutherland barrylevinson',\n", " 827: 'when guardian angel seth -- who invis watch over the citizen of lo angel -- becom captiv by maggie, a strong-wil heart surgeon, he ponder trade in hi pure, otherworldli exist for a mortal life with hi beloved. the coupl embark on a tender but forbidden romanc span heaven and earth. drama fantasi romanc suicid angel lifeanddeath desper oper heaven faith afterlif losangel interspeciesrom nicolascag megryan andrebraugh bradsilberl',\n", " 828: \"an assassin is shot at the altar by her ruthless employer, bill and other member of their assassin circl – but 'the bride' live to plot her vengeance. set out for some payback, she make a death list and hunt down those who wrong her, save bill for last. action crime japan coma martialart kungfu underworld yakuza sword bride reveng gore femaleyakuza blood wed samuraisword partanim umathurman lucyliu vivicaa.fox quentintarantino\",\n", " 829: \"on the verg of bankruptci and desper for hi big break, aspir filmmak bobbi bowfing concoct a crazi plan to make hi ultim dream movie. ralli a ragtag team that includ a starry-ey ingenue, a has-been diva and a film studio gofer, he set out to shoot a blockbust featur the biggest star in hollywood, kit ramsey -- onli without let ramsey know he' in the picture. comedi filmproduc filmdirector moviestudio hollywood filmmak movieactress stevemartin eddiemurphi heathergraham frankoz\",\n", " 830: \"the bride unwaveringli continu on her roar rampag of reveng against the band of assassin who had tri to kill her and her unborn child. she visit each of her former associ one-by-one, check off the victim on her death list five until there' noth left to do … but kill bill. action crime thriller brotherbrotherrelationship swordplay katana motherrol rageandh daughter rightandjustic singl aftercreditssting duringcreditssting umathurman davidcarradin darylhannah quentintarantino\",\n", " 831: \"ray tango and gabriel cash are narcot detect who, while both be extrem successful, can't stand each other. crime lord yve perret, furiou at the loss of incom that tango and cash have caus him, frame the two for murder. caught with the murder weapon on the scene of the crime, the two have no alibi. thrown into prison with most of the crimin they help convict, it appear that they are go to have to trust each other if they are to clear their name and catch the evil perret. action adventur comedi prison warondrug losangel sylvesterstallon kurtrussel terihatch andreikonchalovski\",\n", " 832: \"madelin is marri to ernest, who wa onc arch-riv helen' fiance. after recov from a mental breakdown, helen vow to kill madelin and steal back ernest. unfortun for everyone, the introduct of a magic potion caus thing to be a great deal more complic than a mere murder plot. fantasi comedi jealousi beauti immort rivalri potion drink merylstreep brucewilli goldiehawn robertzemecki\",\n", " 833: \"chon wang, a clumsi imperi guard trail princess pei pei when she is kidnap from the forbidden citi and transport to america. wang follow her captor to nevada, where he team up with an unlik partner, outcast outlaw roy o'bannon, and tri to spring the princess from her imprisonment. adventur action comedi western princess sioux travel rescu nativeamerican chines cowboy duringcreditssting 19thcenturi jackiechan owenwilson lucyliu tomdey\",\n", " 834: 'terrorist hijack a 747 inbound to washington d.c., demand the the releas of their imprison leader. intellig expert david grant (kurt russell) suspect anoth reason and he is soon the reluct member of a special assault team that is assign to intercept the plane and hijackers. action adventur drama thriller bomb ransom hostag airplan hijack terrorcel specialunit decept rescu covertoper disast shootout terror explos violenc surveil nightvisiongoggl flightattend intelligenceag flashback handtohandcombat nervega kurtrussel stevenseag halleberri stuartbaird',\n", " 835: 'jim carrey star as tom popper, a success businessman who’ clueless when it come to the realli import thing in life...until he inherit six “adorable” penguins, each with it own uniqu personality. soon tom’ rambuncti roommat turn hi swank new york apart into a snowi winter wonderland — and the rest of hi world upside-down. comedi famili taxi restaur zoo penguin exhusband littleboy zookeep doorman ride birdhatch aftercreditssting duringcreditssting jimcarrey carlagugino madelinecarrol markwat',\n", " 836: 'an american teenag who is obsess with hong kong cinema and kung-fu classic make an extraordinari discoveri in a chinatown pawnshop: the legendari stick weapon of the chines sage and warrior, the monkey king. with the lost relic in hand, the teenag unexpectedli find himself travel back to ancient china to join a crew of warrior from martial art lore on a danger quest to free the imprison monkey king. action adventur fantasi tempel shaolin teenag urin staff warrior monkeyk jackiechan jetli michaelangarano robminkoff',\n", " 837: 'in thi irreverent, hilarious, adventur buddi comedi for audienc of all ages, direct by jimmi hayward (horton hear a who!), two turkey from opposit side of the track must put asid their differ and team up to travel back in time to chang the cours of histori - and get turkey off the holiday menu for good. anim comedi famili holiday thanksgiv freedom duringcreditssting 3d owenwilson woodyharrelson amypoehl jimmyhayward',\n", " 838: 'after escap with newt and hick from the alien planet, ripley crash land on fiorina 161, a prison planet and host to a correct facility. unfortunately, although newt and hick do not surviv the crash, a more unwelcom visitor does. the prison doe not allow weapon of ani kind, and with aid be a long time away, the prison must simpli surviv in ani way they can. sciencefict action horror prison android spacecraft spacemarin imprison spacecoloni spacetravel rottweil dystopia sequel alien redempt outerspac planet shavedhead crashland impregn penalcoloni furnac suspendedanim xenomorph sigourneyweav charless.dutton charlesd davidfinch',\n", " 839: 'the hit music base on the life of evita duarte, a b-movi argentinian actress who eventu becam the wife of argentinian presid and dictat juan perón, and the most belov and hate woman in argentina. histori drama music prostitut deific dancehallhostess perónism argentinepresid risetopow singingnarr soccerbal madonna antoniobandera jonathanpryc alanpark',\n", " 840: \"a briefcas with undisclos content – sought by irish terrorist and the russian mob – make it way into criminals' hands. an irish liaison assembl a squad of mercenaries, or 'ronin', and give them the thorni task of recov the case. action thriller crime adventur pari franc armsdeal audi impostor case violenc icesk computerexpert exkgb prepar hitwithacardoor cellularphonetrac merrygoround robertdeniro jeanreno nataschamcelhon johnfrankenheim\",\n", " 841: \"sir robert beaumont is behind schedul on a railroad in africa. enlist note engin john henri patterson to right the ship, beaumont expect results. everyth seem great until the crew discov the mutil corps of the project' foreman, seemingli kill by a lion. after sever more attacks, patterson call in fame hunter charl remington, who ha final met hi match in the bloodthirsti lions. adventur africa lion bridg basedontruestori kenya animalattack lionattack coloni swahili michaeldougla valkilm tomwilkinson stephenhopkin\",\n", " 842: \"a young peruvian bear with a passion for all thing british travel to london in search of a home. find himself lost and alon at paddington station, he begin to realiz that citi life is not all he had imagin - until he meet the kindli brown family, who read the label around hi neck ('pleas look after thi bear. thank you.') and offer him a temporari haven. it look as though hi luck ha chang until thi rarest of bear catch the eye of a museum taxidermist... famili comedi england trainstat basedonnovel bear anthropomorph talkingtoanim children'sbook nicolekidman petercapaldi benwhishaw paulk\",\n", " 843: 'four everyday suburban guy come togeth as an excus to escap their humdrum live one night a week. but when they accident discov that their town ha becom overrun with alien pose as ordinari suburbanites, they have no choic but to save their neighborhood - and the world - from total extermination. comedi usa steril castrat marriag friendship alien suburb alieninvas death teenagedaught neighborhoodwatch creepyneighbor benstil vincevaughn jonahhil akivaschaff',\n", " 844: \"in the wilder of british columbia, two hunter are track and vicious murder by aaron hallum. former special oper instructor, l.t. bonham is approach and ask to apprehend hallum, hi former student, who ha 'gone rogue' after suffer sever battl stress from hi time in kosovo. drama action thriller crime hunter fbi knife balkanwar wood psychopathickil slaughter survivalist maniac specialforc killingspre combat exsoldi darkpast manhunt goryviol tommyleejon beniciodeltoro connienielsen williamfriedkin\",\n", " 845: \"dr. ethan powell, an anthropologist, is in africa studi ape when he is lost for two years. when he is found, he kill 3 men and put 2 in the hospital. cuba gooding' charact is a psychiatrist who want to take up the task of tri to get dr. powel to speak again and mayb even stand judgment at a trial for hi releas from prison of mental cases. along the way, cuba ha to deal with also help the mental patient that are be abus and neglected. in thi process cuba learn a few thing about himself and life, and so doe anthoni hopkin character, dr. powell. drama mysteri thriller prison gorilla research instinct murder psychologist anthonyhopkin cubagoodingjr. donaldsutherland jonturteltaub\",\n", " 846: 'in martha\\' vineyard, mass., conjoin twin walt (greg kinnear) and bob tenor (matt damon) make the best of their handicap by be the fastest grill cook in town. while outgo walt hope to one day becom a famou actor, shi bob prefer to stay out of the spotlight. when a fade hollywood actress, cher (cher), decid to get her show \"honey and the beaze\" cancelled, she hire walt -- and hi brotherli appendag -- as her costars. but their addit surprisingli achiev the opposite. comedi sex dancer martialart cook stripper love bulli hollywood twin flashback freak actor anxieti conjoin siames mattdamon gregkinnear evamend bobbyfarrelli',\n", " 847: 'jacki moon is the owner, promoter, coach, and star player of the flint michigan tropic of the american basketbal associ (aba). in 1976 befor the aba collapses, the nation basketbal associ (nba) plan to merg with the best team of the aba at the end of the season. onli the top four team will make the move and the worst team will fold. the tropic are the worst team in the leagu and if they want to make it to the nba, jacki moon must ralli hi team and start winning. the onli problem is the fact that jacki moon is not realli the coach and star basketbal player he think he is. to keep hi team from oblivion and leav hi mark in the city, jacki moon must inspir hi team to win fourth place in the playoffs. comedi sport basketbal flintmichigan nba merger trade garbagecan canon ramp championship deadpar willferrel mauratierney woodyharrelson kentalterman',\n", " 848: 'the luxuriantli beard pirat captain is a boundlessli enthusiastic, if somewhat less-than-successful, terror of the high seas. with a rag-tag crew at hi side, and seemingli blind to the imposs odd stack against him, the captain ha one dream: to beat hi bitter rival black bellami and cutlass liz to the much covet pirat of the year award. it’ a quest that take our hero from the shore of exot blood island to the foggi street of victorian london. along the way they battl a diabol queen and team up with a haplessli smitten young scientist, but never lose sight of what a pirat love best: adventure! anim adventur famili comedi rivalri stopmot pirat aftercreditssting duringcreditssting hughgrant brendangleeson jeremypiven peterlord',\n", " 849: \"christin collin is overjoy when her kidnap son is brought back home. but when christin suspect that the boy return to her isn't her child, the polic captain ha her commit to an asylum. crime drama mysteri corrupt mother nuditi minist power public govern polic reunion murder conspiraci losangel miss motherlov critic angelinajoli jeffreydonovan johnmalkovich clinteastwood\",\n", " 850: 'two research in a green altern energi project are put on the run when they are frame for murder and treason. action drama sciencefict thriller fbi hydrogenbomb secretlab energysuppli conspiraci aftercreditssting keanureev morganfreeman rachelweisz andrewdavi',\n", " 851: 'when the san francisco giant pay centerfield bobbi rayburn $40 million to lead their team to the world series, no one is happier or more support than #1 fan gil renard. so when rayburn becom mire in the worst slump of hi career, the obsess renard decid to stop at noth to help hi idol regain hi former glory... not even murder. drama mysteri thriller sport luck sanfranciscogi childcustodi baseballpitch baseballfan psychoticfan sportsag drivingrang steamroom robertdeniro wesleysnip ellenbarkin tonyscott',\n", " 852: 'deform sinc birth, a bitter man known onli as the phantom live in the sewer underneath the pari opera house. he fall in love with the obscur choru singer christine, and privat tutor her while terror the rest of the opera hous and demand christin be given lead roles. thing get wors when christin meet back up with her childhood acquaint raoul and the two fall in love thriller drama romanc danc obsess auction wheelchair rose productplac music remak tragicvillain blackandwhit rooftop heroin disfiguredfac basedonstagemus theater disfigurementmask breakingmirror operasing 1910 gerardbutl emmyrossum patrickwilson joelschumach',\n", " 853: \"when queen elizabeth' reign is threaten by ruthless famili betray and spain' invad army, she and her shrewd advis must act to safeguard to the live of her people. drama histori romanc england assassin spain virgin coloni govern queenelizabethi religiouswar tudor execut middleag catholic seabattl palaceintrigu cateblanchett cliveowen geoffreyrush shekharkapur\",\n", " 854: \"400 year into the future, diseas ha wipe out the major of the world' population, except one wall city, bregna, rule by a congress of scientists. when æon flux, the top oper in the underground 'monican' rebellion, is sent on a mission to kill a govern leader, she uncov a world of secrets. action sciencefict martialart dystopia surreal basedoncartoon shootout espionag infertil cyberpunk extremeviol sabotag oneagainstmani womandirector handtohandcombat actionheroin humanclon 25thcenturi charlizetheron martoncsoka jonnyleemil karynkusama\",\n", " 855: 'the film center mostli around the person and profession life of thoma \"stonewall\" jackson, a brilliant if eccentr confeder general, from the outbreak of the american civil war until it halfway point when jackson is kill accident by hi own soldier in may 1863 dure hi greatest victory. drama histori war war battl unionsoldi confederatesoldi americancivilwar secess stephenlang jeffdaniel robertduval ronaldf.maxwel',\n", " 856: 'on a flight transport danger convicts, murder ryan weaver manag to break free and caus complet chao throughout the plane. as variou peopl on board fall victim to weaver, it is ultim down to flight attend teri halloran to keep the aircraft from crashing, with on-ground support from an air traffic controller. while halloran struggl to pilot the plane, weaver continu to terror the surviv member of the crew. action thriller crime stewardess airplan shootout airmarsh christma turbul rayliotta laurenholli brendangleeson robertbutl',\n", " 857: \"a financi execut who can't stop hi career downspir is invit into hi daughter' imaginari world, where solut to hi problem await. comedi eddiemurphi thomashadenchurch yarashahidi kareykirkpatrick\",\n", " 858: 'while on a grand world tour, the muppet find themselv wrap into an european jewel-heist caper head by a kermit the frog look-alik and hi dastardli sidekick. comedi adventur crime famili music themuppet rickygervai tyburrel tinafey jamesbobin',\n", " 859: \"danger mission are the bread and butter of the thunderbirds, a high-tech secret forc employ by the government. led by jeff traci (bill paxton), the thunderbird are at the top of their game, but their nemesis, the hood (ben kingsley), ha land on their island and is attempt a coup by use the team' rescu vehicles. he'll soon discov that the thunderbird won't go down. action adventur comedi famili fantasi sciencefict secretorgan basedontvseri goldengatebridg locker oilrig teenagehero soakedcloth thunderbird bradycorbet sorenfulton deboraweston jonathanfrak\",\n", " 860: \"the burlesqu loung ha it best day behind it. tess, a retir dancer and owner of the venue, struggl to keep the age theater alive, face all kind of financi and artist challenges. with the lounge' troup member becom increasingli distract by person problem and a threat come from a wealthi businessman' quest to buy the spot from tess, the good fortun seem to have abandon the club altogether. meanwhile, the life of ali, a small-town girl from iowa, is about to chang dramatically. hire by tess as a waitress at the lounge, ali escap a hollow past and quickli fall in love with the art of burlesque. back by newfound friend amongst the theater' crew, she manag to fulfil her dream of be on stage herself. thing take a dramat turn though when ali' big voic make her becom the main attract of the revu drama romanc music losangel burlesqu burlesquedanc cher christinaaguilera ericdan steveantin\",\n", " 861: 'in 1919, mathild wa 19 year old. two year earlier, her fiancé manech left for the front at the somme. like million of other he wa \"kill on the field of battle.\" it\\' written in black and white on the offici notice. but mathild refus to believ it. if manech had died, she would know. she hang on to her intuit as tightli as she would onto the last thread of hope link her to her lover. a former sergeant tell her in vain that manech die in the no man\\' land of a trench name bingo crepescule, in the compani of four other men condemn to die for self-inflict wounds. her path ahead is full of obstacl but mathild is not frightened. anyth is possibl to someon who is will to challeng fate... drama pari prostitut lossoflov amnesia bodilydisabledperson worldwari wheelchair brittani lighthous verdun lighthousekeep teenagecrush disappear soldier illegalprostitut privatedetect missingperson polio trench audreytaut gaspardulliel dominiquepinon jean-pierrejeunet',\n", " 862: \"humbert humbert is a middle-ag british novelist who is both appal by and attract to the vulgar of american culture. when he come to stay at the board hous run by charlott haze, he soon becom obsess with lolita, the woman' teenag daughter. drama romanc sexualobsess hotel depress lossofmoth smalltown flirt midlifecrisi erotic youngster lolita motel diari seduct forbiddenlov professorforliteratur provoc fascin one-sidedlov widow adoptivefath lossofhusband summercamp secretlov jamesmason suelyon shelleywint stanleykubrick\",\n", " 863: 'a disgrac fbi agent with a drink problem join nine other troubl law enforc offic at an isol detox clinic in the wild of wyoming. but the therapeut sanctuari becom a nightmarish hellhol when a major snowstorm cut off the clinic from the outsid world and enabl a killer on the insid to get busy. action thriller alcohol serialkil hospit policeoffic detox sylvesterstallon courtneyb.v tombereng jimgillespi',\n", " 864: 'a rare mutat ha occur within the vampir commun - the reaper. a vampir so consum with an insati bloodlust that they prey on vampir as well as humans, transform victim who are unlucki enough to surviv into reaper themselves. blade is ask by the vampir nation for hi help in prevent a nightmar plagu that would wipe out both human and vampires. fantasi horror action thriller katana mutat vampir silver superhero tragicvillain brokenneck lasersight violenc explodingbodi blade subjectivecamera torsocutinhalf reaper brokenwrist razorblad shotthroughadoor swordduel burntfac wesleysnip kriskristofferson ronperlman guillermodeltoro',\n", " 865: 'an ir agent with a fate secret embark on an extraordinari journey of redempt by forev chang the live of seven strangers. drama vegetarian taxcollector pianist blind organtranspl bloodtyp willsmith rosariodawson sarahjanemorri gabrielemuccino',\n", " 866: 'after watch their respect partner die, a cop and a hitman form an allianc in order to bring down their common enemy. action crime thriller sylvesterstallon sungkang sarahshahi walterhil',\n", " 867: 'in the midst of tri to legitim hi busi deal in 1979 new york and italy, age mafia don, michael corleon seek forgiv for hi sin while take a young proteg under hi wing. crime drama thriller itali christian newyork assassin italo-american vatican pope confess helicopt daughter lawyer alpacino dianekeaton andygarcía francisfordcoppola',\n", " 868: \"drew baylor is fire after caus hi shoe compani to lose hundr of million of dollars. to make matter worse, he' also dump by hi girlfriend. on the verg of end it all, drew get a new leas on life when he return to hi family' small kentucki hometown after hi father dies. along the way, he meet a flight attend with whom he fall in love. comedi drama romanc suicid hotelroom suicideattempt newlov funer airplan lover fallinginlov orlandobloom kirstendunst susansarandon cameroncrow\",\n", " 869: \"after stand in as best man for hi longtim friend carl petersen, randi dupre lose hi job, becom a barfli and attach himself to the newlyw coupl almost perman -- as their houseguest. but the longer dupre camp out on their couch, the closer he get to carl' bride, molly, leav the frustrat groom wonder when hi pal will be move out. comedi romanc roommat loveofone'slif newlyw katehudson owenwilson mattdillon anthonyrusso\",\n", " 870: \"three escap crimin from the planet krypton test the man of steel' mettle. led by gen. zod, the kryptonian take control of the white hous and partner with lex luthor to destroy superman and rule the world. but superman, who attempt to make himself human in order to get closer to lois, realiz he ha a respons to save the planet. action adventur fantasi sciencefict savingtheworld dccomic sequel superhero basedoncomicbook lossofvirgin crimin superpow phantomzon rocketfiredgrenad crystalmachin superhumanstrength duringcreditssting genehackman christopherreev nedbeatti richardlest\",\n", " 871: \"gigli is order to kidnap the psycholog challeng younger brother of a power feder prosecutor. when plan go awry, gigli' boss send in ricki, a gorgeou free-spirit femal gangster who ha her own set of order to assist with the kidnapping. but gigli begin fall for the decidedli unavail ricki, which could be a hazard to hi occupation. drama newyork mentallydis kidnap blackmail missionofmurd lover lesbian mobster benaffleck jenniferlopez justinbartha martinbrest\",\n", " 872: \"the stori of an idealist' rise to power in the world of louisiana polit and the corrupt that lead to hi ultim downfall. base on the1946 pulitz prize-win novel written by robert penn warren. drama thriller corrupt journalist basedonnovel blackmail manipul bodyguard louisiana scandal power governor polit tragedi mistress aristocrat seanpenn judelaw katewinslet stevenzaillian\",\n", " 873: \"new york polic detect john shaft arrest walter wade jr. for a racial motiv slaying. but the onli eyewit disappears, and wade jump bail for switzerland. two year later wade return to face trial, confid hi money and influenc will get him acquit -- especi sinc he' paid a drug kingpin to kill the witness. action adventur crime thriller corrupt blackpeopl italo-american brothersisterrelationship drugdeal reveng murder violenc drug policeoffic xenophobia samuell.jackson jeffreywright christianbal johnsingleton\",\n", " 874: \"thi anim adventur retel the stori of the lost daughter of russia' last czar. the evil rasputin place a curs on the romanov family, and anastasia and her grandmother, empress maria, get separated. after grow up in an orphanage, anastasia encount two russian men seek a reward offer by empress maria for the return of her granddaughter. the trio travel to paris, where they find that the empress ha grown skeptic of imposters. anim famili tzar music russianrevolut trainexplos foreignlanguageadapt explodingtrain megryan johncusack christopherlloyd garygoldman\",\n", " 875: \"a celebr of love and creativ inspir take place in the infamous, gaudi and glamor parisian nightclub, at the cusp of the 20th century. a young poet, who is plung into the headi world of moulin rouge, begin a passion affair with the club' most notori and beauti star. drama music romanc duke music writer'sblock music terminalil writer noopeningcredit moulinroug bohemian toulouselautrec redcurtain cancand latraviata orpheusandeurydic dancehal nicolekidman ewanmcgregor johnleguizamo bazluhrmann\",\n", " 876: \"a divorc father discov that hi 12-year-old son' new stepfath is not what he made himself out to be. mysteri thriller crime menac adopt danger adoptivefath threattodeath stepfath murder divorc ex-wif child murderhunt johntravolta vincevaughn teripolo haroldbeck\",\n", " 877: 'the true stori of whitey bulger, the brother of a state senat and the most infam violent crimin in the histori of south boston, who becam an fbi inform to take down a mafia famili invad hi turf. crime drama boston basedontruestori organizedcrim johnnydepp joeledgerton benedictcumberbatch scottcoop',\n", " 878: \"there were five marin and one navi corpsman photograph rais the u.s. flag on mt. suribachi by joe rosenth on februari 23, 1945. thi is the stori of three of the six surviv servicemen – john 'doc' bradley, pvt. rene gagnon and pvt. ira hayes, who fought in the battl to take iwo jima from the japanese. war drama histori worldwarii dyinganddeath pacif iwojima aftercreditssting duringcreditssting ryanphillipp adambeach jessebradford clinteastwood\",\n", " 879: \"a frustrat man decid to take justic into hi own hand after a plea bargain set one of hi family' killer free. he target not onli the killer but also the district attorney and other involv in the deal. drama crime thriller tattoo secretpassag baseballbat deal explos justic districtattorney courtroom vigilant jamiefoxx gerardbutl colmmeaney f.garygray\",\n", " 880: 'two full length featur horror movi written by quentin tarantino and robert rodriguez put togeth as a two film feature. includ fake movi trailer in between both movies. thriller action horror exploit slasher zombi killer kurtrussel zoëbel rosariodawson robertrodriguez',\n", " 881: 'after paul d. find hi old slave friend seth in ohio and move in with her and her daughter denver, a strang girl come along by the name of \"beloved\". seth and denver take her in and then strang thing start to happen... drama thriller oprahwinfrey dannyglov thandienewton jonathandemm',\n", " 882: 'a profession poker player whose astound luck at the tabl fail to translat into hi lonesom love life attempt to win the world seri of poker while simultan earn the affect of a beauti la vega singer. drama romanc poker sport lasvega ericbana drewbarrymor robertduval curtishanson',\n", " 883: 'a true stori about frank abagnal jr. who, befor hi 19th birthday, success con million of dollar worth of check as a pan am pilot, doctor, and legal prosecutor. an fbi agent make it hi mission to put him behind bars. but frank not onli elud capture, he revel in the pursuit. drama crime conman biographi fbiagent overheadcamerashot attemptedjailbreak engagementparti mislaidtrust bankfraud inspiredbyatruestori leonardodicaprio tomhank christopherwalken stevenspielberg',\n", " 884: 'a chronicl of the decade-long hunt for al-qaeda terrorist leader osama bin laden after the septemb 2001 attacks, and hi death at the hand of the navi s.e.a.l. team 6 in may, 2011. thriller drama histori assassin cia hotel terrorist prison cardeal mossad van iraq pakistan osamabinladen manhunt navys fword femaleprotagonist gunfight raid violenc textmessag monkey dog specialforc tiedup militari area51 terroristgroup tortur womandirector alqaeda prisoncamp watertortur suicidebomb 21stcenturi exspecialforc post9/11 helicoptercrash islamabad jessicachastain jasonclark markstrong kathrynbigelow',\n", " 885: 'cohabit coupl gari and brook find their once-bliss romanc on the rock when petti spat about lemon and dirti dish mushroom into an all-out battl for custodi of their upscal chicago condo. an escal argument ensu as gari and brook continu to live under the same roof, all while cook up scheme to drive each other off the premises. romanc comedi bowl chicago americanfootbal flat basebal newlov tourguid break-up artgalleri argument pooltabl watchingtv ex-boyfriendex-girlfriendrelationship dinnerparti condominium vincevaughn jenniferaniston joeylaurenadam peytonre',\n", " 886: \"set on an idyl greek island, the plot serv as a background for a wealth of abba hit songs. donna, an independent, singl mother who own a small hotel on the island is about to let go of sophie, the spirit young daughter she' rais alone. but sophi ha secretli invit three of her mother' ex-lov in the hope of find her father. comedi romanc singlepar greec music daughter singl motherdaughterrelationship duringcreditssting womandirector merylstreep piercebrosnan amandaseyfri phyllidalloyd\",\n", " 887: 'more than a dozen angeleno navig valentine\\' day from earli morn until midnight. three coupl awak together, but each relationship will sputter; are ani worth saving? a grade-school boy want flower for hi first true love; two high school senior plan first-tim sex at noon; a tv sport report get the assign to find romanc in la; a star quarterback contempl hi future; two stranger meet on a plane; grandparents, togeth for years, face a crisis; and, an \"i hate valentine\\' day\" dinner beckon the lone and the lie to. can cupid finish hi work by midnight? comedi romanc flower marriedcoupl florist kiss singl valentin valentine\\'sday multiplestorylin aftercreditssting duringcreditssting jessicaalba jessicabiel bradleycoop garrymarshal',\n", " 888: \"cousins, bo and luke duke, with the help of their eye-catch cousin, daisi and moonshine-run uncl jesse, tri and save the famili farm from be destroy by hazzard county' corrupt commissioner, boss hogg. their effort constantli find the 'duke boys' elud author in 'the gener lee', their 1969 orang dodg charger that keep them one step ahead of the dimwit antic of the small southern town' sheriff, rosco p. coltrane. action adventur comedi sheriff farm bikini redneck moonshin johnnyknoxvil seannwilliamscott jessicasimpson jaychandrasekhar\",\n", " 889: 'base on the graphic novel by jame jones, the thin red line tell the stori of a group of men, an armi rifl compani call c-for-charlie, who change, suffer, and ultim make essenti discoveri about themselv dure the fierc world war ii battl of guadalcanal. it follow their journey, from the surpris of an unoppos landing, through the bloodi and exhaust battl that follow, to the ultim departur of those who survived. a power frontlin cast - includ sean penn, nick nolte, woodi harrelson and georg clooney - explod into action in thi hauntingli realist view of militari and moral chao in the pacif dure world war ii. drama histori war basedonnovel japanes worldwarii battleassign invas marinecorp u.s.armi command pacif rifl surviv jungl infantri steelhelmet sergeant pacificisland soldier battl fight guadalcan awol philosophicconflict seanpenn adrienbrodi jimcaviezel terrencemalick',\n", " 890: 'dave is a marri man with two kid and a love wife , and mitch is a singl man who is at the prime of hi sexual life. one fate night while mitch and dave are pee in a fountain when lightn strikes, they switch bodies. comedi jealousi chanc wish chang manchang co-work body-swap oliviawild ryanreynold jasonbateman daviddobkin',\n", " 891: 'a film about the life and career of the eccentr avant-gard comedian, andi kaufman. comedi drama romanc showbusi comedian wrestl jimcarrey courtneylov bobzmuda milošforman',\n", " 892: 'the life of the gambl paradis – la vega – and it dark mafia underbelly. drama crime poker drugabus 1970 overdos illegalprostitut robertdeniro sharonston joepesci martinscorses',\n", " 893: \"jame rees ha a good job as an ambassador' aid in france, but hi real passion is a side gig, work in a minor role in the cia. he would love to be a full-fledg agent and can't believ hi luck when he land an assign with charli wax. trigger-happi charli soon ha jame cri for hi desk job, but when he learn that the same guy they'r tri to catch are after him, jame realiz that charli may be hi onli hope of survival. action crime thriller pari cia undercov explos pimp ambassador antihero revel french politician firearm decept carcrash gang johntravolta jonathanrhysmey kasiasmutniak pierremorel\",\n", " 894: 'a mysteri and immort tibetan kung fu master, who ha spent the last 60 year travel around the world protect the ancient scroll of the ultimate, mentor a selfish street kid in the ancient intricaci of kung fu. action comedi fantasi monk homelessperson inject fall knifefight scroll theforc seannwilliamscott jaimek karelroden paulhunt',\n", " 895: 'rhode island state trooper charli baileyg ha a multipl person disorder. one person is crazi and aggressive, while the other is more friendli and laid back. both of these person fall in love with the same woman name iren after charli lose hi medication. comedi schizophrenia ex-cop aftercreditssting duringcreditssting jimcarrey renéezellweg anthonyanderson bobbyfarrelli',\n", " 896: \"when thing get crazi at the farm, it' up to a boister bovin name oti (voic by kevin james) to save the day in thi computer-anim tale. the anim in thi barnyard sing, danc and party, but otis' stern dad (sam elliott) warn the crew to keep their cool around humans. troublemak oti rare listen to hi pop, but when the farmer disappear and the anim go nutty, the young cow realiz he must stop the madness. anim comedi famili peasant farm cow cojot famili courteneycox kevinjam samelliott steveoedekerk\",\n", " 897: 'two neighbor have it out after one of them decor hi hous for the holiday so brightli that it can be seen from space. comedi famili holiday massachusett neighbor christma dannydevito matthewbroderick kristindavi johnwhitesel',\n", " 898: \"forks, washington resid bella swan is reel from the departur of her vampir love, edward cullen, and find comfort in her friendship with jacob black, a werewolf. but befor she know it, she' thrust into a centuries-old conflict, and her desir to be with edward at ani cost lead her to take greater and greater risks. adventur fantasi drama romanc moon cinema vampir werewolf fangvamp kristenstewart robertpattinson taylorlautn chrisweitz\",\n", " 899: \"it ain't easi bein' green -- especi if you'r a likabl (albeit smelly) ogr name shrek. on a mission to retriev a gorgeou princess from the clutch of a fire-breath dragon, shrek team up with an unlik compatriot -- a wisecrack donkey. adventur anim comedi famili fantasi magic liber lordship castl robinhood enchant fairy-talefigur princess parodi womandirector ogr mikemy eddiemurphi camerondiaz andrewadamson\",\n", " 900: \"a man glimps the futur fate ha plan for him – and choos to fight for hi own destiny. battl the power adjust bureau across, under and through the street of new york, he risk hi destin great to be with the onli woman he' ever loved. sciencefict thriller romanc hotel dancer hat senat futur honesti plan kiss speech marriag politician alon fate footchas covertag courthous politicalcampaign basedonshortstori mattdamon emilyblunt johnslatteri georgenolfi\",\n", " 901: \"when the dastardli sheriff of nottingham murder robin' father, the legendari archer vow vengeance. to accomplish hi mission, robin join forc with a band of exil villag (and come maid marian), and togeth they battl to end the evil sheriff' reign of terror. adventur england crusad merci robinhood folkhero kevincostn morganfreeman christianslat kevinreynold\",\n", " 902: \"jerri maguir use to be a typic sport agent: will to do just about anyth he could to get the biggest possibl contract for hi clients, plu a nice commiss for himself. then, one day, he suddenli ha second thought about what he' realli doing. when he voic these doubts, he end up lose hi job and all of hi clients, save rod tidwell, an egomaniac footbal player. comedi drama romanc stadium career sport sportsag tomcruis cubagoodingjr. renéezellweg cameroncrow\",\n", " 903: 'john bennett, a man whose childhood wish of bring hi teddi bear to life came true, now must decid between keep the relationship with the bear or hi girlfriend, lori. comedi fantasi friendship love teddybear toycomestolif wishescometru markwahlberg milakuni sethmacfarlan sethmacfarlan',\n", " 904: 'new york city. melvin udall, a cranky, bigoted, obsessive-compuls writer, find hi life turn upsid down when neighbor gay artist simon is hospit and hi dog is entrust to melvin. in addition, carol, the onli waitress who will toler him, must leav work to care for her sick son, make it imposs for melvin to eat breakfast. comedi romanc singlepar waitress lonewolf friendship neighbor author cowardli writer dog rude obnoxi unlikelyfriendship noodlesalad jacknicholson helenhunt gregkinnear jamesl.brook',\n", " 905: \"meet patch adams, a doctor who doesn't look, act or think like ani doctor you'v met before. for patch, humor is the best medicine, and he' will to do just anyth to make hi patient laugh - even if it mean risk hi own career. comedi drama nurs hospit doctor laughter robinwilliam philipseymourhoffman bobgunton tomshadyac\",\n", " 906: \"with the 70 behind him, san diego' top rate newsman, ron burgundy, return to take new york' first 24-hour news channel by storm. comedi journal mustach tvnew newsroom gangwarfar aftercreditssting newsspoof tvnewsanchor willferrel stevecarel paulrudd adammckay\",\n", " 907: 'when longfellow deeds, a small-town pizzeria owner and poet, inherit $40 billion from hi deceas uncle, he quickli begin roll in a differ kind of dough. move to the big city, deed find himself besieg by opportunist all gun for their piec of the pie. babe, a televis tabloid reporter, pose as an innoc small-town girl to do an exposé on deeds. comedi romanc lovelett newhampshir ferrari liar citycountrycontrast inherit billionair newyorkc kind fabl appletre corporatetakeov chryslerbuild adamsandl winonaryd johnturturro stevenbril',\n", " 908: 'in 1979 ohio, sever youngster are make a zombi movi with a super-8 camera. in the midst of filming, the friend wit a horrifi train derail and are lucki to escap with their lives. they soon discov that the catastroph wa no accident, as a seri of unexplain event and disappear soon follows. deputi jackson lamb, the father of one of the kids, search for the terrifi truth behind the crash. thriller sciencefict mysteri 1970 secret alien traincrash pistol firecrack duringcreditssting joelcourtney ellefan rileygriffith j.j.abram',\n", " 909: 'a twice-divorc mother of three who see an injustice, take on the bad guy and win -- with a littl help from her push-up bra. erin goe to work for an attorney and come across medic record describ ill cluster in one nearbi town. she start investig and soon expos a monument cover-up. drama biographi basedontruestori singlemoth waterpollut environmentallaw juliarobert albertfinney aaroneckhart stevensoderbergh',\n", " 910: 'an advic columnist, andi anderson (kate hudson), tri push the boundari of what she can write about in her new piec about how to get a man to leav you in 10 days. her editor, lana (bebe neuwirth), love it, and andi goe off to find a man she can use for the experiment. enter execut ben berri (matthew mcconaughey), who is so confid in hi romant prowess that he think he can make ani woman fall in love with him in 10 days. when andi and ben meet, their plan backfire. comedi romanc newyork bet journalist therapist advertisingexpert relationship katehudson matthewmcconaughey kathrynhahn donaldpetri',\n", " 911: \"after make their way through high school (twice), big chang are in store for offic schmidt and jenko when they go deep undercov at a local college. but when jenko meet a kindr spirit on the footbal team, and schmidt infiltr the bohemian art major scene, they begin to question their partnership. now they don't have to just crack the case - they have to figur out if they can have a matur relationship. if these two overgrown adolesc can grow from freshmen into real men, colleg might be the best thing that ever happen to them. crime comedi action highschool undercovercop buddycomedi aftercreditssting duringcreditssting jonahhil channingtatum davefranco phillord\",\n", " 912: 'a vampir relat hi epic life stori of love, betrayal, loneliness, and dark hunger to an over-curi reporter. horror romanc pari sanfrancisco vampir plantat piti bite fangvamp bradpitt tomcruis kirstendunst neiljordan',\n", " 913: 'carl allen ha stumbl across a way to shake free of post-divorc blue and a dead-end job: embrac life and say ye to everything. comedi bungee-jump scooter jimcarrey zooeydeschanel rhysdarbi peytonre',\n", " 914: 'after he reunit with an old pal through facebook, a mild-mann account is lure into the world of intern espionage. action comedi spi cia espionag highschoolreunion referencetofacebook account dwaynejohnson kevinhart amyryan rawsonmarshallthurb',\n", " 915: 'jacki is a divorc mother of two. isabel is the career mind girlfriend of jackie’ ex-husband luke, forc into the role of unwelcom stepmoth to their children. but when jacki discov she is ill, both women realis they must put asid their differ to find a common ground and celebr life to the fullest, while they have the chance. drama romanc divorc rebelliousdaught freezefram custodi schoolplay photoshoot juliarobert susansarandon edharri chriscolumbu',\n", " 916: \"the stori of a mild-mann radio execut (ferrell) who strive to becom the best stepdad ever to hi wife' two children, but complic ensu when their freewheeling, freeload real father arrives, forc stepdad to compet for the affect of the kids. comedi daddyshom willferrel markwahlberg lindacardellini seanand\",\n", " 917: 'in a wood fill with magic and fairi tale characters, a baker and hi wife set out to end the curs put on them by their neighbor, a spite witch. fantasi comedi music witch cinderella princ fairytal music princess sondheim curs basedonstagemus beanstalk duringcreditssting redridinghood merylstreep emilyblunt jamescorden robmarshal',\n", " 918: \"bank robber dalton russel enter a manhattan bank, lock the door and take hostages, work method and without haste. detect frazier is assign to negotiate, but hi mind is occupi with the corrupt charg he is facing. with an armi of polic surround the bank, the thief, the cop and a high-profil 'fixer' enter high-stak negotiations. crime drama thriller bankmanag kidnap nazibackground document ultimatum courtcas heist financialtransact denzelwashington cliveowen jodiefost spikele\",\n", " 919: \"with friend like these, who need enemies? that' the question bad guy porter is left ask after hi wife and partner steal hi heist money and leav him for dead -- or so they think. five month and an endless reservoir of bitter later, porter' partner and the crook cop on hi tail learn how bad payback can be. drama action thriller crime newyork heroin money crimin melgibson kriskristofferson gregghenri brianhelgeland\",\n", " 920: 'eight peopl embark on an expedit into the congo, a mysteri expans of unexplor africa where human greed and the law of natur have gone berserk. when the thrill-seek -- some with ulterior motiv -- stumbl across a race of killer apes. action adventur drama mysteri sciencefict thriller gorilla kongo diamondmin diamond lauralinney dylanwalsh erniehudson frankmarshal',\n", " 921: 'benjamin ha lost hi wife and, in a bid to start hi life over, purchas a larg hous that ha a zoo – welcom news for hi daughter, but hi son is not happi about it. the zoo is need of renov and benjamin set about the work with the head keeper and the rest of the staff, but, the zoo soon run into financi trouble. drama comedi famili zoo mattdamon scarlettjohansson thomashadenchurch cameroncrow',\n", " 922: \"a teacher open a time capsul that ha been dug up at hi son' elementari school; in it are some chill predict -- some that have alreadi occur and other that are about to -- that lead him to believ hi famili play a role in the event that are about to unfold. action adventur drama mysteri sciencefict thriller cataclysm code suspens endoftheworld timecapsul astrophysicist grievingwidow lexingtonmassachusett westfordmassachusett predict research number news nicolascag rosebyrn chandlercanterburi alexproya\",\n", " 923: \"tripp, an attract man in hi thirties, is still live with hi parent al and sue. tripp' best friend demo and ace are also still live in their parents' home and seem proud of it. al and sue are not happy, however, and are fascin when friend whose adult son ha recent move away from home reveal they hire an expert to arrang the matter and couldn't be happier with the result. comedi hotelmom romanticcomedi lie livingwithpar pretendrelationship matthewmcconaughey sarahjessicapark zooeydeschanel tomdey\",\n", " 924: \"rachel keller must prevent evil samara from take possess of her son' soul. drama horror thriller nun basedonnovel bathtub nightmar son sequel remak vision goodvsevil womanreport mentalinstitut videotap evilchild naomiwatt simonbak elizabethperkin hideonakata\",\n", " 925: \"cal weaver is live the american dream. he ha a good job, a beauti house, great children and a beauti wife, name emily. cal' seemingli perfect life unravels, however, when he learn that emili ha been unfaith and want a divorce. over 40 and suddenli single, cal is adrift in the fickl world of dating. enter, jacob palmer, a self-styl player who take cal under hi wing and teach him how to be a hit with the ladies. comedi drama romanc soulmat midlifecrisi marriagecrisi woman lawschool crazi relationship stevecarel juliannemoor ryangosl glennficarra\",\n", " 926: \"garfield, the fat, lazy, lasagna lover, ha everyth a cat could want. but when jon, in an effort to impress the liz - the vet and an old high-school crush - adopt a dog name odi and bring him home, garfield get the one thing he doesn't want. competition. anim comedi famili competit moder lasagn garfield billmurray breckinmey jenniferlovehewitt peterhewitt\",\n", " 927: 'luther krank is fed up with the commerci of christmas; he decid to skip the holiday and go on a vacat with hi wife instead. but when hi daughter decid at the last minut to come home, he must put togeth a holiday celebration. comedi famili holiday christma timallen jamieleecurti danaykroyd joeroth',\n", " 928: \"the stori of oakland athlet gener manag billi beane' success attempt to put togeth a basebal team on a budget, by employ computer-gener analysi to draft hi players. drama underdog basedonnovel basebal teamwork sport partner meet oaklandcalifornia strategi voiceov statist bradpitt jonahhil philipseymourhoffman bennettmil\",\n", " 929: \"a deadli airborn viru find it way into the usa and start kill off peopl at an epidem rate. col sam daniels' job is to stop the viru spread from a small town, which must be quarantined, and to prevent an over reaction by the white house. action drama sciencefict thriller river gener research armi serum monkey epidem medicalresearch dustinhoffman renerusso morganfreeman wolfgangpetersen\",\n", " 930: \"bill mark is a burned-out veteran of the air marshal service. he view the assign not as a life-sav duty, but as a desk job in the sky. however, today' flight will be no routin trip. shortli into the transatlant journey from new york to london, he receiv a seri of mysteri text messag order him to have the govern transfer $150 million into a secret account, or a passeng will die everi 20 minutes. action thriller mysteri airplan conspiraci airplanecrash cellphon hijack onenight mysterykil liamneeson juliannemoor scootmcnairi jaumecollet-serra\",\n", " 931: \"a taxi driver get more than he bargain for when he pick up two teen runaways. not onli doe the pair possess supernatur powers, but they'r also tri desper to escap peopl who have made them their targets. adventur famili fantasi sciencefict thriller action spacecraft laser teleport telekinesi alien militari duringcreditssting supernaturalpow mountain dwaynejohnson annasophiarobb alexanderludwig andyfickman\",\n", " 932: \"in a world in which great britain ha becom a fascist state, a mask vigilant known onli as 'v' conduct guerrilla warfar against the oppress british government. when 'v' rescu a young woman from the secret police, he find in her an alli with whom he can continu hi fight to free the peopl of britain. action thriller fantasi detect vatican fascism satan fascist dystopia govern chancellor reveng personificationofsatan tortur hatr maskedvigilant catholic catholicpriest catholicguilt jesuit vengefulspirit activist irishcathol veng jesuitpriest gnostic occult natalieportman hugoweav stephenrea jamesmcteigu\",\n", " 933: \"the dynam duo of chon wang and roy o'bannon return for anoth crazi adventure. thi time, they'r in london to aveng the murder of chon' father, but end up on an even bigger case. chon' sister is there to do the same, but instead unearth a plot to kill the royal family. no one believ her, though, and it' up to chon and roy (who ha romanc on hi mind) to prove her right. action adventur comedi western londonengland indianterritori emperor reveng murder arrow duringcreditssting imperials jackiechan owenwilson fannwong daviddobkin\",\n", " 934: \"when the man in the yellow hat befriend curiou georg in the jungle, they set off on a non-stop, fun-fil journey through the wonder of the big citi toward the warmth of true friendship. adventur anim comedi famili museum productplac balloon jungl monkey famili predict cargoship curios willferrel drewbarrymor davidcross matthewo'callaghan\",\n", " 935: \"maggi peyton, the new owner of number 53 - the free-wheelin' volkswagen bug with a mind of it own - put the car through it pace on the road to becom a nascar competitor. comedi famili adventur fantasi romanc carrac victori car nascar womandirector lindsaylohan michaelkeaton mattdillon angelarobinson\",\n", " 936: \"when the daughter of a psychiatrist is kidnapped, he' horrifi to discov that the abductors' demand is that he break through to a post traumat stress disord suffer young woman who know a secret.. thriller cemeteri diamant suspens psychiatrist killer michaeldougla seanbean brittanymurphi garyfled\",\n", " 937: 'after get a tast for blood as children, hansel and gretel have becom the ultim vigilantes, hell-bent on retribution. now, unbeknownst to them, hansel and gretel have becom the hunted, and must face an evil far greater than witches... their past. fantasi horror action witch blackmag steampunk goodvsevil troll extremeviol violenc witchcraft evil witchhunt witchhunt evilwitch duringcreditssting hanselandgretel gun 3d jeremyrenn gemmaarterton famkejanssen tommywirkola',\n", " 938: 'conni is a wife and mother whose 11-year marriag to edward ha lost it sexual spark. when conni liter run into handsom book collector paul, he sweep her into an all-consum affair. but edward soon becom suspici and decid to confront the other man. thriller drama adulteri infidel erotic literatur lover newyorkc eroticthril richardger dianelan oliviermartinez adrianlyn',\n", " 939: 'a teenag fugit with an incred secret race to stay one step ahead of the mysteri forc seek destroy him in thi sci-fi action thriller. with three dead and one on the run, the race to find the elus number four begins. outwardli normal teen john smith never get too comfort in the same identity, and along with hi guardian, henri, he is constantli move from town to town. with each pass day, john gain a stronger grasp on hi extraordinari new powers, and hi bond to the be that share hi fantast fate grow stronger. action thriller sciencefict adventur secretident alien teenageboy teenagehero alienteenag interspeciesrom basedonyoungadultnovel superpow alexpettyf timothyolyph teresapalm d.j.caruso',\n", " 940: 'the middl eastern oil industri is the backdrop of thi tens drama, which weav togeth numer stori lines. bennett holiday is an american lawyer in charg of facilit a dubiou merger of oil companies, while bryan woodman, a switzerland-bas energi analyst, experi both person tragedi and opportun dure a visit with arabian royalty. meanwhile, veteran cia agent bob barn uncov an assassin plot with unsettl origins. drama thriller antiterror bomb assassin middleeast lebanon cia capit global lossofson persia waragainstterror energypolici petrol georgeclooney mattdamon jeffreywright stephengaghan',\n", " 941: 'an american ambassador is kill dure an attack at a u.s. compound in libya as a secur team struggl to make sens out of the chaos. action drama histori thriller war basedonnovel assaultrifl mercenari libya biographi basedontruestori heroism explos americanabroad death 21stcenturi ciaagent u.s.ambassador jamesbadgedal johnkrasinski maxmartini michaelbay',\n", " 942: 'the journey of manolo, a young man who is torn between fulfil the expect of hi famili and follow hi heart. befor choos which path to follow, he embark on an incred adventur that span three fantast world where he must face hi greatest fears. romanc anim adventur comedi famili fantasi lovetriangl afterlif dayofthedead bullfight diegoluna channingtatum zoesaldana jorger.gutierrez',\n", " 943: \"state-of-the-art secur system creator, jack stanfield ha cement hi reput as a man who' thought of everything. but when a crimin find a way into jack' person life, everyth jack hold dear is suddenli at stake. thriller bank technolog blackmail hacker seattl computerhack firewal harrisonford paulbettani virginiamadsen richardloncrain\",\n", " 944: 'a master thief coincident is rob a hous where a murder in which the presid of the unit state is involv occur in front of hi eyes. he is forc to run yet may hold evid that could convict the president. a polit thriller from and star clint eastwood and base on a novel by david baldacci. crime drama thriller corrupt assassin washingtond.c. rape whitehous usapresid daughter govern suspens secretservic secretserviceag clinteastwood genehackman edharri clinteastwood',\n", " 945: 'a femal senat succe in enrol a woman into combin reconnaiss team train where everyon expect her to fail. action drama poem middleeast helicopt satellit navi sexism war armi sexualharass navys feminist soldier commando mentalhealth drillinstructor militari u.s.militari armybas reconnaiss sexualdiscrimin demimoor viggomortensen annebancroft ridleyscott',\n", " 946: 'in honor of hi birthday, san francisco banker nichola van orton, a financi geniu and a coldheart loner, receiv an unusu present from hi younger brother, conrad -- a gift certif to play a uniqu kind of game. in nearli a nanosecond, nichola find himself consum by a danger set of ever-chang rules, unabl to distinguish where the charad end and realiti begins. drama thriller mysteri brotherbrotherrelationship birthday dangeroflif birthdayparti surpris michaeldougla seanpenn deborahkaraung davidfinch',\n", " 947: \"the eeri and desert ghost town of silent hill draw a young mother desper to find a cure for her onli child' illness. unabl to accept the doctor' diagnosi that her daughter should be perman institution for psychiatr care, rose flee with her child, head for the abandon town in search of answer – and ignor the protest of her husband. it' soon clear thi place is unlik anywher she' ever been. it' smother by fog, inhabit by a varieti of strang be and period overcom by a live 'darkness' that liter transform everyth it touches. as rose search for her littl girl, she begin to learn the histori of the strang town and realiz that her daughter is just a pawn in a larger game. horror mysteri monster motherrol burningofwitch fog suffer dark sadism supernatur reveng surreal gore surviv goodvsevil blood anotherdimens tortur creatur violenc demon witchburn basedonvideogam dismember religiousfanat ghosttown sleepwalk radhamitchel seanbean laurieholden christophegan\",\n", " 948: \"maverick old-guard coach jimmi mcginti is hire in the wake of a players' strike to help the washington sentinel advanc to the playoffs. but that imposs dream hing on whether hi replac can hunker down and do the job. so, mcginti dust off hi secret dossier of ex-play who never got a chanc (or screw up the one they were given) and knit togeth a bad-dream team of guy who just may give the sentinel their titl shot. comedi americanfootbal strike sport coach misfit americanfootballplay keanureev genehackman brookelangton howarddeutch\",\n", " 949: 'the charact we met a littl more than a decad ago are return to east great fall for their high-school reunion. in one long-overdu weekend, they will discov what ha changed, who hasn’t and that time and distanc can’t break the bond of friendship. it wa summer 1999 when four small-town michigan boy began a quest to lose their virginity. in the year that have passed, jim and michel marri while kevin and vicki said goodbye. oz and heather grew apart, but finch still long for stifler’ mom. now these lifelong friend have come home as adult to reminisc about – and get inspir by – the hormon teen who launch a comedi legend. comedi wifehusbandrelationship sequel familyreunion masturb scat highschoolreunion quittingajob milf duringcreditssting jasonbigg alysonhannigan seannwilliamscott jonhurwitz',\n", " 950: \"the polic tri to arrest expert hostag negoti danni roman, who insist he' be frame for hi partner' murder in what he believ is an elabor conspiracy. think there' evid in the intern affair offic that might clear him, he take everyon in the offic hostag and demand that anoth well-known negoti be brought in to handl the situat and secretli investig the conspiracy. action adventur crime drama mysteri thriller corrupt hostag pension innoc polic hostage-tak murder suspens conspiraci bulletwound negoti samuell.jackson kevinspacey davidmors f.garygray\",\n", " 951: 'the town of silverton is in one day destroy by the unpreced power of a seri of tornadoes. the popul is at the merci of the unpredict and deadli cyclones, while hunter warn that the worst is yet to come. most peopl find shelter, but some just go to the tornado for that one, uniqu shot. action thriller tornado student foundfootag disastermovi richardarmitag sarahwaynec mattwalsh stevenqual',\n", " 952: \"back in sunni southern california and on the trail of two murderers, axel foley again team up with la cop billi rosewood. soon, they discov that an amus park is be use as a front for a massiv counterfeit ring – and it' run by the same gang that shot billy' boss. action comedi crime detect undercov securitycamera carousel investig weapon sequel rescu counterfeit shootout dirtycop gunfight losangel explos violenc footchas frame carchas secretservic amusementpark rollercoast beverlyhil buddycomedi eddiemurphi judgereinhold héctorelizondo johnlandi\",\n", " 953: 'young sweetheart billi and kate move to the big apple, land job in a high-tech offic park and soon reunit with the friendli and lovabl gizmo. but a seri of accid creat a whole new gener of gremlins. the situat worsen when the devilish green creatur invad a top-secret laboratori and develop genet alter powers, make them even harder to destroy! comedi horror fantasi newyork monster skyscrap mutant restaur humananimalrelationship mutat tvstation dyinganddeath water researchst fur bat current electricshock clever gremlin cowardli zachgalligan phoebec johnglov joedant',\n", " 954: \"a success lawyer return to hi hometown for hi mother' funer onli to discov that hi estrang father, the town' judge, is suspect of murder. drama fathersonrelationship judg lawyer robertduval robertdowneyjr. verafarmiga daviddobkin\",\n", " 955: 'when a train carri atom warhead mysteri crash in the former soviet union, a nuclear specialist discov the accid is realli part of a plot to cover up the theft of the weapons. assign to help her recov the miss bomb is a crack special forc colonel. action thriller helicopt terrorist nuclearmissil bridg traincrash train womandirector georgeclooney nicolekidman marceliureș mimiled',\n", " 956: \"as the citi is lock down under quarantine, alic join a small band of elit soldiers, enlist to rescu the miss daughter of the creator of the mutat t-virus. it' a heart-pound race against time as the group face off against hord of blood- thirsti zombies, stealthi lickers, mutant canin and the most sinist foe yet. horror action sciencefict martialart mutant dystopia rescu conspiraci evilcorpor zombi basedonvideogam millajovovich siennaguillori odedfehr alexanderwitt\",\n", " 957: \"bridget jone is becom uncomfort in her relationship with mark darcy. apart from discov that he' a conserv voter, she ha to deal with a new boss, a strang contractor and the worst vacat of her life. comedi romanc londonengland lovesick thailand clumsyfellow todropbrick captur womandirector renéezellweg hughgrant colinfirth beebankidron\",\n", " 958: \"matt lee whitlock, respect chief of polic in small banyan key, florida, must solv a viciou doubl homicid befor he himself fall under suspicion. matt lee ha to stay a few step ahead of hi own polic forc and everyon he' trust in order to find out the truth. thriller crime drama miami florida doublemurd divorc denzelwashington evamend sanaalathan carlfranklin\",\n", " 959: \"forrest taft is an environment agent who work for the aegi oil compani in alaska. aegi oil' corrupt ceo, michael jennings, is the kind of person who doesn't care whether or not oil spill into the ocean or onto the land, just as long as it' make money for him. action thriller fight inuit petrol compani alaska enviroment stevenseag michaelcain joanchen stevenseag\",\n", " 960: 'everyon alway knew that max had a wild imagination, but no one believ that hi wildest creation -- a boy rais by watch great white shark and a girl with the forc of a volcano -- were real. now, these two pint-siz action master will show max that even an ordinari kid ha what it take to be extraordinary. adventur famili sciencefict imaginaryfriend outcast taylorlautn taylordooley caydenboyd robertrodriguez',\n", " 961: 'twenty-someth richard travel to thailand and find himself in possess of a strang map. rumour state that it lead to a solitari beach paradise, a tropic bliss - excit and intrigued, he set out to find it. drama adventur romanc thriller hippi exoticisland beach map groupdynam sharkattack leader thailand commun backpack delus marijuana youth shark extramaritalaffair leonardodicaprio guillaumecanet tildaswinton dannyboyl',\n", " 962: \"helen harri ha a glamorous, big-citi life work for one of new york' hottest model agencies. but suddenli her free-spirit life get turn upsid down when she must chose between the life she' alway loved, and the new love of her life! drama comedi romanc newyork pastor worldoffas lossofpar mannequin fashiondesign familyrelationship katehudson johncorbett joancusack garrymarshal\",\n", " 963: 'ninja assassin follow raizo (rain), one of the deadliest assassin in the world. taken from the street as a child, he wa transform into a train killer by the ozunu clan, a secret societi whose veri exist is consid a myth. but haunt by the merciless execut of hi friend by the clan, raizo break free from them and vanishes. now he waits, prepar to exact hi revenge. action crime thriller assassin assassin ninjafight reveng ninja ninjutsu rain naomieharri sungkang jamesmcteigu',\n", " 964: 'a basebal legend almost finish with hi distinguish career at the age of forti ha one last chanc to prove who he is, what he is capabl of, and win the heart of the woman he ha love for the past four years. drama romanc basebal trainer career legend train sport kevincostn kellypreston johnc.reilli samraimi',\n", " 965: \"bounc from her job, erin grant need money if she' to have ani chanc of win back custodi of her child. but, eventually, she must confront the nake truth: to take on the system, she'll have to take it all off. erin strip to conquer, but she face unintend circumst when a hound dog of a congressman zero in on her and sharpen the shadi tool at hi fingertips, includ blackmail and murder. drama thriller crime blackmail stripclub stripteas polic u.s.congress demimoor burtreynold armandassant andrewbergman\",\n", " 966: \"when phil and debbi winslow reloc from their nativ kansa to the sunni clime of orang county, their big-hearted, havoc-wreak great dane get a tast of the dog' life, california-style. famili comedi owenwilson emmaston georgelopez tomdey\",\n", " 967: 'a supernatur thriller center on three peopl -- a blue-collar american, a french journalist and a london school boy -- who are touch by death in differ ways. drama fantasi mattdamon brycedallashoward georgemclaren clinteastwood',\n", " 968: 'tenaci homicid detect cassi mayweath and her still-green partner are work a murder case, attempt to profil two malevol brilliant young men: cold, calcul killer whose dark secret might explain their crimes. crime drama thriller detect secret fbi homicid evid nerd vice intellectu highschool partner murder rich forens sandrabullock benchaplin ryangosl barbetschroed',\n", " 969: 'assassin robert rath arriv at a funer to kill a promin mobster, onli to wit a rival hire gun complet the job for him -- with grisli results. horrifi by the murder of innoc bystanders, rath decid to take one last job and then return to civilian life. but find hi way out of the world of contract kill grow ever more danger as rath fall for hi femal target and becom a mark man himself. action adventur crime thriller competit assassin cia bank cat mexicanstandoff seattl hitman missionofmurd hiddencamera rivalri rescu shootout policechas sniperrifl silenc doublecross caribbean detroitmichigan sylvesterstallon antoniobandera juliannemoor richarddonn',\n", " 970: 'the stori of the early, murder root of the cannibalist killer, hannib lecter – from hi hard-scrabbl lithuanian childhood, where he wit the repuls length to which hungri soldier will go to satiat themselves, through hi sojourn in france, where as a med student he hone hi appetit for the kill. crime drama thriller winter psychopath horror serialkil gaspardulliel aaranthoma gongli peterwebb',\n", " 971: \"ben and kati jordan are a marri coupl who go through hard time in fifteen year of marriage. comedi drama romanc loveofone'slif therapist psycholog wed relationship divorc brucewilli michellepfeiff robrein robrein\",\n", " 972: 'a parasit alien soul is inject into the bodi of melani stryder. instead of carri out her race\\' mission of take over the earth, \"wanda\" (a she come to be called) form a bond with her host and set out to aid other free humans. action adventur romanc sciencefict thriller basedonnovel massmurd dystopia genocid alieninvas duringcreditssting interspeciesrom alienparasit saoirseronan dianekrug jakeabel andrewniccol',\n", " 973: 'a parasit alien soul is inject into the bodi of melani stryder. instead of carri out her race\\' mission of take over the earth, \"wanda\" (a she come to be called) form a bond with her host and set out to aid other free humans. action adventur romanc sciencefict thriller basedonnovel massmurd dystopia genocid alieninvas duringcreditssting interspeciesrom alienparasit songkang-ho parkhae-il baedoona bongjoon-ho',\n", " 974: \"gang-du is a dim-wit man work at hi father' tini snack bar near the han river. one day, gang-du' one and onli daughter hyun-seo come back from school irritated. she is angri at her uncle, nam-il, who visit her school as her guardian shamelessli drunk. ignor her father' excus for nam-il, hyun-seo is soon engross in her aunt nam-joo' archeri tournament on tv. meanwhile, outsid of the snack bar, peopl are fascin by an unidentifi object hang onto a bridge. in an instant, the object reveal itself as a terrifi creatur turn the riverbank into a gruesom sea of blood¡¦ amid the chaos, hyun-seo is helplessli snatch up by the creatur right befor gang-du' eyes. these unforeseen circumst render the govern powerless to act. but receiv a call of help from hyun-seo, the once-ordinari citizen gang-du and hi famili are thrust into a battl with the monster to rescu their belov hyun-seo. horror drama sciencefict river mobilephon braveri archer daughter sewerag pollut formaldehyd snackbar famili saoirseronan dianekrug jakeabel andrewniccol\",\n", " 975: \"gang-du is a dim-wit man work at hi father' tini snack bar near the han river. one day, gang-du' one and onli daughter hyun-seo come back from school irritated. she is angri at her uncle, nam-il, who visit her school as her guardian shamelessli drunk. ignor her father' excus for nam-il, hyun-seo is soon engross in her aunt nam-joo' archeri tournament on tv. meanwhile, outsid of the snack bar, peopl are fascin by an unidentifi object hang onto a bridge. in an instant, the object reveal itself as a terrifi creatur turn the riverbank into a gruesom sea of blood¡¦ amid the chaos, hyun-seo is helplessli snatch up by the creatur right befor gang-du' eyes. these unforeseen circumst render the govern powerless to act. but receiv a call of help from hyun-seo, the once-ordinari citizen gang-du and hi famili are thrust into a battl with the monster to rescu their belov hyun-seo. horror drama sciencefict river mobilephon braveri archer daughter sewerag pollut formaldehyd snackbar famili songkang-ho parkhae-il baedoona bongjoon-ho\",\n", " 976: 'a dea agent investig the disappear of a legendari armi ranger drill sergeant and sever of hi cadet dure a train exercis gone sever awry. action drama mysteri thriller crime drugaddict militarycourt panama militaryservic court ranger supremecourt lager militarycrim johntravolta connienielsen samuell.jackson johnmctiernan',\n", " 977: 'still recov from a heart transplant, a retir fbi profil return to servic when hi own blood analysi offer clue to the ident of a serial killer. crime drama mysteri thriller houseboat heart investig polic ex-cop suspens hearttranspl fbiprofil clinteastwood jeffdaniel anjelicahuston clinteastwood',\n", " 978: \"an interpol agent and an attorney are determin to bring one of the world' most power bank to justice. uncov money laundering, arm trading, and conspiraci to destabil world governments, their investig take them from berlin, milan, new york and istanbul. find themselv in a chase across the globe, their relentless tenac put their own live at risk. drama thriller crime duringcreditssting cliveowen naomiwatt arminmueller-stahl tomtykw\",\n", " 979: 'thi time, a cataclysm temblor hit lo angeles, turn it into an island. the presid view the quak as a sign from above, expel lo angel from the countri and make it a penal coloni for those found guilti of moral crimes. when hi daughter, part of a resist movement, steal the control unit for a doomsday weapon, snake again get tap to save the day. action adventur sciencefict thriller prison usapresid earthquak dystopia attempttoescap losangel reluctanthero kurtrussel stacykeach stevebuscemi johncarpent',\n", " 980: 'in the small town of rockwell, main in octob 1957, a giant metal machin befriend a nine-year-old boy and ultim find it human by unselfishli save peopl from their own fear and prejudices. adventur anim famili fantasi sciencefict coldwar friendship giantrobot sittingonatoilet fearofunknown 1950 lax elimarienth jenniferaniston vindiesel bradbird',\n", " 981: 'we anderson’ incis quirki comedi build up star complex charact like in ‘the royal tenenbaums’ with bill murray on in the lead role. an ocean adventur documentari film maker zissou is put in all imagin life situat and a tough life crisi as he attempt to make a new film about captur the creatur that caus him pain. adventur comedi drama ocean filmmak lossofmoth cynic redcap ship billmurray anjelicahuston cateblanchett wesanderson',\n", " 982: 'in 1863, mississippi farmer newt knight serv as a medic for the confeder army. oppos to slavery, knight would rather help the wound than fight the union. after hi nephew die in battle, newt return home to jone counti to safeguard hi famili but is soon brand an outlaw deserter. forc to flee, he find refug with a group of runaway slave hide out in the swamps. forg an allianc with the slave and other farmers, knight lead a rebellion that would forev chang history. war action drama histori thriller slaveri americancivilwar matthewmcconaughey gugumbatha-raw mahershalaali garyross',\n", " 983: 'a man against capit punish is accus of murder a fellow activist and is sent to death row. drama thriller crime prison journalist texa professor deathpenalti deathrow interview murder report intern innoc activist kevinspacey katewinslet lauralinney alanpark',\n", " 984: 'texa ranger roland sharp is assign to protect the onli wit to the murder of a key figur in the prosecut of a drug kingpin -- a group of univers of texa cheerleaders. sharp must now go undercov as an assist cheerlead coach and move in with the young women. comedi action tommyleejon cedrictheentertain christinamilian stephenherek',\n", " 985: 'brooklyn mobster and prolif hit man jimmi conlon ha seen better days. longtim best friend of a mob boss, jimmi is haunt by the sin of hi past—a well as a dog polic detect who’ been one step behind jimmi for 30 years. but when jimmy’ estrang son becom a target, jimmi must make a choic between the crime famili he chose and the real famili he abandon long ago. now, with nowher safe to turn, jimmi ha just one night to figur out exactli where hi loyalti lie and to see if he can final make thing right. action crime drama mysteri thriller hitman reveng murder ontherun mobster liamneeson edharri joelkinnaman jaumecollet-serra',\n", " 986: 'a russian teenag live in london who die dure childbirth leav clue to a midwif in her journal that could tie her child to a rape involv a violent russian mob family. thriller crime mysteri londonengland gay malenud femalenud fathersonrelationship sex jealousi underworld undercov hitman russian diari humantraffick midwif murder motherdaughterrelationship orphan gangster motorcycl bathhous naomiwatt viggomortensen vincentcassel davidcronenberg',\n", " 987: 'when they take some friend on an extrem sport adventure, the last thing jare and sam expect to see below the shark-infest water is a legendari pirat ship rumor to contain million of dollar in gold. but their good fortun is short-lived, as a ruthless gang of crimin get word of what they have uncovered. action thriller adventur crime dive cocain shipwreck sail airplan wrack paulwalk jessicaalba scottcaan johnstockwel',\n", " 988: \"in 1429 a teenag girl from a remot french villag stood befor her king with a messag she claim came from god; that she would defeat the world' greatest armi and liber her countri from it polit and religi turmoil. follow her mission to reclaim god' dimish kingdom - through her amaz victori until her violent and untim death. adventur drama action histori war schizophrenia franc rape sieg biographi orléan charlesvii. falsehistori joanofarc religiousdelus millajovovich dustinhoffman fayedunaway lucbesson\",\n", " 989: \"a fantasi movi about an arrogant, lazi princ and hi more heroic brother who must complet a quest in order to save their father' kingdom. comedi kidnap traitor virgin princ princess reveng minotaur knight dragon wed king swordandsorceri dannymcbrid jamesfranco natalieportman davidgordongreen\",\n", " 990: \"publisher, will atenton quit a lucr job in new york to reloc hi wife, libbi and their daughter to a quaint town in new england. however, as they settl into their home the atenton discov that a woman and her children were murder there, and the surviv husband is the town' prime suspect. with help from a neighbor who wa close to the murder family, will piec togeth a horrifi chain of events. drama thriller mysteri housefir extensionladd lastdayonjob danielcraig naomiwatt rachelweisz jimsheridan\",\n", " 991: 'a misguid museum guard who lose hi job and then tri to get it back at gunpoint is thrown into the fierc world of ratings-driven tv gone mad. action drama thriller journalist museum hostagedrama independentfilm johntravolta dustinhoffman miakirshn costa-gavra',\n", " 992: \"babi bink couldn't ask for more; he ha ador (if somewhat sickly-sweet) parents, he live in a huge mansion, and he' just about to appear in the social page of the paper. unfortunately, not everyon in the world is as nice as babi bink' parents; especi the three enterpris kidnap who pretend to be photograph from the newspaper. success kidnap babi bink, they have a harder time keep hold of the rascal, who not onli keep one step ahead of them, but seem to be more than a littl bit smarter than the three bumbl criminals. action adventur comedi famili babi hoodlum lostchild joemantegna laraflynnboyl joepantoliano patrickreadjohnson\",\n", " 993: 'set in puritan boston in the mid 1600s, the stori of seamstress hester prynne, who is outcast after she becom pregnant by a respect reverend. she refus to divulg the name of the father, is \"convicted\" of adulteri and forc to wear a scarlet \"a\" until an indian attack unit the puritan and lead to a reevalu of their law and morals. drama histori romanc basedonnovel burningofwitch puritan pregnanc perioddrama extramaritalaffair demimoor garyoldman robertduval rolandjoffé',\n", " 994: \"wife and mother valeri plame (naomi watts) ha a doubl life as a cia operative, hide her vocat from famili and friends. her husband, joseph wilson (sean penn), write a controversi articl in the new york times, refut stori about the sale of enrich uranium to iraq, then valerie' secret work and ident is leak to the press. with her cover blown and other peopl endangered, valerie' career and person life begin to unravel. drama thriller cia nuclearscientist iraq politician duringcreditssting naomiwatt seanpenn tyburrel dougliman\",\n", " 995: 'the daughter of actor, laurenc harvey turn away from her career as a ford model to becom a bounti hunter. action crime bountyhunt fbi weapon spectacl keiraknightley mickeyrourk edgarramírez tonyscott',\n", " 996: 'someon doe a nasti hatchet job on a san fransisco big nois and the assist d.a. take charg of the investigation. through a web of blackmail and prostitut involv the governor, an old lover of the law man emerg as a prime suspect and he ha to deal with hi person feel as well as the case. action thriller mysteri romanc callgirl sanfrancisco investig murder davidcaruso lindafiorentino chazzpalminteri williamfriedkin',\n", " 997: 'mind-control technolog ha taken societi by a storm, a multiplay on-lin game call \"slayers\" allow player to control human prison in mass-scale. simon (lerman) control kabl (butler), the onlin champion of the game. kable\\' ultim challeng becom regain hi ident and independ by defeat the game\\' mastermind (hall). action thriller sciencefict dystopia mindcontrol gunbattl wrongfulimprison dystopicfutur wrongfulconvict onlinegam gerardbutl michaelc.hal loganlerman briantaylor',\n", " 998: \"ethan wate just want to get to know lena duchann better, but unbeknownst to him, lena ha strang powers. as lena' 16th birthday approach she might decid her fate, to be good or evil. a choic which will impact her relationship forever. fantasi drama romanc civilwar southernusa magic light dark classprejudic caster basedonyoungadultnovel aldenehrenreich aliceenglert jeremyiron richardlagravenes\",\n", " 999: \"tell the stori of rainbow randolph, the corrupt, costum star of a popular children' tv show, who is fire over a briberi scandal and replac by squeaky-clean smoochy, a puffi fuscia rhinoceros. as smoochi catapult to fame - score hit rate and the affect of a network execut - randolph make the unsuspect rhino the target of hi numer outrag attempt to exact reveng and reclaim hi statu as america' sweetheart. comedi crime drama thriller corrupt moder tvshow success irishmob duringcreditssting robinwilliam catherinekeen edwardnorton dannydevito\",\n", " ...}}" ] }, "execution_count": 173, "metadata": {}, "output_type": "execute_result" } ], "source": [ "new_df.to_dict()" ] }, { "cell_type": "code", "execution_count": 175, "id": "e5c1ebe1", "metadata": {}, "outputs": [], "source": [ "pickle.dump(similarity,open('similarity.pkl','wb'))" ] }, { "cell_type": "code", "execution_count": null, "id": "94391abf", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.8" } }, "nbformat": 4, "nbformat_minor": 5 }